@charset "utf-8";
/*---總覽頁列表---*/
.intellgence_index_list li{
	display: block;
	width: 25%;
	padding: 0 15px;
	float: left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-bottom: 12px;

}
.intellgence_index_list li:hover{
	-webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.intellgence_index_list a{
	display: block;
	width: 100%;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(0,0,0,.125);

}
.intellgence_index_list .img_bg_block{
	width: 100%;
	height: 168px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.intellgence_index_list .table_block{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	opacity: 0;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.intellgence_index_list li:hover .table_block{
	opacity: 1;
}
.intellgence_index_list span{
	display: inline-block;
	max-height: 60px;
	line-height: 30px;
	text-align: left;
	width: 75%;
}
.list_title_block{
	text-align: center;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}

@media screen and (max-width: 991px){
	.intellgence_index_list li{
		width: 100%;
		padding: 0;
	}
}
