/* ===== header.css ===== */
*{margin: 0;padding: 0; font-family: "微软雅黑";}
html{ -webkit-text-size-adjust:none;}
html, body{overflow-x: hidden; font-size:14px;}
img{ border:none; vertical-align:middle;}
input, select, textarea, button { vertical-align:middle}
button { border:0 none; background-color:transparent; cursor:pointer}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner{ border:none; padding:0;}
li{list-style: none;}
a{text-decoration: none;outline:none;}
table{width:100%; border-collapse:collapse; border-spacing:0; table-layout:fixed;}
/*更改-webkit-内核滚动条样式*/
::-webkit-scrollbar { width:8px;  height: 8px; background-color: #fff;}  
::-webkit-scrollbar-track  { border-radius: 10px; background-color: #fff;}  
::-webkit-scrollbar-thumb  {  border-radius: 10px; background-color: #0051A2; -webkit-box-shadow: inset 0 0 6px rgba(14,91,167,0.3);}
html, body{overflow-x: hidden;}

/******************************************************************************************************************/
body{
	position: relative;
	left: 0;
	transition:all .5s ease 0s;
	-webkit-transition:all .5s ease 0s;
	-moz-transition:all .5s ease 0s;
}
.menuClickOn{
   	left: -30%; 	
   	transition: all .5s ease 0s;
   	-webkit-transition: all .5s ease 0s;
   	-moz-transition: all .5s ease 0s;
   }

a{transition-duration: 0.45s; -webkit-transition-duration: 0.45s; -moz-transition-duration: 0.45s;}
.headbox{ position: relative; width: 100%;}
header{ display: flex; align-items: center; position: absolute; width: 96%; max-width: 1500px; top: 30px; left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 999; margin-left: -42%\9;
	background-color: #fff;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: all .6s ease 0s;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	box-sizing: border-box; 
	-moz-box-sizing: border-box;
	border-left: 0px solid #0A318F;

  }
header>article{ display: flex; align-items: center; width: 100%; margin: 0 auto;}
header h1{ flex-shrink: 0; margin-left: 30px; width: auto;}
header h1 a{ display: block; width: 202px;height: 44px;line-height: 40px; padding: 15px 0; font-size: 0;
	background: url(../images/yaquanlogo2.png) no-repeat center left / 100%; position:relative;
 }

header h1 a span {
      display:block; width:250%; font-size:15px; position:absolute; left:160px; top:15px; color:#0A318F;
    }
header.active1{ position: fixed; top: 0; width: 100%; margin-left: -50%\9; border-left: 10px solid transparent; border-bottom: 1px solid #ccc;}
header.active2{
	position: fixed;
	transform: translateX(-80%);
	-webkit-transform: translateX(-80%);
	-moz-transform: translateX(-80%);
}
header.active2{
	transform: translateX(-80%);
	-webkit-transform: translateX(-80%);
	-moz-transform: translateX(-80%);
}

.menuList{ flex: 1; display: flex; align-items: center; justify-content: flex-end;}
.menuList ul{ display: flex; align-items: center; justify-content: center; flex: 1; gap: 8px; white-space: nowrap; font-size: 0; position: relative; padding: 0 10px;}
.menuList ul li{ display: inline-block; margin: 0; position: relative; white-space: nowrap;}
.menuList ul li>a{ position: relative; display: block; padding: 22px 6px; color: #0A318F; font-size: 14px;}
.menuList ul li>a:after{ position: absolute; content: ''; left: 0; bottom: -1px; width: 100%; border-bottom: 3px solid #0A318F; 
	opacity: 0; 
	transform: rotateY(90deg);
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
}
.menuList ul li a:hover:after,
.menuList ul li.on>a:after{  opacity: 1;
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
}

.formnav .sub,
.menuList ul li>a:after{
	transition: all .6s ease 0s;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
}

.mobmenu{ margin-right: 15px; cursor: pointer; display: inline-block; vertical-align: middle; width: 40px; padding: 10px 0; text-align: center; position: relative; flex-shrink: 0;}
.mobmenu span{ position: relative; left: 50%; margin-left: -15px; display: block; width: 30px; height: 3px; background-color: #0A318F;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.mobmenu span.sp2,
.mobmenu span.sp3{ position: absolute;  width: 30px; height: 3px; background-color:#0A318F;}
.mobmenu span.sp2{ top: 2px;}
.mobmenu span.sp3{ bottom: 2px;}
.mobmenu:hover span.sp1{ width: 0;}
.mobmenu.active span.sp1{ width: 0;}
.mobmenu.active span.sp2{
	transform: rotate(45deg) translateX(11px);
	-webkit-transform: rotate(45deg) translateX(11px);
	-moz-transform: rotate(45deg) translateX(11px);
}
.mobmenu.active span.sp3{
	transform: rotate(-45deg) translateX(11px);
	-webkit-transform: rotate(-45deg) translateX(11px);
	-moz-transform: rotate(-45deg) translateX(11px);
}
.mobmbg{ width: 100%; height: 100%; position: fixed; 
	left: 0;
	top: 0;
	background-color: #3282DA;
	background-color: rgba(24,59,97,0.7);
	z-index: 99;
	display: none;
}
.mobmbg.active{
	display: block;
}

.mobnavs{ position: fixed; right: 0; top: 0; width: 24%; height: 90%; z-index: 9999; 
	background: url(../../Center/images/yaquanlogo3.png) no-repeat -14% 4% / 70%,url(../images/mainbg01.jpg) repeat;
	padding: 6% 3% 0;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transform: translateX(110%);
	-webkit-transform: translateX(110%);
	-moz-transform: translateX(110%);
	right: -100%\9;
}
.mobnavs.active{
	transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	right: 0px\9;
}

.mobnavs ul{ position: relative; height: 90%;overflow-y:auto;}
.mobnavs ul li{margin-bottom: 15px;}
.mobnavs ul li>a{ display: block; font-size: 16px; color: #333; margin-right: 10px;}
.mobnavs ul li dl{ padding-top: 10px;}
.mobnavs ul li dl dd{}
.mobnavs ul li dl dd a{ display: inline-block; color: #777; margin-right: 10px; padding-bottom: 10px; font-size: 14px;}
.mobnavs ul li a:hover{ color: #0A318F;}


.menuList ul li dl{ position: absolute; left: 0; top: 71px; width: 520px;  
	background-color: #fff;
	padding:16px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-bottom: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0s ease 0.3s;
	-webkit-transition: opacity 0.2s ease, visibility 0s ease 0.3s;
	-moz-transition: opacity 0.2s ease, visibility 0s ease 0.3s;
 }
.menuList ul li:hover dl,
.menuList ul li dl:hover,
.menuList ul li.hover dl {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
}
.menuList ul li dl.newdl1{ height: auto; min-height: 60px;}
.menuList ul li dl.newdl2{ height: auto; min-height: 60px;}
.menuList ul li dl.newdl2 dt,
.menuList ul li dl.newdl1 dt{ display: none;}
.menuList ul li dl.newdl2 dd,
.menuList ul li dl.newdl1 dd{ width: 100%; display: flex; flex-wrap: wrap; padding: 8px; float: none;}
.menuList ul li dl.newdl1 dd a {width:50%; display:block; white-space:nowrap; padding:5px 8px; margin:2px 0; border-radius:6px; font-size:12px; box-sizing:border-box;}
.menuList ul li dl.newdl1 dd a:hover { background: rgba(99,102,241,0.1); color: #6366f1; padding-left:12px;}
.menuList ul li dl.newdl13{ height: auto; min-height: 140px;}

.menuList ul li dl dt{ float: right;  width: 80px;}
.menuList ul li dl dt img{ display: block; width: 100%; }
.menuList ul li dl dd{ float: left; width: 280px; font-size: 0;}
.menuList ul li dl dd a{ width: 50%; color: #999; margin-bottom: 10px; font-size: 13px; display: inline-block; vertical-align: middle;}
.menuList ul li dl dd a:hover{ color: #0A318F;}

.formnav{ display: inline-block; vertical-align: middle; padding-right: 30px;}
.formnav .scr{ width: 150px; height: 24px; font-size: 12px; padding-left: 15px; line-height: 24px; outline: none;
	border:1px solid #0A318F; vertical-align: middle;
}
.formnav .sub{ width: 75px; height: 27px; color: #fff; background: url(../images/search01.png) no-repeat; 
	background-color: #0A318F; padding-left: 15px;
	background-position: 10px center; vertical-align: middle;
}

.formnav .sub:hover{ background-color: #3082DA;}


.language{ position: relative; display: inline-block; vertical-align: middle; margin-right:10px;}
.lang-drop-wrap{ position: relative; display: inline-block; vertical-align: middle; margin-right:10px;}
.lang-current{ display: inline-flex; align-items: center; gap: 4px; color: #0A318F; font-size: 13px; padding: 4px 10px; border-radius: 4px; cursor: pointer; transition: all 0.3s ease; user-select: none;}
.lang-current:hover{ background-color: rgba(10,49,143,0.08);}
.lang-current .flag-icon{ width: 18px; height: 12px; border-radius: 2px; flex-shrink: 0; display: block;}
.lang-current .lang-arrow{ font-size: 10px; margin-left: 2px; transition: transform 0.3s ease;}
.lang-drop-wrap:hover .lang-arrow{ transform: rotate(180deg);}
.lang-dropdown{ position: absolute; top: 100%; left: 0; min-width: 100%; background: #fff; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); padding: 4px 0; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.25s ease; z-index: 1000; white-space: nowrap;}
.lang-drop-wrap:hover .lang-dropdown{ opacity: 1; visibility: visible; pointer-events: auto;}
.lang-dropdown a{ display: flex; align-items: center; gap: 6px; color: #333; font-size: 13px; padding: 6px 14px; text-decoration: none; transition: background 0.2s;}
.lang-dropdown a:hover{ background-color: rgba(10,49,143,0.06); color: #0A318F;}
.lang-dropdown a .flag-icon{ width: 18px; height: 12px; border-radius: 2px; flex-shrink: 0; display: block;}
.language a.on{ background-color: #0A318F; color: #fff;}

footer{ width: 100%; padding: 35px 0; background-color:#183B61;}
.foot{ width: 84%; min-width: 320px; max-width: 1200px; position: relative; left: 50%; transform: translateX(-50%); overflow: hidden;
	-moz-transform: translateX(-50%); 
}

.foot .lftfoot{ float: left; width: 75%;}
.foot .lftfoot ul{ width: 100%;}
/*.foot .lftfoot ul li{ margin-bottom: 5px;}*/
.foot .lftfoot ul li a{ display: inline-block; margin-right: 10px; font-size: 14px; color: #fff; line-height: 1.8; margin-bottom: 5px;}
.foot .lftfoot ul li a:hover{ text-decoration: underline;}
.foot .lftfoot .copy{ width: 100%; border-top: 1px solid #fff; padding-top: 15px; margin-top: 15px;}
.foot .lftfoot .copy p{ font-size: 14px; color: #fff; line-height: 1.8;}

.foot .ritfoot{ float: left; width: 25%; padding-top: 30px;}
.foot .ritfoot .logo{ text-align: right; width: 100%; margin-bottom: 10px;}
.foot .ritfoot .logo img{ width: 128px;}
.foot .ritfoot .ewm{ text-align: right; width: 100%;}
.foot .ritfoot .ewm img{ width: 128px;}
.foot .ritfoot .kh{ text-align: right; width: 100%;}
.foot .ritfoot .kh p{ color: #fff; line-height: 1.8; margin-top: 15px; font-size: 15px;}



.jz-tops{ position: fixed; z-index: 999; right: 0; top: 60%; margin-top: -100px; width: 60px; height: 240px; 
	background-color: #0051A2; background-color: rgba(0,81,162,0.4); 
	opacity: 0;
   }
.jz-tops.active{ opacity: 1;}

.jz-tops ul{ width:100%; position: relative;}
.jz-tops ul li{ cursor: pointer; width: 60px; height: 60px; 
	background-color: #0051A2; 
	background-color: rgba(0,81,162,0.4); position: absolute; left: 0;}
.jz-tops ul li a{ display: block;}
.jz-tops ul li i{ display: inline-block; width: 60px; height: 60px; text-align: center; line-height: 60px;}
.jz-tops ul li i>img{ display: inline-block; width: 25px; height: auto;}
.jz-tops ul li.f3 i>img{ width: 32px;}
.jz-tops ul li font{ font-size: 14px; font-weight: bold; color: #fff;}
.jz-tops ul li.f1{ width: 225px; top: 0;}
.jz-tops ul li.f2{ top: 60px;}
.jz-tops ul li.f3{ top: 120px; width: 225px;}
.jz-tops ul li.f4{ top: 180px;}
/*公共过渡*/
.jz-tops,
.jz-tops ul li.f3 font>img,
.jz-tops ul li.f1,
.jz-tops ul li{
	transition-duration: .5s;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
}
.jz-tops ul li.f3 font>img{ position: absolute; left: 70px; top: -10px; display: block; border: 1px solid #0051A2; width: 80px; height: 80px; opacity: 0;}
.jz-tops ul li.f3 span{ position: absolute; right: 25px; top: 12px; font-size: 13px; color: #fff;}
.jz-tops ul li:hover{ background-color: #0051A2;}

.jz-tops ul li.f3:hover font>img{ opacity: 1;}
.jz-tops ul li.f3:hover,
.jz-tops ul li.f1:hover{
	transform: translateX(-165px);
	-webkit-transform: translateX(-165px);
	-moz-transform: translateX(-165px);
}





























/* ===== style.css ===== */
.banner{ width: 100%;}

.banner .swiper-pagination-bullet{ width: 5px; height: 5px; background-color: #0050A2; opacity: 1; vertical-align: middle;
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	}
.banner .swiper-pagination-bullet-active{ background-color: #EA2A39; width: 12px; height: 12px;}
.waperbox{ position: relative; padding-top: 60px; max-width: 1200px; width: calc(100% - 40px); margin: 0 auto; display: table; box-sizing: border-box;}

.wfivebox{ float: left; width: 50%; position: relative;}
.wfourbox{ float: right; width: 50%; position: relative;}
.wsixbox{ float: left; width: 50%; position: relative;}
.wsixbox2{ float: left; width: 100%; position: relative;}
.wthreebox{ float: right; width: 47%; position: relative;}

.wfourbox1{ float: left; width: 25%;}
.wfivebox3{ float: right; width: 40%;}
.wfivebox4{ width: 50%;}
.wfivebox5{ width: 75%;}

.wperTit{ width: 100%; position: relative;}
.wperTit h3{ font-size: 48px; color: #0051A2; text-transform: uppercase; font-family: 'arial';}
.wperTit h5{ font-size: 29px;  color: #0051A2; margin-top: 5px;}

.wperconts{ padding-top: 40px;}
.wperconts p{ font-size: 14px; line-height: 1.8; color: #666; text-indent: 2em;}
.wperconts p>font{ color: #3282DA;}
.wperconts>a{ display: block; margin-top: 40px; text-transform: uppercase; width: 100px; height: 30px; line-height: 30px; border:1px solid #0051A2; text-align: center; font-size: 12px; color: #0051A2;}
.wperconts>a:hover{ background-color: #0051A2; color: #fff;}

.wperconts2{ padding-left: 8%; padding-right: 8%; }
.wperconts2 p{ color: #fff;}
.wperconts2 a{ border-color: #fff; color: #fff;}
.wperconts2 a:hover{ background-color: #fff; color: #0051A2;}

.aboutconts{ padding-top: 30px;}
.aboutconts p{ font-size: 14px; color: #666; line-height: 1.8; text-indent: 2em;}
.aboutconts p font{ color: #2273C8;}
.aboutnumber{ position: relative; width: 100%; margin-top: 30px; border-top: 1px solid #ccc;}
.aboutnumber:after{ position: absolute; content: ''; top: -2px; left: 0; width: 50px; height: 3px; background-color: #0051A2;}
.aboutnumber ul{ font-size: 0; text-align: left; padding-top: 30px;}
.aboutnumber ul li{ display: inline-block; width: 25%; vertical-align: top;}
.aboutnumber ul li strong{ display: block; margin: 0 auto; font-size: 36px; color: #0051A2;}
.aboutnumber ul li font{ display: block; font-size: 13px; margin: 10px auto 0;}

.videobox{ position: relative; display: table; z-index: 1;}
.videobox:after{ position: absolute; left: 14.5%; top: -1%; content: ''; width: 90%; height: 102%; border: 0px solid #0A318F; z-index: -1;}
.videobox .vidone{ position: relative; float: right; width: 100%; padding: 15px 0;}
.videobox .vidone a{ display: block;}
.videobox .vidone>a>video{ display: inline-block; min-width: 300px; width: 100%; height: 180px;
	object-fit: cover;
	object-position: center;
} 

.servicecolor{ width: 100%;  margin-top: 80px; padding-bottom: 80px; background: url(../images/mainbg01.jpg) repeat;}
.secrvicelist{ width: 100%;}
.secrvicelist li{ margin-top: 20px; width: 19.4%; height: 85px; background-color: #3282DA; display: inline-block; vertical-align: top;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	}
.secrvicelist li a{ display: block; width: 100%; height: 100%;}
.secrvicelist li i{ display: block; text-align: center; padding-top: 14px;}
.secrvicelist li i img{ height: 30px;}
.secrvicelist li font{ display: block; text-align: center; font-size: 15px; color: #fff; margin-top: 10px;}
.secrvicelist li:hover{ background-color: #0051A2;}

.servicebg{ width: 100%; height: 600px; position: relative; 
	background: url(../images/wj-index02.jpg) no-repeat; 
	background-position: center center;
	background-size: cover; 
	z-index: 1;
	}

.servicebg:after{ position: absolute; content: ''; left: 0; top: 0; width: 50%; height: 100%;
	background-color: rgba(0,81,162,0.35);
	z-index: -1;
	}
.wfivebox1{ float: none; position: absolute; right: 5%; top: 20px; width: 45%;}
.wfivebox2{ float: left; width: 50%; overflow: hidden; }
.serviceCont{ position: relative; padding: 79px 0 0; height: auto; min-height: 400px; overflow: visible; }
.serviceBcons{ float: right; width: 100%; min-height: 600px; height: auto; }
.serviceBcons a{ display: flex; flex-direction: column; padding: 0 0 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	}
.serviceBcons h3{ font-size: 18px; color: #ffffff; padding: 15px 20px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.5);}
.serviceBcons p{ font-size: 14px; color: #ffffff; line-height: 1.8; text-indent:2em; margin-top: 10px; padding: 0 20px 10px; text-shadow: 0 1px 2px rgba(0,0,0,0.3);}
/*.wperTit2{ padding-left: 8%;}*/
.wperTit2 h3{ color: #fff;}
.wperTit2 h5{ color: #fff;}
.wfivebox1 .swiper-button-prev{  background: url(../images/jt2.png) no-repeat;
	position: absolute; right: auto; top: auto; margin-top: 0; left: -58px; bottom: 20px;
	background-size: 70px auto; background-position: center;}
.wfivebox1 .swiper-button-next{
	background: url(../images/jt2.png) no-repeat; 
	position: absolute; top: auto; margin-top: 0; left: 0px; bottom: 20px;
	background-size: 70px auto; background-position: center;
	}
.wfivebox1 .swiper-button-prev,
.wfivebox1 .swiper-button-next{
	width: 80px; height: 50px;
	padding: 10px;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	opacity: 0.6;
	cursor: pointer;
	}
.wfivebox1 .swiper-button-prev:hover,
.wfivebox1 .swiper-button-next:hover{
	opacity: 1;
	transform: scale(1.2);
	filter: brightness(1.5);
	}

.mapbgs{ background: url(../images/mainbg01.jpg) repeat; padding-bottom: 80px;}
.mapbg{ min-width: 450px; max-width: 100%;  padding-top: 92%; position: relative; background: url(../images/companymap2.png) no-repeat; background-size: 100% 100%;}
.mapbg ul{ position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.mapbg ul li{ position: absolute;}
.mapbg ul li a{ display: block;}
.mapbg ul li font{ display: inline-block; font-size: 15px; font-weight: bold; color: #333;}
.mapbg ul li i{ display: inline-block; position: relative; width: 9px; height: 9px; margin: 10px auto 0; border-radius: 50%; background-color: #E60011; }
.mapbg ul li.QD{ right: 17%; top: 38%;}
.mapbg ul li.YT{ right: 15%; top: 34%;}
.mapbg ul li.YT font{ display: block;}
.mapbg ul li.YT i{ display: block; margin: 0 auto;}
.mapbg ul li.WH{ right: 9.5%; top: 35.5%;}

.mapbg ul li.DL{ right: 14%; top: 27%;}
.mapbg ul li.DL font{ display: block;}
.mapbg ul li.DL i{ display: block; margin: 5px auto 0;}
.mapbg ul li.JN{ right: 24%; top: 37%;}
.mapbg ul li.TJ{ right: 22%; top: 30%;}
.mapbg ul li.TJ font{ display: block;}
.mapbg ul li.TJ i{ display: block; margin: 5px auto 0;}
.mapbg ul li.SJZ{ right: 27.5%; top: 34.5%;}
.mapbg ul li.XA{ right: 37.5%; top: 44.5%;}
.mapbg ul li.LYG{ right: 8.5%; top: 47%;}
.mapbg ul li.SH{ right: 9%; top: 50%;}
.mapbg ul li.NB{ right: 8%; top: 53%;}
.mapbg ul li.GZ{ right: 26%; bottom: 28%;}
.mapbg ul li.GZ font{ display: block;}
.mapbg ul li.GZ i{ display: block; margin: 5px auto 0;}
.mapbg ul li.SZ{ right: 21%; bottom: 25%;}
.mapbg ul li.LSJ{ left: 21%; bottom: 14%;}

.mapbg ul li i:after{ position: absolute; content: ''; width: 160%; height: 160%;
	 border-radius: 50%; 
	 border:1px solid #E60011;
	 background-color: rgba(230,0,17,0.3);
	 left: -40%;
	 top: -35%;
	 opacity: 0;
	 animation: op1 3s linear 0s infinite;
	 -webkit-animation: op1 3s linear 0s infinite;
	}
.mapbg ul li i:before{ position: absolute; content: ''; width: 350%; height: 350%;
	 border-radius: 50%; 
	 border:1px solid #E60011;
	 background-color: rgba(230,0,17,0.3);
	 left: -140%;
	 top: -140%;
	 opacity: 0;
	 animation: op2 3s linear 0s infinite;
	 -webkit-animation: op2 3s linear 0s infinite;
	}

@keyframes op1 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
  to{
  	transform: scale(2.0);
  	opacity: 0
  }
}
@-webkit-keyframes op1 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
  to{
  	transform: scale(2.0);
  	opacity: 0
  }
}
@-moz-keyframes op1 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
  to{
  	transform: scale(2.0);
  	opacity: 0
  }
}

@keyframes op2 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
 
  to{
  	transform: scale(1.5);
  	opacity: 0
  }
}
@-webkit-keyframes op2 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
 
  to{
  	transform: scale(1.5);
  	opacity: 0;
  }
}	
@-moz-keyframes op2 {
  0%{
  	transform: scale(0.1);
  	opacity: 0;
  }
  5%{
  	opacity: 1;
  }
 
  to{
  	transform: scale(1.5);
  	opacity: 0;
  }
}

.mapcity{ width: 100%; display: table; font-size: 0; padding-top: 40px;}
.mapcity li{ display: inline-block; vertical-align: top; width: 25%; margin-bottom: 20px;}
.mapcity li a{ display: block; text-align: center;}
.mapcity li i{ display:inline-block; width: 100%;}
.mapcity li i img{ height: 30px;}
.mapcity li span{ font-size:14px; color:#666; display: inline-block; width: 100%; padding-top: 10px;}
.mapcity li i,
.mapcity li span{
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	}
.mapcity li:hover i{
	transform: translateY(5px);
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	}
.mapcity li:hover span{
	transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	}

.screbg{ width:100%; height: 494px; background: url(../images/matou.png) no-repeat; position: relative;
	background-size: cover;
	background-position: center center;
	}
.screbg:after{ position: absolute; content: ''; left: 0; bottom: 0px; width: 100%; height: 150px; 
	background-color: #3182DB;
	background-color: rgba(0,80,162,0.8);
	}

.screlist{  height: 404px;  z-index: 1;}
.wperTit3{ text-align: center;}

.screlist ul{ width: 80%; font-size: 0; margin: 160px auto 0;}
.screlist ul li{ display: inline-block; vertical-align: top; width: 25%; position: relative; padding-top: 15px;}
.screlist ul li:after{ position: absolute; content: ''; right: 0; top: 35px; height: 80px; border-right: 1px solid #4979AD;}
.screlist ul li:last-child:after{ display: none;}
.screlist ul li a{ display: block;}
.screlist ul li i{ display: inline-block; width: 100%; text-align: center;}
.screlist ul li:hover i{
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
}
.screlist ul li i,
.screlist ul li{
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
}
.screlist ul li i img{ display: inline-block; width: 30px; height: auto;}
.screlist ul li font{ display: inline-block; width: 100%; text-align: center; font-size: 18px; color: #fff; padding-top: 20px;}
.screlist ul li span{ display: inline-block; width: 100%; text-align: center; font-size: 13px; color: #fff; padding-top: 10px;}

.newTit{ width: 100%; padding-top: 50px; text-align: center;}
.newTit a{ display: inline-block; margin: 0 30px;}
.newTit a i{ display: block; width: 30px; height: 30px; margin: 0 auto;}
.newTit a font{ display: inline-block; font-size: 14px; color: #777; margin: 10px auto 0;}

.hy-new li a h3,
.newTit a i,
.newTit a font{
	transition: all .4s ease 0s;
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
	}
.newTit a.on font,
.newTit a:hover font{ color: #3082DA;}
.newTit a.n1 i{ background: url(../images/nn3.png) no-repeat; background-size: 100% 100%;}
.newTit a.n1.on i,
.newTit a.n1:hover i{ background: url(../images/nn6.png) no-repeat; background-size: 100% 100%;}
.newTit a.n2 i{ background: url(../images/nn5.png) no-repeat; background-size: 100% 100%;}
.newTit a.n2.on i,
.newTit a.n2:hover i{ background: url(../images/nn4.png) no-repeat; background-size: 100% 100%;}
.newTit a.n3 i{ background: url(../images/nn1.png) no-repeat; background-size: 100% 100%;}
.newTit a.n3.on i,
.newTit a.n3:hover i{ background: url(../images/nn2.png) no-repeat; background-size: 100% 100%;}

.wj-fd{ position: absolute; left: 0; top: 0;}
.wj-fd li .mbs>a{ display: block; margin-top: 40px; text-transform: uppercase; width: 100px; height: 30px; line-height: 30px; border:1px solid #0051A2; text-align: center; font-size: 12px; color: #0051A2;}
.wj-fd li .mbs>a:hover{ background-color: #0051A2; color: #fff;}
.newsit{width: 100%; position: relative; padding-left: 10%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	}
.newsit li{ width: 100%; font-size: 0;}

.newsit .topnew{ width: 100%;}
.newsit .topnew a{ display: block;}
.newsit .topnew dl{ width: 100%; display: table;}
.newsit .topnew dl dt{ float: left; width: 30%; height: 144px; overflow: hidden;}
.newsit .topnew dl dt img{ display: block; width: 100%; height: 100%; margin: 0 auto;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	}
.newsit .topnew dl dd{ float: left; width: 70%; height: 144px; background-color: #3182DB;
	padding: 15px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	}
.newsit .topnew dl dd h3{ font-size: 14px; color: #fff; margin-bottom: 10px; word-wrap: break-word; word-break: normal;}
.newsit .topnew dl dd time{ display: block; font-size: 12px; color: #fff; margin-bottom: 20px;  position: relative;}
.newsit .topnew dl dd time:after{ position: absolute;content: ''; left: 0;  bottom: -10px; width: 100%; border-top: 1px solid #fff;}
.newsit .topnew dl dd time:before{ position: absolute;content: ''; right: 0;  bottom: -11px; width: 40px; border-top: 3px solid #fff;}
.newsit .topnew dl dd p{ font-size: 13px; color: #fff; line-height: 1.8;}
.newsit .topnew dl:hover dt img{
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	}
.newsit .newcon{display: inline-block; width: 23.45%; position: relative; margin-top: 20px; margin-right: 2%; }

.newsit .newcon a{ display: block;}
.newsit .newcon i{}
.newsit .newcon i img{display: block; width: 100%; height: auto;}
.newsit .newcon .nbg{ position: absolute; left: 0; bottom: 0; width: 100%; height: 40px; padding: 8px 10px;
	background-color: #0050A2;
	background-color: rgba(0,80,162,0.8);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	}
.newsit .newcon p{   color: #fff; font-size: 13px; line-height: 1.8; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	}
 .newsit .newcon:last-child{
        margin-right:0;
    }
    .newsit .newcon .nbg time {
        color:#fff;
        display:none;
    }
    .newsit .newcon .nbg:hover time{
        display:block;
    }

.newsit .newcon:hover .nbg{ height: 100%; 
	background: url(../images/bg1.png) no-repeat center center;
	background-color: rgba(0,80,162,0.8);
	background-size: 100% 100%;
	}
.newsit .newcon:hover p{ white-space:initial; text-overflow:initial; padding: 15px 10px;}


.hy-new{ width: 100%; padding-left: 4%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	max-height: none; overflow: visible;
	padding-bottom: 0px;
}
.hy-new li{ width: 100%; margin-bottom: 5px;}
.hy-new li a{ display: block;}
.hy-new li dl{ width: 100%; display: table;}

.hy-new li dl dd{ width: 100%; padding-top: 15px;}
.hy-new li dl dd time{ display: block; font-size: 13px; margin-top: 15px; color: #999;}
.hy-new li dl dd h3{ font-size: 16px; color: #333;}
.hy-new li dl dd h3 i{ display: inline-block; width: 0px; height: 3px; vertical-align: middle; background-color: #0051A2;}
.hy-new li dl dd p{ font-size: 14px; line-height: 1.8; color: #666; margin-top: 10px;}
.hy-new li dl dd font{ display: block; margin-top: 20px; text-align: center; width: 100px; height: 28px; 
	line-height: 28px; font-size: 13px; color: #777; border: 1px solid #777; 

}
.hy-new li dl:hover dd font{ border-color: #0051A2; background-color: #0051A2; color: #fff;}
.hy-new li dl:hover dd h3,
.hy-new li dl dd font,
.hy-new li dl dd h3 i{
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.hy-new li dl:hover dd h3{ color: #0051A2;}
.hy-new li dl:hover dd h3 i{ width: 25px; margin-right: 20px;}

.wfiveboxnews ul{  display: none; z-index: 1;
	transform: translateX(30px);
	-webkit-transform: translateX(30px);
	-moz-transform: translateX(30px);
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
}
.wfiveboxnews ul.active{
	 display: block; z-index: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
}



.partbg{ background: url(../images/mainbg01.jpg) repeat; padding:0 0 90px 0; }
.partenrsList .subparent{ width: 100%; font-size:0; margin-left: -7%;}
.partenrsList .subparent li{ display: inline-block; vertical-align: middle; text-align: center; width: 15.5%; height: 100px; line-height: 100px;}
.partenrsList .subparent li>img{ width: auto; max-width: 100%;}
.dzmaps{ width: 100%; height: 400px; position: relative; margin-bottom: 48px;}
.dzmaps .submap{ width:100%; height:400px; border:#ccc solid 1px; }
.mapconts{ position: absolute; left: 13%; top: 0; width: 450px; height: 402px;
	background-color: #0050A2;
	background-color: rgba(0,80,162,0.9);
	padding: 20px 50px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	}
.mapconts .contus{ width: 100%; padding-top: 20px;}
.mapconts .contus p{ font-size: 14px; color: #fff; line-height: 1.8; margin-bottom: 10px;}
.wperconts3{ padding-top: 0; padding-right: 0;}

  .newsit .newcon .nbg time {
        color:#fff;
        display:none;
    }
    .newsit .newcon .nbg:hover time{
        display:block;
    }








/* ===== style-2.css ===== */
.banner{ width: 100%; position: relative; }

.mainbox{ max-width: 1200px; width: calc(100% - 40px); position: relative; margin: 0 auto; padding: 40px 0; box-sizing: border-box; overflow: hidden;}
.mbxnav{ width: 100%; padding: 10px 0; margin-bottom: 50px; display: table; border-bottom: 1px solid #ECECEC;}
.mbxnav .lftmbx{ float: left;}
.mbxnav .lftmbx a{ display: inline-block; vertical-align:top; padding:15px; font-size: 14px; color: #666; position: relative; z-index: 1;}
.mbxnav .lftmbx a:after{ position: absolute; content: ''; right: 0; top: 18px; height: 15px; border-right: 1px solid #ccc; z-index: -1;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.mbxnav .lftmbx a:hover,
.mbxnav .lftmbx a.act{ background-color: #0051A2; color: #fff;}
.mbxnav .lftmbx a:hover:after,
.mbxnav .lftmbx a.act:after{ border-color: #0051A2;}
.mbxnav .lftmbx a:last-child:after{ display: none;}
.mbxnav .ritmbx{ float: right;}
.mbxnav .ritmbx a{ display: inline-block; vertical-align: top;  padding:15px; font-size: 14px; color: #666; position: relative;}
.mbxnav .ritmbx a img{ display: inline-block; margin:-2px 5px 0 0; width: 14px; vertical-align: middle;}
.mbxnav .ritmbx a:hover{ color: #0051A2;}
.mbxnav .ritmbx a:after{ position: absolute; right: -10px; top: 15px; content: '>>'; font-size: 14px; color: #666;}
.mbxnav .ritmbx a.mb3:after{ display: none;}

.mbxTit{ float:left; width: auto; padding-top: 12px; position: relative; z-index: 1;}
.mbxTit h3{ display: inline-block; font-size: 22px; color: #0051A2;}
.mbxTit font{z-index: -1; display: inline-block; 
	font-size: 15px; font-weight: bold; color: #999; color:rgba(25,49,113,0.3); text-transform: uppercase;
}

.Wapers{ width: 100%; position: relative; margin-bottom: 50px;}

.wapTit{ width: auto; text-align: center; margin: 30px auto;}
.wapTit h3{ font-size: 35px; color: #0051A2; position: relative;}
.wapTit h3 i{ display: inline-block; margin: 0 20px; vertical-align: middle; width: 60px; height: 2px; background-color: #0051A2;}
.wapTit p{ color: #666; line-height: 1.8;}
.wapTit font{ display: block; margin:20px 0;
	animation: op2 1s linear 0s infinite;
	-webkit-animation: op2 1s linear 0s infinite;
}
@keyframes op2 {
  0%{
  	transform: translateY(-5px);
  }
  50%{
  	transform: translateY(5px);
  }
  to{
  	transform: translateY(-5px);
  }
}
@-webkit-keyframes op2 {
  0%{
  	transform: translateY(-5px);
  }
  50%{
  	transform: translateY(5px);
  }
  to{
  	transform: translateY(-5px);
  }
}
@-moz-keyframes op2 {
  0%{
  	transform: translateY(-5px);
  }
  50%{
  	transform: translateY(5px);
  }
  to{
  	transform: translateY(-5px);
  }
}


.wapTit2{ margin: 10px 0 0;}
.wapTit2 h3{ color: #fff;}
.wapTit2 h3 i{ background-color: #fff;}
.wapTit2 p{ color: #fff;}

.wapTit3{ margin-top: 0;}

.aboutNew{ width: 100%; font-size: 0;}
.aboutNew a{ display: inline-block; width: 49%; height: 40px; line-height: 40px; margin:0 0.5%; background-color: #0051A2; color: #fff;
	font-size: 16px; color: #fff; text-align: center;
}
.aboutNew a:hover{ background-color: #3282DA;}
.aboutNew2{ margin-bottom: 0px; border-bottom: 1px solid #ECECEC;}
.aboutNew2 a{ width: auto; padding: 0 10px; margin:0 0.5% 15px;}

.abouTus{ display: table; margin-bottom: 20px;}
.abouTus .abImg{ float: left; width: 400px; height: 266px; position: relative; z-index: 1;}
.abouTus .abImg:after{ z-index: -1; position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; border: 1px solid #0051A2;}

.abouTus .abImg img{ position: absolute; right: -20px; top: 20px; display: block; width: 100%; height: auto;}
.abouTus .abconts{ float: right; width: 60%; height: auto; padding: 2px 30px;}
.abouTus .abconts p{ font-size: 14px; color: #666; line-height: 2; text-indent: 2em; margin-bottom: 10px;}

.companyCurre{ width: 100%; padding: 50px 0 0; margin-bottom: 0; background: url(../images/wj-index033.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.subcompy{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; display: table; box-sizing: border-box;}
.subcompy .abconts{ width: 100%; height: 250px; padding: 0px 20px; text-align: center;}
.subcompy .abconts h3{ font-size: 40px; color: #fff; font-family: '隶书'; margin-bottom: 20px;}
.subcompy .abconts p font{ display: inline-block; margin:0 30px; vertical-align: top; font-size: 21px; color: #fff; font-family: '隶书'; margin-bottom: 10px;}

.zuGroup{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; display: table; box-sizing: border-box;}
.zuGroup p{ font-size: 14px; color: #666; line-height: 2; text-indent: 2em; margin-bottom: 10px;}
.zuGroup p img{ display: block; width: 100%; height: auto;}

.newList ul{ width: 100%;}
.newList ul li{ width: 100%; margin-bottom: 25px;}
.newList ul li a{ display: block;}
.newList ul li dl{ width: 100%; overflow: hidden;}
.newList ul li dl dt{ float: left; width: 350px;}
.newList ul li dl dt img{ display: block; width: 100%; height: 190px;}
.newList ul li dl dd{ margin-left: 370px; padding-top: 15px;}
.newList ul li dl dd time{ display: block; font-size: 13px; margin-top: 15px; color: #999;}
.newList ul li dl dd h3{ font-size: 16px; color: #333;}
.newList ul li dl dd h3 i{ display: inline-block; width: 0px; height: 3px; vertical-align: middle; background-color: #0051A2;}
.newList ul li dl dd p{ font-size: 14px; line-height: 1.8; color: #666; margin-top: 10px;}
.newList ul li dl dd font{ display: block; margin-top: 20px; text-align: center; width: 100px; height: 28px; 
	line-height: 28px; font-size: 13px; color: #777; border: 1px solid #777; 

}
.newList ul li dl:hover dd font{ border-color: #0051A2; background-color: #0051A2; color: #fff;}
.newList ul li dl:hover dd h3,
.newList ul li dl dd font,
.newList ul li dl dd h3 i{
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.newList ul li dl:hover dd h3{ color: #0051A2;}
.newList ul li dl:hover dd h3 i{ width: 25px; margin-right: 20px;}

.newList2 ul li dl dd{ float: none; width: 100%;}


.fy{ width: 100%; text-align: center; margin-top: 60px;}
.fy a{ display: inline-block; padding:8px 12px; vertical-align: middle; font-size: 15px; color: #666; background-color: #E8EDF1;}
.fy a.on,
.fy a:hover{ background-color: #0051A2; color: #fff;}

.newListconts .newsTit{ text-align: center; padding-bottom: 20px; border-bottom: 1px solid #DEE3E7;}
.newListconts .newsTit h3{font-size: 22px; color: #333; margin-bottom: 10px;}
.newListconts .newsTit  time{ display: block; font-size: 13px; color: #999;}

.newListconts{ margin: 0 auto; max-width: 1100px; float: none;}
.newListconts .newcongs{ padding-top: 30px; max-width: 1000px; margin: 0 auto;}
.newListconts .newcongs p{ font-size: 14px; color: #636c74; line-height: 1.8; margin-bottom: 13px; text-indent: 2em;}
.newListconts .newcongs p img{ display: block; margin: 0 auto; max-width: 100%; min-width: 300px;}
.newListconts .newsTit{ text-align: center;}

.fy2{ width: 1200px; margin-top: 40px; display: table; padding-top: 30px; border-top: 1px solid #DEE3E7;}
.fy2 .fhlist{ float: left;}
.fy2 .fhlist a{ display: inline-block; width: 110px; height: 28px; line-height: 28px; text-align: center; border: 1px solid #636c74; font-size: 14px; color: #636c74;}
.fy2 .fhlist a:hover{ background-color: #0051A2; border-color: #0051A2; color: #fff;}
.fy2 .prevnext{ float: right; padding-top: 10px;}
.fy2 .prevnext font,
.fy2 .prevnext a{ display: inline-block; margin: 0 10px; font-size: 14px; color: #636c74;}
.fy2 .prevnext a:hover{ color: #0051A2;}

.joinus{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding: 60px 0 80px; box-sizing: border-box;}
.joinus ul{ width: 100%; font-size: 0; position: relative;}
.joinus ul li{ display: inline-block; vertical-align: top; width: 33.33%; text-align: center; padding: 0 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.joinus ul li i{ display: block; text-align: center;}
.joinus ul li i img{ height: 30px;}
.joinus ul li h3{ font-size: 18px; color: #333; margin-top: 15px;}
.joinus ul li p{ font-size: 13px; color: #777; line-height: 1.8; margin-top: 20px;}

.jz-about{ position: relative; width: 100%; height: 400px; background: url(../images/wj-jonus-bg01.jpg) no-repeat; background-size: cover; background-attachment: fixed; z-index: 1;}

.neiabout{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding-top: 30px; box-sizing: border-box;}
.neiabout h2{ font-size: 40px; color: #fff; text-align: center; padding-top: 50px; padding-bottom: 20px;}
.neiabout h4{ font-size: 18px; color: #fff; text-align: center;  padding-top: 15px; font-weight: 300;}
.neiabout p{ text-align: center;  padding-top: 5px; font-size: 14px; color: #fff; line-height: 1.8;}

.zp-about{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding: 60px 0 80px; overflow: hidden; box-sizing: border-box;}
.zp-about .zplftx{ float: left; width: 400px;}
.zp-about .zplftx h3{ font-size: 20px; color: #333;}
.zp-about .zplftx i{ display: block; margin: 20px 0; width: 60px; height: 3px; background-color: #0051A2;}
.zp-about .zplftx p{ font-size: 13px; line-height: 1.8; color: #777;}
.zp-about .zplftx .Hreamil{ width: 100%; margin-top: 20px;}
.zp-about .zplftx .Hreamil p{ font-size: 17px; color: #0051A2; font-weight: bold; font-family: arial;}
.zp-about .zplftx img{ width: 100%; margin-top: 7px;}

.zp-about .zpritx{ float: right; width: 700px; border-left:1px solid #ccc; padding-left: 100px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.zp-about .zpritx .neiritx { width: 100%; height: 450px; position: relative; overflow-y: auto;}
.zp-about .zpritx .neiritx ul{ width: 100%; padding-right: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.zp-about .zpritx .neiritx ul li{ margin-bottom: 40px;}

.zp-about .zpritx .zptits{ cursor: pointer; display: table; width: 100%; border-bottom: 1px dotted #ccc; padding-bottom: 20px;}
.zp-about .zpritx .zptits h4{ float: left; font-size: 18px; color: #333;}
.zp-about .zpritx .zptits span{ float: right; font-size: 12px; color: #777; text-transform: uppercase; padding-top: 6px;}
.zp-about .zpritx .zptits:hover h4,
.zp-about .zpritx .zptits:hover span{ color: #0051A2;}
.zp-about .zpritx .zptxts{ padding-top: 20px; display: none;}
.zp-about .zpritx .zptxts aside{ font-size: 16px; color: #333; font-weight: bold; margin-bottom: 20px;}
.zp-about .zpritx .zptxts p{ font-size: 14px; color: #777; line-height: 1.8; margin-bottom: 15px;}
.zp-about .zpritx .zptxts .buts{ width: 140px; height: 35px; border: 1px solid #777; font-size: 13px; color: #777; text-align: center; line-height: 35px;}
.zp-about .zpritx .zptxts .buts:hover{ background-color: #078C88; border-color:#078C88; color: #fff;}

.mapList{ width: 100%; display: table;}
.mapList .lftmap{ float: left; width: 700px;}
.mapList .lftmap .submap{ width: 100%; height: 430px; border: 1px solid #ccc;}

.mapList .ritmap{ float: right; width: 400px; padding:30px 50px 0 50px; height: 400px;background-color: #0051A2;
	box-shadow: 0px 3px 12px 0px #ccc;
}
.mapList .ritmap h3{ font-size: 25px; font-family: '隶书'; color: #fff; margin-bottom: 30px;}
.mapList .ritmap i{ display: block; width: 30px; height: 2px; background-color: #fff;}
.mapList .ritmap p{ margin-top: 8px; font-size: 9px; color: #fff; line-height: 1.8;}
.mapList .ritmap p font{ color: #fff; font-size: 14px; color: #fff;}
.mapList .ritmap p.phonumber{ font-size: 30px; font-family: 'arial';}
.mapList .ritmap p img{ display: inline-block; vertical-align: bottom; width: 100px; margin-right: 15px;}

.otherscompany{ width: 100%; margin-top: 50px; padding-top: 30px; border-top: 1px solid #ECECEC;}
.otherscompany h3{ font-size: 18px; color: #0051A2;}
.otherscompany ul{ width: 100%; display: table; padding-top: 40px;}
.otherscompany ul li{ float: left; width: 580px; padding-left:20px; height: 150px; overflow-y: auto; margin-bottom: 30px;}
.otherscompany ul li h4{ font-size: 15px; color: #0051A2; margin-bottom: 20px;}
.otherscompany ul li p{ margin-top: 3px; font-size: 14px; color: #666; line-height: 1.8;}
.otherscompany ul li p img{ display: inline-block; vertical-align: middle; width: 15px; margin-right: 15px;}

.complangages{ padding: 50px 0 0;}
.compLists{ width: 100%; padding: 35px 0;}
.compLists ul{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; display: table; box-sizing: border-box;}
.compLists ul li{ float: left; width: 45%; margin: 0 2.5% 80px; display: table;}
.compLists ul li .icos{ float: left; width: 90px; height: 90px; background-color: #0051A2;
	transform: rotateZ(45deg);
	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
}
.compLists ul li .icos img{ display: block; width: 50px; height: auto; margin: 18px auto 0;
	transform: rotateZ(-45deg);
	-webkit-transform: rotateZ(-45deg);
	-moz-transform: rotateZ(-45deg);
}
.compLists ul li .fgconts{ float: left; width: 350px; margin: 0 50px; padding-top: 18px;}
.compLists ul li .fgconts p{ font-size: 14px; line-height: 1.8; color: #666;}
.compLists ul li.co1 .icos{ float: right;}
.compLists ul li.co1 .fgconts{ float: right; text-align: right;}

.groupList{ width: 100%; padding:0 0 50px 0; background: url(../images/wj-aboutus-bg02.jpg) no-repeat;
	background-attachment: fixed; background-size: cover;
}

.subgroup{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding-top: 50px; box-sizing: border-box;}
.subgroup .grList{ width: 100%; display: table; margin-top: 30px;}
.subgroup .grList ul{ width: 100%; text-align: center;}
.subgroup .grList ul li{display: inline-block; margin: 0 5px;}
.subgroup .grList ul li a{ display:block; width: 120px; height: 28px; text-align: center; line-height: 28px; 
	background-color: #fff; border: 2px solid #0F76D8; color: #0051A2; font-size: 14px; margin-bottom: 15px;
	cursor: pointer; 
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.subgroup .grList ul li.on a,
.subgroup .grList ul li:hover a{ background-color: #0F76D8; color: #fff;}

.subgroup .grList .grConts{ width: 100%; height: 560px; margin-top: 20px; position: relative; z-index: 1;}
.subgroup .grList .grConts p{ color: #fff; text-indent: 2em; line-height: 1.8; margin-bottom: 15px;}
.subgroup .grList .grConts p img{ display: block; width: 100%; height: auto;}
.subgroup .grList .grConts .mores{ width: 100%; text-align: center; padding-top: 30px;}
.subgroup .grList .grConts .mores a{ display: inline-block; width: 110px; height: 30px; text-align: center; line-height: 30px; 
	color: #0F76D8; text-transform: uppercase; background-color: #fff;
}
.subgroup .grList .grConts .mores a:hover{ background-color: #0F76D8; color: #fff;}
.subgroup .grList .grConts .neigrconts{ width: 100%; height: 550px; overflow-y: auto; position: absolute; left: 0; top: 0; 
	display: none\9;
	opacity: 0;
	z-index: -1;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	transition: all .4s ease 0s;
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
}
.subgroup .grList .grConts .neigrconts.active{ 
	display: block\9;
	opacity: 1;
	z-index: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
}

.secrvicebox{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding-bottom: 90px; box-sizing: border-box;}
.secrvicelist{ width: 100%;}
.secrvicelist li{ margin-top: 20px; width: 19.4%; height: 85px; background-color: #0051A2; display: inline-block; vertical-align: top;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
}
.secrvicelist li a{ display: block; width: 100%; height: 100%;}
/* 首页业务区块：2列布局 */
/* 首页业务区块：2列布局，文字完整显示 */
.secrvicetype .secrvicelist li{
    width: 48%;
    margin-right: 2%;
    height: auto !important;
    min-height: 100px;
    padding-bottom: 12px;
}
.secrvicetype .secrvicelist li:nth-child(2n){ margin-right: 0; }
.secrvicelist li i{ display: block; text-align: center; padding-top: 14px;}
.secrvicelist li i img{ height: 30px;}
.secrvicelist li font{ display: block; text-align: center; font-size: 15px; color: #fff; margin-top: 10px;}
.secrvicelist li:hover{ background-color: #3282DA;}


.servIstr{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: auto; margin: 0 auto; padding: 90px 0; box-sizing: border-box;}
.servIstr ul{ width: 100%; font-size: 0; position: relative;}
.servIstr li{ display: inline-block; vertical-align: top; width: 48%; margin: 0 1% 20px;}
.servIstr li a{ display: block;}
.servIstr li dl{ width: 100%; position: relative; overflow: hidden;}
.servIstr li dl dt{}
.servIstr li dl dt img{ display: block; width: 100%; height: 324px;}
.servIstr li dl dd{ position: absolute; left: 0; bottom: 0; width: 100%; height: 25px; background-color: #0051A2;
	background-color: rgba(0,81,162,0.9);
	padding: 20px 0;
}
.servIstr li dl dd p{ padding:0 0 20px 0; width: 100%; text-align: center;font-size: 20px; color: #fff;}
.servIstr li dl dd i{ display: block; width: 30px; height: 2px; background-color: #fff; margin: 10px auto 35px;}
.servIstr li dl dd font{ display: block; margin: 20px auto 0; position: relative;
	width: 46px; height: 46px; text-align: center; line-height: 50px; z-index: 1;
	border: 1px solid #fff;
	transform: rotateZ(45deg);
	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
}

.servIstr li dl dd font:after{ position: absolute; content: ''; left:8px; top: 8px; width: 30px; height: 30px; 
	background-color: #fff;
	z-index: -1;
	opacity: 0;
}

.servIstr li dl dd font span{ display: block; color: #fff; z-index: 1; position: relative; font-size: 13px; 
	transform: rotateZ(-45deg) scale(1.0);
	-webkit-transform: rotateZ(-45deg) scale(1.0);
	-moz-transform: rotateZ(-45deg) scale(1.0);
}
.servIstr li dl dd p,
.servIstr li dl dd,
.servIstr li dl dd font,
.servIstr li dl dd font:after,
.servIstr li dl dd font span{
	transition: .5s ease 0s;
	-webkit-transition: .5s ease 0s;
	-moz-transition: .5s ease 0s;
}

.servIstr li:hover dl dd{ height: 288px;}
.servIstr li:hover dl dd p{ padding:88px 0 20px 0;}

.servIstr li dl dd font:hover{
	transform: rotateZ(45deg) scale(1.1);
	-webkit-transform: rotateZ(45deg) scale(1.1);
	-moz-transform: rotateZ(45deg) scale(1.1);
}
.servIstr li dl dd font:hover:after{
	opacity: 1;
	transform: scale(1.35);
	-webkit-transform: scale(1.35);
	-moz-transform: scale(1.35);
}
.servIstr li:hover dl dd font:hover span{
	color: #0051A2;
	transform: rotateZ(-45deg) scale(0.9);
	-webkit-transform: rotateZ(-45deg) scale(0.9);
	-moz-transform: rotateZ(-45deg) scale(0.9);
}

.group-servIstr .neiservs{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: 0; margin: 0 auto; padding-top: 40px; box-sizing: border-box; overflow-x: hidden;}
.servboxs{ width: calc(100% - 40px); max-width: 1920px; position: relative; margin: 0 auto 50px; padding-top: 30px; box-sizing: border-box;}
.servbanner{ overflow: visible;}
.servbanner .swiper-slide{ background-color: #000;}
.servbanner .swiper-slide:before{ position: absolute; content: ''; left: 0; bottom: -45px; width: 100%; border-top: 1px solid #E8E8E8;}
.servbanner .swiper-slide:after{ position: absolute; content: ''; left: 0; bottom: -45px; width: 0%; border-top: 2px solid #0051A2;}
.servbanner .swiper-slide a{ display: block;}
.servbanner .swiper-slide img{ display: block; width: 100%; height: auto; opacity: 0.6;}
.servbanner .swiper-slide h4{ position: absolute; left: 30px; top: 50px; color: #fff; font-size: 30px;}

.servbanner .swiper-slide:hover:after{ width: 100%;}
.servbanner .swiper-slide:hover img{ opacity: 1;}
.servbanner .swiper-slide:after,
.servbanner .swiper-slide img{
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
}
.swiperconts{ text-align: center; padding-top: 80px; background: url(../images/jtz.png) no-repeat center center;
	background-size: 20px auto;
	background-position: center 88px;
}
.servbanner .swiper-button-prev,
.servbanner .swiper-button-next{ display: inline-block; position: static; margin: auto 15px; top: auto; width: 45px; height: 35px;}
.servbanner .swiper-button-prev{ background: url(../images/jtl.png) no-repeat center center; background-size: 100% auto;}
.servbanner .swiper-button-next{ background: url(../images/jtr.png) no-repeat center center; background-size: 100% auto;}

.group-parters{ max-width: 1200px; width: calc(100% - 40px); position: relative; left: 0; margin: 0 auto; padding-bottom: 50px; box-sizing: border-box; overflow-x: hidden;}
.group-parters p{ text-align: center;}

.historyYear{ width: 100%; height: 100%; position: relative;background: url(../images/fazhanlicheng.jpg) no-repeat; background-size: 100% 100%;
	position: relative;
}
.historyYear:after{ position: absolute; left: 50%; margin-left: -15px; bottom: 40px;  content: ''; width: 30px; height: 30px; background: url(../images/sxjt.png) no-repeat; background-size: auto 100%;}
.asotime{ width: 800px; height: 700px; position: absolute; top: 50%; margin-top: -350px; left: 50%; margin-left: -400px;}

.timeLiner{ width: 100%;}
.timeLiner li{ width: 100%; text-align: left; overflow: hidden; position: relative; padding: 30px 0; z-index: 1;}
.timeLiner li:after{ position: absolute; content: ''; left: 50%; top: 0; height: 100%; border-right: 1px solid #284387; z-index: -1;}
.timeLiner li .yearNum{ position: relative; margin: 0 auto; width: 70px; height: 70px; text-align: center; line-height: 70px; border-radius: 50%; 
	font-size: 17px; font-weight: bold; color: #fff; background-color: #284387;
}
.timeLiner li .yearNum:after{ position: absolute; content: ''; width: 86px; height: 86px; left: -9px; top: -9px; border:1px solid #284387; border-radius: 50%;}

.timeLiner li:nth-of-type(even){ text-align: right;}
.timeLiner li .neiyer{ width: 340px; margin-top: 40px; display: inline-block; text-align: right; background-color: #284387; 
	background-color: rgba(10,49,143,0.65); padding: 20px; border-radius: 20px; box-shadow: 0px 3px 9px 0px #4671DB;
}
.timeLiner li:nth-of-type(even) .neiyer{ text-align: left;}
.timeLiner li .neiyer p{ color: #fff; line-height: 1.8; margin-bottom: 10px; position: relative;}
.timeLiner li .neiyer p::after{ position: absolute; content: ''; right: -46px; top: 6px; width: 11px;height: 11px; border-radius: 50%; background-color: #0A318F;}
.timeLiner li .neiyer p::before{}
.timeLiner li:nth-of-type(even) .neiyer p:after{ left: -45px;}

.timeLiner li .neiyer p span{ position: absolute; top: 0px; right: -78px; color: #284387;}
.timeLiner li:nth-of-type(even) .neiyer p span{ left: -78px;}




/* ===== aspnetpage.css ===== */
﻿.pages { color: #999; }
.pages a, .pages .cpb { display: inline-block; 
                 padding:8px 12px; 
                 vertical-align: middle;
                 font-size: 15px; 
                 color: #666; 
                 background-color: #E8EDF1;
                 border:1px solid #E8EDF1;

}
.pages a:hover { background-color: #0051A2; color:#fff; border:1px solid #0051A2; text-decoration:none;}
.pages .cpb { font-weight: bold; color: #fff; background: #0051A2; border:1px solid #E8EDF1;}

/* ===== media.css (放在最后，确保媒体查询优先级) ===== */
@media only screen and (max-width:1680px ) {

}

@media only screen and (max-width:1600px ) {

	
	
}
@media only screen and (max-width:1440px ) {
    .menuList ul li{ margin: 0 8px;}
	.wperTit h3{ font-size: 35px;}
	.wperTit h5{ font-size: 22px;}
	.aboutnumber ul li strong{ font-size: 30px;}
	.waperbox{ padding-top: 50px;}
	.dzmaps{ margin-top: 50px;}
	
	.servicebg{ height: 450px;}
	.screbg{ height: 426px;}
	.screlist ul li font{ font-size: 16px;}
	.mapcity{ padding-top: 20px;}
	.wperconts{ padding-top: 25px;}
	.wperconts>a{ margin-top: 30px;}
	.wfivebox1{ top: 78px;}
	.mapconts{ left: 3%;}
	.asotime{ height: 440px; margin-top: -210px;}
}
@media only screen and (max-width:1366px ) {
	
}

@media only screen and (max-width:1200px ){
	
}
@media only screen and (max-width:768px ){
	body{ font-size: 12px;}
	header{ width: 100%; top: 0; min-width: 100%; position: relative;}
	header h1{ margin-left: 0;}
	header h1 a{ width: 95px; padding: 8px 0;}
	header.active2{ 
		transform: translateX(-120%);
		-webkit-transform: translateX(-120%);
		-moz-transform: translateX(-120%);
	}
	.menuClickOn{ left: -65%;}
	.formnav{ display: none;}
	.menuList ul{ display: none;}
	.language{ display: none;}
	.mobmenu{ margin-top: 16px;}

	.mapconts .contus p{ font-size: 9px; color: #fff; line-height: 1.2; }
	.mobnavs{ width: 65%; height: 100%; padding: 20% 3% 0;
		background: url(../../Center/images/yaquanlogo3.png) no-repeat -14% 4% / 88%,url(../images/mainbg01.jpg) repeat;
	}
	.mobnavs ul li{ text-align: center;}
	.mobnavs ul li>a{ font-size: 15px;}
	.mobnavs ul li dl{ display: block;}
	.mobnavs ul li dl dd a{ font-size: 12px; margin-bottom: 8px;}
	
	.wperTit h5,
	.wperTit h3{ font-size: 14px;}
	
	.waperbox{ width: 90%; min-width: 90%; padding-top: 20px;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
	}
	.wperconts{ padding-top: 0px;}
	.wperconts p{ font-size: 12px;}
	.wperconts>a{ margin-top: 15px; width: 85px; font-size: 11px;}
	.aboutUs .wsixbox{ float: none; width: 100%;}
	.aboutnumber ul li{ width: 50%; margin-bottom: 10px;}
	.aboutnumber ul li strong{ font-size: 22px;}
	.aboutnumber ul li font{ margin: 5px auto 0; font-size: 12px;}
	.aboutUs .wthreebox{ float: none; width: 100%; display: none;}
	.aboutconts{ padding-top: 10px;}
	.aboutconts p{ font-size: 12px;}
	.secrvicetype .wsixbox{ float: none; width: 100%;}
	.servicecolor{ margin-top: 30px; padding-bottom: 20px;}
	.secrvicetype .secrvicelist li{ width: 49%;}
	.secrvicetype .wthreebox{ float: none; width: 100%; margin-top: 20px;}
	
	.secrvicelist li font{ font-size: 12px;}
	
	.servicebg{ height: auto; display: none;}
	.servicebg .serviceCont{ width: 100%;}
	.serviceCont .wfivebox{ width: 100%;}
	.serviceCont .wfivebox2{ float: none;}
	.serviceCont .wfivebox1{ float: none; position: relative;}
	
	.companyMap .wfivebox4{ float: none; width: 100%;}
	.companyMap .wfivebox3{ float: none; width: 100%;}
	
	.mapbg{ min-width: 300px; width: 100%; background: url(../images/companymap3.png) no-repeat; background-size: 100% 100%;}
	.mapbg ul{ display: none;}
	.newsit{ padding-left: 0%;}
	
	.newList .wfourbox1{ float: none; width: 100%;}
	.newList .wfivebox5{ float: none; width: 100%; margin-top: 20px;}
	.newTit{ padding: 15px 0; }
	.newTit a{ width: 30%; vertical-align: top; margin:5px 0;}
	.newsit .topnew dl dt{ float: none; width: 100%;}
	.newsit .topnew dl dd{ float: none; width: 100%; height: auto;}
	.newsit .topnew dl dd h3{ font-size: 12px;}
	.newsit .topnew dl dd p{ display: none;}
	.newsit .newcon{ float: left; width: 48%; margin: 5px 1% 0 1%;}
	.hy-new{ padding-left: 0;}
	
	.partenrsList{ width: 100%;}
	.partenrsList .subparent{ width: 90%; margin: 0 auto;}
	.partenrsList .subparent li{ width: 33%;}
	.partenrsList .subparent li>img{ height: 42px;}
	.partenrsList .wsixbox{ float: none; width: 100%;}
	.partenrsList .wthreebox{ float: none; width: 90%; left: 50%; margin-left: -45%;}
	
	.screbg .waperbox{ padding-top: 20px;}
	.screlist{ padding-top: 20px;}
	.screlist ul{ width: 100%; margin: 10px auto 0;}
	.screlist ul li{ width: 50%; padding-top: 20px;}
	.screlist ul li:nth-of-type(2):after{ display: none;}
	.screbg:after{ height: 100%;}
	
	.mapconts{ width: 60%;
		max-height: 70%;
		left: 0%;
		padding: 15px;
		margin-top: 25%;}
	.dzmaps{ margin-top: 0px; height: 400px;}
	.dzmaps .submap{ height: 398px;}
	.mapconts{ height: 400px;}
	
	footer{ margin-top: 0px;}
	.foot{ width: 90%; min-width: 90%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
	}
	.foot .lftfoot{ float: none; width: 100%;}
	.foot .lftfoot .copy p,
	.foot .lftfoot ul li a{ font-size: 12px;}
	.foot .ritfoot{ float: none; width: 100%; padding-top: 15px;}
	.foot .ritfoot .logo{ text-align: center;}
	.foot .ritfoot .logo img{ width: 90px;}
	.foot .ritfoot .ewm{ text-align: center;}
	.foot .ritfoot .ewm img{ width: 75px;}
	.foot .ritfoot .kh{ text-align: center;}
	
	
	.jz-tops.active{ display: none; opacity: 0;}
	
	.wapTit{ margin: 5px 0;}
	.wapTit h3{ font-size: 22px;}
	.wapTit p{ font-size: 12px;}
	.wapTit font{ margin: 10px 0;}
	.group-parters,
	.group-servIstr .neiservs{ width: 90%; margin-left: 5%; padding-top: 0%;}
	.servboxs{ width: 90%; margin: 0 auto;}
	.servbanner .swiper-slide h4{ left: 15px; top: 15px; font-size: 14px;}
	
	.group-parters p img{ width: 100%;}
	
	.mainbox{ width: 90%; margin: 0 auto; padding: 25px 0;}
	.mbxnav{ margin-bottom: 25px;}
	.mbxnav .lftmbx{ float: none;}
	.mbxnav .ritmbx{ float: none;}
	.newListconts .newcongs{ padding-top: 5px;}
	.newListconts .newcongs p{ font-size: 12px;}
	.newListconts .newcongs p img{ width: 100% !important; height: auto !important;}
	.fy2 .fhlist a{ width: 85px; font-size: 12px;}
	.fy2{ width: 100%;}
	
	.complangages{ padding-top: 20px;}
	
	.compLists{ padding: 5px 0 35px;}
	.secrvicebox{ padding-bottom: 5px;}
	.secrvicebox,
	.compLists ul{ width: 90%; margin-left: -45%;}
	.compLists ul{ display: inline-block;}
	.compLists ul li{ float: left; width: 50%; margin: 20px 0px;
		padding: 0 5px;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	.compLists ul li .icos{
		transform: rotateZ(45deg) scale(0.75);
		-webkit-transform: rotateZ(45deg) scale(0.75);
		-moz-transform: rotateZ(45deg) scale(0.75);
		-o-transform: rotateZ(45deg) scale(0.75);
	}
	.groupList{ padding: 0;}
	.subgroup{ padding-top: 28px;}
	.subgroup .grList ul{ font-size: 0;}
	.subgroup .grList ul li{ margin: 0; vertical-align: top; width: 31.2%; margin: 0 1%;}
	.subgroup .grList ul li a{ width: 100%; font-size: 12px; width: 100px; margin-bottom: 10px;}
	.subgroup .grList .grConts p{ font-size: 12px; margin-bottom: 10px;}
	.subgroup .grList .grConts .mores a{ width: 90px;}
	
	
	
	.secrvicelist li i img{ height: 25px;}
	.secrvicelist li font{ font-size: 12px;}
	
	.compLists ul li .fgconts p{ font-size: 12px;}
	
	.compLists ul li.co4 .icos,
	.compLists ul li.co2 .icos,
	.compLists ul li.co3 .icos,
	.compLists ul li.co1 .icos{ float: none; margin: 0 auto; display: table;}
	.compLists ul li.co1 .fgconts{ float: none; width: 100%; margin: 20px 0; text-align: center;}
	.compLists ul li .fgconts{ margin: 0; width: 100%;}
	.compLists ul li .fgconts,
	.compLists ul li.co1 .fgconts{ margin: 0; text-align: center;}

	.subgroup{ width: 90%; margin-left: -45%;}
	
	.secrvicelist li{ width: 32.5%; margin-top: 10px;}
	
	.mbxTit{ float: none;}
	.newList ul li dl dt{ float: none; width: 100%;}
	.newList ul li dl dd{ float: none; width: 100%;}
	.newList ul li dl dd h3{ font-size: 12px;}
	.newList ul li dl dd time{ font-size: 12px; margin-top: 10px;}
	.newList ul li dl dd p{ font-size: 12px;}
	.newList ul li dl dd font{ width: 85px; font-size: 12px; margin-top: 15px;}
	
	#AspNetPager1>table>tbody>tr td:first-child{ display: none;}
	#AspNetPager1>table>tbody>tr td:nth-of-type(2){ width: 100% !important;}
	#AspNetPager1>table>tbody>tr td>a{ display: block; text-align: center; float: left; width: 41%; margin-bottom: 5px;}
	.pages .cpb{ float: left; width: 41%;}
	
	.fy2 .prevnext font{ width: 100%; margin: 10px 0;}
	.fy2 .prevnext a{ width: 100%; margin: 0; line-height: 1.8;}
	
	.abouTus .abImg{ float: none; width: 100%;}
	.abouTus .abImg img{ right: 0;}
	.abouTus .abImg:after{ display: none;}
	.abouTus .abconts{ height: auto; padding: 20px 0;}
	.abouTus .abconts p{ font-size: 12px;}
	
	.subcompy{ width: 90%; margin-left: -45%;}
	.subcompy .abconts{ padding: 0; height: 200px;}
	.subcompy .abconts img{ width: 100%;}
	.zuGroup{ width: 90%; margin-left: -45%;}
	
	.joinus{ width: 90%; margin-left: -45%; padding: 20px 0;}
	.joinus ul li{ width: 100%; padding:10px 0;}
	
	.joinus ul li h3{ margin-top: 5px; font-size: 15px;}
	.joinus ul li p{ margin-top: 5px;}
	
	.neiabout h4{ font-size: 15px;}
	.neiabout p{ font-size: 12px;}

@media (max-width: 768px) {	
	.jz-about{ height: auto; padding-bottom: 20px;}
	.neiabout{ width: 90%; margin-left: -45%;}
	
	.zp-about{ width: 90%; margin-left: -45%; margin-top: 25px; margin-bottom: 5px;}
	.zp-about .zplftx{ float: none; width: 100%;}
	.zp-about .zpritx{ float: none; width: 100%; padding-left: 0; margin-top: 30px; border-left: none;}
	.zp-about .zpritx .neiritx{ height: auto; overflow-y: inherit;}
	
	.mapList .lftmap{ float: none; width: 100%; display: block;}
	.mapList .ritmap{ display:none;float: none; width: 60%; padding: 30px;z-index:-1;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	.mapList .ritmap p img{ display: none;}
	.otherscompany ul li{ float: none; width: 100%; padding-left: 0; height: auto; overflow-y: inherit;}
	
	.historyYear{ background-size: cover;}
	.asotime{ width: 90%; margin-left: -45%; height: 80%; top: 5%; margin-top: auto;}
	.timeLiner li{ width: 100%;}
	.timeLiner li .neiyer{ width: 100%; text-align: center;
		box-sizing: border-box; 
		-moz-box-sizing: content-box;
	}
	.timeLiner li:nth-of-type(even) .neiyer{ text-align: center;}
	.timeLiner li .neiyer p span{ display: none;}
	.mapList .ritmap h3{ font-size: 9px;}
	.mapList .ritmap p.phonumber{ font-size: 14px;}
	.otherscompany{ margin-top: 30px;}
	.otherscompany ul{ margin-top: 15px; padding-top: 0;}
	.otherscompany ul li h4{ margin-bottom: 10px;}
	
}
@media only screen and (max-width:640px ){
	.wapTit h3 i{ float: none; width: 20px;}
	.abouTus .abconts{ float: none; width: 100%;}
}
@media only screen and (max-width:320px ){
	
}
/* ===== 从内联 style 迁移的样式 ===== */
.pt-40 { padding-top: 40px; }
.slogan-text { color: #fff; font-weight: lighter; font-size: 30px; }
.mt-40 { margin-top: 40px; }
.text-black { color: #000; }
.text-white { color: #fff; }

/* ===== Banner 全宽修复 ===== */
.headbox { overflow: visible !important; width: 100%; }
.headbox .swiper-container.banner {
    width: 100%;
    left: 0;
    margin-left: 0;
    overflow: visible;
}
.headbox .swiper-container.banner .swiper-wrapper {
    width: 100%;
}
.headbox .swiper-container.banner .swiper-slide {
    width: 100%;
}


/* === OPTIMIZATION: Modern styling additions === */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Service card image hover effects */
.serviceBcons .swiper-slide a img {
    filter: brightness(0.8) saturate(1.1);
    transition: filter 0.5s;
}
.serviceBcons .swiper-slide a:hover img {
    filter: brightness(1) saturate(1.2);
}

/* Service card image backgrounds */
.serviceCont .wfivebox article .wperconts {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.serviceCont .wfivebox article .wperconts:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Service card image styling */
.service-card-img {
    width: 100%;
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

/* Swiper service card images */
.serviceBcons .swiper-slide .service-card-img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 0;
}
.serviceBcons .swiper-slide a {
    display: block;
    width: 100%;
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s;
}
.serviceBcons .swiper-slide a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Service card overlay */
.service-card-overlay {
    position: relative;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: #0F76D8;
    margin: 15px auto;
    border-radius: 2px;
}

/* Modern footer */
.foot {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8a 100%) !important;
}
.foot a, .foot li, .foot p {
    color: #c8d8e8 !important;
    transition: color 0.3s;
}
.foot a:hover {
    color: #ffffff !important;
}

/* News card styling */
.newListconts .newcongs {
    line-height: 1.8;
}
.newListconts .newcongs p {
    margin-bottom: 15px;
}

/* News list items */
.newlist li {
    transition: background 0.2s;
    border-radius: 4px;
    padding: 12px !important;
}
.newlist li:hover {
    background: #f0f6ff;
}

/* Back to top button smoother */
#goTopBtn {
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.8;
}
#goTopBtn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Language switcher styling */
.language a {
    transition: all 0.3s;
    border-radius: 3px;
}
.language a:hover {
    transform: translateY(-2px);
}
.language a.on {
    background: #0F76D8 !important;
    color: white !important;
}

/* Responsive image improvements - constrain all images in content */
.mainbox img:not(.swiper-slide img):not(.headbox img):not(.service-card-img) {
    max-width: 100%;
    height: auto;
}
/* BANNER GLOBAL TEMPLATE - applied to ALL pages */
.headbox .swiper-slide img,
.banner .swiper-slide>img,
.banner .swiper-slide img {
    height: 450px !important;
    width: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block !important;
}
/* Banner container unified height + full width */
.headbox .swiper-container.banner,
.banner {
    width: 100% !important;
    max-width: none !important;
    height: 450px !important;
    overflow: hidden !important;
}
.headbox .swiper-container.banner .swiper-wrapper,
.banner .swiper-wrapper {
    height: 450px !important;
}
.headbox .swiper-container.banner .swiper-slide,
.banner .swiper-slide {
    height: 450px !important;
    overflow: hidden;
}
/* Banner pagination unified style */
.banner .swiper-pagination {
    bottom: 15px !important;
    z-index: 10;
}
.banner .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: rgba(255,255,255,0.6) !important;
    opacity: 1 !important;
    margin: 0 4px !important;
    transition: all 0.3s !important;
}
.banner .swiper-pagination-bullet-active {
    background-color: #EA2A39 !important;
    width: 24px !important;
    border-radius: 4px !important;
}


/* About page header image containment */
.companyCurre + div img,
.companyCurre ~ div img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

/* Contact card modern styling */
.jz-tops li {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px !important;
}
.jz-tops li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
}

/* Page banner */
.banner {
    position: relative;
}

/* Timeline styling */
.history-list ul li {
    position: relative;
    padding-left: 30px;
    transition: transform 0.3s;
}
.history-list ul li:hover {
    transform: translateX(5px);
}

/* Page transition fade-in */
.mainbox {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile menu improvements */
.mobnavs ul li a {
    transition: background 0.2s;
    border-radius: 4px;
}
.mobnavs ul li a:hover {
    background: #e8f0fe;
}

/* EN site specific: clean modern look */
.lang-en .headbox {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* RU site specific: bold accent */
.lang-ru .headbox {
    border-bottom: 3px solid #c84a30;
}

.lang-ru .menuList li a.on {
    border-bottom-color: #c84a30 !important;
}

/* EN/RU banner full-width safety fix */
.lang-en .swiper-container.banner,
.lang-ru .swiper-container.banner {
    width: 100% !important;
    max-width: none !important;
    height: 450px !important;
    overflow: hidden !important;
}
.lang-en .swiper-container.banner .swiper-slide,
.lang-ru .swiper-container.banner .swiper-slide {
    height: 450px !important;
    width: 100% !important;
    overflow: hidden;
}
.lang-en .swiper-container.banner .swiper-slide img,
.lang-ru .swiper-container.banner .swiper-slide img {
    width: 100% !important;
    max-width: none !important;
    height: 450px !important;
    object-fit: cover !important;
    display: block !important;
}
}

/* 防止图片超出容器 */
.wsixbox img,
.wthreebox img,
.secrvicetype img,
.serviceCont img { max-width: 100%; height: auto; box-sizing: border-box; }
.wthreebox { overflow: hidden; }
