
.news_nav_main{
	position: sticky;
	top: 0;
	width: 100%;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5%;
	height: 60px;
	background-color: #FFFFFF;
	border-bottom: 1px solid #e7e7e7;
	z-index: 100;
}
.news_nav_main .list{
	padding: 0 4%;
	height: 60px;
	display: flex;
	align-items: center;
}
.news_nav_main .list:hover {
	background: #4169e2;
	color: #fff;
}
.news_nav_main .list:hover a{
	color: #fff;
}
.news_nav_main .list.ons{
	/* border-bottom: 3px solid #4169e2; */
	background: #4169e2;
    color: #fff;
}

.news_nav_main .list a{
	font-size: 14px;
	color: #000;
	/* transition: all 0.5s; */
}
.news_nav_main .list.ons a{
	/* color: #4169e2; */
	color: #fff;
}

.main{
	padding: 0 8%;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
}
.good_news .swiper{
	padding-bottom: 46px;
}
.good_news .swiper .swiper-pagination-bullet{
	margin: 0 10px;
	padding-top: 8px;
	border-radius: 0;
	background: none;
	position: relative;
}
.good_news .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	position: absolute;
	content: "";
	width: 3px;
	height: 8px;
	background-color: #FF959D;
	top: 0;
	left: 0;
	transform: rotate(20deg);
}
.good_news .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::before{
	position: absolute;
	content: "";
	width: 3px;
	height: 8px;
	background-color: #4169e2;
	top: 0;
	right: 0;
	transform: rotate(20deg);
}
.good_news .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
	color: #4169e2;
}
.news .titles{
	margin: 25px 0;
	font-size: 24px;
}
.news .news_years{
	margin: 25px 0;
	font-size: 16px;
}
.news .news_years a{
	color: #333;
	margin-right: 10px;
}
.news .news_years a:hover{
	color: #4169e2;
}
.news .news_years .active{
	color: #4169e2;
}
.news .good_news .swiper-slide{
	display: flex;
	background-color: #F6F6F6;
}
.news .good_news .swiper-slide .img{
	width: 50%;
	overflow: hidden;
}
.news .good_news .swiper-slide .img img{
	width: 100%;
	max-width: 100%;
	transform: scale(1);
	transition: all 0.6s;
}
.news .good_news .swiper-slide:hover .img img{
	transform: scale(1.1);
}
.news .good_news .swiper-slide .text_main{
	width: 50%;
	padding: 40px 50px 30px;
}
.news .good_news .swiper-slide .name{
	font-size: 16px;
	color: #222222;
	margin-bottom: 25px;
	font-weight: 700;
}
.news .good_news .swiper-slide .time{
	font-size: 12px;
	color: #666666;
}
.news .good_news .swiper-slide .more{
	margin-top: 45px;
	background-color: #4169e2;
	clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
	cursor: pointer;
	height: 36px;
	position: relative;
	width: 110px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news .good_news .swiper-slide .more::after {
    background: #ff9800;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    width: 100%;
}
.news .good_news .swiper-slide .more:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.news .good_news .swiper-slide .more a{
	color: #FFF;
	position: relative;
	transition: all .4s cubic-bezier(.4,0,.2,1);
	z-index: 3;
}
.news .good_news .swiper-slide .more:hover a {
    letter-spacing: 2px;
}
.news .news_main{
	display: flex;
	flex-wrap: wrap;
}
.news .news_main .list{
	width: 24%;
	margin: 0 0.5%;
	margin-bottom: 30px;
	opacity: 0;
	background-color: #F6F6F6;
}
/* .news .news_main .list:nth-child(4n){
	margin-right: 0;
} */
.news .news_main .list .img{
	display: flex;
	align-items: center;
	width: 100%;
    aspect-ratio: 4/3;
	overflow: hidden;
}
.news .news_main .list .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	transform: scale(1);
}
.news .news_main .list:hover .img img{
	transform: scale(1.1);
}
.news .news_main .list .text_main{
	padding: 25px 30px;
}
.news .news_main .list .text_main .name{
	font-size: 16px;
	color: #222222;
	margin-bottom: 25px;
}
.news .news_main .list .text_main .name{
	font-size: 16px;
	color: #333;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news .news_main .list .text_main .time{
	font-size: 14px;
	color: #666666;
}  	
.news .news_main .list .text_main span:hover{
	color: #4169e2;
	font-weight: bold;
}
.news .story_main .list{
	display: flex;
	background-color: #F6F6F6;
	margin-bottom: 30px;
}
.news .story_main .list .img{
	width: 30%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	/* height: 285px; */
}
.news .story_main .list .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.6s;
	vertical-align: middle;
}
.news .story_main .list:hover .img img{
	transform: scale(1.1);
}
.news .story_main .list .text_main{
	width: 70%;
	padding: 40px 50px 30px;
}
.news .story_main .list .name{
	font-size: 24px;
	color: #222222;
	margin-bottom: 25px;
	font-weight: 700;
}
.news .story_main .list .time{
	font-size: 14px;
	color: #666666;
}
.news .story_main .list .text{
	font-size: 14px;
    color: #666;
    line-height: 28px;
    margin: 10px 0;
	display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden; 
}
.news .story_main .list .more{
	margin-top: 20px;
	background-color: #4169e2;
	clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
	cursor: pointer;
	height: 36px;
	position: relative;
	width: 110px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news .story_main .list .more::after {
    background: #ff9800;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    width: 100%;
}
.news .story_main .list .more:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.news .story_main .list .more a{
	color: #FFF;
	position: relative;
	transition: all .4s cubic-bezier(.4,0,.2,1);
	z-index: 3;
}
.news .story_main .list .more:hover a {
    letter-spacing: 2px;
}
.news.new{
	position: relative;
	height: 100%;
}
.news.new .swiper{
	width: 100%;
	height: 100vh;
	position: absolute;
}
.news.new .swiper-slide{
	position: relative;
	font-size: 18px;
	background: #fff;
}
 .news.new .swiper-slide .vh{
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
}
.news.new .swiper-slide .vh .boxs{
	width: 33%;
	background-color: #FFFFFF;
	margin-left: 4%;
	padding: 60px 30px;
}
.news.new .swiper-slide .vh .boxs .img{
	display: none;
}
.news.new .swiper-slide .vh .boxs .name{
	font-size: 24px;
	color: #4169e2;
}
.news.new .swiper-slide .vh .boxs .names{
	font-size: 12px;
	color: #333333;
	margin-top: 5px;
}
.news.new .swiper-slide .vh .boxs .text{
	font-size: 14px;
	color: #666666;
	margin-top: 30px;
}
.news.new .more{
	margin-top: 45px;
	background-color: #4169e2;
	clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
	cursor: pointer;
	height: 36px;
	position: relative;
	width: 110px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.news.new .swiper-slide .more::after {
    background: #ff9800;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    width: 100%;
}
.news.new .swiper-slide .more:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.news.new .swiper-slide .more a{
	color: #FFF;
	position: relative;
	transition: all .4s cubic-bezier(.4,0,.2,1);
	z-index: 3;
}
.news.new .swiper-slide .more:hover a {
    letter-spacing: 2px;
}
.newsdetails{
	margin-top: 100px;
	margin-bottom: 60px;
}
.newsdetails .titles{
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}
.newsdetails .times{
	text-align: center;
	margin-top: 30px;
	font-size: 18px;
	color: #999999;
	padding-bottom: 30px;
	border-bottom: 1px solid #efefef;
}
.newsdetails .htmls{
	margin-top: 40px;
	text-align: justify;
	font-size: 16px;
	line-height: 2em;
}
.newsdetails .page{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}
.newsdetails .page a{
	color: #666666;
	font-size: 14px;
	display: block;
}
@media (max-width: 1200px){
	
	.header .left .nav .list {
		margin: 0 5px;
	}
	.news .news_main .list{
		width: 31.33%;
        margin-left: 1%;
        margin-right: 1%;
	}
	
	
}
@media (max-width: 910px){
	.main{
		padding: 0 5%;
	}
	.news.new{
		margin-top: 50px;
	}
	.news.new .swiper-slide{
		height: auto;
	}
	.news.new .swiper-slide .vh{
		background: none!important;
		height: auto;
	}
	.news.new .swiper-slide .vh .boxs{
		margin: 0;
		padding: 5%;
		width: 100%;
	}
	.news.new .swiper-slide .vh .boxs .img{
		display: block;
	}
	.news.new .swiper-slide .vh .boxs .name{
		font-size: 16px;
	}
	.news.new .swiper-slide .vh .boxs .names{
		font-size: 12px;
	}
	.news.new .swiper-slide .vh .boxs .text{
		font-size: 12px;
		margin-top: 5%;
	}
	.news.new .more{
		margin-top: 5%;
		width: 80px;
		height: 30px;
		font-size: 10px;
	}
	.news .good_news .swiper-slide{
		flex-wrap: wrap;
	}
	.news .good_news .swiper-slide .img{
		width: 100%;
	}
	.news .good_news .swiper-slide .text_main{
		width: 100%;
		padding: 5%;
	}
	.news .good_news .swiper-slide .name{
		font-size: 14px;
		margin-bottom: 5%;
	}
	.news .good_news .swiper-slide .time{
		font-size: 10px;
	}
	.news .good_news .swiper-slide .more{
		margin-top: 5%;
		width: 80px;
		height: 30px;
		font-size: 10px;
	}
	.news .titles{
		font-size: 16px;
	}
	.news .news_main .list{
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
	}
	.news .news_main .list .text_main{
		padding: 5%;
	}
	.news .news_main .list .text_main .name{
		margin-bottom: 5%;
	}
	.news_nav_main{
		height: 50px;
	}
	.news_nav_main .list{
		height: 50px;
		/* margin: auto; */
		padding: 0 3%;
	}
	.news .story_main .list{
		flex-wrap: wrap;
	}
	.news .story_main .list .img{
		width: 100%;
		height: auto;
		aspect-ratio: unset;
	}
	.news .story_main .list .img img{
		height: auto;
	}
	.news .story_main .list .text_main{
		width: 100%;
		padding: 5%;
	}
	.news .story_main .list .name{
		font-size: 20px;
		color: #222222;
		margin-bottom: 20px;
		font-weight: 700;
	}
	.news .story_main .list .time{
		/* font-size: 10px; */
	}
	.news .story_main .list .more{
		margin-top: 20px;
        /* width: 100px; */
        height: 36px;
        font-size: 14px;
	}
	.newsdetails{
		margin-top: 15%;
		margin-bottom: 5%;
	}
	.newsdetails .titles{
		text-align: center;
		font-size: 18px;
		font-weight: bold;
	}
	.newsdetails .times{
		text-align: center;
		margin-top: 5%;
		font-size: 14px;
		color: #999999;
		padding-bottom: 5%;
		border-bottom: 1px solid #efefef;
	}
	.newsdetails .htmls{
		margin-top: 0;
		text-align: justify;
		font-size: 14px;
	}
	.newsdetails .page{
		margin-top: 5%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.newsdetails .page a{
		color: #666666;
		font-size: 12px;
		width: 100%;
	}
}