@charset "utf-8";
/* CSS Document */
*{
	padding:0;
	margin:0;
	list-style:none;
	font-family: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;
}
article, aside, dialog, figure, footer, header, hgroup, menu, nav, dir, section{
    margin: 0;
    padding: 0;
    display: block;	
}
input:focus,textarea:focus{
	outline:none;
	}
.clear{
	clear:both;
	}
a{
	text-decoration:none;
	}
/*index*/
.w_all{
	width:90%;
	margin:auto;
	}
.w_all2{
	width:78%;
	margin:auto;
	}
html, body{
	width:100%;
	position:relative;
	font-size: 60.5%;
	}
header{
	width:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:999;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background: #fff;
	}
header.active{
	box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
header .nav_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:relative;}
header .logo{
	height: 45px;
	position:relative;
	z-index: 9;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header.active .logo{
	height: 40px;
}
header .logo img{
	display:block;
	height:100%;
	}
header .logo .logo_ph{
    display: none;
}
header .nav{
	display: flex;
	align-items: center;
	}
header .nav ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
header .nav li{
	position: relative;
	margin: 0 30px;
	}
header .nav li::before{
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 30%;
	width: 0%;
	height: 1px;
	background: #009ca2;
	opacity: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header .nav li:hover:before{
	opacity: 1;
	width: 100%;
}
header .nav li span{
	color:#000;
	line-height: 100px;
	font-size:1.8rem;
	font-weight: light;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	}
header.active .nav li span{
	line-height: 76px;
}
header .nav li:hover span{
	color: #009ca2;
}
header .h_other{
	display: flex;
	align-items: center;
	margin-left: 20px;
}
header .h_other .bb{
	display: flex;
	align-items: center;
	margin-left: 20px;
	width: max-content;
	overflow: hidden;
	position: relative;
	cursor: default;
	font-size: 1.6rem;
	color: #000;
}
header .h_other .bb img{
	width: 20px;
	border-radius: 50%;
	padding: 5px;
	background: #000;
	margin-right: 8px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
header .h_other .bb:hover img:first-of-type{
	background: #009ca2;
}
header .h_other a:hover .bb{
	cursor: pointer;
	color: #009ca2;
}
header .h_other a .bb{
	font-size: 1.2rem;
}
header .h_other .bb .ewm{
	position: absolute;
	left: 30px;
	top: 60px;
	width: 120px;
	border-radius: 0;
	background: none;
	opacity: 0;
}
header .h_other .bb.b1:hover{
	overflow: inherit;
}
header .h_other .bb:hover .ewm{
	opacity: 1;
}
.navBtn{
	position: relative;
	z-index:99999;
	cursor:pointer;
	display: none;
}
.navBtn span{
	display: block;
	width: 32px;
	height: 2px;
	background:#000;
	margin:7px auto;
}
header.active .navBtn span{
	background: #009ca2;
}
.nav_btn_active{
	-webkit-transition:all 0.4s;
	transition:all 0.4s;
}
.nav_btn_active span{
	background: #009ca2;
}
.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:-56%;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	}
.s_menu{
	position: absolute;
	left: 50%;
	top: 90px;
	background: #000;
	box-sizing: border-box;
	display: none;
	width: 154px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 10px 0;
}
header.active .s_menu{
	top: 66px;
}
.s_menu dl{
	width:100%;
}
.s_menu dd{
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	padding: 8px 26px;
}
.s_menu dd:hover{
	background: #a2a2a2;
}
/*banner*/
.banner{
	position:relative;
	width:100%;
	overflow: hidden;
	}
.banner .swiper-container{
	position:relative;
	width:100%;
	height:100%;
	}
.banner .swiper-slide img{
	width: 100%;
}
.banner .swiper-slide{
	width: 100%;
	height: 100%;
	position: relative;
}
.banner .swiper-pagination{
	display: none;
	bottom: 2% !important;
}
.banner .swiper-pagination span{
	width: 10px !important;
	height: 10px !important;
	background: #fff !important;
	opacity: 0.8;
	margin: 6px !important;
}
.banner span.swiper-pagination-bullet-active{
	background: #009ca2 !important;
	opacity: 1;
}
.banner .txt{
	position: absolute;
	left: 50%;
	top: 65%;
	opacity: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	padding-bottom: 30px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.banner .swiper-slide-active .txt{
	top: 50%;
	opacity: 1;
}
.banner .txt:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width:42px;
	height: 2px;
	background: #fff;
}
.banner .txt h3{
	font-size: 5rem;
	color: #fff;
	font-weight: 200;
}
.banner .txt h4{
	font-size: 8.6rem;
	color: #fff;
	letter-spacing: 1px;
	margin: 5px 0;
}
.banner .txt p{
	font-size: 3.6rem;
	color: #fff;
	font-weight: 200;
}
.index_bar1{
	padding: 7% 0;
}
.index_bar1 .box{
	display: flex;
	justify-content: space-between;
}
.index_bar1 .left{
	width: 70%;
	position: relative;
}
.index_title h3{
	font-size: 2.1rem;
	color: #000;
	font-weight: 900;
}
.index_title h3 strong{
	font-size: 6rem;
	color: #000;
	line-height: 1.2;
	font-weight: 900;
	display: block;
	margin: 5px 0 50px;
}
.index_title p{
	font-size: 2rem;
	color: #000;
	font-weight: light;
	line-height: 2;
}
.index_bar1 .right{
	width: 29%;
	overflow: hidden;
}
.index_bar1 .right img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_bar1 .box:hover .right img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.more{
	font-size: 1.8rem;
	color: #000;
	border: 1px solid #000;
	font-weight: light;
	padding: 12px 80px;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	border-radius: 30px;
}
.more:hover{
	background: #009ca2;
	border-color: #009ca2;
	padding: 12px 90px;
	color: #fff;
}
.index_bar1 .more{
	position: absolute;
	left: 0;
	bottom:0;
}
.index_bar2{
	padding: 7% 0;
}
.index_bar2 .box{
	display: flex;
	justify-content: space-between;
}
.index_bar2 .left{
	width: 30%;
	position: relative;
}
.index_bar2 h3,.index_bar2 h3 strong{
	color: #fff;
}
.index_bar2 .left p{
	color: #fff;
	font-weight: 900;
	font-size: 4rem;
	line-height: 1.6;
	margin: 12% 0 6%;
}
.index_bar2 .left span{
	width: 52px;
	height: 2px;
	background: #fff;
	display: block;
}
.index_bar2 .right{
	width: max-content;
}
.index_bar2 .right ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: -2%;
}
.index_bar2 .right ul a{
	display: block;
	margin-right: 2%;
	width: 31%;
	margin-top: 2%;
	background: rgba(38,171,169,0.7);
	padding: 7% 2% 4% 4%;
	box-sizing: border-box;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.index_bar2 .right ul a:nth-of-type(3n){
	margin-right: 0;
}
.index_bar2 .right ul a:hover{
	background: rgba(137,137,137,0.7);
}
.index_bar2 .right ul li h4{
	color: #fff;
	font-size: 3.2rem;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.index_bar2 .right ul li .txt{
	border-top: 1px solid rgba(255,255,255,0.7);
	border-bottom: 1px solid rgba(255,255,255,0.7);
	padding: 5% 0;
	margin-top: 8%;
}
.index_bar2 .right ul li p{
	color: #fff;
	font-size:1.6rem;
	font-weight: light;
	margin: 5px 0;
}
.index_bar3{
	padding: 7% 0;
}
.index_bar3 .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pnav{
	display: flex;
	align-items: center;
}
.pnav span{
	font-size: 1.6rem;
	color: #000;
	margin-left: 30px;
	position: relative;
	padding-left: 26px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: block;
	cursor: pointer;
}
.pnav span a{
    color: #000;
}
.pnav span:before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border: 1px solid #000;
	border-radius: 50%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pnav span.active:before,.pnav span:hover:before{
	background: #000;
}
.pnav span:hover{
	-webkit-transform: translateX(-5px);
	transform: translateX(-5px);
}
.index_bar3 ul{
	overflow: hidden;
	margin-top: 2%;
}
.index_bar3 ul li{
	width: 32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	position: relative;
	overflow: hidden;
}
.index_bar3 ul a:nth-of-type(3n) li{
	margin-right: 0;
}
.index_bar3 ul li img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
}
.index_bar3 ul li .txt{
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background: rgba(0,0,0,0.5);
	padding: 5%;
	box-sizing: border-box;
	z-index: 9;
	opacity: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.index_bar3 ul li:hover .txt{
	opacity: 1;
}
.index_bar3 ul li .txt h3{
	font-size: 2rem;
	color: #fff;
	font-weight: normal;
}
.index_bar3 ul li .txt .bottom{
	position: absolute;
	left: 5%;
	bottom: 5%;
}
.index_bar3 ul li .txt .bottom:before{
	content: '';
	position: absolute;
	left: 0;
	top: -10px;
	width: 10px;
	height: 2px;
	background:#fff;
}
.index_bar3 ul li .txt p{
	font-size: 1.5rem;
	color: #fff;
	margin: 8px 0;
}
.index_bar3 ul li .txt p:first-of-type{
	font-size: 1.8rem;
}
.index_bar3 ul li:hover img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.index_bar3 .more{
	margin:3.5% auto 0;
	width: 60px;
	text-align: center;
}
.index_bar4{
	background: #dfdfdf;
	padding: 7% 0;
	margin-bottom: 7%;
}
.index_bar4 .box{
	display: flex;
	justify-content: space-between;
}
.index_bar4 .left{
	width: 26%;
	position: relative;
}
.index_bar4 .left h4{
	font-size: 4rem;
	line-height: 1.6;
	margin: 30% 0 10%;
	font-weight: 500;
}
.index_bar4 .left p{
	font-size: 1.6rem;
	line-height: 2;
}
.index_bar4 .txt{
	display: none;
}
.index_bar4 .left span{
	width: 45px;
	height: 3px;
	background: #333;
	position: absolute;
	left: 0;
	bottom: 0;
}
.index_bar4 .right{
	width: 58%;
	position: relative;
}
.index_bar4 .imgs{
	margin-right: -1%;
	display: flex;
	flex-wrap: wrap;
}
.index_bar4 .right p{
	width: 31.3%;
	box-sizing: border-box;
	overflow: hidden;
	margin: 1%;
}
.index_bar4 .right p img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_bar4 .right img:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.btn{
	z-index: 99;
	display: flex;
	justify-content: flex-end;
	margin: 6% 0 4%;
}
.btn .ll img{
	margin-left: 40px;
	width: 41px;
	height: 12px;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.btn .ll:hover img{
	opacity: 0.5;
}
.footer {
	position:relative;
	background: #2e2e30;
	z-index: 6;
	}
.footer .box{
	display: flex;
	padding: 7% 0;
	justify-content: space-between;
}
.footer .left img{
	margin-bottom:25%;
	height: 56px;
}
.footer dt{
	color:#808080;
	margin-bottom: 3%;
	font-size:2rem;
	font-weight: bold;
}
.footer dl dd{
	color:#808080;
	margin:6px 0;
	font-size:1.6rem;
	display: inline-block;
	width: 112px;
	margin-right: 10px;
	padding-right: 10px;
	line-height: 1;
	border-right: 1px solid #808080;
	}
.footer dl dd:nth-of-type(3n){
	border: none;
}
.footer dl dd:hover{
	color:#fff
}
.footer .right{
	display: flex;
	justify-content: space-between;
	width: 45%;
}
.footer .right .bb{
}
.footer .right p{
	color:#808080;
	margin: 12px 0;
	font-size:1.6rem;
}
.footer .right h4{
	color:#808080;
	font-size:1.8rem;
	font-weight: 600;
}
.footer .right h4:nth-of-type(2){
	margin-top: 20%;
	padding-top: 10%;
	border-top: 2px solid #4e4e50;
}
.footer .right p a{
	color:#808080;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.footer .right p a:hover{
	color:#009ca2;
}
.footer .right p:nth-of-type(2){
	font-size: 2.4rem;
	line-height: 1.4;
}
.footer .bb2{
	float:right;
	}
.footer ul{
	display: flex;
	justify-content: flex-end;
}
.footer ul li{
	color: #808080;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	margin-left: 20%;
	}
.footer ul li img{
	width: 140px;
	display: block;
	margin:0 auto 20px;
	opacity: 0.6;
}
.footer .ss{
	display: flex;
	margin-top: 10%;
	justify-content: flex-end;
}
.footer .ss span{
	position: relative;
	display: block;
	margin-left:35px;
	overflow: hidden;
	}
.footer .ss span img:first-of-type{
	width: 42px;
}
.footer .ss span img:nth-of-type(2){
	display: none;
	width: 42px;
}
.footer .ss span:hover img:first-of-type{
	display: none;
}
.footer .ss span:hover img:nth-of-type(2){
	display: block;
}
.footer .ss span img.ewm{
	width: 110px;
	position: absolute;
	left: 50%;
	top: 46px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.footer .ss span:hover{
	overflow: inherit;
}
.footer .ss span:hover img.ewm{
	opacity: 1;
}
.footer .copy{
	background: #1a1a19;
}
.footer .copy .w_all{
	padding:20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .copy p{
	font-size: 1.2rem;
	color: #808080;
	}
.footer .copy p span{
	color: #808080;
	margin-left: 30px;
	}
.footer .copy p a{
	font-size: 1.2rem;
	color: #808080;
	}
.footer .copy p a:hover{
	color: #fff;
	}

.all_back{
	position:absolute;
	right:1.5%;
	top:20%;
	cursor:pointer;
	width: 30px;
	height: 30px;
	border: 1px solid #808080;
	border-radius: 50%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	padding: 3px;
	}
.all_back i{
	color:#808080;
	font-size:2rem;
	line-height: 28px;
	text-align: center;
	display:block;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	}
.all_back:hover{
	background:#009ca2;
	border-color: #009ca2;
	}
.all_back:hover i{
	color: #fff;
}
.allbox{
	padding: 7% 0;
	position: relative;
	background: #fff;
	z-index: 9;
}
.about{
	overflow: hidden;
	width: 100%;
}
.alltop{
	margin-top: 66vh;
}
.about.alltop{
}
.ban{
	position: fixed;
	left: 0;
	top: 0;
}
.ban img{
	width: 100%;
}
.ban .txt{
	position: absolute;
	left: 0%;
	top: 0;
	background: rgba(255,255,255,0.4);
	height: 100%;
	width: 383px;
	opacity: 0;
}
.ban .txt p{
	position: absolute;
	left: 50%;
	top: 68%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 3.8rem;
	color: #000;
	width: max-content;
	line-height: 1.4;
	font-weight: 300;
	opacity: 0;
}
.ban .txt p strong{
	font-size: 4.6rem;
}
.about .box{
	display: flex;
	justify-content: space-between;
}
.about .left{
	width: 40%;
	position: relative;
}
.about .index_title h3 strong{
	margin-bottom:2px;
}
.index_title .nn{
	font-size: 1.6rem;
	font-weight: normal;
}
.index_title span{
	width: 28px;
	height: 2px;
	display: block;
	background: #000;
	margin-top: 50px;
}
.about .left p{
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.4;
	position: absolute;
	left: 0;
	bottom: 5%;
}
.about .right{
	width: 58%;
}
.about dl{
	display: flex;
	justify-content: space-between;
}
.about dl dd{
	max-width: 31%;
	width: 24%;
}
.about dl h6{
	font-size: 8rem;
	color: #009ca2;
	font-weight: 800;
}
.about dl h6 span{
	font-size: 8rem;
	color: #009ca2;
	font-weight: 800;
}
.about dl h5{
	font-size: 1.6rem;
	color: #000;
	font-weight: 400;
	margin-top: 10px;
	padding: 10px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	line-height: 1.4;
	min-height: 80px;
}
.about dl h5 strong{
	font-size: 2rem;
	display: block;
	margin-bottom: 10px;
}
.about .tt{
	margin-top: 7%;
}
.about .tt h4{
	font-size: 3.6rem;
	color: #000;
	margin-bottom: 3%;
}
.about .tt p{
	font-size: 1.6rem;
	color: #000;
	font-weight: 400;
	line-height: 1.8;
}
.about2{
	background: #009ca2;
}
.about2 .box{
	display: flex;
	justify-content: space-between;
}
.about2 .left{
	width: 20%;
}
.about2 h3,.about2 h3 strong,.about2 .nn{
	color: #fff;
}
.about2 .index_title span{
	background: #fff;
}
.about2 h3 strong{
	margin-bottom: 2px;
}
.about2 .right{
	width: 74%;
}
.about2 ul{
	display: flex;
	justify-content: space-between;
	margin-top: 3%;
}
.about2 ul li{
	width: 32%;
	position: relative;
}
.about2 ul li b{
	display: block;
	overflow: hidden;
}
.about2 ul li img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.about2 ul li:hover img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.about2 ul li .txt{
	position: absolute;
	left: 3%;
	bottom: 3%;
	width: 94%;
	background:#fff;
	padding: 5%;
	box-sizing: border-box;
	z-index: 3;
}
.about2 ul li .top{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: 1px solid #000;
	margin-bottom: 3%;
	padding-bottom: 3%;
}
.about2 ul li h4{
	font-size: 3rem;
	color: #231815;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about2 ul li span{
	font-size: 6rem;
	font-weight: bold;
	color: #231815;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.about2 ul li:hover h4,.about2 ul li:hover span{
	color: #009ca2;
}
.about2 ul li p{
	font-size: 1.6rem;
	color: #231815;
	line-height: 1.6;
}
.about4{
	position: relative;
}
.about4 p{
	margin-left: 42.6%;
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.5;
}
.about5 .right .imgs{
	display: flex;
	flex-wrap: wrap;
	width: 106%;
	margin-left: -3%;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}
.about5 .right .imgs p{
	width: 16.666%;
	padding: 1% 0;
	overflow: hidden;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}
.about5 .right .imgs p img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}
.about5 .right .imgs p img:hover{
	-webkit-transform: scale(1.16);
	transform:scale(1.16);
}
.about6 strong{
	font-weight: 200;
	display: block;
}
.about6 a{
	font-weight: 200;
	display: block;
	color: #fff;
}
.cases{
	background: #fff;
	position: relative;
	z-index: 9;
}
.cases .index_bar3 h3 strong{
	margin-bottom: 0;
}
.cases .index_bar3 .top{
	align-items: flex-end;
}
.pnav2{
	display: flex;
	align-items: center;
	margin-bottom: 0.5%;
}
.pnav2 span{
	font-size: 1.6rem;
	color: #000;
	margin-left: 30px;
	position: relative;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: block;
	cursor: pointer;
	padding: 6px 0;
}
.pnav2 span:before{
	content: '';
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	width: 0;
	height: 1px;
	background: #009ca2;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pnav2 span.active,.pnav2 span:hover{
	color: #009ca2;
}
.pnav2 span:hover:before,.pnav2 span.active:before{
	opacity: 1;
	width: 100%;
}
.cases{
    padding-bottom: 7%;
}
.cases ul{
	margin-top: 2%;
}
.cases .index_bar3{
    padding-bottom: 0%;
}
#pages{
	text-align: center;
	margin-top: 0;
    display: flex;
    justify-content: center;
}
#pages span,#pages a{
	background: #d8d8d8;
	font-size: 1.2rem;
	margin: 3px;
	padding: 6px 10px;
	color: #000;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	cursor: pointer;
}
#pages li.active span,#pages span:hover{
	background: #000;
	color: #fff;
}
#pages .disabled{
    display: none;
}
.cases_d{
	margin-top: 100px;
}
.cases_d .bar1{
	padding: 7% 0;
	background: #efefef;
}
.cases_d .bar1 .contain{
	position: relative;
}
.cases_d .bar1 .box{
	display: flex;
	justify-content: space-between;
}
.cases_d .bar1 .left{
	width: 40%;
}
.cases_d .bar1 .right{
	width: 46%;
}
.cases_d .bar1 h2{
	font-size: 5rem;
	color: #000;
}
.cases_d .bar1 h3{
	margin: 10% 0 5%;
	font-size: 1.6rem;
	color: #000;
	padding-top: 10px;
	position: relative;
}
.cases_d .bar1 h3:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 2px;
	background: #009ca2;
}
.cases_d .bar1 .txt p{
	font-size: 1.6rem;
	color: #000;
	display: inline-block;
	padding-right: 10px;
	line-height: 16px;
	margin: 5px 0;
	margin-right: 10px;
}
.cases_d .bar1 .txt p:nth-of-type(3n){
	border: none;
}
.cases_d .bar1 .right{
	border-top: 1px solid #000;
	border-bottom: 2px solid #000;
	padding: 3% 0;
}
.cases_d .bar1 .right p{
	font-size: 1.6rem;
	color: #000;
	margin: 3% 0;
	line-height: 1.6;
}
.cases_d .bar1 .back{
	position: absolute;
	right: 0;
	top: 2%;
}
.cases_d .bar1 .back b{
	border-radius: 50%;
	border: 1px solid #000;
	display: block;
	width: 20px;
	padding: 8px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.cases_d .bar1 .back b:hover{
	background: #009ca2;
	border-color: #009ca2;
}
.cases_d .bar1 .back b img{
	width: 100%;
	display: block;
}
.cases_d .bar1 .back b img:nth-of-type(2){
	display: none;
}
.cases_d .bar1 .back b:hover img{
	display: none;
}
.cases_d .bar1 .back b:hover img:nth-of-type(2){
	display: block;
}
.cases_d .bar2{
	padding: 7% 0;
}
.cases_d .bar2 p{
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.6;
}
.cases_d .bar2 p img{
	width: 100%;
	display: block;
}
.cases_d .bar3 .top{
	display: block;
	border-top: 1px solid #000;
	padding-top: 3%;
}
.cases_d .bar3 .index_title{
	text-align: center;
	margin-bottom: 3%;
}
.news{
	padding: 7% 0;
	background: #fff;
	position: relative;
	z-index: 9;
}
.news .top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news ul{
	display: flex;
	justify-content: space-between;
	margin: 1% auto 3%;
	flex-wrap: wrap;
}
.news ul a{
	display: block;
	width: 49%;
	margin-bottom: 2%;
}
.news ul li{
	display: flex;
	background: #efefef;
}
.news ul li b{
	width: 50%;
	overflow: hidden;
	display: block;
}
.news ul li b img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.news ul li:hover b img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news ul li .txt{
	width: 50%;
	padding: 5%;
	position: relative;
	bottom: 5%;
	box-sizing: border-box;
}
.news ul li  h3{
	font-size: 2.4rem;
	color: #000;
	margin: 20px 0 30px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
	padding-bottom: 2px;
}
.news ul li  h3:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background: #009ca2;
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.news ul li:hover h3{
	color: #009ca2;
}
.news ul li:hover h3:before{
	width: 28%;
	opacity: 1;
}
.news h4{
	font-size: 1.4rem;
	color: #727171;
	font-weight: normal;
}
.news p{
	font-size: 1.6rem;
	color: #727171;
	font-weight: 400;
	line-height: 1.6;
}
.news .more{
	position: absolute;
	left: 3%;
	bottom: 5%;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
}
.news ul li:hover .more{
	background: #009ca2;
	border-color: #009ca2;
	color: #fff;
}
.news_d{
	margin-top: 100px;
	padding: 5% 0 0;
}
.news_d .left{
	position: relative;
	width: 35%;
	float: left;
}
.news_d .left.active{
	position: fixed;
	left: 5%;
	top: 30.5%;
	z-index: 2;
	width: 31.5%;
}
.news_d h2{
	font-size: 4rem;
	color: #000;
}
.news_d h5{
	font-size: 1.2rem;
	color: #898989;
	font-weight: normal;
	margin: 30px 0 10px;
}
.news_d .left span{
	width: 22px;
	height: 2px;
	background: #141414;
	display: block;
	margin:8% 0;
}
.news_d h6{
	font-size: 1.8rem;
	color: #898989;
}
.news_d .left .txt{
	border-bottom: 1px solid #727171;
	padding-bottom: 10%;
}
.news_d .left p{
	font-size: 1.6rem;
	color: #727171;
	font-weight: 400;
	line-height: 1.6;
}
.news_d .right{
	width: 56%;
	float: right;
}
.news_d .right p{
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #727171;
}
.news_d .right p img{
	width: 100%;
	display: block;
}
.news_d .bar2{
	position: relative;
	z-index: 6;
	background: #fff;
	padding-bottom: 7%;
}
.news_d .bar2 .top{
	text-align: center;
	border-top:1px solid #000;
	padding-top: 5%;
	margin-bottom: 3%;
	display: block;
}
.news_d .bar2 .news{
	padding-bottom: 0;
}
.news_d .bar2 .bbs> a .more{
	width: 60px;
	margin: auto;
	text-align: center;
}
.contact .bar1{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #9f9f9f;
	align-items: center;
}
.contact .bar1 .left{
	width: 40%;
}
.contact .bar1 h3{
	font-size: 1.8rem;
	color: #000;
	font-weight: normal;
}
.contact .bar1 .left img{
	height: 44px;
	margin: 2% 0;
}
.contact .bar1 h4{
	font-size: 1.8rem;
	color: #000;
	font-weight: normal;
}
.contact .bar1 .txt{
	border-top: 2px solid #9f9f9f;
	margin: 12% 0 8%;
	padding-top: 6%;
	width: max-content;
	box-sizing: border-box;
}
.contact .bar1 p{
	font-size: 1.8rem;
	color: #000;
	font-weight: 400;
	margin: 15px 0;
}
.contact .bar1 p a{
	color: #000;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact .bar1 p:hover a{
	color: #009ca2;
}
.contact .bar1 .right{
	width: 55%;
	display: flex;
	align-items: center;
}
.contact .bar1 .right .bb{
	text-align: center;
	font-size: 1.6rem;
	color: #858585;
	margin-left: 10%;
}
.contact .bar1 .right .bb:first-of-type{
	margin-left: 0;
}
.contact .bar1 .right .bb img{
	margin: auto;
	display: block;
	width: 240px;
}
.contact .bar1 .right .bb h5{
	color: #000;
	font-size: 3.6rem;
	font-weight: normal;
}
.contact .bar1 .right .bb a{
	color: #000;
	font-size: 3.6rem;
	font-weight: bold;
	display: block;
	margin-top: 15px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.contact .bar1 .right .bb a:hover{
	color: #009ca2;
}
.contact .bar2{
	margin-top: 7%;
}
#dituContent{
	height: 660px;
}
.contact .bar2 .txt{
	margin-left: 45%;
	padding-top: 7%;
}
.contact .bar2 h3{
	font-size: 3rem;
	color: #000;
	margin-bottom: 3%;
	font-weight: 800;
}
.contact .bar2 p{
	font-size: 1.6rem;
	color: #000;
	font-weight: 400;
	margin: 5px 0;
	line-height: 1.6;
}
.contact .bar2 p a{
	display: block;
	font-size: 1.6rem;
	color: #000;
}
.allright{
	position: fixed;
	right: 0%;
	top:50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fff;
	z-index: 999;
	text-align: center;
	padding: 25px 0 5px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	display: none;
}
.allright .close img{
	width: 30px;
	position: absolute;
	right: 0px;
	top: 8px;
	cursor: pointer;
}
.allright h3{
	font-size: 4.6rem;
	color: #009ca2;
	font-weight: normal;
}
.allright img{
	width: 150px;
	margin: -5px auto 0;
}
.allright h5{
	font-size: 1.8rem;
	color: #009ca2;
	font-weight: normal;
}
.allright h6{
	font-size: 1.6rem;
	color: #fff;
	font-weight: normal;
	border-radius: 30px;
	background: #009ca2;
	padding: 6px 18px;
	width: 80px;
	margin: 10px auto;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.allright h6:hover{
	background: #111;
	cursor: pointer;
}
.allright h4{
	border-top: 2px solid #009ca2;
    font-size: 1.8rem;
    color: #009ca2;
    font-weight: normal;
    padding: 10px 10px;
    margin-top: 20px;
}
.allright h4 a{
	display: block;
	font-weight: 800;
	color: #009ca2;
	font-size: 2.2rem;
}
.pro .bar1{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #000;
	align-items: center;
	padding-bottom: 7%;
}
.pro .bar1 .left{
	width: 40%;
}
.pro .bar1 h3{
	font-size: 4rem;
	color: #000;
	margin-bottom: 3%;
}
.pro .bar1 h4{
	font-size: 2rem;
	color: #000;
	font-weight: normal;
}
.pro .bar1 p{
	font-size: 2.4rem;
	color: #000;
	margin: 3% 0;
	line-height: 1.5;
}
.pro .bar1 p:nth-of-type(2){
	font-size: 2rem;
}
.pro .bar1 .right{
	width: 56%;
}
.pro .swiper-container img{
	width: 100%;
}
.pro .bar2{
	padding: 7% 0;
}
.pro .bar2 .box{
	display: flex;
	justify-content: space-between;
	position: relative;
}
.pro .bar2 .left{
	width: 35%;
}
.pro .bar2 h3{
	font-size: 4rem;
	color: #000;
	margin-bottom: 5px;
}
.pro .bar2 h4{
	font-size: 2rem;
	color: #000;
	font-weight: normal;
}
.pro .bar2 .left span{
	width: 22px;
	display: block;
	height: 2px;
	background: #000;
	margin: 3% 0 6%;
}
.pro .bar2 p{
	font-size: 1.6rem;
	color: #000;
	line-height: 1.6;
	width: 74%;
	text-align: justify;
}
.pro .bar2 .txt{
	position: absolute;
	left: 0;
	bottom: 0;
}
.pro .bar2 h5{
	font-size: 2.4rem;
	color: #000;
	font-weight: normal;
	margin-bottom: 20px;
}
.pro .bar2 .txt p{
	width: 100%;
}
.pro .bar2 .right{
	width: 56%;
}
.pro .bar2 h6{
	font-size: 2rem;
	color: #000;
	font-weight: normal;
	margin: 5% 0 2%;
}
.pro .bar2 .imgs{
	display: flex;
}
.pro .bar2 .imgs a{
	display: block;
	width: 22%;
	margin-right: 4%;
	overflow: hidden;
}
.pro .bar2 .imgs a img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pro .bar2 .imgs a:nth-of-type(4n) img{
	margin-right:0;
}
.pro .bar2:nth-of-type(2n){
	background: #eeeeee;
}
.pro .bar2 .imgs a:hover img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.pro .bar2 span.swiper-pagination-bullet-active{
	background: #009ca2;
}
/* 标题动效 */
.aboutbox .index_title h3{
	opacity: 0;
	margin-top: 8%;
}
.aboutbox .index_title h3 strong{
	opacity: 0;
	margin-top: 6%;
}
.aboutbox .index_title .nn{
	opacity: 0;
	margin-top: 6%;
}
.pro .bar2 h3{
	opacity: 0;
	margin-top: 8%;
}
.pro .bar2 h4{
	opacity: 0;
	margin-top: 6%;
}
.contact .bar2 h3{
	opacity: 0;
	margin-top: 8%;
}