/*产品列表部分开始*/
.about_banner img{
	width: 100%;
}
.pro_list{

}
.pro_list ul{
	display: flex;
	flex-wrap: wrap;
}
.pro_list ul li{
	width: 32%;
	margin-right: 2%;
	text-align: center;
	background: #f6f6f6;
	margin-bottom: 30px;
	transition:all 1s ease;
}
.pro_list ul li:hover{
	background: #1048a0;
}
.pro_list ul li:hover .pro_list_text{
	color: white;
}
.pro_list ul li:nth-child(3n){
	margin-right: 0;
}
.pro_list ul li .pro_list_img img{
	max-width: 100%;
	max-height: 178px;
}
.pro_list_text{
	height: 45px;
	display: flex;
	justify-content:center;
	align-items: center;
	font-size: 14px;
}

/*产品列表部分结束*/

/*产品详情部分开始*/

.ArticleTitle h1{
	font-size: 24px;
    text-align: center;
    padding: 20px 0px;
    border-bottom: 1px dashed #ccc;
    font-weight: bold;
}
.ArticleMessage{
	line-height: 30px;
    height: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.ArticleMessage span{
	color: #999;
    font-size: 12px;
}
.proview_img{
	margin-bottom: 30px;
	text-align: center;
}
.proview_img img{
	max-width: 100%;
}
.proview_img video{
	max-width: 100%;
}
/*产品详情部分结束*/