/*新闻列表部分开始*/
.about_banner img{
	width: 100%;
}
.news_list ul{
	padding-bottom: 30px;
}
.news_list ul li{
	border-bottom: 1px solid #eaeaea;
    display: block;
    padding: 20px;
    transition: all .5s;
}
.news_list ul li:hover{
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.news_list ul li:hover .news_list_img img{
	transform: scale(1.1,1.1);
}
.news_list ul li a{
	display: flex;
}
.news_list_img{
	width: 180px;
	height: 135px;
	overflow: hidden;
	text-align: center;
}
.news_list_img img{
	max-width: 100%;
	max-height: 100%;
	transition: all 0.3s ease-out 0s;
}
.news_list_content{
	flex: 1;
	padding-left: 15px;
	box-sizing:border-box;
}
.news_list_content h3{
	font-size: 16px;
	line-height: 30px;
	font-weight: normal;
}
.news_list_content div{
	font-size: 12px;
	color: #999;
	line-height: 30px;
}
.news_list_content p{
	font-size: 14px;
	line-height: 25px;
	color: #666;
}
/*新闻列表部分结束*/