@charset "utf-8";
/* CSS Document */
@font-face{
	src:url(../fonts/OPPOSans-R.ttf);
	font-family:"myfont";
	}
@font-face{
	src:url(../fonts/OPPOSans-B.ttf);
	font-family:"title";
	}
@font-face{
	src:url(../fonts/OPPOSans-H.ttf);
	font-family:"title2";
	}
*{
	padding:0;
	margin:0;
	list-style:none;
	font-family:"myfont",Arial,sans-serif;
	}
@font-face {
  font-family: 'iconfont';
  src:url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
  url(../icons/iconfont.woff) format('woff'),
  url(../icons/iconfont.ttf) format('truetype'),
  url(../icons/iconfont.svg#iconfont) format('svg');
}
.iconfont{
  font-family:"iconfont" !important;
  font-size:16px;font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
input:focus,textarea:focus{
	outline:none;
	}
input{
	-webkit-appearance: none;
}
.clear{
	clear:both;
	}
a{
	text-decoration:none;
	}
.w_all{
	width:90%;
	margin:auto;
	}
.w_all2{
	width:50%;
	margin:auto;
	}
html, body{
	width:100%;
	position:relative;
	font-size: 60.5%;
	background: #191919;
	}
header{
	width:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:999;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	}
header.active{
	background: #050506;
}
header .nav_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:relative;}
header .logo{
	padding: 15px 0;
	height: 30px;
	position:relative;
	z-index: 9;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header .logo img{
	display:block;
	height:100%;
	}
header .nav ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
header .nav li{
	position: relative;
	margin-left: 60px;
	line-height: 70px;
	}
header .nav li span{
	color:#fff;
	font-size:1.6rem;
	font-family: "title";
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	}
header .nav li:hover span{
	color: #cd0002;
}
.navBtn{
	position: relative;
	z-index:99999;
	cursor:pointer;
	display: none;
}
.navBtn span{
	display: block;
	width: 24px;
	height: 2px;
	background:#fff;
	margin:5px auto;
}
.nav_btn_active{
	-webkit-transition:all 0.4s;
	transition:all 0.4s;
}
.nav_btn_active span:nth-of-type(1){
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	}
.nav_btn_active span:nth-of-type(2){
	opacity:0;
	}
.nav_btn_active span:nth-of-type(3){
	margin-top:-60%;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	}
.s_menu{
	position: fixed;
	left: 0%;
	top: 70px;
	background: rgba(33,33,33,0.7);
	box-sizing: border-box;
	display: none;
	width: 100%;
}
.s_menu dl{
	float: right;
	margin-right: 5%;
	line-height: 3.4;
}
.s_menu .dl2{
	margin-right: 8.5%;
}
.s_menu dd{
	display: inline-block;
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	margin-left: 60px;
	position: relative;
}
.s_menu dd:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 25%;
	width: 0%;
	height: 1px;
	background: #fff;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.s_menu dd:hover:before{
	left: 0;
	width: 100%;
}
/*banner*/
.banner{
	position:relative;
	width:100%;
	height: 100%;
	overflow: hidden;
	}
.banner .swiper-slide{
	width: 100%;
	height: 100%;
}
.banner .swiper-pagination{
	display: none;
	bottom: 3% !important;
	display: flex;
	justify-content: center;
}
.banner .swiper-pagination span{
	width:200px !important;
	height: 2px !important;
	border-radius: 0 !important;
	background: none !important;
	opacity: 1;
	margin: 0 20px !important;
	position: relative;
	display: block;
}
.banner .swiper-pagination span::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.3;
	z-index: 3;
}
.banner .swiper-pagination span:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #fff;
	z-index: 3;
}
.banner span.swiper-pagination-bullet-active:before{
	width: 100%;
	-webkit-transition: all 4.5s linear;
	transition: all 4.5s linear;
}
.banner .txt{
	position: absolute;
	left: 50%;
	top: 70%;
	opacity: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	padding-right: 45%;
	box-sizing: border-box;
	-webkit-transition: all 0.7s linear;
	transition: all 0.7s linear;
}
.banner .swiper-slide-active .txt{
	top: 50%;
	opacity: 1;
}
.banner .txt h3{
	font-size: 5.6rem;
	color: #fff;
	font-family: "title2";
	line-height: 1.4;
}
.banner .txt p{
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.8;
	margin: 3% 0 8%;
	opacity: 0.7;
}
.more{
	display: flex;
	align-items: center;
	border: 1px solid #fff;
	padding: 15px 40px;
	float: left;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	cursor: pointer;
}
.more span{
	color: #fff;
	font-size: 1.8rem;
	display: block;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.more i{
	color: #fff;
	font-size: 1.3rem;
	display: block;
	margin-left: 15px;
	margin-top: 4px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.more:hover{
	background: #cd0002;
	border-color: #cd0002;
}
.scroll{
	position: absolute;
	right: 4.5%;
	bottom: 15%;
	color: #fff;
	font-size: 1.3rem;
	font-family: "title";
	z-index: 9;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.scroll:before{
	content: "";
	position: absolute;
	right: -15px;
	bottom: 50%;
	margin-bottom: -2px;
	width: 6px;
	height: 6px;
	border-radius:50%;
	background: #cd0002;
}
.scroll:hover{
	bottom: 14%;
}
.title h2{
	color: #fff;
	font-size: 4.8rem;
	line-height: 1.4;
	font-weight: normal;
	font-family: "title";
}
.title p{
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.8;
	opacity: 0.7;
	margin: 3% 0 8%;
}
.index_bar1{
	padding: 5% 0 2%;
}
.index_bar1 .box{
	display: flex;
	justify-content: space-between;
}
.index_bar1 .left{
	width: 35%;
}
.index_bar1 .right{
	width: 65%;
}
.index_bar1 .right ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.index_bar1 .right ul li{
	width: 45%;
	position: relative;
	z-index: 2;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(.3,0.95,.3,0.95);
	transition: transform 0.5s cubic-bezier(.3,0.95,.3,0.95);
}
.index_bar1 .right ul li:nth-of-type(2){
	padding-bottom: 25%;
	z-index: 1;
	width: 34%;
}
.index_bar1 .right ul li:nth-of-type(3){
	width: 30%;
	padding-bottom: 6%;
}
.index_bar1 .right ul li:nth-of-type(1) b{
	width: 130%;
}
.index_bar1 .right ul li:nth-of-type(3) b{
	width: 120%;
	margin-left: -20%;
}
.index_bar1 .right ul li b{
	display: block;
	overflow: hidden;
	width: 100%;
}
.index_bar1 .right ul li img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.index_bar1 .right ul li:hover img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.index_bar1 .right ul li:nth-of-type(1) .txt{
	position: absolute;
	left: -65%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_bar1 .right ul li:nth-of-type(2) .txt{
	position: absolute;
	right: -45%;
	top: 0;
}
.index_bar1 .right ul li:nth-of-type(3) .txt{
	position: static;
	margin-top: 6%;
	margin-left: -20%;
}
.index_bar1 .right ul li h3{
	color: #fff;
	font-size: 2.8rem;
	font-weight: normal;
	font-family: "title";
	margin-bottom: 10px;
}
.index_bar1 .right .more{
	border: none;
	padding: 0;
}
.index_bar1 .right .more:hover{
	background: none;
}
.index_bar1 ul li:hover .more span,.index_bar1 ul li:hover .more i{
	color: #cd0002;
}
.index_bar2{
	width: 100%;
	display: block;
	position: relative;
	height: 55vh;
	overflow: hidden;
}
.index_bar2 > video {
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 100%;
    min-width: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.index_bar2 .box{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.index_bar2 .vbtn img{
	width: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	cursor: pointer;
}
.index_bar2 .more{
	margin-top: 3%;
}
.videobox{
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	left: 0;
	top: 0;
	z-index: 99999;
	display: none;
}
.videobox .close img{
	position: absolute;
	right: 3%;
	top: 5%;
	width: 32px;
	cursor: pointer;
}
.videobox video{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	display: block;
	width: 70%;
}
.index_bar3{
	padding: 5% 0;
}
.index_bar3 .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.index_bar3 dl{
	display: flex;
	justify-content: space-between;
	margin-top: 5%;
}
.index_bar3 dl dd{
	width: 20.5%;
	margin-right: 3%;
}
.index_bar3 dl dd:last-of-type{
	margin-right: 0;
}
.index_bar3 dl dd h3{
	font-size: 2rem;
	color: #fff;
	opacity: 0.4;
	font-weight: normal;
	margin-bottom: 15px;
}
.index_bar3 dl dd h6{
	font-size: 2.2rem;
	color: #fff;
	font-weight: normal;
	display: flex;
	align-items: flex-start;
	margin: 2% 0 10%;
}
.index_bar3 dl dd span{
	font-size: 9rem;
	color: #fff;
	font-family:"title2";
	margin-top: -16px;
	margin-right: 5px;
}
.index_bar3 dl dd p{
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.8;
}
.index_bar4{
	background: #131619;
}
.index_bar4 .title{
	width:80%;
}
.index_bar4 .title h2{
	margin-bottom: 2%;
}
.index_bar4 .btn{
	position: static;
}
.index_bar4 .btn .ll{
	margin: 0;
	border: 1px solid #fff;
}
.index_bar4 .btn .ll i{
	color: #333;
}
.index_bar4 .btn .lll{
	background: none;
}
.index_bar4 .btn .lll i{
	color: #fff;
}
.index_bar4 .btn .ll:hover i{
	color: #cd0002;
}
.index_bar4 .ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 3%;
}
.index_bar4 .ul li{
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.index_bar4 .ul li:hover{
	-webkit-transform: translateY(-3%);
	transform: translateY(-3%);
}
.index_bar4 .ul li b{
	display: block;
	width: 100%;
	overflow: hidden;
}
.index_bar4 .ul li b img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.index_bar4 .ul li:hover b img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.index_bar4 .ul li .txt{
	background: #2c3036;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.index_bar4 .ul li:hover .txt{
	background: #cd0002;
}
.index_bar4 .ul li h3{
	font-size: 2.4rem;
	color: #fff;
	padding: 5% ;
	font-weight: normal;
	font-family: "title";
}
.index_bar4 .ul .more{
	float: none;
	border: none;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 3% 5%;
	justify-content: space-between;
}
.index_bar4 .ul .more span{
	font-size: 1.4rem;
}
.index_bar4 .ul .more i{
	font-size: 1.8rem;
}
.index_bar4 .ul .more:hover{
	background: none;
}
.index_bar5{
    padding-top: 5%;
}
.index_bar5 .title h2{
	margin-bottom: 2%;
}
.index_bar5 .title p{
	margin:0.5% 0;
}
.index_bar5 ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 2.5%;
}
.index_bar5 ul li{
	width: 50%;
	height: 45vh;
}
.index_bar5 ul li a{
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}
.index_bar5 ul li b{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.index_bar5 ul li b:hover{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.index_bar5 ul li .txt{
	position: absolute;
	left: 10%;
	top: 15%;
}
.index_bar5 ul li .txt h3{
	color: #fff;
	font-size: 4.6rem;
	font-weight: normal;
	font-family: "title";
}
.footer {
	position:relative;
	background: #000000;
	z-index: 9;
	padding: 3% 0 0;
	}
.footer .box{
	display: flex;
	justify-content: space-between;
	padding: 3% 0;
	border-top: 1px solid #fff;
}
.footer .box .left{
	display: flex;
	width: 90%;
	justify-content: space-between;
}
.footer dl dt{
	color:#fff;
	font-size:1.7rem;
	text-transform: uppercase;
	font-family: "title";
	margin-bottom: 20px;
}
.footer dl dd{
	color:rgba(255,255,255,0.6);
	font-size:1.4rem;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	margin: 10px 0;
	}
.footer dl dd:hover{
	color:#cd0002;
}
.footer .copy{
	border-top: 1px solid rgba(255,255,255,1);
}
.footer .copy{
	padding:15px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .copy p{
	font-size: 1.4rem;
	color: rgba(255,255,255,0.5);
	}
.footer .copy p span{
	color: rgba(255,255,255,0.5);
	margin-left: 30px;
	}
.footer .copy p a{
	font-size: 1.4rem;
	color: rgba(255,255,255,0.5);
	}
.footer .copy p a:hover{
	color: #fff;
	}
.all_back{
	width: 22px;
	-webkit-transition: all 0.3s lissnear;
	transition: all 0.3s linear;
	cursor: pointer;
	}
.all_back img{
	width: 100%;
}
.allbox{
	padding: 7% 0;
	position: relative;
	background: #fff;
	z-index: 9;
}
.lines span{
	width: 1px;
	height: 100%;
	background: #fff;
	opacity: 0.05;
	display: inline-block;
	position: fixed;
	left:25%;
	top: 0;
	z-index: 9;
	height: 100%;
	display: none;
}
.lines span:nth-of-type(2){
	left: 50%;
}
.lines span:nth-of-type(3){
	left: 75%;
}
.about{
	position: relative;
	width: 100%;
	height: 100%;
}
.about .txt{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.title2{
	color: #fff;
	font-size: 4.8rem;
	margin-bottom: 3%;
	font-weight: normal;
	font-family: "title2";
}
.about .txt p{
	color: #fff;
	font-size: 1.8rem;
	width: 50%;
	line-height: 2;
}
.about2{
	padding: 8% 0 7%;
	background: #0d0d0d;
}
.about2 .box{
	display: flex;
	align-items: flex-start;
}
.about2 .left,.about2 .right{
	width: 50%;
}
.about2 .left h3{
	color: #fff;
	font-size: 4rem;
	font-weight: normal;
	font-family: "title2";
	line-height: 1.6;
}
.about2 p{
	color: #fff;
	line-height: 2;
	font-size: 1.8rem;
}
.about2 .right{
	width: 48%;
	display: flex;
	justify-content: space-between;
}
.about2 .rr h3{
	color: #fff;
	font-size: 2.4rem;
	margin-bottom:20px;
}
.about2 .rr p{
	color: rgba(255,255,255,0.6);
	padding-left: 20px;
	position: relative;
	font-size: 1.8rem;
	margin: 5px 0;
}
.about2 .rr p:before{
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	background: #cd0002;
	border-radius: 50%;
}
.about3{
	padding: 8% 0;
	position: relative;
	z-index: 9;
}
.about3 ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.about3 ul li{
	width: 50%;
	margin-top: 5%;
	position: relative;
}
.about3 ul li b{
	display: block;
	width: 55%;
	margin-bottom: 2%;
	overflow: hidden;
}
.about3 ul li b img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.about3 ul li:hover b img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.about3 h3{
	color: #fff;
	font-size: 2.6rem;
	font-weight: normal;
	font-family: "title2";
	line-height: 1.6;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about3 p{
	color: #fff;
	line-height: 1.8;
	font-size: 1.8rem;
	opacity: 0.6;
	margin-top: 1%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about3 ul li:hover h3{
	color: #cd0002;
}
.about3 ul li:hover p{
	opacity: 1;
}
.about3 ul li:nth-of-type(1) b,.about3 ul li:nth-of-type(1) p{
	margin-left: 40%;
}
.about3 ul li:nth-of-type(1) h3{
	position: absolute;
	left: 20%;
	bottom: 15%;
	text-align: right;
}
.about3 ul li:nth-of-type(2) b{
	width: 40%;
	margin-left: 5%;
	margin-top: -12%;
}
.about3 ul li:nth-of-type(2) h3{
	margin-left: 5%;
}
.about3 ul li:nth-of-type(2) p{
	position: absolute;
	right: 0%;
	bottom: 45%;
	width: 50%;
}
.about3 ul li:nth-of-type(3) b{
	width: 95%;
}
.about3 ul li:nth-of-type(4) b{
	width: 65%;
	margin-left: 5%;
	margin-top: -12%;
}
.about3 ul li:nth-of-type(4) h3{
	margin-left: 5%;
}
.about3 ul li:nth-of-type(4) p{
	margin-left: 5%;
	width: 60%;
}
.about4{
	padding: 10% 0;
}
.about4 .right{
	width: 40%;
}
.about5{
	background: none;
}
.about5 .left p{
	margin-top: 3%;
}
.about5 .right{
	margin-left: 10%;
}
.about5 .right img{
	max-width: 100%;
}
.about6{
	background: #0d0d0d;
	padding: 8% 0 3%;
}
.about6 .box{
	position: relative;
}
.about6 .title2{
	margin-bottom: 0;
}
.about6 .swiper-container:before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0.5;
}
.about6 .swiper-slide{
	padding:3%;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	height: 300px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about6 .swiper-slide:nth-of-type(2n){
	margin-top: 300px;
	padding-bottom: 0;
}
.about6 .swiper-slide:before{
	content: "";
	position: absolute;
	left: 0;
	margin-top: -7px;
	margin-left: -7px;
	top: 100%;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.5;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about6 .swiper-slide::after{
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width:30px;
	height: 30px;
	margin-top: -14px;
	margin-left: -14px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.2;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about6 .swiper-slide:nth-of-type(2n)::before{
	top: 0%;
}
.about6 .swiper-slide:nth-of-type(2n)::after{
	top: 0%;
}
.about6 h3{
	color: #fff;
	font-size: 4.8rem;
	font-weight: normal;
	font-family: "title2";
	line-height: 1.6;
	opacity: 0.5;
	margin-bottom: 3%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about6 p{
	color: #fff;
	line-height: 1.8;
	font-size: 1.6rem;
	opacity: 0.5;
	margin-top: 1%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about6 .swiper-slide:hover h3{
	color: #cd0002;
	opacity: 1;
}
.about6 .swiper-slide:hover::before{
	background: #cd0002;
	opacity: 1;
}
.about6 .swiper-slide:hover::after{
	background: #cd0002;
	opacity: 0.5;
}
.about6 .swiper-slide:hover{
	background: #050505;
}
.about6 .swiper-slide:hover p{
	opacity: 1;
}
.btn{
	position: absolute;
	right: 0;
	bottom: 0%;
	display: flex;
	align-items: center;
}
.btn .ll{
	margin:0 5px;
	cursor: pointer;
	width: 20px;
	text-align: center;
	padding: 10px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	background: #fff;
}
.btn .ll i{
	font-size: 2rem;
	line-height: 20px;
	font-weight: bold;
	color: #cd0002;
}
.btn .llr{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg) ;
}
.btn .ll.swiper-button-disabled {
	background: #1a1a1a;
}
.btn .ll.swiper-button-disabled i{
	color: #fff;
	font-weight: normal;
}
.ban{
	position: relative;
	z-index: 9;
}
.ban img{
	width: 100%;
	display: block;
}
.ban p{
	position: absolute;
	left: 50%;
	top: 70%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 4.8rem;
	color: #fff;
	font-family: "title2";
	opacity: 0;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
}
.ban.active p{
	opacity: 1;
	top: 52%;
}
.news{
	padding: 5% 0;
}
.n_nav a{
	font-size: 1.8rem;
	color: #fff;
	padding: 10px 25px;
	margin-right: 40px;
	font-weight: normal;
	font-family: "title";
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.n_nav a:hover{
	color: #cd0002;
}
.n_nav a.active{
	background: #cd0002;
	color: #fff !important;
}
.news .ul{
	z-index: 9;
}
.news .ul .li{
	display: block;
	margin-top: 3%;
    background: #2c3036;
    height: auto !important;
}
.news .ul .li b{
	display: block;
	width: 100%;
	overflow: hidden;
}
.news .ul .li b img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.news .ul .li:hover b img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news .ul .li .txt{
	padding: 5% 5% 3.5%;
	box-sizing: border-box;
	background: #2c3036;
}
.news .ul .li h3{
	font-size: 2rem;
	color: #fff;
	margin-bottom: 4%;
	font-weight: normal;
	font-family: "title";
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .ul .li:hover h3{
	color: #cd0002;
}
.news .ul .li p{
	font-size:2rem;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news .ul .li span{
	font-size: 1.4rem;
	color: #fff;
	line-height: 1.8;
}
.news .swiper-pagination{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2%;
    position: static;
}
.news .swiper-pagination span{
    opacity: 1 !important;
    background: #fff;
    margin: 0 5px !important;
}
.news .swiper-pagination span.swiper-pagination-bullet-active{
    background: #cd0002;
}
.news_d{
	padding: 8% 0 5%;
	position: relative;
	z-index: 9;
}
.back{
	font-size:1.8rem;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.back:hover{
	color: #cd0002;
}
.news_d .top h1{
	font-size: 4rem;
	color: #fff;
	font-weight: normal;
	font-family: "title2";
	margin: 3% 0;
}
.news_d .top h6{
	font-size: 1.6rem;
	color: #fff;
	font-weight: normal;
	opacity: 0.6;
}
.news_d .bb{
	margin-top: 5%;
}
.news_d .bb img{
	max-width: 100%;
	margin: auto;
	display: block;
}
.news_d .bb p{
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.8;
	margin: 2% 0;
}
.pro{
	padding: 8% 0;
	background: #262626;
}
.pro:nth-of-type(2n){
	background: #1a1a1a;
}
.pro .bar{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 9;
	padding: 0 8%;
	box-sizing: border-box;
}
.pro:last-of-type .bar{
	align-items: flex-start;
}
.pro .bar .left{
	width: 34%;
}
.pro .bar .title2{
	margin-bottom: 10%;
}
.pro .bar p{
	color: #fff;
	font-size: 1.6rem;
	line-height: 2;
	opacity: 0.6;
	margin: 3% 0;
}
.pro .bar .right{
	width: 55%;
}
.pro .bar ul li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:7% 5% 5%;
	box-sizing: border-box;
	background: #333333;
	margin-top: 8%;
	-webkit-transition: all 0.8s linear;
	transition: all 0.8s linear;
	cursor: default;
}
.pro .bar ul li:hover{
	-webkit-transform: translateY(-8%);
	transform: translateY(-8%);
}
.pro .bar ul li:first-of-type{
	margin-top: 0;
}
.pro .bar ul li b{
	display: block;
	width: 40%;
}
.pro .bar ul li img{
	width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.pro .bar ul li:hover img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.pro .bar ul li .txt{
	width: 55%;
}
.pro .bar ul li h4{
	font-weight: bold;
	color: #fff;
	font-size: 2rem;
	margin-bottom: 5%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pro .bar ul li:hover h4{
	color: #cd0002;
}
.pro .bar ul li p{
	opacity: 0.5;
	font-size: 1.4rem;
	line-height: 1.8;
}
.pro .bar ul li p a{
    color: #fff;
    text-decoration: underline;
}
.areas{
	padding: 0 0;
	position: relative;
	z-index: 9;
}
.areas .top p{
	font-size: 1.8rem;
	line-height: 2;
	color: #fff;
	width: 45%;
	margin:5% auto;
	text-align: center;
}
.areas .bar{
	position: relative;
	margin-bottom: 8%;
	overflow: hidden;
}
.areas .bar img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.areas .bar:hover img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.areas .bar .txt{
	position: absolute;
	left: 15%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 6;
	width: 30%;
}
.areas .bar .txt h3{
	font-size: 4rem;
	color: #fff;
	margin-bottom: 5%;
}
.areas .bar .txt p{
	font-size: 1.6rem;
	color: #fff;
	opacity: 0.6;
	margin: 2% 0;
	line-height: 2;
}
.contact .bar1{
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact ul{
	padding: 5% 0;
	display: flex;
	justify-content: space-between;
}
.contact ul a{
	display: block;
	width: 25%;
	text-align: center;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
	opacity: 0;
	-webkit-transform: translateY(15%);
	transform: translateY(15%);
}
.contact ul li{
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.8;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact ul a.active{
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
.contact ul li b{
	display: block;
	width: 30px;
	border-radius: 50%;
	padding: 16px;
	border: 1px solid #fff;
	margin:0 auto 5%;
	display: block;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact ul li img{
	width: 100%;
	display: block;
}
.contact ul li img:last-of-type{
	display: none;
}
.contact ul li:hover img{
	display: none;
}
.contact ul li:hover img:last-of-type{
	display: block;
}
.contact ul li:hover b{
	background: #cd0002;
	border-color: #cd0002;
}
.contact ul li:hover{
	color: #cd0002;
}
.contact .bar2{
	height: 70vh;
	position: relative;
}
.contact .bar2:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 20%;
	background-image: linear-gradient(to bottom, rgba(25,25,25,1),rgba(25,25,25,0));
	z-index: 9;
}
.contact .bar2 #allmap{
	height: 100%;
}
.anchorBL,.BMap_cpyCtrl{
	display: none;
}
.contact dl{
	width: 70%;
	padding: 3% 0 5%;
	position: relative;
	z-index: 9;
}
.contact dl dd{
	padding: 3%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background: #0d0d0d;
	margin-top: 4%;
	color: #fff;
}
.contact dl dd b{
	display: block;
	width: 30%;
	overflow: hidden;
}
.contact dl dd b img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.contact dl dd:hover b img{
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.contact dl dd .txt{
	width: 45%;
	margin:0 10% 0 7% ;
}
.contact dl dd .txt a{
	color: #fff;
	display: block;
	font-size: 1.4rem;
	line-height: 1.6;
	opacity: 0.6;
	margin: 10px 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact dl dd:hover .txt a{
	opacity: 1;
}
.contact dl dd .img img{
	width: 36px;
	display: block;
	margin-bottom: 5px;
}
.contact dl dd .img img:last-of-type{
	display: none;
}
.contact dl dd .img{
	text-align: center;
	color: #fff;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact dl dd:hover .img {
	color: #cd0002;
}
.contact dl dd:hover .img img{
	display: none;
}
.contact dl dd:hover .img img:last-of-type{
	display: block;
}