/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,strong,input{ margin:0; padding:0;list-style:none;text-decoration:none;border:0; list-style:none;}
body{ font-size:12px;color:#666;}
body.head_on{overflow:hidden}
a{color:#666;transition: 0.3s;}
a:hover{ color:#f60; text-decoration:none;cursor: pointer;}
p{line-height:1.8em; /*padding:5px 0;*/}
.clear{ margin:0; padding:0; font-size:0; clear:both; }
.wapper{ width:1400px; margin:0 auto;}


*,
*::before,
*::after{-webkit-box-sizing: border-box;box-sizing: border-box;}

:root {
	--main-color: #0075C2;
	--main-color2: #109B04;
	--main-color-white: #fff;
	--main-color-000: #000;
	--main-color-333: #333333;
	--main-color-888: #888888;
	--main-transition: all ease 0.4s;
	--main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header{ position:fixed;top: 0;left: 0;width: 100%;z-index: 999;transition: 0.3s;}
.headList{display: flex;justify-content: space-between;align-items: center;height: 100px;max-width: 90%;margin: 0 auto;transition: 0.3s;}
.headList .logo{display: block;}
.headList .logo img{max-height: 60px;width: auto;}
.headList .logo img.img2{display: none;}

.hIcon{}
.hIcon a{display: block;width: 35px;height: 35px;margin-left: 20px;border: 1px solid #fff;border-radius: 2px;display: flex;justify-content: center;align-items: center;font-size: 16px;color: #fff;}

/*menu*/
.menu{height:70px;line-height:70px;margin-left: auto;}
.menu>ul>li{ float:left;}
.menu>ul>li>span{display: block;position: relative;overflow: hidden;}
.menu>ul>li>span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	height: 2px;
	background-color: var(--main-color);
	opacity: 0;
	transition: all .5s ease;
}
.menu>ul>li>span>a{ font-size:16px;color:#fff;display:block;text-align:center;padding: 0 1.5vw;transition: all .5s ease;position: relative;line-height:70px;}
.menu>ul>li>span>a:after {
	content: attr(data-title);
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
}
.menu>ul>li>span:hover:before{width: 50%;opacity: 1;}
.menu>ul>li>span:hover a{transform: translateY(-100%);}
.menu>ul>li>span>a:hover{color:var(--main-color);}
.menu>ul>li>span.menu_hover:before{width: 50%;opacity: 1;}
.menu>ul>li>span.menu_hover>a{color:var(--main-color);transform: translateY(-100%);}

.menuD2{position: absolute;top: 0;left: 0;width: 100%;background: #f0f4f9;top: 70px;z-index: 99;display: none;}
.menuD2Warp{width: 90%;margin: 0 auto;padding: 60px 0;height: auto;max-height: calc(100vh - 100px);overflow: hidden;overflow-y: auto;}
.menuD2Warp .warp{width: 100%;align-items: flex-start;}
.menuD2Warp .left{width: 60%;}
.menuD2Warp .img{width: 33%;}
.menuD2Warp .img img{width: 100%;height: 100%;object-fit: cover;}

.menuD2Warp .t1{font-size: 30px;color: #333;font-weight: normal;line-height: 30px;margin-bottom: 20px;}
.menuD2Warp .txt{margin-bottom: 10px;font-size: 14px;}
.menuD2Warp .txt p{padding: 0;}
.menuD2Warp .navSbox{position: relative;width: 100%;height: auto;overflow: hidden; white-space: nowrap;display: flex;flex-wrap: wrap;}
.menuD2Warp .navSbox li{width: 33.33%;padding-right: 5%;line-height: 1.4;}
.menuD2Warp .navSbox li a {
	display: block;
	position: relative;
	padding: 15px 0;
	border-bottom: 1px solid #e4e4e4;
	-webkit-transition: padding 250ms cubic-bezier(.25, .46, .45, .94);
	transition: padding 250ms cubic-bezier(.25, .46, .45, .94);
}

.menuD2Warp .navSbox li a:before {
	content: '';
	width: 12px;
	height: 12px;
	position: absolute;
	filter: grayscale(1);
	top: 50%;
	right: 0;
	margin-top: -6px;
	background-image: url(../images/icon-1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transition: right 250ms cubic-bezier(.25, .46, .45, .94);
	transition: right 250ms cubic-bezier(.25, .46, .45, .94);
}

.menuD2Warp .navSbox li a:after {
	content: '';
	width: 0%;
	height: 1px;
	background: #999;
	position: absolute;
	bottom: -1px;
	left: 0;
	-webkit-transition: width 250ms cubic-bezier(.25, .46, .45, .94);
	transition: width 250ms cubic-bezier(.25, .46, .45, .94);
}

.menuD2Warp .navSbox li a span{display: block;font-size: 15px;color: #333;letter-spacing: 1px;}
.menuD2Warp .navSbox li a:hover{color: var(--main-color);padding-left: 0;}
.menuD2Warp .navSbox li a:hover:after{width: 100%;opacity: 1;}
.menuD2Warp .navSbox li a:hover:before{background-image: url(../images/icon-1-2.png);right: 12px;}
.menuD2Warp .navSbox li a:hover span{color: var(--main-color);}

.header:hover,
.header.fixed{background: rgba(255,255,255,1);box-shadow: 0 3px 4px rgb(0 0 0 / 10%);}

.header:hover .headList,
.header.fixed .headList{height: 70px;}

.header:hover .headList .logo img.img1,
.header.fixed .headList .logo img.img1{display: none;}

.header:hover .headList .logo img.img2,
.header.fixed .headList .logo img.img2{display: block;}

.header:hover .menu>ul>li>span>a,
.header.fixed .menu>ul>li>span>a{color: #333;}

.header:hover .language a,
.header.fixed .language a{color: #333;}
.header:hover .language a:hover,
.header.fixed .language a:hover{color: var(--main-color);}

.language{height: 100%;margin-left: 20px;}
.language a{font-size: 16px;color: #fff;position: relative;height: 100%;display: flex;align-items: center;}
.language a:after{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	height: 2px;
	background-color: var(--main-color);
	opacity: 0;
	transition: all .5s ease;
}
.language a:hover:after{width: 100%;opacity: 1;}

/*mMenu*/
.m_header{width: 100%;}
.sp_header1{height:70px;overflow:hidden;background:#fff;position:fixed;z-index:9999;width:100%;display: none;top: 0;}
.sp_logo1{float:left;height:70px;display: flex;justify-content: center;align-items: center;padding-left: 10px;}
.sp_logo1 img{margin:auto;max-height:50px;}
.sp_nav1{width:50px;float:right;position:relative;cursor:pointer;height:30px;margin-top:25px}
.sp_nav1 span{display:block;background:#000;width:30px;height:2px;position:absolute;left:10px;transition:all ease 0.35s}
.sp_nav1 span:nth-of-type(1){top:0px}
.sp_nav1 span:nth-of-type(2){top:10px}
.sp_nav1 span:nth-of-type(3){top:20px}
.sp_nav_se1 span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se1 span:nth-of-type(2){width:0}
.sp_nav_se1 span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav1{position:fixed;z-index:999;background:#fff;width:100%;height:calc(100% - 70px);font-size:14px;line-height:40px;top:-100%;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.35s;display: none;}
.nav_show1{top:70px;}
.sjj_nav1 ul li i{position:absolute;top:5px;right:0px;height:30px;padding:0px 7px 0 7px;}
.sjj_nav1 ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav1 ul li .sjj_nav_i_se1 svg{transform:rotate(0deg)}
.sjj_nav1 ul li{border-top:1px #e4e8eb solid;position:relative;line-height:45px;font-size:16px}
.sjj_nav1>ul >li:last-child{border-bottom:1px #ddd solid;}
.sjj_nav1 ul li ul{display:none}
.sjj_nav1 ul li a{color:#333;width:100%;padding: 0 20px;display: block;box-sizing: border-box;}
.sjj_nav1 ul li a:hover{color: #0188FB;}
.sjj_nav1 ul li ul li a{color:#333;display:block;text-align:left;}
.sjj_nav1 ul li i svg{width:25px;height:25px;fill:#333;}
.sjj_nav1 ul li .sjj_nav_i_se svg{fill:#333}
.sjj_nav1 ul li ul li>ul{margin-left:10px}
.sjj_nav1 ul li ul li{border-top: none;}
.sjj_nav1 ul li ul li a{padding: 0 30px;}

/*mSearch*/
.mSearch{position: relative;width: calc(100% - 20px);height: 35px;overflow: hidden;margin: 20px 10px;}
.mSearch input{position: absolute;top: 0;left: 0;width: 100%;height: 100%;padding: 0 60px 0 10px;box-sizing: border-box;border: 1px solid #ccc;border-radius: 25px;background: none;outline: none;}
.mSearch button{background-image: linear-gradient(to right,#01b2ac 0,#004ea2 100%);width: 60px;height: 35px; position: absolute; top: 0;right: 0;border-radius: 0 25px 25px 0;color: #fff;font-size: 14px;border: none;}

/*swiper*/
.swiper {width: 100%;height: 100%;position: relative;overflow: hidden;}
.swiper-slide {background: #fff;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center; -ms-flex-align: center;-webkit-align-items: center;align-items: center;}
.swiper-slide img { display: block;width: 100%;height: 100%;object-fit: contain;}
.swiper .swiper-button-next:after,.swiper .swiper-button-prev:after{font-size: 30px;}

/*common*/
.disFlex {
	flex-wrap: wrap;
	display: -webkit-box;/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;/* Firefox 17- */
	display: -webkit-flex;/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;/* Firefox 18+ */
	display: -ms-flexbox;/* IE 10 */
	display: flex;
}
.jusBet{justify-content: space-between;}
.jusCet{justify-content: center;}
.jusEnd{justify-content: flex-end;}
.aliTop{align-items: flex-start;}
.aliCet{align-items: center;}
.aliBtm{align-items: flex-end;}

.img{font-size: 0px;overflow: hidden;}
img{transition: 0.5s;}

.f_left{float: left;}
.f_right{float: right;}
.clearfix:before,
.clearfix:after {content: "";display: table;}
.clearfix:after {clear: both;overflow: hidden;}
.clearfix {*zoom: 1;}

.bgfff{background: #fff !important;}
.fff{color: #fff !important;}
em{font-style: normal;}
.overflow1{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;width: 100%;display: block;}
.overflow2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.overflow3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}

.pt140{padding-top: 140px;}
.pb140{padding-bottom: 140px;}
.pt120{padding-top: 120px;}
.pb120{padding-bottom: 120px;}
.pt100{padding-top: 100px;}
.pb100{padding-bottom: 100px;}
.pt80{padding-top: 80px;}
.pb80{padding-bottom: 80px;}
.pt60{padding-top: 60px;}
.pb60{padding-bottom: 60px;}
.pt50{padding-top: 50px;}
.pb50{padding-bottom: 50px;}

.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt35{margin-top: 35px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}

.textCet{text-align: center;}
.textRight{text-align: right;}
.pc_show{}
.m_show{display: none;}
.iTitCn{font-weight: bold;color: #121212;font-size: 48px;}
.iTitEn{}
.iTit{font-size: 32px;color: #121212;}
.iTit i{display: inline-block;width: 40px;height: 4px;background: var(--main-color);margin-right: 20px;}
.iTxt{font-size: 16px;color: #1F2B33;}
.iTxt img{max-width: 100%;}
.iLine i{}
.hidden{overflow: hidden;}
.comBg{background-size: cover;background-repeat: no-repeat;}
.iVideo{width: 100%;}
.iVideo video{width: 100%;}
.iImg{width: 100%;}
.iImg img{width: 100%;}

.iMore a{display: inline-block;padding: 15px 35px;border: 2px solid var(--main-color);font-size: 16px;color: var(--main-color);font-weight: bold;}
.iMore a i{padding-left: 20px;font-size: 20px;}
.iMore a:hover{background: var(--main-color);color: #fff;}

.iMore2 a{display: inline-block;padding: 10px 35px;color: #fff;font-size: 14px;border-radius: 30px;background: var(--main-color);}

/*-------------------------------------------*/

/*banner*/
.banner{width: 100%;height: 100vh;position: relative;overflow: hidden;}
.bannerSwiper .swiper-pagination-bullet{opacity: 1;background: #fff;transition:width ease 0.35s;border-radius: 20px;}
.bannerSwiper .swiper-pagination-bullet-active{background: var(--main-color);width:20px;}
.bannerSwiper .swiper-button-next:after,.bannerSwiper .swiper-button-prev:after{color: #fff;}

.banner .part{display: block;width: 100%;height: 100%;position: relative;}
.banner .part .img{width: 100%;height: 100%;}
.banner .part .img img{width: 100%;height: 100%;object-fit: cover;}
.banner .part .imgTop{position: absolute;left: 0;top: 0;width: 100%;height: 100%;display: flex;align-items: center;}
.banLine{width: 80px;height: 6px;background: var(--main-color);}
.banTit{font-size: 3.54vw;font-weight: bold;color: #fff;line-height: 1.6;}
.banner .banLine{margin-bottom: 2vw;}

.index1{width: 100%;}
.i1Top{width: 100%;}
.i1Btn{}
.i1Btn .btn{width: 55px;height: 55px;border: 1px solid #333;border-radius: 50%;display: flex;justify-content: center;align-items: center;cursor: pointer;font-size: 24px;}
.i1Btn .btn.prve{margin-right: 20px;}
.i1Btn .btn:hover{background: #333;color: #fff;}
.i1List{width: 100%;position: relative;padding-bottom: 60px;}
.i1List .part{display: block;width: 100%;position: relative;overflow: hidden;height: 500px;}
.i1List .part .img{width: 100%;height: 100%;}
.i1List .part .img img{width: 100%;height: 100%;object-fit: cover;}
.i1List .part .imgTop{width: 100%;height: 100%;position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;align-items: flex-end;padding: 50px 40px;}
.i1List .part .desc{position: relative;width: 100%;height: 132px;padding: 30px;}
.i1List .part .desc:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background: #fff;clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 65%, 85% 100%, 0% 100%);content: "";}
.i1List .part .tit{font-size: 20px;color: #1a1a1a;line-height: 1.2;font-weight: bold;position: relative;z-index: 2;}
.i1List .part .icon{position: absolute;left: 30px;bottom: -25px;width: 50px;height: 50px;background: var(--main-color);text-align: center;line-height: 50px;color: #fff;font-size: 20px;z-index: 2;}
.i1List .part:hover .img img{transform: scale(1.1);}

.index2{background: #F7F8FB;}
.i2List{width: 100%;}
.i2List .topTit{width: 100%;background: url(../images/fa_icon.svg) no-repeat right -25px bottom -48px #0075C2;height: 96px;padding: 10px 30px;font-size: 20px;color: #fff;display: flex;align-items: center;width: 50%;}
.i2List .topTit span{display: block;max-width: 80%;}
.i2List ul li{width: 50%;position: relative;}
.i2List .part{width: 100%;height: 310px;position: relative;overflow: hidden;display: block;}
.i2List .part:after{width: 100%;height: 100%;background: linear-gradient(90deg, #0075C2 -1.43%, rgba(0, 117, 194, 0) 100%);position: absolute;left: 0;bottom: 0;content: "";opacity: 0;transition: 0.3s;}
.i2List .part .img{width: 100%;height: 100%;}
.i2List .part .img img{width: 100%;height: 100%;object-fit: cover;}
.i2List .part .imgTop{width: 100%;position: absolute;left: 0; top: 145px;padding: 40px;z-index: 9;transition: 0.3s;display: flex;align-items: center;}
.i2List .part .desc{color: #fff;width: 100%;}
.i2List .part .icon{height: 48px;margin-bottom: 20px;}
.i2List .part .icon img{width: auto;max-height: 100%;}
.i2List .part .tit{font-size: 24px;color: #fff;padding-bottom: 20px;margin-bottom: 25px;position: relative;}
.i2List .part .tit:after{height: 2px;background: #FFF;position: absolute;left: 0;bottom: 0;content: "";width: 0;
 	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.i2List .part .txt{font-size: 16px;line-height: 1.6;}

.i2List .part:hover:after{opacity: 1;}
.i2List .part:hover .imgTop{top: 0;height: 100%;}
.i2List .part:hover .tit:after{width: 60%;}
.i2List ul li:nth-child(2n){top: -40px;}

.index3{width: 100%;}
.i3Top{width: 100%;background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;padding-top: 100px;padding-bottom: 200px;}

.i3List{position: relative;padding: 30px 60px;background: var(--main-color);margin-top: -125px;}
.i3List .swiper-slide{background: transparent;}
.i3List .part{display: block;width: 100%;position: relative;}
.i3List .part:after{position: absolute;top: 0;left: 0;width: 100%;height: 100%;content: "";opacity: 0;transition: 0.3s;background: #000;}
.i3List .part .img{width: 100%;height: 360px;background: #fff;display: flex;justify-content: center;align-items: center;}
.i3List .part .img img{width: auto;height: auto;max-width: 100%;max-height: 100%;}
.i3List .part .t1{height: 60px;line-height: 60px;text-align: center;font-size: 16px;color: #fff;}
.i3List .part:hover:after{opacity: 0.3;}
.i3List .i2Next,
.i3List .i2Prev{color: #fff;}
.i3List .i2Next:after,
.i3List .i2Prev:after{font-size: 26px;}

.index4{background: url(../images/index4_bg.jpg) no-repeat center;background-size: cover;}
.i4Warp{width: 100%;}
.i4Warp .desc{width: 45%;}
.i4Warp .imgShow{width: 52%;position: relative;padding: 40px;padding-left: 0;}
.i4Warp .img{width: 100%;height: 100%;position: relative;z-index: 2;}
.i4Warp .img img{width: 100%;height: 100%;object-fit: cover;}
.i4Warp .bg{position: absolute;top: 0;right: 0;width: 100%;height: 100%;}
.i4Warp .bg img{width: 100%;height: 100%;}

.i5List{width: 100%;}
.i5List .item1{width: 69%;}
.i5List .item2{width: 26%; border-bottom: 1px solid #e5e5e5;}

.i5List .part{display: block;width: 100%;}
.i5List .part .img{width: 100%;}
.i5List .part .img img{width: 100%;}
.i5List .part .desc{margin-top: 20px;}
.i5List .part .time{color: #a2a2a2;font-size: 14px;}
.i5List .part .tit{font-size: 26px;color: #1a1a1a;line-height: 1.5;margin: 15px 0;}
.i5List .part .txt{font-size: 14px;color: #a8a8a8;line-height: 1.6;margin: 15px 0;}
.i5List .part .more{margin-top: 20px;color: var(--main-color);font-size: 16px;}
.i5List .part .more i{padding-left: 20px;}
.i5List .part:hover .img img{transform: scale(1.1);}
.i5List .part:hover .tit{color: var(--main-color);}

.i5List .item1 ul li{padding: 3% 0;border-bottom: 1px solid #e5e5e5;}
.i5List .item1 .part{display: flex;justify-content: space-between;flex-wrap: wrap;}
.i5List .item1 .part .img{width: 34%;}
.i5List .item1 .part .desc{margin-top: 0;width: 62%;}

.footer{width: 100%;background-color: #222;font-size: 14px;color: #fff;position: relative;}
.footer:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background: #000;content: "";opacity: 0.8;}
.footer .wapper{position: relative;z-index: 9;}
.footer a{color: #fff;}
.fWarp{padding: 60px 0;}
.fWarp dt{font-size: 16px;margin-bottom: 20px;}
.fWarp dl ul li{margin: 10px 0;}
.fMenu{width: 75%;}
.fMenu dl{width: 25%;}
.fTel{width: 25%;}
.fBtm{width: 100%;}
.fLogo img{max-height: 45px;width: auto;}

.fEwm{width: 100%;margin-top: 15px;}
.fEwm .ewm{width: 24%;text-align: center;font-size: 14px;color: #fff;}
.fEwm .ewm img{width: 100%;max-width: 75px;}

.tongtu{width: 100%;position: relative;overflow: hidden;}
.tongtu:after{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #000;opacity: 0.3;content: "";}
.tongtu .img{width: 100%;}
.tongtu .img img{width: 100%;}
.tongtu .imgTop{position: absolute;top: 50%;left: 0;transform: translateY(-50%);width: 100%;z-index: 9;}
.tongtu .desc{text-align: center;}
.tongtu .iTit{color: #fff;}
.tongtu .line{margin: 15px 0;}
.tongtu .line i{display: inline-block;width: 60px;height: 2px;background: #fff;}
.tongtu .iTxt{color: #fff;margin-bottom: 35px;}
.iVideoBtn{display: flex;width: 156px;height: 42px;background: rgba(255,255,255,0.3);border-radius: 5px;display: flex;justify-content: center;align-items: center;font-size: 15px;color: #fff;margin: 0 auto;cursor: pointer;transition: 0.3s;}
.iVideoBtn i{padding-right: 10px;}
.iVideoBtn:hover{background: var(--main-color);}

.tcClose2{position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 8;}
.i2-video2{width: 60%;position: relative;z-index: 9;}
.i2-video2 video{width: 100%;height: auto;max-height: 100%;}

.tanchuang{position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 99999;background: rgba(0,0,0,0.3);display: none;}
.tanchuang.active{display: block;}
.tanchuang .warp{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;padding: 10px;}
.tanchuang .box{width: 100%;max-width: 280px;height: 210px;background: #fff;color: #333;padding: 20px;box-sizing: border-box;border-radius: 15px;overflow: hidden;position: relative;}
.tcClose{font-size: 20px;cursor: pointer;position: absolute;top: -45px;right: 0;}
.tcClose img{width: 25px;filter: brightness(0%) contrast(200%) invert(100%) opacity(100%);}

.p_page{width: 100%;background: #eff0f1;}
.current{font-size: 14px;color: #666;padding: 20px 0;}
.current a{font-size: 14px;color: #666;position: relative;}
.current a:after{content: ">";padding: 0 5px;color: #666;}
.current a:last-child:after{display: none;}

.pMenu{flex: 1;}
.pMenu ul li{position: relative;}
.pMenu ul li:after{content: '';position: absolute;right: 0;top: 50%;margin-top: -8px;width: 1px;height: 15px;background: #ccc;}
.pMenu a{position: relative;font-size: 15px;color: #333;padding: 0 30px;line-height: 80px;display: block;}
.pMenu ul li.on a{background: var(--main-color);color: #fff;}
.iTit2{font-size: 22px;color: #222;}

/*about*/

.about1{width: 100%;}
.about1 .wapper{position: relative;}
.about1 .iBg{position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;z-index: -1;}
.about1 .iBg img{max-width: 100%;max-height: 100%;width: auto;height: auto;opacity: 0.3;}

.about1List{width: 100%;}
.about1List ul li{width: 25%;color: var(--main-color);text-align: center;}
.about1List .tit{font-size: 15px;}
.about1List .tit strong{font-size: 50px;}
.about1List .txt{font-size: 18px;margin-top: 10px;}

.about2{background-attachment: fixed;}
.about2 .iTxt p{line-height: 2.2;}
.about2List{width: 100%;}
.about2List ul li{width: 33.3%;color: #fff;position: relative;text-align: center;border-right: 1px solid rgba(255,255,255,0.15);}
.about2List ul li:last-child{border: none;}
.about2List .tit{font-size: 15px;}
.about2List .tit strong{font-size: 50px;font-weight: normal;}
.about2List .txt{font-size: 24px;margin-top: 10px;font-weight: bold;}

.about3{background: #f7f7f7;}
.about3List{position: relative;width: 100%;}
.about3List .part{display: block;width: 100%;height: 350px;background: #fff;border-radius: 5px;padding: 20px;overflow: hidden;display: flex;justify-content: center;align-items: center;text-align: center;cursor: default;}
.about3List .part:after{position: absolute;top: 0;left: 50%;transform: translateX(-50%);width: 0px;height: 100%;transition: 0.3s;content: "";background: var(--main-color);}
.about3List .part .desc{position: relative;z-index: 2;}
.about3List .part .year{font-size: 32px;color: var(--main-color);font-weight: bold;}
.about3List .part .line{margin: 15px 0;}
.about3List .part .line i{width: 40px;height: 2px;display: inline-block;background: var(--main-color);}
.about3List .part .tit{font-size: 20px;color: #333;font-weight: bold;margin: 10px 0;}
.about3List .part .txt{font-size: 15px;color: #888;line-height: 1.6;}

.about3List .part:hover:after{width: 100%;}
.about3List .part:hover .year{color: #fff;}
.about3List .part:hover .line i{background: #fff;}
.about3List .part:hover .tit{color: #fff;}
.about3List .part:hover .txt{color: #fff;}

.about3List .swiper-button-next,
.about3List .swiper-button-prev{width: 48px;height: 48px;background: #fff;border: 1px solid #ddd;border-radius: 50%;}
.about3List .swiper-button-next{right: -60px;}
.about3List .swiper-button-prev{left: -60px;}
.about3List .swiper-button-next:after,
.about3List .swiper-button-prev:after{font-size: 20px;color: #333;}

.about4List{width: 100%;}
.about4List .part{padding: 20px;background: #F7F7F7;padding-bottom: 0;}
.about4List .part .img{width: 100%;height: 215px;display: flex;justify-content: center;align-items: center;}
.about4List .part .img img{max-width: 100%;max-height: 100%;}
.about4List .part .tit{height: 60px;line-height: 60px;font-size: 16px;color: #333;text-align: center;}
.about4List .part:hover .img img{transform: scale(1.1);}

.about5{background: #F7F7F7;}
.about5List{width: 100%;}
.about5List ul li{width: 25%;padding: 10px;}
.about5List ul li:nth-child(1),
.about5List ul li:nth-child(2),
.about5List ul li:nth-child(3){width: 33.3%;}

.about5List .part{display: block;width: 100%;height: 100%;display: flex;flex-direction: column;background: #fff;}
.about5List .part .img{width: 100%;flex: 1;height: 100%;}
.about5List .part .img img{width: 100%;height: 100%;object-fit: cover;}
.about5List .part .tit{height: 50px;line-height: 50px;text-align: center;font-size: 16px;color: #333;}

.about6{width: 100%;}
.about6 .iTxt p:before{content: "●";color: var(--main-color);padding-right: 10px;font-size: 20px;}
.about6List{width: 100%;}
.about6List ul li{width: 20%;padding: 15px;}
.about6List .part{display: flex;justify-content: center;align-items: center;width: 100%;height: 100%;padding: 20px;border-radius: 5px;box-shadow: 0 0 6px rgb(0 0 0 / 2%), 2px 2px 4px rgb(0 0 0 / 8%);}
.about6List .part img{width: auto;height: auto;max-width: 100%;max-height: 100%;}
.about6List .part:hover img{transform: scale(1.1);}

.abo7Top{width: 100%;}
.abo7Top .item{width: 48%;padding: 50px 20px;background: #f2f2f2;text-align: center;}
.abo7Top .iTit{margin-bottom: 20px;}
.abo7Top .txt{font-size: 20px;color: #333333}
.abo7Top a{color: var(--main-color);text-decoration: underline;}

.abo7Warp{width: 100%;}
.abo7Warp .item{width: 48%;}
.abo7Warp .tit{display: flex;align-items: center;font-size: 24px;color: #333;font-weight: bold;margin-bottom: 20px;}
.abo7Warp .tit i{display: block;width: 100%;height: 1px;background: #ccc;flex: 1;margin-left: 10px;}
.abo7Warp .info{font-size: 16px;color: #333;}
.abo7Warp .info ul li{margin: 10px 0;display: flex;}
.abo7Warp .info .icon{width: 35px;height: 35px;display: flex;justify-content: center;align-items: center;margin-right: 15px;background: var(--main-color);}
.abo7Warp .info .icon img{width: 20px;}
.abo7Warp .info .txt{flex: 1;color: #666;line-height: 35px;}

/*product*/
.proMenuWarp{margin: 35px 0;}
.proMenu{width: 100%;padding: 0 10px;}
.proMenu ul li{width: 16.66%;padding: 5px;}
.proMenu ul li a{display: block;width: 100%;height: 60px;background: #EEE;text-align: center;line-height: 60px;overflow: hidden;font-size: 16px;color: #333;}
.proMenu ul li a:hover,
.proMenu ul li.on a{background: var(--main-color);color: #fff;}

.product{width: 100%;}
.proList{width: 100%;}
.proList ul li{width: 33.3%;padding: 15px;}
.proList .part{display: block;width: 100%;height: 100%;padding: 5px;background: #F5F5F5;}
.proList .part .img{width: 100%;height: 325px;display: flex;justify-content: center;align-items: center;}
.proList .part .img img{width: 100%;height: 100%;object-fit: cover;}
.proList .part .desc{padding: 20px 10px;text-align: center;}
.proList .part .tit{font-size: 22px;color: #000;}
.proList .part .txt{font-size: 15px;color: #999;margin-top: 10px;line-height: 1.6;}
.proList .part:hover{background: var(--main-color);}
.proList .part:hover .img img{transform: scale(1.1);}
.proList .part:hover .tit{color: #fff;}
.proList .part:hover .txt{color: #fff;}

/*prodetail*/

.prodetail{width: 100%;background: #F5F5F5;padding: 40px 0;}
.prodBox{background: #fff;margin-bottom: 40px;padding: 40px;}
.prod1{padding: 40px;}
.prod1 .left{width: 45%;}
.prod1 .right{width: 50%;}
.prodetail .swiper-button-next,.prodetail .swiper-button-prev{color: #333;}
.prodetail .swiper-button-next:after,.prodetail .swiper-button-prev:after{font-size: 42px;}
.prodpSwiper .swiper-slide img{transition: 0.5s;}
.prodpSwiper .swiper-slide img:hover{transform: scale(1.1);}
.prodpSwiper{z-index: 98 !important;}
.prodtSwiper{margin-top: 10px;}
.prodtSwiper .swiper-slide{border: 1px solid #ddd;}
.prodtSwiper .swiper-slide img{opacity: 0.6;}
.prodtSwiper .swiper-slide-thumb-active{border-color: #000;}
.prodtSwiper .swiper-slide-thumb-active img{opacity: 1;}

.prodTit{font-size: 30px;color: #333;font-weight: bold;padding-bottom: 20px;border-bottom: 1px solid #333;}
.prodTxt{padding: 20px 0;font-size: 16px;color: #666;min-height: 250px;}
.prodTel{padding: 20px 0;border-top: 1px dashed #DDD;border-bottom: 1px dashed #DDD;}
.prodTel .icon{width: 32px;height: 32px;border-radius: 50%;margin-right: 10px;display: flex;justify-content: center;align-items: center;color: #fff;border-radius: 50%;font-size: 16px;background: var(--main-color);}
.prodTel span{font-size: 16px;color: #333;font-weight: bold;}
.prodTel strong{color: var(--main-color);font-size: 20px;}
.prodBtn{margin-top: 15px;}
.prodBtn a{display: inline-block;padding: 10px 35px;background: #999;border-radius: 5px;color: #fff;font-size: 16px;margin-right: 20px;}
.prodBtn .prodQueryBtn{background: var(--main-color);color: #fff;}

.prodTop{background: #DBDBDB;height: 54px;line-height: 54px;}
.prodTop strong{display: block;width: 100%;max-width: 200px;color: #fff;font-size: 18px;font-weight: bold;background: var(--main-color);text-align: center;}
.prodInfo{overflow: auto;font-size: 16px;color: #333;}
.prodInfo img{max-width: 100%;}

/*pb_table*/
.pb_table table{border:none!important;width:100%!important;padding:0!important;border-collapse:collapse!important;border-spacing:0!important;height:auto!important;}
.pb_table table tr:nth-child(odd){background:#F9FAFC!important;}
.pb_table table td,.pb_table table th{text-align:left!important;padding:10px 24px!important;line-height:1.3!important;width:auto!important;font-size:16px!important;color:#666!important;border:1px solid #E6E6E6!important;background:none!important;height:auto!important;}
.pb_table table td *,.pb_table table th *{line-height:1.3!important;}
.pb_table table tr:first-child td,.pb_table table tr:first-child th{color:#333!important;}
.pb_table table tr:hover{background:#EEE!important;}
.pb_table{width:100%;overflow-y:auto;}

.prodList{width: 100%;}
.prodList ul li{width: 25%;padding: 10px;}
.prodList .part{display: block;width: 100%;height: 100%;}
.prodList .part .img{width: 100%;height: 240px;}
.prodList .part .img img{width: 100%;height: 100%;object-fit: cover;}
.prodList .part .tit{font-size: 15px;height: 56px;line-height: 56px;background: #f5f5f5;text-align: center;color: #797979;adding: 0 10px;}
.prodList .part:hover .img img{transform: scale(1.1);}

.mesForm{width: 100%;}
.mesForm ul li{width: 100%;margin-bottom: 20px;}
.mesForm ul li.w50{width: 48%;}
.mesForm input{width: 100%;padding: 15px 20px;line-height: 26px;font-size: 16px;color: #333;border: 1px solid #ccdad6;}
.mesForm textarea{width: 100%;height: 145px;padding: 15px 20px;line-height: 26px;font-size: 16px;color: #333;outline: none;resize: none;display: block;border: 1px solid #ccdad6;}
.mesForm button{cursor: pointer;display: block;width: 178px;font-size: 16px;border-radius: 50px;height: 46px;background: #0075C2;color: #FFF;line-height: 46px;border: none;}

/*solution*/

.solution{width: 100%;}
.solutionList{width: 100%;}
.solutionList ul li{width: 50%;padding: 15px;}
.solutionList .part{display: block;width: 100%;height: 100%;background: #F5F5F5;}
.solutionList .part .img{display: block;}
.solutionList .part .img img{width: 100%;    height: 500px;object-fit: cover;}
.solutionList .part .desc{padding: 20px;}
.solutionList .part .tit{font-size: 20px;color: #222;font-weight: bold;position: relative;padding-left: 25px;}
.solutionList .part .tit:after{content: '';width: 8px;height: 8px;border: 2px solid #0075C2;border-radius: 50%;position: absolute;left: 0;top: 50%;margin-top: -4px;}
.solutionList .part .txt{font-size: 15px;color: #666;margin-top: 10px;}

/*solutionInner*/

.solInner{width: 100%;}
.solInnerWarp{position: relative;margin-top: -10.2vw;background: #fff;border-radius: 20px 20px 6px 6px;padding: 45px 50px 50px;box-shadow: 0 0 20px rgb(0 0 0 / 10%);}
.solInnerWarp .line{margin: 35px 0;width: 100%;height: 1px;background: #eee;}
.solInnerWarp .iLine i{display: inline-block;width: 24px;height: 4px;background: var(--main-color);}
.solInnerList{width: 100%;}
.solInnerList ul li{width: 33.3%;padding: 10px;}
.solInnerList .part{display: block;width: 100%;height: 100%;border: 1px solid #eee;border-radius: 5px;}
.solInnerList .part .img{width: 100%;}
.solInnerList .part .img img{width: 100%;}
.solInnerList .part .desc{padding: 20px;text-align: center;}
.solInnerList .part .tit{font-size: 20px;color: #222;font-weight: bold;}
.solInnerList .part .txt{font-size: 15px;color: #999;margin-top: 10px;line-height: 1.6;}

.solInnerMore a{height: 60px;background: #5b5b5b;border-radius: 8px;height: 60px;display: flex;justify-content: center;align-items: center;width: 192px;color: #fff;font-size: 16px;margin: 0 auto;}
.solInnerMore a img{width: 32px;margin-right: 8px;}
.solInnerMore a:hover{background: var(--main-color);}

/*news*/

.news{width: 100%;}
.newsList{width: 100%;}
.newsList ul li{margin-bottom: 30px;}
.newsList .part{display: flex;justify-content: space-between;flex-wrap: wrap;border-bottom: 1px solid #ddd;-webkit-box-shadow: 0 0 8px rgb(0 0 0 / 15%);box-shadow: 0 0 8px rgb(0 0 0 / 15%);}
.newsList .part .date{width: 10%;display: flex;flex-direction: column;justify-content: center;align-items: center;position: relative;transition: 0.3s}
.newsList .part .date strong{font-size: 52px;color: #666;}
.newsList .part .date span{font-size: 18px;color: #666;display: block;margin-top: 10px;}
.newsList .part .desc{padding: 0 40px 0 70px;width: 67%;display: flex;flex-direction: column;justify-content: center;position: relative;}
.newsList .part .tit{font-size: 22px;color: #777;}
.newsList .part .txt{font-size: 14px;color: #777;margin-top: 10px;line-height: 1.6;}
.newsList .part .img{width: 23%;display: flex;justify-content: center;align-items: center;}
.newsList .part .img img{width: auto;height: auto;max-width: 100%;max-height: 100%;}
.newsList .part .desc:after {
	content: '';
	background: #bcbcbc;
	position: absolute;
	width: 46px;
	height: 1px;
	top: 50%;
	left: 0;
	z-index: 2;
}

.newsList .part .desc:before {
	content: '';
	position: absolute;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 12px solid #015595;
	left: 0;
	top: 50%;
	margin-top: -12px;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
}

.newsList .part:hover .date{background: var(--main-color);}
.newsList .part:hover .date strong{color: #fff;}
.newsList .part:hover .date span{color: #fff;}
.newsList .part:hover .img img{transform: scale(1.1);}
.newsList .part:hover .tit{color: var(--main-color);}
.newsList .part:hover .desc:before{opacity: 1;visibility: visible;}

.contact{width: 100%;}
.contactWarp{width: 100%;}
.contactWarp .left,
.contactWarp .right{width: 48%;}
.contactWarp .mesForm .tit{margin-bottom: 10px;}
.contactWarp .mesForm input{padding: 10px;}
.contactTit{font-size: 20px;color: #222;font-weight: bold;}

.map{width: 100%;height: 328px;position: relative;overflow: hidden;}

.inside{width: 100%;min-height: 500px;overflow: hidden;}
.inside img{max-width: 100%;}



@media only screen and (max-width: 1400px) {
.wapper{ width:100%;max-width: 1200px;padding: 0 20px;}
.headList{padding: 0 20px;max-width: 100%;}
.menuD2Warp{width: 100%;padding: 20px;}
.i3List .part .img{height: 300px;}
.iTitCn{font-size: 28px;}
.iTxt{font-size: 15px;}
.pMenu a{padding: 0 20px;}
.about3List .swiper-button-next{right: 0;}
.about3List .swiper-button-prev{left: 0;}
.about6List ul li{padding: 10px;}
.tongtu .line{margin: 5px 0;}
.tongtu .iTxt{margin-bottom: 10px;}
.tongtu .img img{/*height: 180px;*/object-fit: cover;}
.proMenu ul li{width: 25%;}
.proList .part .img{height: 280px;}
.proList .part .tit{font-size: 16px;}
.proList .part .txt{font-size: 14px;}






}

@media only screen and (max-width: 980px) {
.wapper{padding: 0 10px;}
.header{ display:none}
.sp_header1{ display:block;}
.sjj_nav1{ display:block;}
.hHei{height: 70px;}
.banner .part .imgTop{padding: 0 40px;}
.banTit{font-size: 32px;}
.i1Top{display: block;text-align: center;}
.iTit{display: block;font-size: 26px;}
.iTit i{display: block;margin: 0 auto;}
.iTxt{font-size: 14px;}
.iTitCn{font-size: 26px;}
.i1Btn{justify-content: center;width: 100%;margin-top: 20px;}
.i1List .part{height: 420px;}
.i1List .part .desc{height: 100px;}
.i2List .topTit{width: 100%;}
.i2List ul li{width: 100%;}
.i2List ul li:nth-child(2n){top: 0}
.i4Warp .desc{width: 100%;margin-bottom: 20px;}
.i4Warp .imgShow{width: 100%;}
.fMenu{width: 100%;}
.fMenu dl{width: 100%;margin: 10px 0;}
.fMenu dl ul{display: flex;flex-wrap: wrap;}
.fMenu dl ul li{width: 33.3%;}
.fTel{width: 100%;}
.fBtm{flex-direction: column;align-items: center;}
.fBtm .cop{margin-top: 20px;}
.p_page .warp{display: block;}
.pMenu{width: 100%;}
.pMenu ul li{width: 33.3%;}
.pMenu a{font-size: 14px;line-height: 50px;}
.about1List ul li{width: 50%;padding: 10px 5px;text-align: center;}
.about1List .tit strong{font-size: 48px;}
.about2List ul li{width: 100%;padding: 20px 0;border-right: none;border-bottom: 1px solid rgba(255,255,255,0.15);}

.about5List ul li{width: 50%;padding: 5px;}
.about5List ul li:nth-child(1), .about5List ul li:nth-child(2), .about5List ul li:nth-child(3){width: 100%;}
.about6List ul li{width: 33.3%;padding: 5px;}
.about6List .part{padding: 20px 10px;}
.contactWarp .left, .contactWarp .right{width: 100%;margin-bottom: 20px;}
.i2-video2{width: 100%;padding: 10px;}
.newsList .part .date{width: 100%;padding: 20px;}
.newsList .part .desc{width: 100%;padding: 20px;}
.newsList .part .desc:after{display: none;}
.newsList .part .desc:before{display: none;}
.newsList .part .img{width: 100%;order: 0;}

.prod1{padding: 20px;}
.prod1 .left{width: 100%;margin-bottom: 35px;}
.prod1 .right{width: 100%;}
.prodList ul li{width: 100%;}
.mesForm ul li.w50{width: 100%;}
.prodBox{padding: 20px;}
.proMenu{padding: 0;}
.proMenu ul li{width: 33.3%;}
.proMenu ul li a{height: 50px;line-height: 50px;}
.proList ul li{width: 100%;padding: 10px 0;}
.solutionList ul li{width: 100%;padding: 10px 0;}
.solInnerWarp{padding: 20px;}
.solInnerList ul li{width: 100%;padding: 10px 0;}

.i5List .item1{width: 100%;}
.i5List .item2{width: 100%;}

.i5List .item1 ul li{padding: 3% 0;border-bottom: 1px solid #e5e5e5;}
.i5List .item2 ul li{padding: 3% 0;}
.i5List .item1 .part{display: flex;justify-content: space-between;flex-wrap: wrap;}
.i5List .item1 .part .img{width: 100%;}
.i5List .item1 .part .desc{margin-top: 20px;width: 100%;}

.abo7Top .item{width: 100%; margin:15px 0;}
.abo7Warp .item{width: 100%; margin:15px 0;}




}
