* {
	margin: 0;
	padding: 0;
	text-decoration: none!important;
}
.bannerList {
	/* min-width: 1200px; */
	height: 100px;
	/* box-shadow: 0px 6px 12px 1px rgba(170, 171, 176, 0.15);
	display: flex;
	justify-content: center;
	align-items: center; */
}

.bannerList .bannerListItem {
	/* min-width: 1200px; */
	width: 100%;
	height: 60px;
	box-shadow: 0px 6px 12px 1px rgba(170, 171, 176, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
}

.bannerList .bannerItem {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}

.bannerList .bannerItem .item {
	width: 150px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.bannerList .bannerItem .item a {
	text-align: center;
	font-size: 16px;
	font-family:Source Han Sans CN;
	/* font-weight: 300; */
	color: #6c6c6c;
}

.bannerList .bannerItem .item.active a {
	/* font-size: 15px; */
	/* font-weight: 500; */
	color: #3A5E81;
}

.bannerList .bannerItem .item.active .line {
	position: absolute;
	bottom: 0;
	width: 60px;
	height: 1.5px;
	background-color: #3A5E81;
	margin: 0 auto;
}
.newsList{
	padding: 0;
	margin-bottom: 100px;
}
.newsList>p{
	font-size: 21px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	margin-bottom: 50px;
}
.newsList .listItem{
	display: flex;
	background-color: #F5F5F5;
}
.newsList .listItem .left{
	width: 40%;
	
}
.newsList .listItem .left img{
	width: 100%;
}
.newsList .listItem .right{
	width: 60%;
}
.newsList .listItem .right p:nth-child(1){
	font-size: 12px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #333333;
	width: 70%;
	margin-left: 10%;
	margin-top: 5%;
}
.newsList .listItem .right p:nth-child(2){
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	width: 70%;
	margin-left: 10%;
}
.newsList .listItem .right p:nth-child(3){
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #999999;
	line-height: 21px;
	width: 80%;
	height: 23%;
	display: -webkit-box;    
	-webkit-box-orient: vertical;    
	-webkit-line-clamp: 3;    
	overflow: hidden; 
	margin-left: 10%;
	margin-bottom: 2%;
}
.newsList .listItem .right a{
	display: block;
	margin-left: 10%;
	width: 172px;
	height: 43px;
}
.newsList .listItem .right a button{
	width: 100%;
	height: 100%;
	background: #333333;
	border-radius: 4px;
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #FFFFFF;
	border: none;
	outline: none;
}
.newsContent{
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.newsContent .item{
	width: 32%;
	background: #FFFFFF;
	border: 1px solid #F6F7FB;
	margin-bottom: 40px;
}
.newsContent .item:nth-child(3n-1){
	margin: 0 2%;
	margin-bottom: 40px;
}
.newsContent .item .img{
	width: 90%;
	height: 201px;
	display: block;
	margin: 0 auto;
	margin-top: 4%;
	margin-bottom: 20px;
	overflow: hidden;
}
.newsContent .item .img img{
	width: 100%;
	transition: 1s;
}
.newsContent .item:hover .img img{
	transform: scale(1.3);
	-ms-transform: scale(1.3);
	transition: 1s;
}
.newsContent .item p:nth-child(2){
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	width: 90%;
	display: block;
	margin: 0 auto;
	margin-bottom: 5px;
}
.newsContent .item p:nth-child(3){
	font-size: 13px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #333333;
	width: 90%;
	display: block;
	margin: 0 auto;
	margin-bottom: 35px;
}
.newsContent .item p:nth-child(4){
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #999999;
	line-height: 21px;
	width: 90%;
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}

@media screen and (max-width: 998px){
	.newsList .listItem .left img{
		height: 100%;
	}
	.newsList .listItem .right p:nth-child(2){
		margin-top: -15px;
	}

	.newsList .listItem .right p:nth-child(3){
		overflow: auto;
		-webkit-line-clamp: 23;
		height: 65px;
		margin-top: -21px;
	}
	.newsList .listItem .right p:nth-child(3)::-webkit-scrollbar{
		width: 1px;
	}
	.bannerList .bannerItem .item{
		width: 100px;
	}
}