*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* html, body, .container, .scroller {
	height: 100%;
} */

/* .scroller {
	overflow-y: scroll;
} */




.scroller,
.scroller-inner {
	position: relative;
}

.container {
	position: relative;
	overflow: hidden;
	
}

.menu-trigger {
	position: fixed; width: 100%;  top: 0px; left: 0px; display: none;
	padding-left: 60px;
	font-size: 0.9em;
}

.menu-trigger:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #fff;
	box-shadow: 0 6px #34495e, 0 12px #fff, 0 18px #34495e, 0 24px #fff;
	content: '';
}

.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
}

.mp-menu {
	position: absolute; /* we can't use fixed here :( */
	top: 0;
	left: 0;
	z-index: 1;
	width: 300px;
	height: 100%;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.mp-level {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #012f87;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* content style */
.mp-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp-menu h2 {
	margin: 0;
	padding: 20px;
	color: rgba(255,255,255,0.6);
	font-family: "rb"
	font-weight: 500;
	font-size: 24px;
}

.mp-menu.mp-overlap h2::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 1em;
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li > a {
	display: block;
	padding:10px 20px 10px 40px;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	
	font-size: 14px; color: #fff;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
	position: absolute;
	left: 10px;
	z-index: -1; font-size: 14px;
	color: rgba(255,255,255,0.8);
	line-height: 41px;
}

.mp-level > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0), inset 0 1px rgba(0,0,0,0);
} /* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

.mp-back {
	background: rgba(0,0,0,0.1);
	outline: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: 1em;
	position: relative;
	box-shadow: inset 0 1px rgba(0,0,0,0.1);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.mp-back::after {
	font-family: 'linecons';
	position: absolute;
	content: "\e037";
	right: 10px;
	font-size: 1.3em;
	color: rgba(0,0,0,0.3);
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 300px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
	display: block;
}


.head-v3{position:fixed;z-index:100;min-width:1000px;top: 0px; left: 0px; width: 100%; transition: all 0.3s ease;}
.head-v3 .navigation-inner{margin:0 auto;width:calc(100% - 180px);position:relative; float: right;}

.navigation-up{height:90px; width: 100%; transition: all 0.3s ease; padding: 0 80px;}
.navigation-up .pc-logo{height:90px; width: 180px; float: left; position: relative;}
.navigation-up .pc-logo img{width: 100%;position: absolute; left: 0px; top: 0px; transition: all 0.3s ease; }
.navigation-up .pc-logo img.logo0{filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.navigation-up .pc-logo img.logo1{filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}





.navigation-up .navigation-v3{float:right;}
.navigation-up .navigation-v3 ul{float:right;}
.navigation-up .navigation-v3 li{float:left;font:normal 16px/59px "microsoft yahei";color:#fff}
.navigation-up .navigation-v3 .nav-up-selected{background:#344157}
/* .navigation-up .navigation-v3 .nav-up-selected-inpage{background:#202833} */
.navigation-up .navigation-v3 li h2{font-weight:normal;padding:0;margin:0}
.navigation-up .navigation-v3 li h2 a{padding:0 15px;color:#fff;display:block;height:90px; line-height: 90px; 
	font-family: "rr" ;font-size: 15px; transition: all 0.3s ease; font-family: "reg";}

