.banner{
	margin-bottom: 60px;
}

.newsList{
	margin: 0 auto 80px;
}
.newsList .list{
	width: 100%;
	margin: 0 auto 80px;
}
.newsList .list li{
	width: 100%;
	height: 90px;
	box-sizing: border-box;
	border-bottom: 1px solid #EAEDEF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.newsList .list li .left{
	display: flex;
	justify-content: flex-start;
}
.newsList .list li .left .date{
	width: 124px;
	margin-right: 60px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #666666;
}
.newsList .list li .left .title{
	width: 800px;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #333333;
}
.newsList .list li img{
	width: 8px;
	height: 12px;
}
.newsList .list li:hover .title{
	color: #009EF1;
}


.pageList{
	display: flex;
	justify-content: center;
	align-items: center;
}
.pageList ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.pageList ul li{
	width: 32px;
	height: 32px;
	border: 1px solid #D7D7D7;
	margin: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #999999;
	cursor: pointer;
}
.pageList ul li.noborder{
	border: 0;
}
.pageList ul li.active{
	border: 1px solid #009EF1;
	background: #009EF1;
	color: #ffffff;
}