.list-news{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	/* justify-content: space-between; */
}
.page-newslist-item{
	width: 32%;
	border-radius: 8px;
	overflow: hidden;
	margin-left: 2%;
	margin-bottom: 30px;
}
.page-newslist-item:nth-child(3n+1){
	margin-left: 0;
}
.page-newslist-item a{
	width: 100%;
	display: block;
	color: #333;
}
.page-newslist-img{
	height: auto;
	max-height: 345px;
	overflow: hidden;
}
.page-newslist-item img{
	width: 100%;
	max-width: 100%;
	transition: all 0.35s ease-out;
}
.page-newslist-item:hover img{
	transform: scale(1.1);
}
.page-newslist-desc{
	padding: 30px;
	background: #fbfbfb;
}
.page-newslist-desc span{
	font-size: 16px;
	color: #888;
	margin-bottom: 8px;
	display: block;
}
.page-newslist-desc h4{
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;
	height: 52px;
}
.page-newslist-item i{
	margin-top: 20px;
	color: #999999;
	display: block;
	font-size: 14px;
	font-style: normal;
	transition: all 0.45s ease-out;
}
.page-newslist-item:hover i{
	color: #00b7b8;
}
.page-newslist-item:hover{
	box-shadow: 2px 2px 6px #eee;
}


/*新闻详情*/
.page-news-show{
	display: flex;
	align-items: top;
	justify-content: space-between;
	margin-top: 30px;
}
.show-news{
	background: #fff;
	border-radius: 5px;
	padding: 50px 45px;
	box-shadow: 0 0 3px 3px rgb(0 0 0 / 4%);
	width: 75%;
}
.show-news-more{
	width: 23%;
}
.show-news-more a{
	display: block;
	background: #e6e6e6;
	/* background: #d7f1f1; */
	color: #454545;
	margin-bottom: 20px;
	padding: 30px 18px;
	transition: all 0.35s linear;
	border-radius: 5px;
}
.show-news-more a span{
	display: block;
	font-size: 14px;
	color: #888;
	padding-bottom: 8px;
}
.show-news-more a:hover{
	background: #d9d9d9;
	/* background: #00b7b8; */
	/* color: #fff; */
}
.show-news-title{
	text-align: center;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}
.show-news-title h3{
	font-size: 30px;
	line-height: 1.4;
	font-weight: normal;
	margin-bottom: 15px;
}
.show-news-title span{
	display: inline-block;
	color: #999999;
	padding: 0 10px;
}
.show-news-main{
	padding: 35px 0;
	border-bottom: 1px solid #eee;
	line-height: 28px;
}
.show-news-main::after{
	content: "";
	clear: both;
}
.show-news-main p{
	/* margin-bottom: 25px; */
}
.show-news-main p img{
	text-align: center;
	margin: 0 auto;
	display: block;
	max-width: 100%;
}
.show-news-prenext{
	padding-top: 25px;
}
.show-news-prenext p{
	padding: 5px 0;
}




@media screen and (max-width:900px) {
	
	
	.list-news{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.page-newslist-item{
		width: 100%;
		border-radius: 8px;
		overflow: hidden;
		margin-left: 0;
		margin-bottom: 15px;
	}
	.page-newslist-item:nth-child(3n+1){
		margin-left: 0;
	}
	.page-newslist-item a{
		width: 100%;
		display: block;
		color: #333;
	}
	.page-newslist-img{
		height: auto;
		overflow: hidden;
	}
	.page-newslist-item img{
		width: 100%;
		max-width: 100%;
		transition: all 0.35s ease-out;
	}
	.page-newslist-item:hover img{
		transform: scale(1.1);
	}
	.page-newslist-desc{
		padding: 15px;
		background: #fbfbfb;
	}
	.page-newslist-desc span{
		font-size: 13px;
		color: #888;
		margin-bottom: 5px;
		display: block;
	}
	.page-newslist-desc h4{
		font-size: 14px;
		line-height: 22px;
		font-weight: normal;
		height: auto;
	}
	.page-newslist-item i{
		margin-top: 10px;
		color: #999999;
		display: block;
		font-size: 12px;
		font-style: normal;
		transition: all 0.45s ease-out;
	}
	.page-newslist-item:hover i{
		color: #00b7b8;
	}
	.page-newslist-item:hover{
		box-shadow: 3px 3px 8px #eee;
	}
	
	
	/*新闻详情*/
	.show-news{
		background: #fff;
		border-radius: 8px;
		padding: 22px 18px;
		box-shadow: 0 0 3px 3px rgb(0 0 0 / 3%);
		width: 100%;
	}
	.show-news-title{
		text-align: center;
		padding-bottom: 10px;
		border-bottom: 1px solid #eee;
	}
	.show-news-title h3{
		font-size: 17px;
		line-height: 1.4;
		font-weight: normal;
		margin-bottom: 5px;
	}
	.show-news-title span{
		display: inline-block;
		color: #999999;
		padding: 0 8px;
		font-size: 12px;
	}
	.show-news-main{
		padding: 15px 0;
		border-bottom: 1px solid #eee;
		line-height: 24px;
		font-size: 13px;
	}
	.show-news-main p{
		/* margin-bottom: 12px; */
	}
	.show-news-main p img{
		text-align: center;
		margin: 0 auto;
		display: block;
		max-width: 100%;
	}
	.show-news-prenext{
		padding-top: 15px;
		font-size: 13px;
	}
	.show-news-prenext p{
		padding: 3px 0;
	}
	
	
}