.navigation-down{position:absolute;top:90px;left:0px;width:100%; transition: all 0.3s ease; }
.navigation-down .nav-down-menu{width:100%;margin:0;background:#344157;position:absolute;top:0px ;padding: 80px 80px; }
.navigation-down .nav-down-menu .navigation-down-inner{margin:auto;width:100%;position:relative; max-width: 1200px;}
.navigation-down .nav-down-menu dl{float:left;margin:18px 80px 18px 0}
.navigation-down .menu-1 .menu-1-left{width: 250px; height: auto; overflow: hidden;  float: left; }
.navigation-down .menu-1 .menu-1-left li{width: 100%; height: auto; overflow: hidden; margin-bottom: 10px; position: relative;}
/* .navigation-down .menu-1 .menu-1-left li:hover {background: rgba(255,255,255,0.2);} */
.navigation-down .menu-1 .menu-1-left li a{display: block;width: 100%; height: auto; overflow: hidden; padding: 10px 10px; line-height: 20px;
 font-size: 14px; color: #fff;}

.navigation-down .menu-1 .menu-1-right{width: calc(100% - 250px); height: auto; overflow: hidden;  float: left; }
.navigation-down .menu-1 .menu-1-right li{width: 100%; height: auto; overflow: hidden; float: right;
 padding: 40px; background: rgba(255,255,255,0.2); max-width: 500px; display: none;}
.navigation-down .menu-1 .menu-1-right li p{color: #fff; }

.navigation-down .menu-3 .menu-1-right li{width: 100%; height: auto; overflow: hidden; float: left;
 padding: 0px; background: rgba(255,255,255,0.0);  display: none;}
.navigation-down .menu-3 .menu-1-right li a{display: block;width: 250px; height: auto; overflow: hidden; padding: 10px 10px; line-height: 20px;
 font-size: 14px; color: #fff; margin-left: 100px;}
.navigation-down .menu-3 .menu-1-right li a:hover{background: rgba(255,255,255,0.2);}


 .navigation-down .menu-1 .menu-1-left li::before{ position: absolute; right: 5px; height: 20px;  line-height: 20px; font-size: 18px; color: #fff; top: 50%; margin-top: -10px; }

.head-v3:hover{background: rgba(255,255,255,0.7);}
.head-v3:hover .navigation-up .navigation-v3 li h2 a{ color: #2e3233; }
.head-v3:hover  .navigation-up .navigation-v3 .nav-up-selected h2 a{color:#fff;}
.head-v3:hover .navigation-up .pc-logo img.logo1{filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.head-v3:hover .navigation-up .pc-logo img.logo0{filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}

	.head-v5{ background: #fff; border-bottom: 1px solid rgba(0,0,0,0.2);}

.head-v5 .navigation-inner{width:calc(100% - 160px);position:relative; float: right;}

.head-v5 .navigation-up{height:80px; width: 100%;padding: 0 40px;}
.head-v5 .navigation-up .pc-logo{height:80px; width: 160px; float: left; position: relative;}
.head-v5 .navigation-up .navigation-v3 li h2 a{height:80px; line-height: 80px; font-size: 14px; color: #2e3233; }
.head-v5 .navigation-down{top:80px; }
.head-v5 .navigation-down .nav-down-menu{padding: 40px 40px; }
.head-v5 .navigation-up .pc-logo img.logo1{filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.head-v5 .navigation-up .pc-logo img.logo0{filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}

.head-v5 .navigation-up .navigation-v3 .nav-up-selected h2 a{color:#fff;}


.mb-nav{width: 100%; height: 60px;; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.2); position: fixed; z-index: 100; left: 0px; top: 0px; display: none; }
.mb-nav .menu-trigger{width: 60px; height: 60px; display: block; position: absolute; left: 0px; top: 0px; padding-left: 0px; }
.menu-trigger:before{display: none; }
.mb-nav .mb-logo{width: 120px; height: 60px; margin: 0 auto; }
.mb-nav .mb-logo img{width: 100%; display: block;}
.mb-nav .mb-search{width: 60px; height: 60px; display: block; position: absolute; right: 0px; top: 0px; padding-left: 0px; }

.pc-search{width: 100%; height: 120px; background: #012f87; position: relative;  z-index: 90;}
.pc-search-top{ height: 120px; overflow: hidden;  padding:0 50px; }
.pc-search-top-left{ height: 120px; overflow: hidden; width: 500px; float: left;  }
.pc-search-top-left span{display: block;float: left;  height: 22px; margin-top: 49px; font-size: 20px; font-family: "rb"; color: #FFF;}
.pc-search-top-left h3{display: block;float: right; line-height: 22px; height: 22px; margin-top: 49px; font-size: 20px; 
	font-family: "rb"; color: #FFF; font-weight: 500;}
.pc-search-top-left h3 a{padding:0 20px; color: #FFF; cursor:pointer;}
.pc-search-top-left h3 a:first-child{border-right: 2px solid #fff;}
.pc-search-top form{ height: 50px; overflow: hidden; width: calc(100% - 550px); float: right; display: block; position: relative; margin-top: 35px; }
.pc-search-top form .txt{ width:100%; height:50px; border-radius:5px; background:none; border:1px  solid rgba(255,255,255,0.5);
 padding:0 60px 0 20px; background: rgba(255,255,255,0.2); outline:none; color: #fff;}
.pc-search-top form .btn{ width:50px; height:50px; background: url(../img/006.png) no-repeat center; border:none; position:absolute; top:0; right:10px; cursor:pointer;}
.pc-search-bottom{ padding: 40px 0; height: auto;  position: absolute; top: 120px; left: 0px; width: 100%; background: rgba(1,47,135,0.8);
display: none; }
.pc-search-bottom-box{width: 100%; height: auto;   padding:0 50px;   }
/* .pc-search-bottom-box form{ width: 100%; height: auto;    }
.pc-search-bottom-box form .input-box{width: 50%; padding:0 50px; float: left; } 
.pc-search-bottom-box form .input-box select{width: 100%; outline: none; border: 1px solid rgba(255,255,255,0.5); border-radius: 5px; height: 50px; 
	background: rgba(255,255,255,0.2); line-height: 50px;  color: #fff; padding: 0 80px 0 30px; line-height: 50px;
	appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;}
.pc-search-bottom-box form .input-box select option{color: #2e3233; line-height: 30px;  padding: 0 30px; } */

.pc-search-bottom-box .layui-form{width: 100%;}
.pc-search-bottom-box .layui-form .layui-input-block{width: 50%; float: left; margin-left: 0px; padding: 10px 50px;}
.pc-search-bottom-box .layui-form .layui-input-block input{background-color: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5);
color: #fff; }
.pc-search-bottom-box .layui-form .layui-input-block{width: 50%; float: left; margin-left: 0px; padding: 10px 50px;}
.pc-search-bottom-box .layui-form .layui-form-select dl dd.layui-this{ background-color: #012f87; }
.pc-search-bottom-box .layui-form .layui-form-select .layui-edge{border-top-color: #fff;}


.pc-search-bottom-box .layui-form .layui-input-block input::-webkit-input-placeholder {  color: #fff;}
.pc-search-bottom-box .layui-form .layui-input-block input:-moz-placeholder {  color:    #fff;}
.pc-search-bottom-box .layui-form .layui-input-block input::-moz-placeholder {  color:    #fff;}
.pc-search-bottom-box .layui-form .layui-input-block input:-ms-input-placeholder { color:    #fff;}

.pc-search-bottom-box h2{display: block;  margin-bottom: 20px; font-size: 20px; padding: 0 50px;
	font-family: "rb"; color: #FFF; font-weight: 500;}

	.pc-search-bottom-box .layui-form .find-btn{float: right; padding: 0 50px;}
.pc-search-bottom-box .layui-form .find-btn .btn{float: left; width: 110px; height: 40px; line-height: 40px; text-align: center; 
	background:#718bbc; border: none; color: #fff; border-radius: 5px; margin-left: 20px; transition: all 0.3s ease;  }


.pc-search-bottom-box .layui-form .find-btn .btn:hover{background:#fff; color: #012f87;}

.pc-search-close{position: fixed; width: 100%; height: 100%;  z-index: 89;left: 0px; top: 0px; display: none;}

.mb-search-big{position: fixed; background: #012f87; top: 0px; left: 0px; width: 100%; height: 100%;  z-index: 200; display: none;}


.mb-search-top{ height: auto; overflow: hidden;  padding:0 10%; margin-bottom: 20px; margin-top: 30px }
.mb-search-top-left{ height: auto; overflow: hidden; width: 100%;  }

.mb-search-top-left h3{display: block; line-height: 22px; height: 22px; font-size: 16px; 
	font-family: "rb"; color: #FFF; font-weight: 500;margin-top: 40px;}
.mb-search-top-left h3 a{padding:0 20px; color: rgba(255,255,255,0.5); cursor:pointer;}
.mb-search-top-left h3 a:first-child{border-right: 2px solid #fff; }
.mb-search-top form{ height: 50px; overflow: hidden; width: calc(100% - 0px);display: block; position: relative; margin-top: 35px; }
.mb-search-top form .txt{ width:100%; height:50px; border-radius:5px; background:none; border:1px  solid rgba(255,255,255,0.5);
 padding:0 60px 0 20px; background: rgba(255,255,255,0.2); outline:none; color: #fff;}
.mb-search-top form .btn{ width:50px; height:50px; background: url(../img/006.png) no-repeat center; border:none; position:absolute; top:0; right:10px; cursor:pointer;}



.mb-search-bottom-box{display: none;}
.mb-search-bottom-box .layui-form{width: 100%;}
.mb-search-bottom-box .layui-form .layui-input-block{width: 100%; float: left; margin-left: 0px; padding: 10px 10%;}
.mb-search-bottom-box .layui-form .layui-input-block input{background-color: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5);
color: #fff; }

.mb-search-bottom-box .layui-form .layui-form-select dl dd.layui-this{ background-color: #012f87; }
.mb-search-bottom-box .layui-form .layui-form-select .layui-edge{border-top-color: #fff;}


.mb-search-bottom-box .layui-form .layui-input-block input::-webkit-input-placeholder {  color: #fff;}
.mb-search-bottom-box .layui-form .layui-input-block input:-moz-placeholder {  color:    #fff;}
.mb-search-bottom-box .layui-form .layui-input-block input::-moz-placeholder {  color:    #fff;}
.mb-search-bottom-box .layui-form .layui-input-block input:-ms-input-placeholder { color:    #fff;}

.mb-search-bottom-box h2{display: block;  margin-bottom: 20px; font-size: 20px; padding: 0 50px;
	font-family: "rb"; color: #FFF; font-weight: 500;}

	.mb-search-bottom-box .layui-form .find-btn{float: right; padding: 0 50px;}
.mb-search-bottom-box .layui-form .find-btn .btn{float: left; width: 110px; height: 40px; line-height: 40px; text-align: center; 
	background:#718bbc; border: none; color: #fff; border-radius: 5px; margin-left: 20px; transition: all 0.3s ease;  }


.mb-search-bottom-box .layui-form .find-btn .btn:hover{background:#fff; color: #012f87;}


.mb-search-close {position: absolute; width: 50px; height: 50px; top: 5px; right: 10px; cursor: pointer; }
.mb-search-close img{display: block;width: 100%;}









@media (max-width:1200px){

	.head-v3{}
.head-v3 .navigation-inner{width:calc(100% - 160px);position:relative; float: right;}

.navigation-up{height:80px; width: 100%;padding: 0 40px;}
.navigation-up .pc-logo{height:80px; width: 160px; float: left; position: relative;}
.navigation-up .navigation-v3 li h2 a{height:80px; line-height: 80px; font-size: 14px; }
.navigation-down{top:80px;  }
.navigation-down .nav-down-menu{padding: 40px 40px; }
}

@media (max-width:1000px){

 html, body, .container, .scroller {height: 100%; } 

.scroller {overflow-y: scroll;     width: calc(100% + 0px);} 

.menu-trigger {display: block;}

.mb-nav{display: block;}
.head-v3{display: none;}
.pc-search {display: none;}

}








.banner{position: relative; }

.banner img{width: 100%; display: block;}
.banner .num{width: 100%;height: 130px; position: absolute; left: 0px; top: 50%; z-index: 50; margin-top: -130px; }
.banner .num .num-box{float: right;}
.banner .num .num-box .value-box{float: left; margin-right: 100px; overflow: hidden; height: auto;}
.banner .num .num-box .value-box .pic-box{overflow: hidden; height: auto;}
.banner .num .num-box .value-box .pic{width: 70px; height: 70px; float: left;}
.banner .num .num-box .value-box h2{height: 70px; float: left; line-height: 70px; font-family: "reg";  font-size: 50px;  width: 180px; 
color: #fff; padding-left:30px; font-weight: 100;}
.banner .num .num-box .value-box h3{color: #FFF;margin-top: 30px; font-size: 24px; font-family: "reg";  font-weight: 100;}

.banner .swiper-pagination{color: #fff;  width: 200px; height: 50px; font-size: 50px; text-align: right;
 right: 130px; bottom: 8%;left: auto; font-family: "reg";  font-weight: 100;}
.banner .swiper-pagination .swiper-pagination-total{font-size: 30px;}

.banner .sb{position: absolute; width: 27px;height: 44px; border: 1px solid #fff; right: 130px;bottom: calc(8% + 150px);  border-radius: 13px; z-index: 50;}
.banner .sb span{position: absolute; display: block; width: 1px;height: 13px;  left: 13px;top: 0px; background: #fff;}














@media (max-width:1500px){

.banner .num{width: 100%;height: 130px; position: absolute; left: 0px; top: 50%; z-index: 50; margin-top: -50px; }

.banner .sb{bottom: calc(8% + 80px);}
.banner .swiper-pagination{height: 40px; font-size: 40px; text-align: right;}
.banner .swiper-pagination .swiper-pagination-total{font-size: 24px;}
}

@media (max-width:1200px){

.banner .num{width: 100%;height: 130px; position: absolute; left: 0px; top: 50%; z-index: 50; margin-top: -80px;   }

.banner .sb{display: none;}
.banner .swiper-pagination{height: 40px; font-size: 40px; text-align: right;}
.banner .swiper-pagination .swiper-pagination-total{font-size: 24px;}
.banner .num .num-box{width: 90%; margin: 0 auto; float: none;}
.banner .num .num-box .value-box{margin-right: 0; width: 33.3%}

.banner .num .num-box .value-box .pic{width: 50px; height: 50px; float: none; margin:  0 auto;}
.banner .num .num-box .value-box h2{height: auto; line-height: 1.5; font-size: 40px; text-align: center; width: 100%; padding: 0px; }
.banner .num .num-box .value-box h3{ font-size: 18px;text-align: center;}
}


@media (max-width:1000px){

.banner{margin-top: 60px; }
.banner .swiper-pagination{display: none;}

}

@media (max-width:800px){

.banner .num .num-box .value-box h3{margin-top: 0px;}

}



@media (max-width:600px){
.banner .num{margin-top: -60px;   }
.banner .num .num-box .value-box .pic{width: 40px; height: 40px; }
.banner .num .num-box .value-box h2{ font-size: 30px; }
.banner .num .num-box .value-box h3{ font-size: 16px;}

}
@media (max-width:400px){
.banner .num{margin-top: -40px;   }
.banner .num .num-box .value-box .pic{width: 30px; height: 30px; }
.banner .num .num-box .value-box h2{ font-size: 24px; }
.banner .num .num-box .value-box h3{ font-size: 14px;}

}



.w1400{width: 90%; max-width: 1400px; margin: 0 auto; transition: all 0.3s ease;}

.egla-title{font-size: 40px; font-family: "rr"; color: #012f87; margin-bottom: 60px;}
.egla-txt{font-size: 16px; font-family: "rr"; color: #5c6466; overflow-wrap: break-word; }
.egla-txt p{margin-bottom: 40px; line-height: 2;}
.egla-txt p:last-child{margin-bottom: 0px;}
.egla-more1{width: 200px; height: 50px;border-radius: 25px; display: block; padding-left: 60px;
 background: #012f87; color: #fff; line-height: 50px; position:relative;font-family: "rr"; font-weight: 700; font-size: 18px; margin-top: 40px; }
 .egla-more1 b{ color: #fff; font-size: 18px;  transition: all 0.3s ease; display: block; height: 50px;line-height: 50px; }
.egla-more1 span{position: absolute; display: block;width: 30px;height: 30px; border: 7px solid #fff; left: 10px; top:10px; border-radius: 50%;}
.egla-more1:hover b{color: #fff; transform:scale(1.1);}


@media (max-width:600px){
.egla-title{margin-bottom: 40px; font-size: 30px;}

.egla-more1{width: 150px; height: 38px;border-radius: 19px;  padding-left: 40px;
line-height: 38px;  font-size: 14px; margin-top: 30px; }
 .egla-more1 b{  font-size: 14px;   height: 38px;line-height:38px; }
.egla-more1 span{position: absolute; display: block;width: 22px;height: 22px; border: 4px solid #fff; left: 8px; top:8px; border-radius: 50%;}
.egla-more1:hover b{color: #fff; transform:scale(1.1);}

}



.abo{width: 100%; height: auto; min-height: 550px; position: relative; }
.abo .abo-back{width: 100%; height: 100%; position: absolute; z-index: 1; left: 0px ;top: 0px;}
.abo .abo-back-left{width: calc(50% + 700px); height: 100%; position: absolute; left: 0px ;top: 0px; 
background-size: cover; background-position: center top;}
.abo .abo-back-left span{width: 140px; height: 100%; position: absolute; right: 0px ;top: 0px; 
background: rgba(0,0,0,0.2);}
.abo .abo-back-right{width: calc(50% - 700px); height: 100%; position: absolute;  right: 0px ;top: 0px; 
 background-position: center left; background-image: url(../img/008.png); background-repeat: no-repeat;}

.abo .abo-main{position: relative; z-index: 10; padding-top: 80px; padding-bottom: 80px; padding-right: 230px;}




.firm{width: 100%; height: auto; min-height: 550px; position: relative; }
.firm .firm-back{width: 100%; height: 100%; position: absolute; z-index: 1; left: 0px ;top: 0px;}
.firm .firm-back-left{width: calc(50% + 560px); height: 100%; position: absolute; left: 0px ;top: 0px; 
background-size: cover; background-position: left top;}
.firm .firm-back-right{width: calc(50% - 560px); height: 100%; position: absolute;  right: 0px ;top: 0px; 
 background-position: center center; background-size: cover; background-repeat: no-repeat;}
.firm .firm-main{position: relative; z-index: 10; padding-top: 80px; padding-bottom: 80px; overflow: hidden; height: auto;}
.firm .egla-title{line-height: 60px; color: #2e3233;}
.firm .firm-main-left{width: 320px; height: auto; overflow: hidden; float: left;}
.firm .firm-main-right{width: calc(100% - 380px); height: auto; overflow: hidden; float: left; margin-left: 60px;}
.firm .firm-main-right img{width:100%; display: block; box-shadow: 1px 1px 3px rgba(0,0,0,0.3);}
.firm .firm-main-right .swiper-slide{padding: 3px;}

.firm .firm-arr{height: 30px; margin-bottom: 60px; width: 80px; position: relative;}

.firm .firm-arr .swiper-button-prev, .firm .firm-arr .swiper-button-next{width: 30px; height: 30px; background-color:#012f87; 
margin-top: -15px;background-size: 20px 20px;}

.firm .firm-arr  .swiper-button-prev{left: 0px;}
.firm .firm-arr  .swiper-button-next{right: 0px;}

.hang1{overflow: hidden;height: 192px;}

.road{width: 100%; height: auto;  position: relative; padding-top: 80px; padding-bottom: 60px; }

.road .road-top{ margin-bottom: 60px;  overflow: hidden;}
.road .swiper-slide{width: 1260px; height: 580px; background-size: cover; background-position: center center;
filter:alpha(opacity:30); opacity:0.3;  -moz-opacity:0.3;-khtml-opacity: 0.3;}
.road .swiper-slide-active{filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}
.road .swiper-slide .box{height: 340px; width: 80%; max-width: 520px; overflow: hidden; margin-top: 120px;
 background: #fff; border-left:#012f87 5px solid; position: relative; padding-top: 50px;padding-left: 30px; padding-right: 30px; display: none;  }

.road .swiper-slide-active .box{display: block;  }


.road .swiper-slide .box span{position: absolute; display: block;width: 30px;height: 30px; border: 7px solid #012f87; 
	right: 30px; top:50px; border-radius: 50%; }
.road .swiper-slide .box h3{font-size: 20px; font-weight: 100;margin: 0px; margin-bottom: 20px;}
.road .swiper-slide .box h4{font-size: 20px; font-weight: 700; font-family: "rb";margin: 0px; margin-bottom: 40px;}
.road .s3{padding-bottom: 50px;}
.road .s3 .swiper-pagination-bullet{border-radius: 0px; height: 2px; width:50px;}

.hang2{overflow: hidden;height: 120px; line-height: 2;}
.hang2 p{line-height: 1.5; font-size: 16px;}


.build{width: 100%; height: auto;  position: relative; background-position: top left;  background-size: cover; padding-top: 80px; }
.build .box{ padding: 80px; width:calc(50% + 480px);  min-height: 300px; position: relative;
	padding-right: calc(50% - 700px); height: auto; float: right;  background: rgba(255,255,255,0.85); }
.build .box i{width: 90px; height: 90px; display: block; position: absolute; left: -90px; top: 0px;}
.build .box i img{display: block;width: 100%;}


.news{width: 100%; height: auto;  position: relative; padding-top: 80px; padding-bottom: 80px;  background: #f5f5f5;}


.news ul{width: 100%; height: auto; overflow: hidden; }
.news ul{width: calc(100% + 20px); height: auto; overflow: hidden; margin-left: -10px; }
.news ul li{width: calc(33.3% - 20px); height: auto; overflow: hidden; float: left; position: relative;
 background: #fff; transition: all 0.3s ease; margin:10px ; height: 360px;}

.news ul li .pic{width: calc(50% + 10px); position: absolute; height: 100%; background-size: cover; background-position: center center; display: none; }
.news ul li .pic span{width: 40px; height: 40px;border: 20px solid rgba(0,0,0,0); position: absolute; }
.news ul li .box{width: 100%; height: 360px; padding: 40px; overflow: hidden ;}
.news ul li .box .hang4{width: 100%; height: 60px;  overflow: hidden ;margin-bottom: 40px;}
.news ul li .box .hang4 h3{font-size: 20px; line-height: 1.5; color: #012f87; margin: 0px; font-weight: 500; }
.news ul li .box .hang3{width: 100%; height: 84px;  overflow: hidden ;margin-bottom: 40px;}
.news ul li .box .hang3 p{font-size: 14px; line-height: 1.5;  color: #5c6466;}
.news ul li .box .bottom{width: 100%; height: auto; overflow: hidden;}
.news ul li .box .bottom span{display: block; float: left; color: #5c6466;}
.news ul li .box .bottom a{display: block; float: right; color: #012f87;}
.news ul li:hover{background: #012f87;}
.news ul li:hover .hang4 h3{color: #fff;}
.news ul li:hover .hang3 p{color: #fff;}
.news ul li:hover  .box .bottom span{ color: #fff;}
.news ul li:hover  .box .bottom a{ color: #fff;}




.news ul li:first-child{width: calc(66.6% - 20px);}
.news ul li:last-child{width: calc(66.6% - 20px);}
.news ul li:first-child .pic{display: block; left: 0px; top: 0px;}
.news ul li:last-child .pic{display: block; right: 0px; top: 0px;}

.news ul li:first-child .pic span{ border-right: 20px solid #fff; top: 50%; margin-top: -20px;  right: 0px;}
.news ul li:last-child .pic span{border-left: 20px solid #fff; top: 50%; margin-top: -20px;  left: 0px;}

.news ul li:first-child .box{display: block; float: right; width: calc(50% - 10px); }
.news ul li:last-child .box{display: block; float: left; width: calc(50% - 10px);  }

.news .egla-more1{margin: 0 auto;  margin-top: 40px;}

.foot{width: 100%; height: auto; overflow: hidden; padding: 45px 0; background: #012f87;}

.foot .logo2{width: 200px; height: 100px; float: left;}
.foot .logo2 img{width: 100%; display: block;}
.foot  .box{width: calc(100% - 250px); margin-left: 50px; height: auto; float: left;}
.foot  .box .n-nav{width: 100%; color: #FFF; text-align: right; margin-bottom: 20px; margin-top: 20px;}
.foot  .box .n-nav a{color: #fff; font-size: 14px; padding-left: 20px; font-weight: 100;text-transform:uppercase;}
.foot  .box .n-nav a:hover{color: #fff; }
.foot  .box .copy{width: 100%; color: #FFF; text-align: right;}
.foot  .box .copy p{width: 100%; color: #FFF;  font-size: 14px; font-weight: 100; text-transform:uppercase}
.foot  .box .copy p span{padding-left: 20px; }
.foot  .box .copy p span a{color: #fff; font-size: 14px;  font-weight: 100;}
.foot  .box .copy p span a:hover{color: #fff; }


@media (max-width:1550px){
.abo .abo-back-right{width: 10%;}
.abo .abo-back-left{width: 90%; }

.firm .firm-back-left{width: calc(90% - 140px);}
.firm .firm-back-right{width: calc(10% + 140px);}

.road .swiper-slide{width: calc(90% - 140px);}

.build .box{ width:calc(90% - 200px);   padding-right: 5%; }
}

@media (max-width:1000px){
.abo .abo-back-right{display: none;}
.abo .abo-back-left{width: 100%; }
.abo .abo-back-left span{width: 15%; }
.abo .abo-main{padding-right: 15%;}
.firm .firm-back-left{width: 85%;}
.firm .firm-back-right{width: 15%;}

.firm .firm-main-left{width: 85%; height: auto; overflow: hidden; float: left;}
.firm .firm-main-right{width: 100%; height: auto; overflow: hidden; float: left; margin-top: 60px; margin-left: 0px;}
.hang1{overflow: hidden;height: auto;}
.road .swiper-slide{width: calc(90% - 60px);}
.build .box{ width:calc(90% - 150px);padding: 60px 40px;}


.news ul li{width: calc(50% - 20px); }

.news ul li:first-child{width: calc(100% - 20px);}
.news ul li:last-child{width: calc(100% - 20px);}
.foot{padding: 30px 0; }
.foot .logo2{ float: none; margin:0 auto; margin-bottom: 20px;}
.foot  .box{width: 100%; margin-left:0px; float: none;}
.foot  .box .n-nav{display: none;}
.foot  .box .copy{ text-align: center;}



}


@media (max-width:600px){

.abo .abo-back-left span{display: none; }
.abo .abo-main{padding-right: 0%;}
.firm .firm-back-left{width: 100%;}
.firm .firm-back-right{display: none;}
.firm .firm-main-left{width: 100%; }
.road .swiper-slide{width: calc(100%);}
.road .s3 .swiper-pagination-bullet{width:20px;}

.road .swiper-slide .box {width: 90%;}

.build .box{ width:calc(100% - 70px);padding: 60px 5%; background: rgba(255,255,255,0.7); }

.build .box i{width: 50px; height: 50px; display: block; position: absolute; left: -90px; top: 0px; left: -50px;}

.news ul li{width: calc(100% - 20px); }
.news ul li:first-child .pic{display: none; }
.news ul li:last-child .pic{display: none; }
.news ul li:first-child .box{ float: none; width: calc(100% - 0px); }
.news ul li:last-child .box{ float: none; width: calc(100% - 0px);  }
.news .egla-more1{margin: 0 auto;  margin-top: 30px;}
}



.banner2{height: auto; min-height: 600px;background-size: cover; background-position: center center; position: relative;}
.banner2 h2{height: 60px; line-height: 60px; position: absolute; width: 100%; text-align: center; font-size: 60px; top: 50%; margin-top: -30px; 
	font-family: "Roboto",Arial; font-weight: 900; color: #fff;}
.pc-search2{width: 90%; max-width: 1400px; margin: 0 auto;  margin-top: -90px;}
.in-nav{height: 100px; position: relative; z-index: 30;}
.in-nav .box{float: right; height: auto; overflow: hidden; padding-left: 40px;
 background:url(../img/009.png) no-repeat center left; margin-top: 38px;
 font-size: 18px;font-family: "rb";font-weight: 500; color: #737373; position: absolute;right: 0px;top: 0px;}
.in-nav .box a{ font-size: 18px;font-family: "rb";font-weight: 500; color: #737373;  padding:  0 10px;}
.in-nav .box a:hover{  color: #737373;  }
.in-nav .box a:first-child{padding-left: 0px;}
.in-nav .box a:last-child{padding-right: 0px;}


.lawyer1{width: 100%; height: auto; overflow: hidden; padding-top: 140px; padding-bottom: 80px;  background: #f5f5f5;  margin-top: -140px;  }
.lawyer1 .box .pic{width: 420px; height:420px; overflow: hidden;float: left; }
.lawyer1 .box .pic img{width: 100%; display: block;}
.lawyer1 .box .txt{width: calc(100% - 440px);margin-left: 20px; background: #fff; float: left;
 height: auto; min-height:420px; overflow: hidden; position: relative; padding: 40px 0;  }
.lawyer1 .box .txt .txt-left {width: 400px; height: auto; overflow: hidden; padding:0 40px; float: left;}
.lawyer1 .box .txt .txt-left  h3{font-size: 32px; font-weight: 500; color: #012f87; margin-bottom: 20px;}
.lawyer1 .box .txt .txt-left  h4{font-size: 18px; font-weight: 500; color: #333333; margin-bottom: 40px;}
.lawyer1 .box .txt .txt-left ul{width: 100%; height: auto; overflow: hidden; margin-bottom: 30px;}
.lawyer1 .box .txt .txt-left ul li{width: 100%; height: auto; overflow: hidden; padding: 6px 0px 6px 50px; 
	line-height: 1.5 ;font-size: 16px; font-family: Arial; background-repeat: no-repeat; background-position: 0px 2px;}
.lawyer1 .box .txt .txt-left .down{width: 100%; height: 30px;}
.lawyer1 .box .txt .txt-left .down a{width: 30px; height: 30px; display: block;float: left; margin-right: 30px; position: relative;}
.lawyer1 .box .txt .txt-left .down a img{width: 100%; display: block; position: absolute; left: 0px; top: 0px;transition: all 0.3s ease;}
.lawyer1 .box .txt .txt-left .down a .down1{ filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}
.lawyer1 .box .txt .txt-left .down a .down2{ filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.lawyer1 .box .txt .txt-left .down a:hover .down2{ filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}
.lawyer1 .box .txt .txt-left .down a:hover .down1{ filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.lawyer1 .box .txt span{display: block;width: 1px; height: calc(100% - 80px); position: absolute; border-left: 1px #c0c0c0 dashed; left: 400px; top: 40px; }

.lawyer1 .box .txt .txt-right {width: calc(100% - 400px); height: auto; overflow: hidden; padding:0 40px; float: left; position: relative;}
.lawyer1 .box .txt .txt-right b {width: 80px; height: 80px;position: absolute; right: 40px; top: 0px; z-index: 1}
.lawyer1 .box .txt .txt-right .egla-txt{position: relative; z-index: 2;  margin-top: 80px;}
.lawyer1 .box .txt .txt-right .egla-txt p{font-size: 14px; line-height: 1.5; color: #666; }

.lawyer2 .box{ padding: 80px; width:calc(50% + 480px);  min-height: 300px; position: relative;
	padding-left: calc(50% - 700px); height: auto; float: left;  background: rgba(1,47,135,0.80); }
.lawyer2 .box .egla-title{color: #fff;}
.lawyer2 .box .egla-txt p{color: #fff;}
.lawyer3 {background: #fff; margin: 0; padding-top: 80px;}
.lawyer3 .pic{position: relative;}
.lawyer3 .pic b{width: 146px; height: 146px; position: absolute; display: block; left: 50%; top: 50%; margin-top: -73px; margin-left: -73px; 
	border-radius: 50%; border: 1px #fff dashed;}
.lawyer3 .pic h6{width: 120px; height: 120px; position: absolute; display: block; left: 50%; top: 50%; margin-top: -60px; margin-left: -60px; 
	border-radius: 50%; border: 2px #fff solid; background: rgba(0,0,0,0.5); line-height: 120px;  font-size: 32px; text-align: center; font-weight: 500; color: #fff;}
.lawyer3 .txt{padding: 0px !important; padding-left: 40px !important;}
.lawyer3 .txt ul{width: 100%; height: auto; overflow: hidden;}
.lawyer3 .txt ul li{width: 100%; height: auto; overflow: hidden; margin-bottom: 50px;}
.lawyer3 .txt ul li:last-child{ margin-bottom: 0px;}
.lawyer3 .txt ul li h3{font-weight: 500; font-size: 24px; color: #012f87; margin-bottom: 30px; }
.lawyer3 .txt ul li 9{font-weight: 500; font-size: 14px; color: #666666; }

.lawyer4 {width: 100%; height: auto; overflow: hidden; background-size:  cover; background-position: center center; 
	background-attachment: fixed;}
.lawyer4 .box{border-left:1px solid rgba(255,255,255,0.5); border-right:1px solid rgba(255,255,255,0.5); 
width: 100%; height: auto; overflow: hidden; padding-top: 80px; padding-bottom: 80px;}
.lawyer4 .box .egla-title{color: #fff; border-bottom:1px solid rgba(255,255,255,0.5); padding-left: 60px; padding-right: 60px; padding-bottom: 60px; }
.lawyer4 .box ul{width: 100%; height: auto; overflow: hidden; padding: 0 5%;}
.lawyer4 .box ul li{width: 100%; height: auto; overflow: hidden; margin-bottom: 60px; padding-left: 80px; position: relative;}
.lawyer4 .box ul li:last-child{ margin-bottom: 0px;}
.lawyer4 .box ul li b{position: absolute; display: block; position:absolute; width: 30px;height: 30px;border:7px solid rgba(255,255,255,0.5);
 left: 0px; top: 5px;  border-radius: 50%;}
.lawyer4 .box ul li h4{font-size: 24px; font-weight: 500; margin-bottom: 30px; color: #fff;}
.lawyer4 .box ul li span{display: inline-block; padding:10px 14px; margin: 10px 0; margin-right: 20px; 
 color: #fff;border:1px solid rgba(255,255,255,0.5); }
.areas{margin-top: 80px;}
.areas .s6{padding-bottom: 20px;}

.areas .swiper-slide{padding: 3px;height: auto; overflow: hidden;}
.areas .swiper-slide .s6-box{box-shadow: 1px 1px 4px rgba(0,0,0,0.3); min-height: 190px;
 border-bottom: 2px solid #012f87; padding: 20px;height: auto; overflow: hidden; }

.s6-txt{margin-bottom: 20px;}

.s6  .swiper-button-prev, 
.s6  .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 28px;
    height: 64px;
    margin-top: -32px;
    z-index: 10;
    cursor: pointer;
    background-size: 12px 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.2);
}

.s6  .swiper-button-prev{ left: 3px;}
.s6  .swiper-button-next{ right: 3px;}

.latest{width: 100%; height: auto; overflow: hidden; padding-top: 80px; padding-bottom: 80px; position: relative;}
.latest-box{width: 100%; height: auto; overflow: hidden; padding-top: 10px; position: relative;}

.latest-box .swiper-slide{padding: 40px 20px;}
.latest-box .swiper-slide .s7-box{width: 100%; height: auto; overflow: hidden; z-index: 100; position: relative;}
.latest-box .swiper-slide span{font-size: 18px; display: block; margin-bottom: 30px; }
.latest-box .swiper-slide .s7-txt{width: 100%; height: auto; overflow: hidden;margin-bottom: 30px; }
.latest-box .swiper-slide .s7-txt p{font-size: 14px; line-height: 2; }

.latest-box .swiper-slide i{display: block;width: 60px; height: 2px;  margin-bottom: 30px; background: #012f87;}
.latest-box .swiper-slide h6{font-size: 16px; font-weight: 500; }

.latest  .swiper-button-prev, 
.latest  .swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(50% - 730px);
    height: 50px;
    margin-top: -25px;
    z-index: 10;
    cursor: pointer;
    background-size: 50px 50px;

}

.latest  .swiper-button-prev {

    background-position: center right;
    left: 0;
    right: auto;
    background-image: url(../img/020.png);

}
.latest  .swiper-button-next {

    background-position: center left;
    left: auto;
    right: 0;
    background-image: url(../img/021.png);

}
.latest  .swiper-button-prev span{position: absolute;display: block;width: calc(100% - 50px);  top: 50%;
 margin-top: -1px;height: 2px; background: #999; left: 0px;}
.latest  .swiper-button-next span{position: absolute;display: block;width: calc(100% - 50px);  top: 50%;
 margin-top: -1px;height: 2px; background: #999; right: 0px;}

 .s7-back{position: absolute; height: 100%; width: 100%; background-size: cover; background-position: center center; top: 0px; left: 0px;
 filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
 .latest-box .swiper-slide:hover .s7-back{filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;transition: all 0.3s ease;}

.latest-box .swiper-slide:hover span{color: #fff;  }
.latest-box .swiper-slide:hover .s7-txt p{color: #fff; }

.latest-box .swiper-slide:hover i{background: #fff;}
.latest-box .swiper-slide:hover h6{color: #fff; }





@media (max-width:1550px){


.lawyer2 .box{ width:calc(90% - 200px);   padding-left: 5%; }
.lawyer4 .box{width: 90%;}
.s7{width: 90%;}

.latest  .swiper-button-prev, 
.latest  .swiper-button-next { width: 5%;}
}

@media (max-width:1400px){
.lawyer1 .box .txt .txt-left {width: 300px; padding:0 30px; }
.lawyer1 .box .txt .txt-right {width: calc(100% - 300px);  padding:0 30px; }
.lawyer1 .box .txt span{ left: 300px; }
}

@media (max-width:1200px){
.lawyer1 .box .txt .txt-left {width: 100%; }
.lawyer1 .box .txt .txt-right {width: 100%;  }
.lawyer1 .box .txt span{ display: none; }
.lawyer1 .box .txt .txt-right b {display: none; }
.lawyer1 .box .txt .txt-right .egla-txt{ margin-top: 40px;}
.banner2{min-height: 500px;}
.banner2 h2{font-size: 50px;}
}

@media (max-width:1000px){
.in-nav{display: none;}

.lawyer1{padding-top: 80px;   margin-top: 0px;  }
.build .box{ width:calc(90% - 100px);padding: 60px 40px;}

.s7{width:calc(100% - 120px);}

.latest  .swiper-button-prev, 
.latest  .swiper-button-next { width: 60px;}

}

@media (max-width:800px){
.lawyer1 .box .pic{width: 100%; height:auto;  }
.lawyer1 .box .txt{width: 100%;margin-left: 0px;  }
.banner2{min-height: 400px;}
.banner2 h2{font-size: 40px;}
.lawyer3 .pic{margin-bottom: 40px;}
.lawyer4 {background-attachment: scroll;}
}

@media (max-width:600px){
.lawyer1 .box .pic{width: 100%; height:auto;  }
.lawyer1 .box .txt{width: 100%;margin-left: 0px;  }
.banner2{min-height: 350px;}
.banner2 h2{font-size: 30px;}
.build .box{ width:calc(100% - 50px);padding: 60px 5%;  }

.lawyer4 .box ul li{ margin-bottom: 40px; padding-left: 60px;}
.lawyer4 .box ul li:last-child{ margin-bottom: 0px;}
.lawyer4 .box ul li span{font-size: 14px; padding:5px 7px; margin: 5px 0; margin-right: 10px;  }
}



.egla-title2{width: 100%; height: auto; overflow: hidden;}
.egla-title2 span{float: left; display: block; ;  font-size: 36px; color: #012f87;
	padding-bottom: 10px; border-bottom: 2px solid #012f87; margin-bottom: 50px;}

.essay-box{ overflow: hidden; }
.h80{clear: both; height: 80px;}
.about01{margin-top: 0px; margin-bottom: 0px;}
.about02{padding-top: 140px; background-position: top; right;}
.center-pic{width: 100%; height: auto; overflow: hidden; }
.center-pic img{width: 100%; display: block;}
.egla-join{display: block;width: calc(100% + 100px); margin-left: -50px;}
.egla-join input{display: block;width: calc(50% - 100px);margin:0 50px 50px 50px; background-color: rgba(0,0,0,0); 
	border: none; border-bottom: 1px solid #012f87; height: 60px; line-height: 60px; float: left; color:#012f87; }
	.egla-join input.tel{display: block;width: calc(100% - 100px); }

	.egla-join textarea {display: block;width: calc(100% - 100px); margin:0 50px 50px 50px; background-color: rgba(0,0,0,0); 
	border: none; border-bottom: 1px solid #012f87; height: 60px; line-height: 60px; float: left; color:#012f87; 
	height: 90px; font-size: 16px; line-height: 1.5  ; }
.egla-join input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #012f87;
}
.egla-join input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #012f87;
}
.egla-join input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #012f87;
}
.egla-join input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #012f87;
}
.egla-join textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #012f87;
}
.egla-join textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #012f87;
}
.egla-join textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #012f87;
}
.egla-join textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #012f87;
}
.egla-join input.join-btn{width: 200px; float: right; margin-bottom: 0px;transition: all 0.3s ease;}


.egla-join input.join-btn:hover{background:#012f87; color: #fff;   }
.history h4{font-size: 24px; color: #012f87; margin-bottom: 60px;}
.history .egla-title2{margin-bottom: 30px;}
.history ul{width: 100%; height: auto; overflow: hidden; position: relative; padding-top: 80px;}
.history ul li{width: 100%; height: auto; overflow: hidden; position: relative; margin-bottom: 80px; z-index: 10;}
.history ul li .left{width: 28%; height: auto; overflow: hidden; position: relative; float: left;}
.history ul li .right{width: 72%; height: auto; overflow: hidden; position: relative; float: left;}
.history ul li .left .box{width: 100%;max-width: 230px; text-align: center; height: auto; overflow: hidden;  float: right;}
.history ul li .right .box{width: 100%;max-width: 900px; padding: 0 40px; height: auto; overflow: hidden;  float: right;}
.history ul li .left .box h5{font-size: 24px; text-align: center;color: #012f87;font-weight: 500; font-family: Arial; margin-bottom: 30px;}
.history ul li .left .box h6{font-size: 18px; text-align: center;color: #333333;font-weight: 500; font-family: Arial;}
.history ul li .right .box h4{font-size: 24px; color: #012f87;font-weight: 500;  margin-bottom: 30px;}
.history ul li .right .box p{font-size: 16px; color: #333333;font-weight: 500; }
.history ul li b{display: block;width: 13px;height: 13px; border-radius: 50%; left: 28%; position: absolute;
 margin-left: -7px; top: 40px; background: #012f87;}
.history ul span{position: absolute; left: 28%; top:0px; height: 100%; width: 1px; display: block; background: #aaa; }


.news-title{font-size: 45px; margin-bottom: 60px; font-weight: 500;}
.news-digest{font-size: 30px; margin-bottom: 60px;color: #012f87;   font-weight: 500;}

.news-back{ width: 180px; height: 50px;text-align: center; border: 1px solid #012f87;display: block; line-height: 50px; margin-top: 60px;
transition: all 0.3s ease;}
.news-back b{color: #012f87; font-weight: 500; }

.news-back:hover{background: #012f87;}
.news-back:hover b{color: #fff;} 



.con-top{width: calc(100% + 40px); height: auto; overflow: hidden; margin-left: -20px;}
.con-top li{width: calc(25% - 40px); height: auto; overflow: hidden; margin:10px 20px; float: left; padding-top: 40px; position: relative;}
.con-top li img{position: absolute; width: 80px; height: 55px; position: absolute;display: block; top: 0px; left: 50%; margin-left: -40px;}
.con-top li .con-txt{border:1px solid rgba(1,47,135,0.5); width: 100%; height: 160px; padding: 20px;

 text-align: center;
      font-size: 20px;
      color: #012f87;
		
      /* Center slide text vertically */
      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; 

  }

.con-top li.con-add{width: calc(100% - 40px);}
.con-top li.con-3{word-break:break-all ;}

.egla-map{width: 100%; height: 400px; overflow: hidden; background: #f5f5f5;}




.member-list{ background-size: cover; background-position: center top; }
.member-list-box{width: calc(150% - 510px); height: auto; padding-top: 80px; overflow: hidden; margin-left: calc(-25% + 255px);}
.menber-title{width: 100%; text-align: center; margin-bottom: 20px;}
.menber-title h3{font-size: 30px; color: #012f87;}
.menber-title h4{font-size: 18px; color: #012f87; margin-top: 10px;}
.member-list-box li{width: 340px; height: auto; overflow: hidden; float: left; margin-left:calc(16.6% - 170px);margin-right:calc(16.6% - 170px);
padding:20px 3px 3px 3px;  transition: all 0.3s ease;  }
.member-list-box li .member-pic{width: 100%; height: auto; overflow: hidden; box-shadow: 1px 1px 3px rgba(0,0,0,0.3);}
.member-list-box li .member-pic img{width: 100%; height: auto; display: block;}
.member-list-box li h2{width: 100%; font-size: 18px; color: #333; line-height: 1.5; height: 54px; overflow: hidden; text-align: center; font-weight: 500; margin-top: 10px;}
.member-list-box li:hover{ transform:translate(0px,-10px); }

.lawyer-list{width: calc(100% + 24px); margin-left: -12px;height: auto; overflow: hidden;font-size: 0;letter-spacing: -3px; }
.lawyer-list li{width: calc(25% - 24px); margin-left: 12px; margin-right: 12px; height: auto; overflow: hidden;
 display: inline-block; vertical-align:top; margin-bottom: 30px;}
.lawyer-list-box{width: 100%; max-width: 440px; height: auto; overflow: hidden; padding:10px 3px 3px 3px;  
	margin: 0 auto; letter-spacing: 0px; transition: all 0.3s ease; }
.lawyer-list-pic{ width: 110px; height: 110px; height: auto; overflow: hidden; border-radius: 50%;
 margin:0 auto; 	margin-bottom: 20px;letter-spacing: 0px; }
.lawyer-list-pic img{width: 100%; display: block;}
.lawyer-list-txt{width: 100%; height: auto; overflow: hidden; letter-spacing: 0px; text-align: center;}
.lawyer-list-txt h2{width: 100%; height: auto; overflow: hidden; font-size: 28px; line-height: 1.5 ; color: #012f87;letter-spacing: 0px; }
.lawyer-list-txt h3{width: 100%; height: auto; overflow: hidden; font-size: 18px; line-height: 1.5 ; color: #012f87;letter-spacing: 0px; margin-bottom: 10px; }
.lawyer-list-tel {display: block; width: 100%; height: auto; overflow: hidden;   
 font-size: 16px; line-height: 1.5; 
/* background-repeat: no-repeat;background-position: -2px -2px;  padding-left: 30px;*/ font-family: Arial;}
.lawyer-list-mail {display: block; width: 100%; height: auto; overflow: hidden; 
	font-size: 16px; line-height: 1.5; 
/* background-repeat: no-repeat;background-position: -2px -2px;   padding-left: 30px;  */font-family: Arial;}
.lawyer-list-box .down{width: 100%; height: 24px; margin-top: 10px; text-align: center;}
.lawyer-list-box .down a{width: 24px; height: 24px; display: inline-block; margin-right: 10px; position: relative;}
.lawyer-list-box .down a img{width: 100%; display: block; position: absolute; left: 0px; top: 0px;transition: all 0.3s ease;}
.lawyer-list-box .down a .down1{ filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}
.lawyer-list-box .down a .down2{ filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.lawyer-list-box .down a:hover .down2{ filter:alpha(opacity:100); opacity:1;  -moz-opacity:1;-khtml-opacity: 1;}
.lawyer-list-box .down a:hover .down1{ filter:alpha(opacity:0); opacity:0;  -moz-opacity:0;-khtml-opacity: 0;}
.lawyer-list-box:hover{ transform:translate(0px,-10px); }
.lawyer-list-tel:before{content: " "; display: inline-block; width: 24px; height: 24px; vertical-align: middle;
 background-image: url(../img/010.png); background-size: 100%; margin-right: 5px; background-position:0px -3px; }
.lawyer-list-mail:before{content: " "; display: inline-block; width: 24px; height: 24px; vertical-align: middle;
 background-image: url(../img/012.png); background-size: 100%; margin-right: 5px; background-position:0px -3px; }
.page{width: 100%; height: auto; overflow: hidden; text-align: center; padding: 3px 0;}
.page a{display: inline-block; font-size: 16px;  height: 30px; width: 30px; line-height: 30px; text-align: center;
 color: #fff; background:#012f87; transition: all 0.3s ease; font-family: Arial; margin: 3px; }
.page a.n-p{  width: 50px; }

.page a:hover{background:  rgba(1,47,135,0.6); color: #fff; }
.page a.cut{ color: #012f87; background:#fff;}


.mem-d-b{width: 100%; height: auto; overflow: hidden;position: relative;}
.mem-d-b .s10{width: calc(100% - 100px); max-width: 1000px; height: auto; overflow: hidden;position: relative;}
.mem-d-b .swiper-button-prev, .mem-d-b .swiper-button-next{filter:alpha(opacity:40); opacity:0.4;  -moz-opacity:0.4;-khtml-opacity: 0.4;}
form.news-search{width: 100%; height: 50px;  max-width: 800px;}
form.news-search .news-search-left {width: 60%; height: 50px; float: left; position: relative; margin-right: 30px;}

form.news-search .news-search-right {width: calc(40% - 30px); height: 50px; float: left; clear: none; }
form.news-search .news-search-right input{width:100%; height:50px;  background:none; border:1px  solid #012f87;
 background: rgba(255,255,255,0.2); outline:none; color: #333; border-radius: 0px; font-size: 16px; color:#012f87; }
form.news-search .news-search-right input:hover{ border:1px  solid #012f87; }


form.news-search .txt{ width:100%; height:50px;  background:none; border:1px  solid #012f87;
 padding:0 60px 0 20px; background: rgba(255,255,255,0.2); outline:none; color: #333;}
form.news-search .btn{ width:50px; height:50px; background: url(../img/022.png) no-repeat center; border:none;
 position:absolute; top:0; right:10px; cursor:pointer;}


.news-list{width: calc(100% + 24px); margin-left: -12px;height: auto; overflow: hidden; margin-top: 60px;}
.news-list li{width: calc(25% - 24px); margin-left: 12px; margin-right: 12px; height: auto; overflow: hidden;
float: left; margin-bottom: 30px;}
.news-list-box{width: 100%; height: 550px; padding-bottom: 40px; overflow: hidden; position: relative; background: #f7f9fb;}
.news-list-box img{display: block; width: 100%; }
.news-list-box h3{font-size: 20px; line-height: 1.5; padding: 20px; color: #012f87;font-size: 500;}
.news-list-box h5{font-size: 16px; line-height: 1.5; padding: 20px 20px 0 20px ; color: #333;font-size: 500;}
.news-list-box b{display: block; width: 60px; height: 2px; background: #012f87; margin-left: 20px; margin-bottom: 20px;}
.news-list-box span{font-size: 12px; line-height: 1.5; padding: 0px 20px 20px 20px; color: #012f87;display: block; }
.news-list-box .news-list-txt{font-size: 12px; line-height: 1.5; padding:0 20px; color: #333;}
.news-list-box .news-list-black{position: absolute; width: 100%; height: 80px; bottom: 0px; left: 0px; background-image: url(../img/023.png); background-repeat:repeat-x; }

.load-more{width: 150px; height: 40px;display: block; margin-top: 60px; padding-left: 40px;
 text-align: center; line-height: 40px; font-size: 12px; color: #012f87; position: relative;}
.load-more b{width: 40px; height: 40px;display: block; position: absolute; left: 0px; top: 0px; border:1px solid #012f87;
 line-height: 40px; height: 40px; text-align: center; font-size: 20px; font-family: Arial;}
.load-more i{width: 40px; height: 40px;display: block; position: absolute; left: -40px; top: 0px; background:  #012f87; transition: all 0.3s ease;}
.load-more:hover{ color: #012f87; }
.load-more:hover b{ color: #fff; }
.load-more:hover i{ left: 0px;} 


.sarch-all{width: 100%; height: auto; overflow: hidden; margin-top: 80px; }
.sarch-all li{ overflow: hidden;  float: left; height: 50px;  transition: all 0.3s ease;  margin-bottom: 10px;
	line-height: 50px; padding:0 20px;  margin-right: 10px;  border:1px solid #012f87; color: #012f87;  }
.sarch-all li span{font-family: Arial; padding-left: 5px;}
.sarch-all li:hover{ background:  #012f87; color: #fff;  }
.sarch-all li.cut {background:  #012f87; color: #fff;  }
.sarch-all-box{width: 100%; height: auto; overflow: hidden; margin-bottom: 80px;}
.essay-box .sarch-all-box:last-child{ margin-bottom: 0px;}


.sarch-all-box-t{ height: auto; width: 100%;overflow: hidden; margin-bottom: 40px; border-bottom: dashed 1px #012f87; padding-bottom: 20px; }
.sarch-all-box-t h2{width: calc(100% - 150px);  line-height: 40px; font-weight: 500; color: #333 ; 
 float: left; font-size: 30px; margin-right: 30px; }
.sarch-all-box-t a{width: 120px; height: 40px; line-height: 40px; font-weight: 500; color: #333 ;  float: left;font-size: 18px;  transition: all 0.3s ease; }
.sarch-all-box-t a:hover{color: #012f87;  }





.practices-top{width: calc(50% + 100px); height: auto; overflow: hidden; position: relative; padding-left: calc(50% - 700px); min-height: 600px;}
.practices-top-back1{ position: absolute; width: calc(100% - 200px); height: 100%; left: 0px; top: 0px; background:  rgba(1,47,135,0.8);  z-index: 19; }
.practices-top-back2{ position: absolute; width: 200px; height: 100%; right: 0px; top: 0px; background-size: 100% 100%; 
 background-repeat: no-repeat; background-image: url(../img/024.png); z-index: 19; }

.practices-top-txt{position: relative; z-index: 20; width: 800px;  height:auto; overflow: hidden; float: right; padding-right: 200px;  padding-top: 150px; padding-bottom: 150px; }
.practices-top-txt h3{font-size: 60px; font-weight: 500; color: #fff; line-height: 1.5;}
.practices-top-txt span{height: 2px; width: 90px; margin-top: 30px; margin-bottom: 30px; background: #fff; display: block;}
.practices-top-txt .practices-top-main{width: 100%; height: auto; overflow: hidden;  font-size: 18px; color: #fff;}









.practices-left{margin-right: 50px; width: calc(100% - 450px); height: auto; overflow: hidden;  float: left; max-width: 800px;}


.practices-left ul{ width: 100%; height: auto; overflow: hidden; }
.practices-left ul li{ width: 100%; height: auto; overflow: hidden;  padding:30px 0; border-bottom: 1px #012f87 dashed;}
.practices-left ul li span{display: block;width: 100%; height: auto; overflow: hidden;  font-size: 16px;margin-bottom: 15px;color: #012f87; font-family: Arial;  }
.practices-left ul li h3{display: block;width: 100%; height: auto; overflow: hidden;  font-size: 28px;margin-bottom: 15px;color: #012f87;   }
.practices-left ul li .practices-txt{display: block;width: 100%; height: auto; overflow: hidden;  font-size: 18px; }
.practices-right{ width: 400px; height: auto; overflow: hidden;  float: left; padding:30px; background: #ededed; }
.practices-right .lawyer-list-pic{width: 160px; height: 160px; margin-bottom: 0px; float: left;}

.practices-right .practices-t{ float: left; width: calc(100% - 190px); margin-left: 30px; }
.practices-right .practices-t .lawyer-list-txt h2{font-size: 18px;}
.practices-right .practices-t .lawyer-list-txt h3{font-size: 14px;}
.practices-right .lawyer-list-tel{font-size: 12px; background-size: 24px 24px;}
.practices-right .lawyer-list-mail{font-size: 12px; background-size: 24px 24px;}
.practices-right-title{font-size: 20px; font-weight: 500; color:  #012f87 ; margin-bottom: 20px;}
.practices-right ul { width: 100%; height: auto; overflow: hidden; margin-top: 30px; }
.practices-right ul li { width: 100%; height: auto; overflow: hidden; padding:15px 0; }

.practices-right ul li span{display: block;font-size: 24px; color: rgba(55,55,55,0.3);  font-family: Arial; margin-bottom: 15px;}
.practices-right ul li h6 a{color: #333; font-size: 14px; transition: all 0.3s ease;}

.practices-right ul li h6 a:hover{color: #012f87;}


@media (max-width:1500px){
.practices-top{width: 800px; padding-left: 0px;}
.practices-top-txt{padding-left: 30px;}

}










@media (max-width:1200px){
	.egla-join{display: block;width: calc(100% + 60px); margin-left: -30px;}
.egla-join input{display: block;width: calc(50% - 60px); margin:0 30px 30px 30px;  height: 50px; line-height: 50px; }
	.egla-join input.tel{display: block;width: calc(100% - 60px); }
	.egla-join input.join-btn{width: 200px; }
		.egla-join textarea {width: calc(100% - 60px);  margin:0 30px 30px 30px; }




		.con-top li{width: calc(50% - 40px); }

.con-top li .con-txt{font-size: 18px; }

.con-top li.con-add{width: calc(100% - 40px);}

.member-list-box{width: calc(100% + 60px); margin-left: -30px;}

.member-list-box li{width: calc(33.3% - 60px);margin-left:30px;margin-right:30px; }
.member-list-box li h2{font-size: 16px; height: 48px;}


.lawyer-list li{width: calc(33.3% - 24px);}
.news-list li{width: calc(33.3% - 24px);}
.practices-top{ min-height: 500px;}

}

@media (max-width:1000px){
	
.about01{margin-top: 80px; }
.sarch-all { margin-top: 0px;}
.practices-top-txt{padding-top: 100px; padding-bottom: 100px; }
.practices-top-txt h3{font-size: 40px;}

 .practices-left{margin-right: 0px; width: 100%; margin-bottom: 80px; max-width: 1000px;}
  .practices-right{ width: 100%; }

  .practices-right  .lawyer-list-box{max-width: 1000px;}

}


@media (max-width:800px){
	
.egla-join input{display: block;width: calc(100% - 60px); margin:0 30px 30px 30px;  height: 50px; line-height: 50px; }
.history ul span{left: 7px; }
.history ul li b{ left: 0; margin-left: 0px;}
.history ul li .left{width: 100%; }
.history ul li .right{width: 100%; }
.history ul li .right .box{padding: 0 0px;  padding-left: 30px;}
.history ul li .left .box{max-width: 800px; text-align: left;   float: left; padding-left: 30px;}
.history ul li .left .box h5{ text-align: left; float: left; font-size: 18px; line-height: 18px; margin-right: 20px; }
.history ul li .left .box h6{ text-align: left; float: left; font-size: 18px; line-height: 18px;  }

.news-title{font-size: 30px;  }
.news-digest{font-size: 24px; }
.member-list-box{width: calc(100% + 40px); margin-left: -20px;}
.member-list-box li{width: calc(50% - 40px);margin-left:20px;margin-right:20px; }
.lawyer-list li{width: calc(50% - 24px);}
.news-list li{width: calc(50% - 24px);}

.sarch-all-box-t h2{width: calc(100% - 100px); font-size:24px; margin-right: 20px; }
.sarch-all-box-t a{width: 80px;font-size: 14px;  }
.sarch-all-box{ margin-bottom: 40px;}
.essay-box .sarch-all-box:last-child{ margin-bottom: 0px;}
.practices-top{ min-height: 400px ; width: 100%;}

.practices-top-txt{width: 100%; padding-right: 5%; padding-right: 5%; padding-top: 200px; }


.practices-top-back1{ position: absolute; width: 100%; height: calc(100% - 150px);
 left: 0px; top: 150px; background:  rgba(1,47,135,0.8);  }
.practices-top-back2{ position: absolute; width: 100%; height: 150px; right: auto; left: 0px top: 0px; 
 background-image: url(../img/025.png);  }



 .practices-right .practices-t{ float: left; width: calc(100% - 0px); margin-left: 0px; }
.practices-right .practices-t .lawyer-list-txt h2{font-size: 30px;}
.practices-right .practices-t .lawyer-list-txt h3{font-size: 18px;}
.practices-right .lawyer-list-tel{font-size: 16px; background-size: 28px 28px;}
.practices-right .lawyer-list-mail{font-size: 16px; background-size: 28px 28px;}



}

@media (max-width:600px){
	
		.con-top li{width: calc(100% - 40px); }

.con-top li .con-txt{font-size: 16px; height: auto;}
.member-list-box{width: calc(100% + 10px); margin-left: -5px;}
.member-list-box li{width: calc(50% - 10px);margin-left:5px;margin-right:5px;padding:10px 2px 2px 2px; }
.member-list-box li h2{font-size: 14px;height: 42px;}

.sarch-all-box-t h2{font-size:20px; }

.practices-top{ min-height: 350px;}
.practices-right .lawyer-list-pic{width: 100%; height: auto; margin-bottom: 40px; }


}



@media (max-width:440px){	
.lawyer-list li{width: calc(100% - 24px);}
.news-list li{width: calc(100% - 24px);}
.news-list li .news-list-box{height: auto; } 
.news-list li .news-list-black{display: none;}


.practices-top-txt{width: 100%; padding-right: 5%; padding-right: 5%; padding-top: 120px; padding-bottom: 80px;}


.practices-top-back1{  height: calc(100% - 100px); top: 100px;  }
.practices-top-back2{  height: 100px;  }
}