.banner img{
	width: 100%;
	display: block;
}
.type_list{
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #EEEEEE;
}
.type_list li{
	height: 70px;
	line-height: 70px;
	border-bottom: 3px solid transparent;
	margin-right: 28px;
	font-size: 16px;
	cursor: pointer;
}
.type_list li:last-child{
	margin-right: 0;
}
.type_list li.active{
	color: #FE8C21;
	border-color: #FE8C21;
}
.article_list{
	width: 1200px;
	margin: 0 auto;
	padding: 25px 20px;
	border-bottom: 1px solid #EEEEEE;
	box-sizing: border-box;
}
.article_item{
	display: flex;
	align-items: center;
}
.article_item .cover{
    height: 132px;
    overflow: hidden;
    margin-right: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.article_item .cover img{
	height: 100%;
    transform: scale(1);
    transition: all .3s;
}
.article_item .cover:hover img{
	transform: scale(1.2);
}
.article_item .content h1{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}
.article_item .content h1:hover{
	color: #FE8C21;
}
.article_item .content .intro{
    margin-top: 18px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article_item .content .time{
	font-size: 14px;
    color: #9a9a9a;
    margin-top: 14px;
}
/*分页*/
.pagination{
	justify-content: center;
	margin: 20px 0;
}
