﻿@font-face {
	font-family: 'Century GothicR';
	src: url('../font/GOTHIC.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Century GothicB';
	src: url('../font/GOTHICB.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'OPPOSansB';
	src: url('../font/OPPOSansB.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'OPPOSansM';
	src: url('../font/OPPOSansM.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'OPPOSansL';
	src: url('../font/OPPOSansL.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'OPPOSansR';
	src: url('../font/OPPOSansR.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
*{
	margin: 0;
	padding: 0;
}
body{
	font-family: 'OPPOSansR';
 	background:#323136;
	overflow-x: hidden;
	overflow-y: scroll;
	box-sizing: border-box;
}
.sybody{
	overflow-x: hidden;
	overflow-y: hidden;
}
ul,li{
	list-style: none;
	margin: 0;
	padding: 0
}
a:hover{
	color: #0f3f9c;
}
.clear{
	clear:both; 
    height: 0; 
    line-height: 0; 
    font-size: 0;
}
.box{
	width: 1580px;
	margin: 0 auto;
}
.header{
	width: 100%;
	height: 100px;
	line-height: 100px;
	position: fixed;
	top: 0;
	z-index: 30;
	transition: all .6s linear;
	-webkit-transition: all .6s linear;
	-moz-transition: all .6s linear;
	-o-transition: all .6s linear;
}
.header .box{
	display: flex;
	justify-content: space-between;
}
.logo{
	width: 190px;
}
.logo img{
	margin-top: 26px;
}
.nav{
	width: 60%;
}
.nav ul{
	display: flex;
	justify-content: space-between;
}
.nav ul li a{
	color: #fff;
	font-size: 18px;
	display: block;
	position: relative;
}
.nav ul li .search-icon{
	width: 24px;
	height: 24px;
	margin-top: 38px;
	cursor: pointer;
}
.header.active{
	background: #242427;
	transition: all .6s linear;
	-webkit-transition: all .6s linear;
	-moz-transition: all .6s linear;
	-o-transition: all .6s linear;
}
.nav ul li a::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	left: 0;
	bottom: 0px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.nav ul li:hover a::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.sjheader{
	display: none;
	width: 100%;
	height: 60px;
	background: #242427;
	position: fixed;
	z-index: 40;
	top: 0;
}
.sjheader .box{
	display: flex;
	justify-content: space-between;
}
.sjlogo{
	width: 130px;
}
.sjlogo img{
	width: 100%;
	margin-top: 13px;
}
.sjheader .nav-icon{
	width: 40px;
	height: 40px;
	margin-top: 10px;
}
.search{
	width: 100%;
	height: 120px;
	padding: 36px 0;
	box-sizing: border-box;
	background: #242427;
	position: fixed;
	top: 0;
	z-index: 40;
	transform: translateY(-120px);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	overflow: hidden;
}
.search.active{
	transform: translateY(0);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.search form{
	display: flex;
	justify-content: center;
	align-items: center;
}
.search input{
	outline: none;
	border: none;
	background: none;
}
.search .inpt{
	width: 552px;
	height: 48px;
	padding-left: 20px;
	background: #fff;
	box-sizing: border-box;
}
.search .inpt::-webkit-input-placeholder{
	color: #AAA;
	font-size: 16px;
}
.search .sub{
	width: 48px;
	height: 48px;
	background: #fff url(../image/icon2.png) no-repeat center;
	background-size: 24px;
	cursor: pointer;
}
.search .sub:hover{
	background: #fff url(../image/icon13.png) no-repeat center;
}
.search .close{
	width: 24px;
	height: 24px;
	margin-left: 30px;
	cursor: pointer;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.search .close:hover{
	transform: rotate(180deg);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.sjnav{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 40;
	transform: translateX(100%);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.sjnav ul{
	width: 60%;
	height: 100%;
	background: #242427;
	float: right;
	padding: 60px 30px 0;
	box-sizing: border-box;
}
.sjnav ul img{
	max-width: 80%;
	margin: 40px 0;
}
.sjnav ul .close{
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
	margin: 0;
}
.sjnav ul li{
	width: 100%;
	padding: 20px 0;
	font-size: 18px;
	color: #fff;
	font-family: 'OPPOSansM';
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sjnav ul li a{
	color: #fff;
}
.sjnav.active{
	transform: translateX(0);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.scollTop{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #242427;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 40;
	cursor: pointer;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.scollTop:hover{
	background: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-wrap{
	width: 100%;
	height: 100%;
	background: url(../image/bg.jpg) no-repeat center top;
	background-size: 100% auto;
}
.index-banner{
	width: 1204px;
	margin: 0 auto;
	padding: 455px 0 220px;
}
.index-banner .cont{
	width: 580px;
}
.index-banner h2{
	color: #FFF;
	font-size: 64px;
	font-family: 'OPPOSansB';
	margin-bottom: 15px;
}
.index-banner h3{
	color: #FFF;
	font-size: 24px;
	font-family: 'Century GothicB';
	word-break: break-word;
}
.index-banner span{
	display: block;
	width: 152px;
	height: 1px;
	background: #fff;
	margin: 30px 0;
}
.index-banner p{
	color: #FFF;
	font-size: 18px;
	line-height: 36px;
	margin-bottom: 40px;
}
.btnmore{
	width: 180px;
	height: 50px;
	line-height: 50px;
	padding-right: 22px;
	box-sizing: border-box;
	text-align: center;
	border-radius: 50px;
	background: #F1A730;
	display: block;
	position: relative;
	overflow: hidden;
}
.btnmore a{
	display: block;
	color: #fff;
	font-size: 18px;
	font-family: 'Century GothicR';
	position: relative;
	z-index: 15;
}
.btnmore::after{
	content: "";
	width: 18px;
	height: 18px;
	background: url(../image/icon4.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -9px;
	z-index: 15;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.btnmore:hover a{
	color: #F1A730;
}
.btnmore::before{
	content: " ";
	background: #fff;
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	border-radius: 50px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.btnmore:hover::before{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.btnmore:hover::after{
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	right: 24px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal{
	padding: 203px 0 126px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-hqal-left{
	width: 200px;
}
.index-hqal-left p{
	font-family: 'Century GothicB';
	color: #FFF;
	font-size: 34px;
	line-height: 40px;
	text-align: right;
}
.index-hqal-left h2{
	color: #FFF;
	text-align: right;
	line-height: 40px;
	font-size: 48px;
	font-family: 'OPPOSansM';
	margin-top: 18px;
}
.index-hqal-left ul{
	margin: 77px 0 73px;
}
.index-hqal-left ul li{
	text-align: right;
	margin-top: 16px;
}
.index-hqal-left ul li h3{
	color: #F1A730;
	font-family: 'Century GothicB';
	font-size: 34px;
}
.index-hqal-left ul li h4{
	color: #fff;
	font-size: 20px;
	word-break: break-all;
}
.index-hqal-left .btnmore{
	float: right;
}
.index-hqal-cont{
	width: calc(100% - 340px);
	padding-top: 110px;
	position: relative;
}
.index-hqal-cont .swiper-slide{
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .imgbox{
	width: 100%;
	height: 360px;
	overflow: hidden;
}
.index-hqal-cont .imgbox img{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz{
	height: 280px;
	padding: 30px 10px 20px;
	box-sizing: border-box;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz h2{
	color: #fff;
	font-size: 27px;
	font-family: 'Century GothicB';
	width: 100%;
	height: 35px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz h3{
	color: #fff;
	font-size: 32px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz p{
	color: #fff;
	font-size: 18px;
	opacity: .7;
	line-height: 28px;
	margin-top: 22px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.index-hqal-cont .wz span{
	color: #F1A730;
	font-size: 18px;
	font-family: 'Century GothicR';
	margin-top: 48px;
	display: block;
	position: relative;
}
.index-hqal-cont .swiper-slide:hover .imgbox img{
	transform: scale(1.1,1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover{
	background: #414146;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover .wz{
	padding: 30px 30px 20px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left:0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover .wz::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .wz span::after{
	content: "";
	width: 0;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 105px;
	top: 50%;
	margin-top: -9px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover .wz span::after{
	width: 18px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover .wz h2{
	font-size: 20px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-slide:hover .wz h3{
	font-size: 42px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont::before{
	content: "";
	width: 76%;
	height: 1px;
	background: rgba(255, 255, 255, 0.50);
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: -38%;
}
.index-hqal-cont .swiper-button-prev,
.index-hqal-cont .swiper-button-next{
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: rgba(255, 255, 255, 0.80);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-button-prev{
	background-image: url(../image/prev.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 26px;
	left: 0;
}
.index-hqal-cont .swiper-button-next{
	background-image: url(../image/next.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 26px;
	left: 68px;
}
.index-hqal-cont .swiper-button-prev:hover,
.index-hqal-cont .swiper-button-next:hover{
	background: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqal-cont .swiper-button-prev:hover{
	background-image: url(../image/prev2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqal-cont .swiper-button-next:hover{
	background-image: url(../image/next2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqal-cont .swiper-num{
	position: absolute;
	right: 80px;
	top: 20px;
}
.index-hqal-cont .swiper-num span{
	color: #fff;
	font-family: 'Century GothicR';
	font-size: 18px;
}
.index-gsjs{
	width: 100%;
	padding: 79px 0 201px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	background: url(../image/bg2.png) no-repeat right bottom;
}
.index-gsjs-left{
	width: 41.7vw;
	height: 41.7vw;
	position: relative;
}
.index-gsjs-left .imgbox{
	width: 100%;
	height: 41.7vw;
}
.index-gsjsleft-scoll{
	width: 100%;
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-gsjsleft-scoll li{
	width: 33%;
	text-align: center;
}
.index-gsjsleft-scoll li h5{
	color: #fff;
	font-size: 18px;
}
.index-gsjsleft-scoll li h4{
	color: #fff;
	font-size: 72px;
	font-family: 'Century GothicB';
	position: relative;
	margin-bottom: 60px;
}
.index-gsjsleft-scoll li h4 span.wz{
	font-size: 20px;
	font-family: 'Century GothicR';
	position: absolute;
	top: 14px;
	padding-left: 6px;
}
.index-gsjsleft-scoll li h4 span.ja{
	font-size: 32px;
	position: absolute;
	top: 14px;
	padding-left: 6px;
}
.index-gsjs-cont{
	width: 42.4vw;
	margin-left: 124px;
	margin-top: 30px;
}
.index-gsjs-cont h2{
	color: #fff;
	font-size: 64px;
	font-family: 'Century GothicB';
	line-height: 72px;
	width: 468px;
	margin-bottom: 12px;
}
.index-gsjs-cont h3{
	color: #fff;
	font-size: 48px;
	font-family: 'OPPOSansM';
	margin-bottom: 90px;
}
.index-gsjs-cont p{
	color: #fff;
	font-size: 20px;
	line-height: 40px;
	margin-bottom: 146px;
}
.index-hqyw{
	padding: 90px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-hqyw-left{
	width: 246px;
	text-align: right;
}
.index-hqyw-left h2{
	color: #fff;
	font-size: 34px;
	font-family: 'Century GothicB';
	word-break: break-all;
	line-height: 40px;
	margin-bottom: 18px;
}
.index-hqyw-left h3{
	color: #fff;
	font-size: 48px;
	font-family: 'OPPOSansM';
	margin-bottom: 43px;
}
.index-hqyw-left ul li{
	margin-top: 30px;
	cursor: pointer;
}
.index-hqyw-left ul li span{
	color: #fff;
	font-size: 20px;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-left ul li.active span,
.index-hqyw-left ul li:hover span{
	color: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-left ul li span::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	right: 0;
	bottom: -6px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-left ul li.active span::after,
.index-hqyw-left ul li span:hover::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-left .btnmore{
	float: right;
	margin-top: 110px;
	display: none;
}
.index-hqyw-left .btnmore.sh{
	display: block;
}
.index-hqyw-cont{
	width: calc(100% - 393px);
}
.index-hqyw-cont .item{
	width: 100%;
	display: none;
}
.index-hqyw-cont .item.show{
	display: block;
}
.index-hqyw-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-hqyw-list li{
	width: 40.5%;
	height: 480px;
	margin-bottom: 2.5%;
	overflow: hidden;
	position: relative;
}
.index-hqyw-list li .imgbox{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 1;
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-list li:nth-child(4),
.index-hqyw-list li:nth-child(1){
	width: 57%;
}
.index-hqyw-list li::after{
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(4, 0, 0, 0.00) 0%, rgba(4, 0, 0, 0.70) 100%);
	position: absolute;
	top: 0;
	transform: translateY(76%);
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-list li .wz{
	width: 100%;
	height: 100%;
	padding: 0 5%;
	box-sizing: border-box;
	color: #fff;
	transform: translateY(76%);
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	position: relative;
	z-index: 2;
}
.index-hqyw-list li .wz .top{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.index-hqyw-list li .wz h4{
	font-size: 72px;
}
.index-hqyw-list li .wz .ri{
	margin: 16px 0 0 8px;
	width: 80%;
}
.index-hqyw-list li .wz h2{
	font-size: 32px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	display:block; 
}
.index-hqyw-list li .wz h3{
	font-size: 16px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	display:block; 
}
.index-hqyw-list li .wz p{
	font-size: 16px;
	line-height: 28px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
	margin-top: 15px;
}
.index-hqyw-list li .wz span{
	color: #F1A730;
	font-size: 18px;
	margin-top: 18px;
	display: block;
	position: relative;
	font-family: 'Century GothicR';
}
.index-hqyw-list li .wz span::after{
	content:"";
	width: 18px;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 104px;
	top: 50%;
	margin-top: -9px;
}
.index-hqyw-list li:hover .imgbox{
	transform: scale(1.1,1.1);
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-list li:hover .wz{
	transform: translateY(50%);
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-list li:hover::after{
	transform: translateY(0);
	transition: all .4s ease;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-cont .item{
	padding-top: 110px;
	position: relative;
}
.index-hqyw-cont .item::before{
	content: "";
	width: 76%;
	height: 1px;
	background: rgba(255, 255, 255, 0.50);
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: -38%;
}
.index-hqyw-cont .swiper-button-prev,
.index-hqyw-cont .swiper-button-next{
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: rgba(255, 255, 255, 0.80);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-cont .swiper-button-prev{
	background-image: url(../image/prev.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 26px;
	left: 0;
}
.index-hqyw-cont .swiper-button-next{
	background-image: url(../image/next.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 26px;
	left: 68px;
}
.index-hqyw-cont .swiper-button-prev:hover,
.index-hqyw-cont .swiper-button-next:hover{
	background: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-cont .swiper-button-prev:hover{
	background-image: url(../image/prev2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqyw-cont .swiper-button-next:hover{
	background-image: url(../image/next2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqyw-cont .swiper-num{
	position: absolute;
	right: 80px;
	top: 20px;
}
.index-hqyw-cont .swiper-num span{
	color: #fff;
	font-family: 'Century GothicR';
	font-size: 18px;
}
.index-hqyw-sjcont{	
	width: 100%;
	display: none;
}
.index-hqyw-sjcont .item{
	display: none;
	padding-top: 92px;
	position: relative;
}
.index-hqyw-sjcont .item.active{
	display: block;
}
.index-hqyw-sjcont .imgbox{
	width: 100%;
	height: 84vw;
}
.index-hqyw-sjcont .wz{
	padding: 20px;
	background: linear-gradient(180deg, rgba(4, 0, 0, 0.00) 0%, rgba(4, 0, 0, 0.70) 100%);
	position: absolute;
	bottom: 0;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	box-sizing: border-box;
}
.index-hqyw-sjcont .wz h4{
	color: #fff;
	font-size: 36px;
}
.index-hqyw-sjcont .wz .ri{
	margin: 3px 0 0 8px;
	width: 80%;
}
.index-hqyw-sjcont .wz .ri h2{
	color: #fff;
	font-size: 18px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.index-hqyw-sjcont .wz .ri h3{
	color: #fff;
	font-size: 12px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.index-hqyw-sjcont .item::before{
	content: "";
	width: 50%;
	height: 1px;
	background: rgba(255, 255, 255, 0.50);
	position: absolute;
	top:20px;
	left: 50%;
	margin-left: -25%;
}
.index-hqyw-sjcont .swiper-button-prev,
.index-hqyw-sjcont .swiper-button-next{
	width: 32px;
	height: 32px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.80);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-sjcont .swiper-button-prev{
	background-image: url(../image/prev.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 25px;
	left: 0;
}
.index-hqyw-sjcont .swiper-button-next{
	background-image: url(../image/next.png);
	background-repeat: no-repeat;
	background-position: center;
	top: 25px;
	left: 44px;
}
.index-hqyw-sjcont .swiper-button-prev:hover,
.index-hqyw-sjcont .swiper-button-next:hover{
	background: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqyw-sjcont .swiper-button-prev:hover{
	background-image: url(../image/prev2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqyw-sjcont .swiper-button-next:hover{
	background-image: url(../image/next2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.index-hqyw-sjcont .swiper-num{
	position: absolute;
	right: 10px;
    top: 8px;
}
.index-hqyw-sjcont .swiper-num span{
	color: #fff;
	font-family: 'Century GothicR';
	font-size: 18px;
}
.index-wrap2{
	width: 100%;
	background: url(../image/bg3.png) no-repeat center 85%;
	background-size: 100% auto;
}
.index-hqzx{
	padding: 160px 0 97px;
}
.index-hqzx-head{
	width: 100%;
	margin-bottom: 100px;
	position: relative;
}
.index-hqzx-head h2{
	color: #fff;
	font-size: 64px;
	line-height: 72px;
	font-family: 'Century GothicB';
}
.index-hqzx-head h3{
	color: #fff;
	font-size: 48px;
	font-family: 'OPPOSansM';
	margin: 12px 0;
}
.index-hqzx-head p{
	color: #fff;
	font-size: 20px;
	opacity: .7;
}
.index-hqzx-head .btnmore{
	position: absolute;
	right: 0;
	bottom: 0;
}
.index-hqzx-cont{
	width: 100%;
}
.index-hqzx-cont ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-hqzx-cont ul li{
	width: 33.3%;
	padding: 60px;
	box-sizing: border-box;
	height: 730px;
	border-left: 1px solid rgba(255, 255, 255, 0.10);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	position: relative;
}
.index-hqzx-cont ul li:last-child{
	border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.index-hqzx-cont ul li .imgbox{
	width: 100%;
	height: 260px;
	overflow: hidden;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li .wz{
	width: 100%;
	margin-top: 40px;
}
.index-hqzx-cont ul li .wz h4{
	display: flex;
	justify-content: space-between;
	line-height: 29px;
}
.index-hqzx-cont ul li .wz .time{
	color: #fff;
	font-size: 24px;
	font-family: 'Century GothicB';	
}
.index-hqzx-cont ul li .wz .lm{
	color: #F1A730;
	font-size: 16px;
}
.index-hqzx-cont ul li .wz h2{
	color: #fff;
	font-size: 22px;
	margin-top: 40px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
}
.index-hqzx-cont ul li .wz p{
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
	overflow:hidden;
	opacity: .7;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li .wz h3{
	color: #F1A730;
	font-size: 18px;
	font-family: 'Century GothicR';	
	margin-top: 53px;
	position: relative;
}
.index-hqzx-cont ul li:hover .wz h3::after{
	content:"";
	width: 18px;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 104px;
	top: 50%;
	margin-top: -9px;
}
.index-hqzx-cont ul li:hover{
	background: rgba(65, 65, 70, 0.7);
	padding: 50px 60px 70px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li:hover::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li:hover .wz h2{
	color: #F1A730;
}
.index-hqzx-cont ul li:hover .wz p{
	opacity: 1;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-cont ul li:hover .imgbox{
	background-size: 110% 110% !important;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.index-hqzx-sjcont{
	padding: 20px;
	box-sizing: border-box;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
	border-left: 1px solid rgba(255, 255, 255, 0.10);
	position: relative;
	display: none;
}
.index-hqzx-sjcont .imgbox{
	width: 100%;
	height: 48.8vw;
}
.index-hqzx-sjcont .wz{
	padding-top: 20px;
}
.index-hqzx-sjcont .wz h4{
	color: #fff;
	font-size: 16px;
	font-family: 'Century GothicB';	
	line-height: 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}
.index-hqzx-sjcont .wz h4 .lm{
	font-family: "OPPOSansR";
	font-size: 12px;
	color: #F1A730;
}
.index-hqzx-sjcont .wz h2{
	color: #fff;
	font-size: 15px;
	width: 100%;
	margin-bottom: 20px;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
}
.index-hqzx-sjcont .wz p{
	color: #fff;
	font-size: 12px;
	opacity: .7;
	line-height: 20px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
	overflow:hidden;
	margin-bottom: 35px;
}
.index-hqzx-sjcont .wz h3{
	color: #F1A730;
	font-size: 14px;
	font-family: 'Century GothicR';	
	position: relative;
}
.index-hqzx-sjcont .wz h3::after{
	content:"";
	width: 18px;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 95px;
	top: 50%;
	margin-top: -9px;
}
.index-hqzx-sjcont .swiper-pagination {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: -46px;
	z-index: 10;
	left: 0;
}
.index-hqzx-sjcont .swiper-pagination-bullet {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #73737A;;
	margin: 0 6px;
	cursor: pointer;
	opacity: 1;
}
.index-hqzx-sjcont .swiper-pagination-bullet-active {
	background: #F1A730;
}
.footer{
	padding-bottom: 30px;
}
.footer .top{
	padding: 121px 0 66px;
	background: url(../image/bg4.png) no-repeat center 57px;
	overflow: hidden;
}
.footer .top ul{
	float: left;
	margin-right: 150px;
}
.footer .top ul h2{
	color: #fff;
	font-size: 22px;
	margin-bottom: 8px;
}
.footer .top ul li{
	color: #fff;
	font-size: 18px;
	margin-top: 12px;
	opacity: .7;
	font-family: "OPPOSansL";
}
.footer .top ul li a{
	color: #fff;
}
.footer .top ul li a:hover{
	text-decoration: underline;
}
.footer .top .ewm{
	width: 120px;
	float: right;
	text-align: center;
}
.footer .top .ewm img{
	width: 120px;
}
.footer .top .ewm h2{
	color: #fff;
	font-size: 18px;
	margin-top: 12px;
}
.copyright{
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	line-height: 80px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.copyright p{
	color: #fff;
	font-size: 14px;
	opacity: .5;
}
.copyright p a{
	color: #fff;
}
.sjfooter{
	background: url(../image/sjbg3.png) no-repeat center 15px;
	display: none;
}
.sjfooter .top{
	padding: 20px 0;
}
.sjfooter .top h2{
	color: #fff;
	font-size: 22px;
	font-family: "OPPOSansM";
	margin-bottom: 20px;
}
.sjfooter .top p{
	color: #fff;
	font-size: 14px;
	opacity: .7;
	margin-bottom: 12px;
}
.sjfooter .top .ewm{
	width: 120px;
	text-align: center;
	margin-top: 12px;
}
.sjfooter .top .ewm img{
	width: 120px;
	height: 120px;
}
.sjfooter .top .ewm h3{
	color: #fff;
	font-size: 14px;
	margin-top: 12px;
}
.sjfooter .sjcopyright{
	padding: 15px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sjfooter .sjcopyright p{
	color: #fff;
	font-size: 12px;
	opacity: .5;
}
.sjfooter .sjcopyright p a{
	color: #fff;
	padding-left: 8px;
}
.nybanner{
	width: 100%;
	height: 50vw;
	text-align: center;
}
.nybanner h2{
	color: #fff;
	font-size: 72px;
	font-family: 'OPPOSansB';
	padding-top: 18.75vw;
}
.nybanner span{
	display: block;
	width: 140px;
	height: 5px;
	background: #F1A730;
	margin: 20px auto;
}
.nybanner h3{
	color: #fff;
	font-size: 72px;
	font-family: 'OPPOSansB';
}
.gsjs-gywm{
	padding: 120px 0 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-gywm-left{
	width: 51%;
}
.gsjs-gywm-left h3{
	color: rgba(255, 255, 255, 0.70);
	font-size: 24px;
	font-family: 'Century GothicR';
}
.gsjs-gywm-left b{
	display: block;
	width: 48px;
	height: 3px;
	background: #F1A730;
	margin: 12px 0;
}
.gsjs-gywm-left h2{
	color: #fff;
	font-family: 'OPPOSansM';
	font-size: 48px;
}
.gsjs-gywm-left p{
	color: #fff;
	font-size: 18px;
	line-height: 32px;
	margin-top: 50px;
}
.gsjs-gywmleft-scoll{
	width: 100%;
	margin-top: 64px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-gywmleft-scoll li h4{
	color: #F1A730;
	font-size: 72px;
	font-family: 'Century GothicB';
	position: relative;
}
.gsjs-gywmleft-scoll li h4 .wz{
	font-family: 'OPPOSansR';
	font-size: 20px;
	position: absolute;
	top: 15px;
	margin-left: 6px;
}
.gsjs-gywmleft-scoll li h4 .ja{
	font-size: 32px;
	position: absolute;
	top: 15px;
	margin-left: 6px;
}
.gsjs-gywmleft-scoll li h5{
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.gsjs-gywm-imgbox{
	width: 560px;
	height: 560px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	padding: 30px;
	box-sizing: border-box;
	overflow: hidden;
}
.gsjs-gywm-imgbox img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.gsjs-qywh{
	padding: 110px 0 70px;
}
.nyhead{
	width: 100%;
}
.nyhead h2{
	color: rgba(255, 255, 255, 0.70);
	font-size: 24px;
	font-family: 'Century GothicR';
}
.nyhead b{
	display: block;
	width: 48px;
	height: 3px;
	background: #F1A730;
	margin: 12px 0;
}
.nyhead h3{
	color: #fff;
	font-family: 'OPPOSansM';
	font-size: 48px;
}
.gsjs-qywh-cont{
	margin-top: 72px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-qywh-cont .le{
	width: 59.5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-qywh-cont .le .item{
	width: 48%;
	height: 174px;
	background: #414146;
	margin-bottom: 40px;
	padding: 0 50px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gsjs-qywh-cont .le .item:last-child{
	width: 100%;
}
.gsjs-qywh-cont .le .item img{
	width: 72px;
}
.gsjs-qywh-cont .le .item .wz{
	width: calc(100% - 102px);
}
.gsjs-qywh-cont .le .item .wz h2{
	color: #F1A730;
	font-size: 24px;
}
.gsjs-qywh-cont .le .item .wz p{
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	margin-top: 12px;
}
.gsjs-qywh-cont .ri{
	width: 37.97%;
	height: 388px;
	background: #414146;
	padding: 50px;
	box-sizing: border-box;
}
.gsjs-qywh-cont .ri h2{
	color: #F1A730;
	font-size: 24px;
	margin-top: 30px;
}
.gsjs-qywh-cont .ri p{
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	margin-top: 12px;
}
.gsjs-ppbj{
	padding: 110px 0 85px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-ppbj-left{
	width: 282px;
}
.gsjs-ppbj-left .nyhead{
	margin-bottom: 46px;
}
.gsjs-ppbj-left p{
	color: #fff;
	font-size: 20px;
	line-height: 36px;
}
.gsjs-ppbjleft-scoll{
	margin-top: 74px;
}
.gsjs-ppbjleft-scoll li{
	width: 100%;
	margin-bottom: 16px;
}
.gsjs-ppbjleft-scoll li h4{
	color: #F1A730;
	font-size: 34px;
	font-family: 'Century GothicB';
}
.gsjs-ppbjleft-scoll li h5{
	color: #fff;
	font-size: 20px;
}
.gsjs-ppbj-map{
	width: calc(100% - 380px);
}
.gsjs-ppbj-map img{
	max-width: 100%;
}
.fsjs-hqls{
	padding: 110px 0 140px;
	background: url(../image/bg5.jpg) no-repeat center;
	background-size: cover;
}
.fsjs-hqls-cont{
	width: 100%;
}
.fsjs-hqls-cont ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.fsjs-hqls-cont ul li{
	width: 290px;
	padding-left: 50px;
	background: url(../image/icon6.png) no-repeat left 26px;
}
.fsjs-hqls-cont ul li:nth-child(1){
	margin-top: 172px;
}
.fsjs-hqls-cont ul li:nth-child(3){
	margin-top: 106px;
}
.fsjs-hqls-cont ul li h2{
	color: #fff;
	font-size: 56px;
	font-family: 'Century GothicB';
	margin-bottom: 24px;
}
.fsjs-hqls-cont ul li p{
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 20px;
}
.nybanner2{
	width: 100%;
	height: 41.7vw;
}
.nybanner2 .box{
	height: 41.7vw;
	position: relative;
}
.nyhead2{
	position: absolute;
	bottom: 72px;
}
.nyhead2 h2{
	color: #fff;
	font-size: 96px;
	font-family: 'Century GothicB';
}
.nyhead2 b{
	display: block;
	width: 48px;
	height: 3px;
	background: #F1A730;
	margin: 12px 0;
}
.nyhead2 h3{
	color: #fff;
	font-size: 48px;
	font-family: 'OPPOSansM';
}
.nav-two{
	position: absolute;
	bottom: 72px;
	right: 0;
}
.nav-two ul{
	display: flex;
	flex-wrap: wrap;
}
.nav-two ul li{
	 margin-left: 60px;
}
.nav-two ul li a{
	color: #fff;
	font-size: 20px;
	position: relative;
}
.nav-two ul li a::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: -4px;
	left: 0;
}
.nav-two ul li.on a,
.nav-two ul li a:hover{
	color: #F1A730;
}
.nav-two ul li.on a::after,
.nav-two ul li a:hover::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.nywrap{
	margin-top: 8px;
}
.hqywlist .item{
	width: 100%;
	margin-bottom: 60px;
}
.hqywlist .item a{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.hqywlist .item:nth-child(even) a{
	flex-direction: row-reverse;
}
.hqywlist .item .imgbox{
	width: 50%;
	height: 526px;
	overflow: hidden;
}
.hqywlist .item .imgbox img{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item .wz{
	width: 50%;
	height: 526px;
	padding: 70px 70px 0;
	box-sizing: border-box;
	background: #414146;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item .wz span{
	color: #F1A730;
	font-size: 16px;
	margin-bottom: 18px;
	display: block;
}
.hqywlist .item .wz h2{
	color: #fff;
	font-size: 32px;
	font-family: 'OPPOSansM';
}
.hqywlist .item .wz b{
	width: 64px;
	height: 2px;
	background: #F1A730;
	margin: 24px 0;
	display: block;
}
.hqywlist .item .wz h3{
	color: #fff;
	opacity: .08;
	font-size: 96px;
	font-style: italic;
	font-family: 'Century GothicR';
	position: absolute;
	right: 70px;
	top: 70px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item .wz p{
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 26px;
}
.hqywlist .item .wz h4{
	color: #F1A730;
	font-size: 18px;
	position: absolute;
	left: 70px;
	bottom: 70px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item:hover .imgbox img{
	transform: scale(1.1,1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
} 
.hqywlist .item:hover .wz{
	background: #242427;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	padding: 70px 60px 0 80px;
}
.hqywlist .item .wz::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item:hover .wz::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item:hover .wz h4{
	left: 80px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqywlist .item:hover .wz h4::after{
	content: "";
	width: 18px;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 104px;
	margin-top: -9px;
}
.hqywlist .item:hover .wz h3{
	right: 60px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.loaction{
	padding-top: 31.8vw;
}
.loaction p{
	color: #fff;
	font-size: 16px;
}
.loaction p a{
	color: #fff;
	margin: 0 10px;
}
.loaction p a:hover{
	color: #F1A730;
}
.hqywdeta-ywjs{
	padding-bottom: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.hqywdeta-ywjs-left{
	width: 43.7%;
}
.hqywdeta-ywjs-left h2{
	color: #fff;
	font-size: 48px;
	font-family: 'OPPOSansM';
}
.hqywdeta-ywjs-left b{
	display: block;
	width: 64px;
	height: 2px;
	background: #F1A730;
	margin: 27px 0;
}
.hqywdeta-ywjs-left p{
	color: #fff;
	font-size: 20px;
	line-height: 36px;
	margin-bottom: 30px;
}
.hqywdeta-ywjs-imgbox{
	width: 50%;
}
.hqywdeta-ywjs-imgbox img{
	width: 100%;
}
.hqywdeta-list,
.hqywdeta-nr{
	padding: 80px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.hqywdeta-nr h2{
	color: #F1A730;
	font-size: 36px;
	font-family: 'OPPOSansM';
	margin-bottom: 20px;
}
.hqywdeta-nr p{
	color: #fff;
	font-size: 20px;
	line-height: 36px;
}
.hqywdeta-nr img{
	max-width: 100%;
	margin-bottom: 100px;
}
.hqywdeta-list h2{
	color: #F1A730;
	font-size: 32px;
	line-height: 36px;
	margin-bottom: 20px;
	font-family: 'OPPOSansM';
}
.hqywdeta-list p{
	color: #fff;
	font-size: 20px;
	line-height: 26px;
}
.hqywdeta-list .cont ul{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 54px;
}
.hqywdeta-list .cont ul li{
	width: 30%;
	margin-right: 5%;
	margin-bottom: 35px;
}
.hqywdeta-list .cont ul li:nth-child(3n+3){
	margin-right: 0;
}
.hqywdeta-list ul li img{
	width: 100%;
	height: 320px;
}
.hqywdeta-list ul li h4{
	color: #F1A730;
	font-size: 24px;
	margin-top: 20px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.hqywdeta-list ul li h3{
	color: #fff;
	font-size: 18px;
	margin-top: 14px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.hqywdeta-list2{
	border-bottom: none;
}
.anli ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.anli ul li{
	width: 32%;
	height: 335px;
	margin-right: 2%;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
}
.anli ul li:nth-child(3n + 3){
	margin-right: 0;	
}
.anli ul li img{
	width: 100%;
	height: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.anli ul li .wz{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(65, 65, 70,.9);
	padding: 25px;
	box-sizing: border-box;
	opacity: 0;
}
.anli ul li .wzcont{
	width: 100%;
	height: 100%;
	border:2px solid #F1A730;
	box-sizing: border-box;
	text-align: center;
}
.anli ul li .wzcont h2{
	color: #F1A730;
	font-size: 16px;
	margin-top: 75px;
}
.anli ul li .wzcont b{
	width: 4px;
	height: 4px;
	background: #F1A730;
	margin: 6px auto;
	display: block;
}
.anli ul li .wzcont p{
	color: #fff;
	font-size: 20px;
	width: 100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.anli ul li .wzcont h3{
	width: 48px;
	height: 48px;
	background: url(../image/icon7.png) no-repeat center;
	background-size: cover;
	margin: 27px auto 0;
}
.anli ul li:hover img{
	transform: scale(1.1,1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.anli ul li:hover .wz{
	opacity: 1;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.nywrap2{
	width: 1400px;
	margin: 0 auto;
	min-height: 100vh;
	padding-bottom: 170px;
	box-sizing: border-box;
}
.anlideta{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 150px;
	box-sizing: border-box;
}
.anlideta-left{
	width: 60%;
}
.anlideta-left .bigimg{
	width: 100%;
}
.anlideta-left .bigimg img{
	width: 100%;
}
.anlideta-left-smallimg{
	width: 100%;
	margin-top: 30px;
}
.anlideta-left-smallimg .swiper-slide{
	height: 100px;
	overflow: hidden;
}
.anlideta-left-smallimg .swiper-slide img{
	width: 100%;
}
.anlideta-left-smallimg .swiper-slide-active{
	border: 2px solid #F1A730;
	box-sizing: border-box;
}
.anlideta-cont{
	width: 34.3%;
	height: 75vh;
	overflow: hidden;
	overflow-y: scroll;
	padding-right: 20px;
}
.anlideta-cont::-webkit-scrollbar-track-piece {
	background-color: rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.anlideta-cont::-webkit-scrollbar {
	width: 3px;
	height: 13px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.anlideta-cont::-webkit-scrollbar-thumb {
	background-color: #fff;
	background-clip: padding-box;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	min-height: 28px;
}
.anlideta-cont::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.anlideta-cont .head{
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	position: relative;
}
.anlideta-cont .head span{
	color: #F1A730;
	font-size: 16px;
}
.anlideta-cont .head h2{
	color: #fff;
	font-size: 32px;
	margin-top: 12px;
}
.anlideta-cont .head::after{
	content: "";
	width: 64px;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left: 0;
}
.anlideta-cont .nr{
	width: 100%;
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
}
.detaClose{
	width: 48px;
	height: 48px;
	background: url(../image/icon8.png) no-repeat center;
	background-size: cover;
	position: absolute;
	right: 42px;
	top: 42px;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.detaClose a{
	display: block;
	width: 100%;
	height: 100%;
}
.detaClose:hover{
	background: url(../image/icon9.png) no-repeat center;
	transform: rotate(180deg);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.hqzj ul li{
	width: 31%;
	height: 585px;
	padding: 50px 40px;
	box-sizing: border-box;
	background: #fff;
	margin-right: 3.5%;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li:nth-child(3n + 3){
	margin-right: 0;
}
.hqzj ul li .imgbox{
	width: 320px;
	height: 320px;
	border-radius: 50%;
	margin: 0 auto;
	overflow: hidden;
}
.hqzj ul li .imgbox img{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li h2{
	color: #040000;
	font-size: 22px;
	margin-top: 30px;
	font-family: 'OPPOSansM';
}
.hqzj ul li b{
	display: block;
	width: 20px;
	height: 1px;
	background: #F1A730;
	margin: 10px auto;
}
.hqzj ul li p{
	color: #040000;
	font-size: 16px;
	opacity: .7;
}
.hqzj ul li span{
	display: block;
	width: 24px;
	height: 24px;
	background: url(../image/icon11.png) no-repeat center;
	background-size: cover;
	margin: 40px auto 0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li:hover{
	box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.50);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li:hover .imgbox img{
	transform: scale(1.1,1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li:hover span{
	background: url(../image/icon11.png) no-repeat center;
	transform: translateX(10px);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li::after{
	content: "";
	width: 0;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzj ul li:hover::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.hqzjdeta{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 150px;
	box-sizing: border-box;
}
.hqzjdeta-left{
	width: 37.1%;
}
.hqzjdeta-left img{
	width: 100%;
}
.hqzjdeta-cont{
	width: 55.7%;
}
.hqzjdeta-cont .head{
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	position: relative;
}
.hqzjdeta-cont .head::after{
	content: "";
	width: 64px;
	height: 2px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left: 0;
}
.hqzjdeta-cont .head h2{
	color: #fff;
	font-size: 32px;
}
.hqzjdeta-cont .nr{
	width: 100%;
	color: #fff;
	font-size: 18px;
	line-height: 2em;
	margin-top: 20px;
}
.list ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.list ul li{
	width: 30%;
	height: 620px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	margin: 0 1.6% 50px;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li .imgbox{
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.list ul li .imgbox img{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li .wz{
	padding: 30px;
}
.list ul li .wz h4{
	display: flex;
	justify-content: space-between;
	line-height: 30px;
}
.list ul li .wz h4 .time{
	color: #fff;
	font-size: 24px;
	font-family: 'Century GothicB';
}
.list ul li .wz h4 .lm{
	color: #F1A730;
	font-size: 16px;
}
.list ul li .wz h2{
	color: #fff;
	font-size: 20px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
	margin-top: 20px;
	min-height: 52px;
}
.list ul li .wz p{
	color: #fff;
	opacity: .7;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
	width: 100%;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
	overflow:hidden;
	min-height: 72px;
}
.list ul li .wz h3{
	color: #F1A730;
	font-size: 18px;
	font-family: 'Century GothicR';
	margin-top: 33px;
	position: relative;
}
.list ul li:hover .wz h3::after{
	content: "";
	width: 18px;
	height: 18px;
	background: url(../image/icon5.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 104px;
	margin-top: -9px;
}
.list ul li:hover{
	background: #414146;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li:hover .imgbox img{
	transform: scale(1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li::after{
	content: "";
	width: 0;
	height: 1px;
	background: #F1A730;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li:hover::after{
	width: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.list ul li:hover h2{
	color: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.nywrap3{
	width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	padding-bottom: 100px;
	box-sizing: border-box;
}
.deta{
	padding-top: 100px;
}
.deta .top{
	padding-bottom: 30px;
	border-bottom: 1px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.deta .top h2{
	color: #fff;
	font-size: 36px;
	font-family: 'OPPOSansM';
}
.deta .top p{
	color: #fff;
	font-size: 16px;
	margin-top: 16px;
}
.deta .top p span{
	opacity: .7;
	margin-right: 16px;
}
.deta .top p .lm{
	opacity: 1;
	color: #F1A730;
}
.deta .nr{
	width: 100%;
	color: #fff;
	font-size: 18px;
	padding: 30px 0;
}
.deta .nr img{
	max-width: 100%;
}
.deta .bot{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.deta .bot p{
	height: 64px;
	line-height: 64px;
	background: #414146;
	cursor: pointer;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.deta .bot p.left,
.deta .bot p.right{
	width: calc(50% - 52px);
	padding: 0 30px;
	box-sizing: border-box;
}
.deta .bot p a{
	color: #fff;
	font-size: 16px;
	display: block;
}
.deta .bot p.left a{
	padding-left: 36px;
	background: url(../image/prev3.png) no-repeat left center;
}
.deta .bot p.right{
	text-align: right;
}
.deta .bot p.right a{
	background: url(../image/next3.png) no-repeat right center;
	padding-right: 36px;
}
.deta .bot p.center{
	width: 64px;
	background-image: url(../image/icon12.png);
	background-repeat: no-repeat;
	background-position: center;
}
.deta .bot p:hover{
	background-color: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.deta .bot p.center a{
	height: 100%;
}
.lxwm-lxfs{
	padding: 65px 0 50px;
}
.lxwm-lxfs ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.lxwm-lxfs ul li{
	width: 30.4%;
	min-height: 360px;
	background: #414146;
	text-align: center;
}
.lxwm-lxfs ul li .imgbox{
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto 0;
	background: #F1A730;
	border-radius: 50%;
}
.lxwm-lxfs ul li h2{
	color: #F1A730;
	font-size: 20px;
	margin-top: 40px;
}
.lxwm-lxfs ul li p{
	color: #fff;
	font-size: 20px;
	margin-top: 12px;
}
.lxwm-map{
	padding-bottom: 70px;
}
.lxwm-map .demo_main{
	width: 100%;
}
.lxwm-map .demo_main #map{
	width: 100%;
	height: 680px;
}
.gsjs-zzry{
	padding: 110px 0 86px;
}
.gsjs-zzry-cont{
	margin-top: 70px;
	position: relative;
}
.gsjs-zzry-cont .swiper-slide{
	background: #414146;
	min-height: 330px;
	padding: 20px 20px 30px;
	box-sizing: border-box;
}
.gsjs-zzry-cont .imgbox{
	width: 100%;
	height: 230px;
	padding: 7px 13px;
	box-sizing: border-box;
	background: #fff;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gsjs-zzry-cont .imgbox img{
	max-width: 100%;
	max-height: 100%;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.gsjs-zzry-cont h2{
	color: #fff;
	font-size: 18px;
	margin-top: 30px;
	width: 100%;
	text-align: center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.gsjs-zzry-cont .swiper-slide:hover .imgbox img{
	transform: scale(1.1,1.1);
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.gsjs-zzry-cont .swiper-slide:hover h2{
	color: #F1A730;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.gsjs-zzry-cont .swiper-button-prev,
.gsjs-zzry-cont .swiper-button-next{
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.80);
	position: absolute;
	top: -100px;
	border-radius: 50%;
	background-repeat: no-repeat;
    background-position: center;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.gsjs-zzry-cont .swiper-button-prev{
	background-image: url(../image/prev.png);
	right: 60px;
	left: auto;
}
.gsjs-zzry-cont .swiper-button-next{
	background-image: url(../image/next.png);
	right: 0;
}
.gsjs-zzry-cont .swiper-button-prev:hover,
.gsjs-zzry-cont .swiper-button-next:hover{
	background: #F1A730;
	background-repeat: no-repeat;
    background-position: center;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
}
.gsjs-zzry-cont .swiper-button-prev:hover{
	background-image: url(../image/prev2.png);
}
.gsjs-zzry-cont .swiper-button-next:hover{
	background-image: url(../image/next2.png);
}
.gsjs-zlhzhb{
	padding: 110px 0 98px;
}
.gsjs-zlhzhb-cont{
	margin-top: 72px;
}
.gsjs-zlhzhb-cont{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gsjs-zlhzhb-cont .item{
	width: 31.6%;
	height: 300px;
	background: #414146;
	margin-bottom: 40px;
	padding: 50px 50px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.gsjs-zlhzhb-cont .item img{
	width: 64px;
	max-height: 64px;
}
.gsjs-zlhzhb-cont .item .wz{
	width: calc(100% - 94px);
}
.gsjs-zlhzhb-cont .item .wz h2{
	color: #F1A730;
	font-size: 24px;
}
.gsjs-zlhzhb-cont .item .wz P{
	color: #fff;
	font-size: 18px;
	line-height: 26px;
	margin-top: 12px;
}
.nywz{
	padding-bottom: 50px;
}
.nywz p{
	color: #fff;
	font-size: 20px;
}
.nywz p span{
	color: #F1A730;
}
.NewsPage{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 42px;
}
.NewsPage a{
	display: block;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	text-align: center;
	line-height: 48px;
	margin: 0 8px;
	color: #fff;
	font-size: 16px;
}
.NewsPage a.active{
	background: #F1A730;
}
.nybody{
	animation: fadeIn 1s;
	-webkit-animation: fadeIn 1s;
}


















































