/*****通用编码******/
* {
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;/*只针对低版本谷歌*/
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
}
*, :after, :before {
	box-sizing: border-box;
	-webkit-box-sizing: border-box; /* 谷歌 */
	-moz-box-sizing: border-box; /* Firefox */
}
body, ol, table, tr, td, ul, li, dt, dd, dl, h1, h2, h3, h4, h5, h6, form, input, select, textarea, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	/*font-family: "Segoe UI", "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, Helvetica, Arial, Tahoma, sans-serif, \5b8b\4f53;*/
	font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	line-height: 1.5;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0
}
*html {
	background-attachment: fixed;
}
/*解决IE6下滚动抖动的问题*/
body {
	color:#1f2329;
	font-size:14px;
	_overflow: hidden;
	min-width: 1400px;
	line-height: 1.5;
	overflow-x: hidden;
	background: #fff;
	width: 100%;
	-webkit-font-feature-settings: "tnum";
    font-feature-settings: "tnum";
	*cursor: default;
}
img {
	border: none;
	vertical-align: middle;
}

/* 默认样式 */
.box_p {
  width: 500px;
  height: 300px;
  overflow: auto;
  float: right;
  margin-right: 80px;
}

/* 在小屏幕设备上调整样式 */
@media screen and (max-width: 767px) {
  .box_p {
    width: auto;
    height: auto;
  }
}
ul, ol, li, form, dl {
	list-style: none;
}
p {
	margin: 0px;
	padding: 0px;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.flex{
	display: flex;
}
.t-c{
	text-align: center;
}
.t-r{
	text-align: right;
}
.box{
	padding: 60px 0;
}
/*-------给a加时间过渡、清除默认样式---------*/
a {
	outline: none;
	cursor: pointer;
	text-decoration: none;
	color: #666;
	transition: all .4s ease 0s;
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
}
a:hover {
	color: #004e97;
}
a:active, a:hover {
	text-decoration: none
}
a, area, a:active {
blr:expression(this.onFocus=this.blur());
}
:focus {
	-moz-outline-style: none;
}
/*在浏览器拖动鼠标颜色*/
::selection {
	color: #fff;
	background-color:#004e97;
}
::-moz-selection {
color: #fff;
background-color: #004e97;
}
/*更改浏览器滚动条颜色兼容*/
html, body {
	/*更改ie内核滚动条颜色*/
	scrollbar-face-color: #004e97;
	scrollbar-highlight-color: #004e97;
	scrollbar-shadow-color: #004e97;
	scrollbar-3dlight-color: #004e97;
	scrollbar-arrow-color: #222;
	scrollbar-track-color: #222;
	scrollbar-darkshadow-color: #004e97;
}
/*更改-webkit-内核滚动条样式*/
::-webkit-scrollbar {
width:4px;
height: 4px;
background-color: #fcfcfc;
}
::-webkit-scrollbar-track {
border-radius:0;
background-color: #fcfcfc;
}
::-webkit-scrollbar-thumb {
border-radius:0;
background-color: #004e97;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
/*-------表单居中、清理描边---------*/
input, button, select, textarea {
	outline: none
}
input, select, textarea, button {
	vertical-align: middle
}
button {
	border: 0 none;
	background-color: transparent;
	cursor: pointer
}
input[type=submit] {
	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;
}
/*----- 表格重置-----*/
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}
caption {
	display: none;
}
:focus{outline:0}
.animate{transition:all .5s cubic-bezier(.25,0,0,1);-webkit-transition:all .5s cubic-bezier(.25,0,0,1);-moz-transition:all .5s cubic-bezier(.25,0,0,1);-ms-transition:all .5s cubic-bezier(.25,0,0,1);-o-transition:all .5s cubic-bezier(.25,0,0,1)}
/*----- clearfix-----*/
.clearfix {
*zoom:1;
}
.clearfix:before, .clearfix:after {
	display: table;
	content: '';
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
/*----- 超出省略号///-----*/
.toe {
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/**font-size**/
.f12 {
	font-size: 12px;
}
.f14 {
	font-size: 14px;
}
.f16 {
	font-size: 16px;
}
.f18 {
	font-size: 18px;
}
.f20 {
	font-size: 20px;
}
.f22 {
	font-size: 22px;
}
.f12 {
	font-size: 12px;
}
.f24 {
	font-size: 24px;
}
.f32 {
	font-size: 32px;
}
/* background color */
.bgcolor-fff{
	background-color: #fff!important;
}
.bgcolor-333{
	background-color: #333!important;
}
.bgcolor-f6{
	background-color: #f6f6f6!important;
}
/**font**/
@font-face {
  font-family: 'chiconfont';
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/iconfont.woff2') format('woff2'),
       url('../fonts/iconfont.woff') format('woff'),
       url('../fonts/iconfont.ttf') format('truetype'),
       url('../fonts/iconfont.svg#iconfont') format('svg');
}
.chiconfont {
	font-family: "chiconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}
@font-face
{
    font-family: BarlowLight;
    src: url(../fonts/BarlowLight.ttf);
}
#bd>section.atsx-layout{display:block;}
.atsx-layout{
	display:-ms-flexbox;
	display:flex;
	-ms-flex:auto;
	flex:auto;
	-ms-flex-direction:column;
	flex-direction:column;
	min-height:0;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {
	body{
		min-width: auto;
	}
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	
}
/**header**/
.header{
	width:100%;
	z-index:100;
	background: hsla(0,0%,100%,1);
	border-bottom: 1px solid #eff0f1;
	font-family: Gilroy-regular,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition:ease .5s;
}
.header-container{
	z-index: 1100;
}
.header-content{
	display:-ms-flexbox;
	display:flex;
	height:100%;
	-ms-flex-direction:row;
	flex-direction:row;
	-ms-flex-pack:justify;
	justify-content:space-between;
	-ms-flex-align:center;
	align-items:center;
	width: 1400px;
	/* padding:0 10.93%; */
	margin:0 auto
}
.dynamic-header{	
	position: fixed;
	z-index: 999;
	border-bottom: none;
	width: 100%;
	top: -96px;
	/* -ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease; */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
}
.header-transparent{
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	background: rgba(0,0,0,0);
	-ms-transform: translateY(90px);
	transform: translateY(90px);
	box-shadow: none!important;
}
.dynamic-header.header-show{
	top: -80px;
	-ms-transform: translateY(80px);
	transform: translateY(80px);
	border-bottom: solid 1px rgba(255,255,255,.2);	
}
.logo{
	position: relative;
	width:190px;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.logo a{width:200px;}
.logo a img{
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: ease .5s;
}
.logo img:nth-child(1){
	opacity: 1;
}
.header-transparent .logo img:nth-child(1){
	opacity: 0;
}
.header-transparent .logo img:nth-child(2){
	opacity: 1;
}
.nav-wrapper{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	list-style: none;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
	margin: 0 0 0 20px;
	position: relative
}
.nav-wrapper .nav-item{
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 10
}
.nav-wrapper .nav-item h2.nav-item-link{
	font-weight:400;
	font-size: 16px;
	line-height: 80px;
	cursor: pointer;
}
.nav-wrapper .nav-item h2.nav-item-link a{
	color:#000;
	font-weight:400;
	display: inline-block;
	position: relative;
	line-height: inherit;
}
.header-transparent .nav-wrapper .nav-item h2.nav-item-link a{
	color: #fff;
}
/*.header .nav-wrapper .nav-item h2.nav-item-link a:before{*/
/*	content: "";*/
/*	position: absolute;*/
/*	left: calc(50% - 2.5px);*/
/*	bottom: 2px;*/
/*	width: 0px;*/
/*	height: 0px;*/
/*	opacity: 0;*/
/*	border-left: 2.5px solid transparent;*/
/*	border-right: 2.5px solid transparent;*/
/*	border-bottom: 5px solid #004e97;*/
/*	transition:.3s ease-in-out;*/
/*}*/
.header-transparent .nav-wrapper .nav-item h2.nav-item-link a:before{
	border-bottom-color: #fff;
}
.nav-wrapper .nav-item h2.nav-item-link a:after{
	content:"";
	display: block;
	height:2px;
	width:100%;
	position: absolute;
	left: 50%;
	margin-left: -50%;
	bottom:0px!important;
	background-color:#fff;
	opacity:0;
	transform: scaleX(0);
	transition:.3s ease-in-out;
}
.nav-item .submenu{
	position:absolute;
	top:81px;
	left:50%;
	display: none;
	width:100%;
	margin-left: -50%;
/*
	-moz-transition:all ease 0.3s;
	-o-transition:all ease 0.3s;
	-webkit-transition:all ease .3s;
	transition:all ease .3s;
*/
	-webkit-transform:translateY(0);
	transform:translateY(0);
	opacity:1;
/*
	background:rgba(255,255,255,.9);
	box-shadow:0 3px 16px rgba(0,0,0,.1)
*/
}
.nav-item .submenu a{
	font-size:14px;
	line-height:40px;
	text-align:center;
	position:relative;
	display:block;
	overflow:hidden;
	height:40px;
	padding: 0 10px;
	-webkit-transition:all ease .3s;
	transition:all ease .3s;
	white-space:nowrap;
	text-overflow:ellipsis;
	color:#666;
}
.nav-item .submenu a:last-child{border-bottom:0}
.nav-item .submenu a:hover{color:#fff;background:#004e97}
.nav-item .submenu a:hover:after{right:15px;visibility:visible}
.nav-wrapper .nav-item h2.nav-item-link a.active{
	font-weight: 600;
}
.nav-wrapper .nav-item .nav-item-link:hover a:after,.nav-wrapper .nav-item .nav-item-link a.active:after{
	opacity: 1;
	transform: scaleX(1);
}
.nav-wrapper .nav-item .nav-item-link:hover a:before,.nav-wrapper .nav-item .nav-item-link a.active:before{
	opacity: 1;
}
.nav-wrapper>.nav-item+.nav-item{
	margin-left:20px;
	padding: 0 20px
}
.nav-wrapper .nav-item .nav-item-link:hover a,.nav-wrapper .nav-item .nav-item-link a.active{color:#004e97;}
.header .nav-wrapper .nav-item .nav-item-link:hover a:after,.header .nav-wrapper .nav-item .nav-item-link a.active:after{
	background-color: #004e97;
}
.header .nav-wrapper .nav-item .nav-item-link:hover a:before,.header .nav-wrapper .nav-item .nav-item-link a.active:before{
	opacity: 1;	
}
.header-transparent .nav-wrapper .nav-item .nav-item-link:hover a:after,.header-transparent .nav-wrapper .nav-item .nav-item-link a.active:after{
	background-color: #fff
}
.header-transparent .nav-wrapper .nav-item .nav-item-link:hover a:before,.header-transparent .nav-wrapper .nav-item .nav-item-link a.active:before{
	opacity: 1;
}
.header-transparent .nav-wrapper .nav-item .nav-item-link:hover a{
	color:hsla(0,0%,100%,.5);
}
.header-transparent .nav-wrapper .nav-item h2.nav-item-link{
	line-height: 80px;
}
.header-transparent .nav-item .submenu{
	top: 80px;
}
.nav-wrapper:after{
	content: "";
	position: fixed;
	left: 0;
	top: 80px;
	width: 100%;
	min-height: 320px;
	display: none;
	background-color: rgba(255,255,255,.9);
	box-shadow: 0 3px 10px rgba(0,0,0,.1);
	-moz-transition:all ease 0.3s;
	-o-transition:all ease 0.3s;
	-webkit-transition:all ease .3s;
	transition:all ease .3s;
}
.nav-wrapper .nav-item:hover .submenu{
	background-color: rgba(0,0,0,.1)
}
.nav-wrapper:hover:after{
	display: block
}
.nav-wrapper:hover .submenu{
	display: block;
	opacity:1;
/*	z-index:999;*/
	-webkit-transform:translateY(0);
	transform:translateY(0)
}
/*tel*/
.tel{
	color: #004e97;
	align-items: center;
}
.tel i{
	width: 40px;
	height: 40px;
	color: #004e97;
	font-size: 40px;
	text-align: center;
	line-height: 42px;
	margin-right: 5px;
}
.tel strong{
	display: block;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}
.header-transparent .tel,.header-transparent .tel i{
	color: #fff;
}
/*Header button*/
.menu-button {
	margin: 0;
	position: relative;
	height: 50px;
	width: 30px;
	cursor: pointer;
}
.menu-button:after, .menu-button:before {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4f4f4f;
	content: "";
	transition: ease 0.5s;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-o-transition: ease 0.5s;
}
.menu-button:after {
	bottom: 13px;
}
.menu-button:before {
	top: 13px;
}
.menu-button span {
	display: block;
	height: 1px;
	width: 100%;
	background: #4f4f4f;
	position: absolute;
	top: 50%;
	left: 0;
	border-radius: 2px;
	margin-top: -1px;
	transition: ease 0.5s;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-o-transition: ease 0.5s;
}
.menu-button.active:after {
	transform: rotate(-45deg) translate(0px, -1px);
	-webkit-transform: rotate(-45deg) translate(0px, -1px);
	-moz-transform: rotate(-45deg) translate(0px, -1px);
	-ms-transform: rotate(-45deg) translate(0px, -1px);
	-o-transform: rotate(-45deg) translate(0px, -1px);
	transform-origin: 0 100%;
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	left: 5px;
	bottom: 13px;
}
.menu-button.active:before {
	transform: rotate(45deg) translate(0px, 2px);
	-webkit-transform: rotate(45deg) translate(0px, 2px);
	-moz-transform: rotate(45deg) translate(0px, 2px);
	-ms-transform: rotate(45deg) translate(0px, 2px);
	-o-transform: rotate(45deg) translate(0px, 2px);
	transform-origin: 0 100%;
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	top: 13px;
	left: 5px;
}
.menu-button.active span {
	opacity: 0
}
.header-transparent .menu-button:after, .header-transparent .menu-button:before {
	background: #fff
}
.header-transparent .menu-button span {
	background: #fff;
}
/* m nav*/
.m-nav {
	position: fixed;
	top: 0;
	/*box-shadow: 0 15px 27px 0 rgba(167, 165, 165, .38);*/
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all ease .5s;
	-webkit-transition: all ease .5s;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	top: 0;
	transform: translateX(100%)
}
.m-nav a {
	outline: none
}
.m-nav.open {
	transform: translateX(0)
}
.m-nav .top {
	height: 60px;
	padding: 20px;
	box-sizing: border-box
}
.m-nav .top .closed {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float: right;
	cursor: pointer
}
.m-nav .logo {
	width: 100%;
	margin: 0 auto
}
.m-nav .logo img {
	width: 38%;
	display: block;
	margin: 0 auto 30px
}
.m-nav .ul {
	margin-top: 30px
}
.m-nav .ul li {
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0
}
.m-nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}
.m-nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(5) {
	-webkit-transition: all 1s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(7) {
	-webkit-transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li:nth-child(8) {
	-webkit-transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms
}
.m-nav .ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
	position: relative;
}
.m-nav .ul li a.active {
	font-weight: 800;
	color: #1b2c43
}
.m-nav .ul li a i {
	font-size: 12px;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.m-nav .ul li .dropdown_menu {
	display: none
}
.m-nav .ul li.dropdown.active .dropdown_menu {
	display: block
}
.m-nav .ul li .dropdown_menu a {
	display: block;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5
}
.m-nav .ul li .dropdown_menu a:last-child {
	border: none
}
.m-nav-search {
	border: solid 1px #ddd;
	margin-top: 20px;
	border-radius: 18px;
	height: 36px;
	width: 90%;
	margin-bottom: 10px;
}
.m-nav-search input {
	width: calc(100% - 40px);
	padding-left: 20px;
	height: 34px;
	border: none;
	outline: none;
	background: transparent;
	font-size: 1.4rem;
	color: #333;
}
.m-nav-search button {
	width: 40px;
	height: 34px;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1.8rem;
	color: #333;
}
.m-nav-tel {
	text-align: center;
	margin-top: 18px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #666;
}
.m-nav-tel a {
	font-weight: 800;
}
.m-nav-link {
	text-align: center;
	margin-top: 18px;
}
.m-nav-link a {
	display: inline-block;
	padding: 5px 25px;
	color: #fff;
	cursor: default;
	background: #00598e;
	font-size: 14px;
	line-height: 2;
}
.container{
	width: 1400px;
	padding: 0;
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {
	.container{
		width:100%;
		padding: 0 15px;
	}
	.header-content{
		width: 100%;
	}
}
@media screen and (max-width: 1200px) {
	.logo{
		width: 180px;
	}
	.nav-wrapper>.nav-item+.nav-item{
		margin-left: 0
	}
}
@media screen and (max-width: 1024px) {
	.nav-wrapper{
		display: none!important
	}
	.tel{
		display: none!important
	}
	.menu-button{
		display: block!important
	}
}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {	
	.box{
		padding: 30px 0;
	}
	.header-content {
		padding: 0 15px;
	}
	.header-transparent.header .logo, .header .logo {
		width: 128px
	}
}

/**home banner**/
.banner{
	position: relative;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	overflow: hidden;
}
.banner .swiper-slide{
	overflow:hidden;
}
.slide-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	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;
}
.banner .text-title{
	text-align: center;
}
.banner .text-title img{
	margin: 0 auto;
}
.banner .text-desc{
	text-align: center;
	font-size: 24px;
	line-height: 1.8;
	padding: 10px 0;
	color: #fff;
}
.banner .more{
	margin-top: 40px;
}
.swiper-banner-next, .swiper-banner-prev {
	top: calc(50% + 40px);
	/*background-color: rgba(210,210,210,.6);*/
	/*background-size: 15px 15px;*/
	border-radius: 50%;
	width: 52px;
	height: 52px;
	transition: all .5s;
	color: rgba(255,255,255,.2);
	outline: none;
	opacity: 0;
}
.swiper-banner-prev i{
	transform: rotateY(-180deg);
}
.swiper-banner-next i, .swiper-banner-prev i{
	font-size: 50px;
}
.swiper-banner-next:after,.swiper-banner-prev:after{
	content: "";
}
.banner:hover .swiper-banner-next,.banner:hover .swiper-banner-prev {
	opacity: 1;
}
.swiper-banner-next:hover, .swiper-banner-prev:hover {

}
.swiper-banner-next {

	right: 20px;
}
.swiper-banner-prev {

	left: 20px;
}
.swiper-container .swiper-banner-next.swiper-button-disabled, .swiper-container .swiper-banner-prev.swiper-button-disabled {
	opacity: 0;
}
.swiper-pagination-bullet{
	background:none;
	opacity:1;
	margin:0 5px !important;
	width:44px;
	height:4px;
	position:relative;
	outline:none;
	vertical-align:middle;
}
.swiper-pagination-bullet span{
	width:44px;
	height:4px;
	border-radius: 2px;
	background:rgba(255,255,255,.35);
	display:block;
	margin-top:0px;
	margin-left:0px;
}
.swiper-pagination-bullet i{
	border-radius: 2px;
	background:#fff;
	height:4px;
	width:44px;
	position:absolute;
	top:0px;
	transform:scaleX(0);
	transform-origin:left;
	z-index:3;
	transition-timing-function:linear;
}
.swiper-pagination-bullet-active span,.swiper-pagination-bullet:hover span{
	width:44px;
	height:4px;
	margin-top:0;
	margin-left:0;
	/*background:#fff;*/
	position:relative;
	z-index:1;
}
.swiper-pagination-bullet-active i{
	animation:middle 6s;
}
.swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i{
	animation:first 6s;
}
.swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i{
	animation:last 6s;
}				
@keyframes first{
	0% {transform:scaleX(0);left:0px;}/*091*/
	100% {transform:scaleX(1);left:0px;} /*0915*/
}
@keyframes last{
	0% {transform:scaleX(0);left:0px;}/*1090*/
	20% {transform:scaleX(0.5);left:0px;} /*090*/
	100% {transform:scaleX(1);left:0px;} /*090*/
}		
@keyframes middle{
	0% {transform:scaleX(0);left:0px;}/*1091*/
	20% {transform:scaleX(0.5);left:0px;}/*092*/
	100% {transform:scaleX(1);left:0px;} /*0913*/
}
.banner-mouse {
	position: absolute;
	left: 50%;
	bottom: 120px;
	z-index: 10;
	margin-left: -14.5px;
	animation: linedown linear infinite 1.5s;
	-webkit-animation: linedown linear infinite 1.5s;
	-moz-animation: linedown linear infinite 1.5s;
	-ms-animation: linedown linear infinite 1.5s;
	-o-animation: linedown linear infinite 1.5s;
	cursor: pointer
}
.banner-mouse span {
	display: block;
	width: 29px;
	height: 60px;
	border-radius: 14px;
	position: relative;
	background: url(../images/mouse.png) no-repeat top center;
}
.banner-mouse span:after {
	position: absolute;
	left: 50%;
	top: 5px;
	width: 2px;
	height: 16px;
	background: #fff;
	content: "";
	animation: FmovefadeInDown linear infinite 1.5s;
	-webkit-animation: FmovefadeInDown linear infinite 1.5s;
	-moz-animation: FmovefadeInDown linear infinite 1.5s;
	-ms-animation: FmovefadeInDown linear infinite 1.5s;
	-o-animation: FmovefadeInDown linear infinite 1.5s;
	margin-left: -1px;
	border-radius: 2px;
}
@keyframes FmovefadeInDown {
	0% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
	35% {
		opacity: 0;
		transform: translate(0px, 50%);
	}
	65% {
		opacity: 0;
		transform: translate(0px, -50%);
	}
	100% {
		transform: translate(0px, 0px);
		opacity: 1;
	}
}
@-webkit-keyframes FmovefadeInDown {
	0% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
	35% {
		opacity: 0;
		transform: translate(0px, 50%);
	}
	65% {
		opacity: 0;
		transform: translate(0px, -50%);
	}
	100% {
		transform: translate(0px, 0px);
		opacity: 1;
	}
}
@-moz-keyframes FmovefadeInDown {
	0% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
	35% {
		opacity: 0;
		transform: translate(0px, 50%);
	}
	65% {
		opacity: 0;
		transform: translate(0px, -50%);
	}
	100% {
		transform: translate(0px, 0px);
		opacity: 1;
	}
}
@keyframes linedown {
	0% {
		bottom: 30px
	}
	50% {
		bottom: 15px
	}
	100% {
		bottom: 30px
	}
}
@-webkit-keyframes linedown {
	0% {
		bottom: 30px
	}
	50% {
		bottom: 15px
	}
	100% {
		bottom: 30px
	}
}
@-moz-keyframes linedown {
	0% {
		bottom: 30px
	}
	50% {
		bottom: 15px
	}
	100% {
		bottom: 30px
	}
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {	
	.banner .text-title{
		font-size: 32px;
	}
	.banner .text-desc{
		font-size: 14px;
	}
	.banner .more{
		margin-top: 30px;
	}
}
/*main*/
.title{
	position: relative;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.title h4{
	font-size: 38px;
	font-weight: 800;
	color: #333;
	position: relative;
	z-index: 1;
}
.title h4 span{
	color: #004e97;
}
.title .en{
	line-height: 1;
	font-size: 16px;
	color: #999;
	text-transform: uppercase;
}
.title::after{
	content: "";
	width: 66px;
	height: 5px;
	background-color: #004e97;
	position: absolute;
	margin-left: -33px;
	left: 50%;
	bottom: 0;
}
.more{
	display: inline-block;
	padding: 8px 20px;
	border: 1px solid #878889;
	font-size: 14px;
	color: #555;
	border-radius: 2px;
}
.more i{
	margin-left: 5px;
	transition: ease 0.5s;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-o-transition: ease 0.5s;
}
.more:hover{
	border-color: #004e97;
	background-color: #004e97;
	color: #fff;
}
.more:hover i{
	margin-left: 10px;
}
/* about us */

.about .title h4,.about .title p{
	text-align: left;
}
.about .title::after{
	left: 0;
	margin-left: 0;
}
.about-cont{
	flex-direction: row;
}
.about-pic{
	width: 46%;
	margin-left: 50px;
	position: relative;
}
.about-pic img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-left{
	width: 52%;
	position: relative;
}
.abt-det{
	font-size: 16px;
	line-height: 2;
	margin-bottom: 20px;
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}
.abt-text .more{
	margin-top: 20px;
}
.hor-list{
	width: 110%;
	padding-top: 40px;
	clear: both;
}
.hor-list .swiper-slide{
	
}
.hor-list .honor-slide .thd{
	width: 100%;
	height: 12px;
	overflow: hidden;
	background: url(../images/tbg1.png) no-repeat 0 0;
	background-size: 100%;
}
.hor-list .honor-slide .bd{
	width: 100%;
	padding: 0 8px;
	height:186px;
	overflow: hidden;
	background: url(../images/bbg1.png) repeat-y 0 0;
	background-size: contain
}
.hor-list .honor-slide .ft{
	width: 100%;
	height: 12px;
	overflow: hidden;
	background: url(../images/fbg1.png) no-repeat 0 0;
	background-size: 100%;
}
.hor-list .swiper-slide img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.swiper-honor-next, .swiper-honor-prev{
	top: 84%;
}
.swiper-honor-prev, .swiper-rtl .swiper-honor-next{
	left: -60px;
}
.swiper-honor-next, .swiper-rtl .swiper-honor-prev{
	right: -120px;
}
.swiper-honor-next, .swiper-honor-prev {	
	width: 36px;
	height: 36px;
	background-color: #a8aaab;
	border-radius: 100%;
	transition: all .5s;
	outline: none;
}
.swiper-honor-next i, .swiper-honor-prev i{
	font-size: 28px;
	color: rgba(255,255,255,1);
}
.swiper-honor-prev i{
	transform: rotate(180deg);
}
.swiper-honor-next:after, .swiper-honor-prev:after{
	content: "";
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.title{
		text-align: center;
	}
	.title .en{
		font-size: 16px;
		margin-top: 0;
	}
	.title h4{
		font-size: 24px;
		margin-top: -16px;
	}
	.title .sub-tit{
		font-size: 14px;
		margin: 10px 0 15px;
	}
	.more{
		font-size: 12px;
		padding: 6px 15px;
	}
	.about-cont{
		margin-top: 20px;
		flex-direction: column;
	}
	.about-left{
		width: 100%;
	}
	.hor-list{
		width: 100%;
		padding-top: 15px;
		margin-bottom: 15px;
	}
	.about-pic{
		width: 100%;
		margin: 0 0 20px;
	}
	.abt-text{
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.abt-det{
		text-align: left;
		font-size: 14px;
		line-height: 1.6;
		text-align: justify;
		margin-bottom: 20px;
	}
	.abt-text .more{
		float: left!important;
	}
	.hor-list .swiper-slide{
		height: auto;
	}
	.hor-list .honor-slide .thd{
		background-size: cover
	}
	.hor-list .honor-slide .bd{
		height: 98px;
	}
	.swiper-honor-next, .swiper-honor-prev{
		display: none;
	}
}
/* advantage */
.advantage{
	background-color: #004e97;
	padding: 30px 0;
}
.adv-cont{
	flex-direction: row;
}
.adv-cont .adv-item{
	padding: 0 75px;
	position: relative;
	color: #fff;
	text-align: center;
}
.adv-cont div+div:after{
	content: '';
	width: 1px;
	height: 100%;
	background-color: #fff;
	left: 0;
	top: 0;
	position: absolute;
	opacity: .34;
}
.adv-cont .adv-item h4{
	font-size: 14px;
	letter-spacing: 1px;
}
.adv-cont .adv-item h4 i{
	font-size: 32px;
	font-weight: 700;
	padding-right: 5px
}
/* service */
.service{
	background: #fff;
	padding-bottom: 0;
}
.ser-info{
	flex-direction: row;
	align-items: stretch;
	background-color: #fafafa;
}
.ser-img{
	width: 60%;
}
.ser-text{
	width: 40%;
}
.ser-hd{
	background-color: #004e97;
	color: #fff;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
	height: 108px;
}
.ser-tit{
	width: 66%;
	height: 100%;
	border-right: 1px solid #467db1;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ser-tit i{
	font-size: 42px;
	margin-right: 15px;
}
.ser-hd .ser-more{
	width: 34%;
}
.ser-hd .ser-more i{
	font-size: 26px;
}
.ser-bd{
	padding: 45px;
	color: #666;
	line-height: 2;
	text-align: justify;
}
.ser-list{
	border: 1px solid #f0f0f0;
}
.ser-list .ser-li{
	text-align: center;
	padding: 40px 60px;	
	cursor: pointer;
	position: relative;
}
.ser-list div+div::after{
	content: "";
	width: 1px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #f0f0f0;
}
.ser-list .ser-li i{
	font-size: 42px;
	color: #555;
}
.ser-list .ser-li h4{
	font-weight: 600;
	font-size: 22px;
}
.ser-list .ser-li .ser-en{
	font-size: 12px;
	text-transform: uppercase;
	color: #999;
}
.ser-li:hover,.ser-li.swiper-slide-thumb-active{
	background-color: #004e97;
	color: #fff;
}
.ser-li:hover i,.ser-li.swiper-slide-thumb-active i{
	color: #fff;
}
.ser-li:hover .ser-en,.ser-li.swiper-slide-thumb-active .ser-en{
	color: #fff;
}

.ser-li.ser-more:hover{
	color: #555;
}
.ser-li.ser-more:hover i{
	color: #555;
}
.ser-li.ser-more:hover .ser-en{
	color: #999;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.adv-cont{
		flex-wrap: wrap
	}
	.about .title::after{
		margin-left: -33px;
		left: 50%;
	}
	.about .title h4, .about .title p{
		text-align: center
	}
	.adv-cont .adv-item{
		width: 50%;
		padding: 0 30px 30px
	}
	.adv-cont .adv-item:nth-child(1):before,.adv-cont .adv-item:nth-child(2):before{
		content: "";
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 0;
		background-color: #fff;
		opacity: .34
	}
	.adv-cont .adv-item:nth-child(3):after{
		display: none
	}
	.adv-cont .adv-item:nth-child(3),.adv-cont .adv-item:nth-child(4){
		padding-bottom: 0
	}
	.adv-cont .adv-item h4{
		font-size: 16px;
		margin-bottom: 5px
	}
	.adv-cont .adv-item h4 i{
		display: block;
		font-size: 24px;
		padding-right: 0
	}
	.adv-cont .adv-item p{
		font-size: 12px;
		line-height: 1.4
	}
	.ser-cont{
		margin-top: 20px;
	}
	.ser-tit{
		font-size: 20px
	}
	.ser-tit i{
		font-size: 26px
	}
	.ser-img{
		width: 100%;
	}
	.ser-text{
		width: 100%;
	}
	.ser-info{
		flex-direction: column
	}
	.ser-hd{
		width: 100%;
		height: 60px
	}
	.ser-bd{
		padding: 15px;
	}
	.ser-list .ser-li{
		padding: 15px 20px
	}
	.ser-list .ser-li i{
		font-size: 24px
	}
	.ser-list .ser-li h4{
		font-size: 16px
	}
	.ser-hd .ser-more{
		flex-direction: row;
		align-items: center;
		justify-content: center
	}
}

/* case */
.case{
	background-color: #fff;
	padding-bottom: 0;
}
.case .container{
	position: relative;
}
.case-list li{
	width: 25%;
	float: left;
	padding-right: 10px;
	padding-bottom: 10px;
}
.case-list li:nth-child(3){
	width: 50%;
	float: right;
}
.case-list li:nth-child(6){
	width: 50%;
}
.case-list li:nth-child(3) a{
	height: 680px;
}
.case-list li a{
	display: block;
	width: 100%;
	height: 335px;
	position: relative;
	overflow: hidden;
}
.case-list li a img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	transition: -webkit-transform 2s;
}
.cs-text{
	width: 100%;
	height: 100%;
	padding: 40px 30px;
	position: absolute;
	left: 0;
	bottom: -100%;
	color: #fff;
	background-color: rgba(0,78,151,.8);
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: ease 0.5s;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-o-transition: ease 0.5s;
}
.cs-text h3{
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 1px;
	text-align: center;
}
.cs-text h5{
	font-size: 14px;
	line-height: 2;
	color: #fff;
	letter-spacing: 2px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.cs-text i{
	font-size: 24px;
	color: #fff;
	transform: rotateY(180deg);
}
.case-list li a:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.case-list li a:hover .cs-text{
	bottom: 0;
	opacity: 1;
}
.case-list li.cs-more .cs-text{
	opacity: 1;
	bottom: 0;
	background-color: rgba(0,78,151,.45);
}
.case-list li.cs-more .more{
	padding: 5px 15px;
	line-height: 1;
	color: #fff;
	border-color: rgba(255,255,255,.6);
}
.case-list li.cs-more .more i{
	font-size: 16px;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.case-list li{
		width: 50%
	}
	.case-list li:nth-child(2n){
		padding-right: 0
	}
	.case-list li:nth-child(3){
		float: left;
	}
	.case-list li a,.case-list li:nth-child(3) a{
		height: auto
	}
	.case-list li a img{
		height: 132px
	}
	.cs-text{
		padding: 10px;
		position: relative;
		left: auto;
		bottom: auto;
		opacity: 1
	}
	.cs-text h3{
		font-size: 14px
	}
	.cs-text h5{
		font-size: 12px
	}
	.cs-text i{
		display: none;
	}
}
/* news */
.news{
	background-color: #fff;
}
.news-classify-tab .more{
	padding: 10px 0;
	color: #555;
	border: none;
	line-height: 2;
}
.news-classify-tab .more:hover{
	background-color: transparent;
	border: none;
}
.swiper-news{
	margin-bottom: 30px;
}
.news-thd{
	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;
	flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
}
.news-time{
	width: 14%;	
	margin-right: 10px;
}
.news-time p{
	color: #999;
	line-height: 1;
	font-size: 14px;
	-ms-flex-align:flex-start;
	-webkit-align-items:flex-start;
	align-items: flex-start
}
.news-time .date{
	font-size: 44px;
	line-height: 1;
}
.news-time i{
	display: inline-block;
	font-size: 40px;
	transform: rotate(90deg);
}
.news-info{
	width: 85%
}
.news-info h4{
	padding: 10px 0 20px;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #dcdcdc;
}
.news-info p{
	color: #999;
	font-size: 14px;
	height: 50px;
	line-height: 1.8;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-img{
	width: 100%;
	height: 294px;
	position: relative
}
.news-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.news-list-box li:hover .news-time .date,.news-list-box li:hover .news-time i,.news-list-box li:hover .news-info h4{
	color: #004e97;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.news{
		padding-bottom: 30px;
	}
	.news-classify-tab .more{
		padding: 15px 0;
		line-height: 1;
	}
	.news-thd{
		margin-bottom: 10px;
	}
	.news-time .date{
		font-size: 2.33rem
	}
	.news-time p{
		font-size: 1rem;
	}
	.news-time i{
		font-size: 2rem;
	}
	.news-info h4{
		font-size:1.33rem;
		padding: 5px 0 10px;
		margin-bottom: 8px
	}
	.news-info p{
		font-size: 1.2rem;
		line-height: 1.6
	}
}
/* partner */
.partner{
	background-color: #f2f2f2;
}
.partner-list {
	margin-left: -1%;
	margin-right: -1%;
  margin-top: 40px;
  overflow: hidden;
}
.partner-list .partner-item {
  margin: 0.5%;
  width: calc((100% - 6%) / 6);
  height: 100px;
  float: left;
	background-color: #fff;
}
.partner-list a {
  display: block;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.partner-list a img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  height: 65%;
  object-fit: contain;
  -o-object-fit: contain;
}
.partner-list a:hover img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.partner-list{
		margin-top: 20px;
	}
	.partner-list .partner-item{
		width: calc((100% - 4%) / 3);
		height: 62px;
	}
}
/* page */
.pbanner{
	position: relative;
}
.pbanner img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ad-text{
	background: url(../images/h-bg.png) no-repeat center 0;
	background-size: contain;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	position: absolute;
	left: 10%;
	width: 80%;
	height: auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ad-text h2{
	font-size: 30px;
	font-weight: 800;
}
.ad-text p{
	text-transform: uppercase;
	font-size: 16px;
	line-height: 2;
}
/*location*/
.location{
	color:#4f4f4f;
	box-shadow: 0 3px 7px rgba(0,0,0,.07);
	position: relative;
	z-index: 5;
}
.location .container:before,.location .container:after{
	display: none;
}
.location .local{
	line-height:70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cTitle{margin:28px auto;padding:20px 0;font-size:30px;font-weight:700;text-transform:uppercase}
.cTitle b{color:#000;font-weight: 700}
.cTitle span{color:#BFBFBF;text-transform:uppercase;margin:0 10px}
.subtopic li{
	display:inline-block
}
.subtopic li a{
	position: relative;
	line-height:70px;
	padding:0 20px;
	display:block;
	transition:all .6s ease 0s;
	font-size:15px;
	position: relative;
}
.subtopic li a::after{
	content: "";
	width: 0%;
	height: 3px;
	background-color: #004e97;
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all .35s;
}
.subtopic li a:hover,.subtopic li a.active{
	transition:all .6s ease 0s;
	color:#004e97;
	font-weight:700
}
.subtopic li a.active::after,.subtopic li a:hover::after{
	width: 36%;
	margin-left: -18%;
	opacity: 1;
}
.local i.iconfont{vertical-align:bottom;margin-right:5px}
.local,.local a{font-size:12px}
.page-content{
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}

.p-about-text{
	width: 50%;
	margin-right: 3%;
	font-size:16px;
	line-height:2;
	text-align:justify
}
.p-about-text p{
	line-height: 2;
	letter-spacing: 2px;
}
.p-about-img{
	width: 47%;
	position: relative;
}
.p-about-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-adv{
	margin: 35px 0;
	justify-content: space-between;
}
.page-adv .adv-item{
	width: 22.5%;
	background-color: #fff;
	border-radius: 6px;
	color: #666;
	padding: 20px 50px;
	box-shadow: 0 3px 6px rgba(220,220,220,.3);
}
.page-adv .adv-item h4{
	color: #333;
}
.page-adv .adv-item h4 i{
	color: #004e97;
/*	font-family: BarlowLight;*/
	font-weight: 800;
}
.page-culture{
	flex-direction: row;
	justify-content: space-between;
}
.p-cul-item{
	width: 32%;
	position: relative;
	overflow: hidden;
}
.p-cul-item img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cul-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	color: #fff;
	align-items: center;
	justify-content: center;
}
.cul-text .cul-tit{
	font-size: 20px;
	font-weight: 600;
}
.cul-text .cul-tit i{
	font-size: 36px;
	margin-right: 10px;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(-360deg,rgb(1, 80, 154) 27.92%, rgb(22, 116, 203) 47.4%, rgb(44, 151, 252) 93.44%);
}
.cul-text p{
	line-height: 2;
	font-size: 16px;
}
.p-cul-item:first-child .cul-text .cul-tit i{
	font-size: 30px;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
	.location .local{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.pbanner{
		height: 26vh;
	}
	.ad-text{
		padding: 10px 0;
		margin-top: 20px
	}
	.ad-text h2{
		font-size: 18px;
	}
	.ad-text p{
		font-size: 12px;
	}
	.p-about-text{
		width: 100%;
		float: none;
	}
	.p-about-img{
		width: 100%
	}
	.page-adv .adv-item{
		width: 48%;
		padding: 15px 20px;
		margin-bottom: 2%
	}
	.page-adv.adv-cont .adv-item:nth-child(3), .page-adv.adv-cont .adv-item:nth-child(4){
		padding-bottom: 15px
	}
	.page-culture{
		flex-wrap: wrap;
		justify-content: center
	}
	.p-cul-item{
		width: 48%;
		margin: 0 1% 2%
	}
	.cul-text .cul-tit i{
		font-size: 24px
	}
	.p-cul-item:first-child .cul-text .cul-tit i{
		font-size: 22px
	}
	.cul-text .cul-tit{
		font-size: 16px
	}
	.cul-text p{
		padding: 0 15px;
		font-size: 12px;
		line-height: 1.6
	}
	.cul-text p br{
		display: none
	}
	.org-cont img{
		max-width: 100%;
		height: auto!important
	}
}
/* page honor */
.page-honor{
	margin-right: -30px;
}
.p-hor-item{
	width: 25%;
	padding-right: 30px;
	margin-bottom: 30px;
}
.p-hor-item .hor-pic{
	width: 100%;
	height: 252px;
	overflow: hidden;
	position: relative;
}
.p-hor-item .hor-pic img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
	.subtopic{width:100%}
	#partnav{
		text-align: left!important
	}
	.local p{padding-left:10px;width:100%;line-height: 50px}
}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-cont{
		padding-bottom: 30px;
	}
	.location .local{
		flex-direction: column;
	}	
	#partnav li{margin:8px 3% 8px 0;padding:0;height:35px;border:0;border:0;background-color:#fff;line-height:35px;float:left}	
	#partnav li a{width:100%;line-height: 35px; display:block;overflow:hidden;padding:0;background-image:none;text-align:center;text-overflow:ellipsis;white-space:nowrap}
	.content_box .local{margin-top:1rem;padding:10px 18px;border:1px solid #23478E;border-right:0;border-left:0}
	#partnav li.active a{border:1px solid #23478E;background-color:#fff;color:#23478E}
	.content_box .pro{margin-top:20px}
	.cTitle{
		margin: 10px auto;
	}
	.cTitle span{display:block;font-size:2rem}
	.cTitle b{font-size:2.4rem}
	.content_box .content .txt img{
		width:100%!important;
		height:auto!important;
	}
	.content_box .pro_list li{
		margin-top: 0;
		padding: 0 5px;
	}
	.page-honor{
		margin-right: 0;
	}
	.p-hor-item{
		width: 50%;
		padding: 0 2%;
		margin-bottom: 2%;
	}
	.p-hor-item .hor-pic{
		height: 128px;
	}
}
/*page organization*/

/* page team */
.page-submenu{
	margin-bottom: 40px;
}
.page-submenu a{
	display: inline-block;
	margin-right: 40px;
	line-height: 2;
	padding-bottom: 8px;
	font-size: 14px;
	color: #333;
	position: relative;
}
.page-submenu a::after{
	content: "";
	width: 0%;
	height: 3px;
	background-color: #004e97;
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all .35s;
}
.page-submenu a:hover,.page-submenu a.active{
	transition:all .6s ease 0s;
	color:#004e97;
	font-weight:700
}
.page-submenu a.active::after,.page-submenu a:hover::after{
	width: 100%;
	left: 0;
	opacity: 1;
}
.team-list{
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.team-list .team-li{
	float: left;
	width: 25%;
	height: 258px;
	padding: 0 0.5%;
	margin-bottom: 1%;
}
.team-list .team-li:first-child{
	width: 50%;
	height: 530px;
}
.team-list .team-li a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.team-list .team-li img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-info{
	position: absolute;
	left: 0;
	bottom: -100%;
	width: 100%;
	padding: 10px 20px;
	color: #fff;
	background-color: rgba(0,0,0,.51);
	transition: ease 0.5s;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-o-transition: ease 0.5s;
}
.team-info h4{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 3px;
}
.team-info p{
	font-size: 12px;
	line-height: 1.6;
	color: rgba(255,255,255,.8);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.team-list .team-li a:hover .team-info{
	bottom: 0;
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-submenu{
		margin-bottom: 15px
	}
	.team-list .team-li:first-child{
		width: 100%;
		height: 238px
	}
	.team-list .team-li{
		width: 50%;
		height: 122px
	}
}
/* page service */
.service-content{
	padding-bottom: 0;
}
.page-ser-info{
	height: 338px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}
.page-ser-info img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-ser-info .ser-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	padding: 35px 80px;
	justify-content: center;
	background-color: rgba(0,78,151,.8);
}
.page-ser-info .ser-text .title{
	text-align: left;
	padding-bottom: 20px;
}
.page-ser-info .ser-text .title h4,.page-ser-info .ser-text .title .en{
	color: #fff;
}
.page-ser-info .ser-text .title::after{
	background-color: #fff;
	margin-left: 0;
	left: 0;
}
.page-ser-info .ser-text .info-bd{
	color: #fff;
	letter-spacing: 2px;
	line-height: 2;
}
.page-servicelist{
	margin-bottom: 60px;
}
.p-ser-list{
	flex-direction: row;
	cursor: pointer
}
.ser-div{
	width: 30.33%;
	margin: 0 1.5%;
	position: relative;
	float: left;
	cursor: pointer;
	overflow: hidden
}
.ser-div img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}
.ser-div:hover img{
	transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.shadow-box{
	background-color: rgba(0,0,0,.3);
	color: #fff;
	width: 100%;
	height: 100%;
	text-align: center;
	justify-content: center;
	padding: 50px;
	position: absolute;
	left: 0;
	top: 0;
}
.shadow-box h4{
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-size: 24px;
	text-shadow: 0 3px 5px rgba(0,0,0,.13);
	line-height: 2;
}
.shadow-box h4::after{
	content: "";
	width: 40px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	bottom: 0;
}
.shadow-box p{
	font-size: 14px;
	line-height: 2;
	text-transform: uppercase;
}

.page-sercase-list li:first-child{
	width: 50%;
}
.page-sercase-list.case-list li:nth-child(3){
	width: 25%;
	float: left;
}
.page-sercase-list.case-list li:nth-child(3) a{
	height: 335px;
}
.page-ser-info2{
	margin-bottom: 50px;
}
.page-ser-info2 .info-bd{
	padding: 0 220px;
	margin-bottom: 30px;
}
.page-ser-info2 img{
	width: 100%
}

.p-ser-list2{
	width: 1400px;
	margin: 0 auto;
	overflow: hidden;
	flex-direction: row;
	cursor: pointer;
	flex-wrap: wrap;
	justify-content: center;
}
.p-ser-li{
	width: 14%;
	margin-bottom: 3px;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(0,0,0,.13);
	position: relative;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}
.p-ser-li:not(:last-child){
	margin-right: 3px;
}
.img-box{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.img-box img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s all ease-in-out;
	-webkit-transition: 0.5s all ease-in-out;
	-moz-transition: 0.5s all ease-in-out;
	-o-transition: 0.5s all ease-in-out;
}
.img-box:hover img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
}
.p-ser-li .img-box{
	height: 425px;
}
.p-ser-bd{
	width: 100%;
	padding: 20px 25px 35px;
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.p-ser-bd h4{
	font-weight: 600;
}
.p-ser-bd h4 i{
	color: #004e97;
	font-size: 30px;
	margin-right: 8px;
	font-family: BarlowLight;
}
.p-ser-bd .cn{
	font-size: 16px;
	font-weight: 800
}
.p-ser-bd .en{
	white-space:normal;
	word-wrap:break-word;
	line-height: 1.4;
	opacity: 0;
	-webkit-transition: all .1s;
	-moz-transition: all .1s;
	-ms-transition: all .1s;
	-o-transition: all .1s;
	transition: all .1s;
}
.p-ser-li:hover{
	transform: translate3d(0, -20px, 0);
}
.p-ser-li:hover .p-ser-bd{
	background-color: #004e97;
	color: #fff;
	bottom: 0;
}
.p-ser-li:hover .p-ser-bd h4 i{
	color: #3371ac;
}
.p-ser-li:hover .p-ser-bd .en{
	opacity: 1;
}
.swiper-serlist2 .swiper-button-next, .swiper-serlist2 .swiper-button-prev{
	width: 40px;
    height: 75px;
    margin-top: -37.5px;
    color: #5a5a5a;
    background-color: rgba(255,255,255,.7);
}
.swiper-serlist2 .swiper-button-next:after, .swiper-serlist2 .swiper-button-prev:after{
	font-size: 24px
}
.swiper-serlist2 .swiper-button-prev,.swiper-serlist2 .swiper-rtl .swiper-button-next{
	left: 0
}
.swiper-serlist2 .swiper-button-next,.swiper-serlist2 .swiper-rtl .swiper-button-prev{
	right: 0
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {
	.p-ser-list2{
		width: 100%;
		flex-wrap: wrap
	}
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-ser-info{
		padding: 0;
		height: 426px
	}
	.page-ser-info .ser-text{
		width: 100%;
		height: 100%;
		right: 0;
		padding: 20px;
	}
	.page-ser-info .ser-text .title{
		text-align: center;
		margin-bottom: 15px
	}
	.page-ser-info .ser-text .title h4{
		margin-top: 0
	}
	.page-ser-info .ser-text .title::after{
		margin-left: -33px;
    	left: 50%;
	}
	.p-ser-list{
		flex-direction: column;
		text-align: center
	}
	.ser-div{
		display: block;
		width: 100%;
		float: none;
		margin: 0 0 15px 0
	}
	.shadow-box{
		padding: 10px 15px
	}
	.shadow-box h4{
		font-size: 16px
	}
	.shadow-box p{
		font-size: 12px;
		line-height: 1.4
	}
	.page-servicelist{
		margin-bottom: 20px
	}
	.page-ser-info2 .info-bd{
		padding: 0;
		margin-bottom: 15px
	}
	.page-ser-info2{
		margin-bottom: 30px
	}
	.p-ser-li{
		width: 33.33%;
		padding: 0 0.5%
	}
	.p-ser-li:not(:last-child){
		margin-right: 0
	}
	.p-ser-li .img-box{
		height: 288px
	}
	.p-ser-bd{
		padding: 10px 15px;
		bottom: 0
	}
	.p-ser-bd h4 i{
		display: block;
		margin-right: 0
	}
	.p-ser-bd p{
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
	.page-sercase-list.case-list li:nth-child(3){
		width: 50%;
	}
	.page-sercase-list.case-list li:nth-child(3) a{
		height: auto
	}
}
/* page caselist */
.page-case-list li{
	width: 25%;
	padding: 0 10px 20px;
}
.page-case-list li a{
	display: block;
	width: 100%;
	box-shadow: 4px 5px 14px rgb(210 210 210 / 35%)
}
.page-case-list li .img-box{
	height: 232px;
}
.page-case-list li .case-text{
	width: 100%;
	padding: 20px 22px 24px 22px;
	background-color: #fff;
}
.page-case-list li .case-text h4{
	font-size: 20px;
	color: #333;
	line-height: 24px;
	margin-bottom: 18px;
}
.page-case-list li .case-text p{
	font-size: 16px;
	color: #666;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
/* page casedetail */
.case-intro{
	background-color: #fff;
	margin-bottom: 30px;
	box-shadow: 4px 5px 14px rgb(210 210 210 / 35%)
}
.case-timg{
	width: 45%;
}
.case-timg img{
	width: 100%
}
.case-info{
	width: 55%;
	padding: 50px;
}
.case-info dl dd{ float:left; width:100%; border-bottom:1px solid #e5e5e5; padding:25px 0 15px 0;}
.case-info dl dd h5{ float:left; width:100%; font-size:16px;color: #666666;line-height:26px; }
.case-info dl dd h6{ float:left; width:100%; font-size:18px;color: #111111;line-height:28px; margin-top:10px;}
.page-text img{
	max-width: 100%;
	height: auto!important
}
.page-case-hot li{
	width: 100%;
	margin: 15px 0;
}
.page-case-hot li a{
	display: block;
	width: 100%;
	box-shadow: 4px 5px 14px rgb(210 210 210 / 35%);
}
.page-case-hot li .img-box{
	height: 202px;
}
.page-case-hot li .case-text{
	padding: 12px 20px;
	background-color: #fff;
}
.page-case-hot li h4{
	font-size: 16px;
	color: #111111;
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
	.page-case-list li .img-box{
		height: 182px
	}
	.page-case-list li .case-text{
		padding: 12px;
	}
	.page-case-list li .case-text p{
		font-size: 14px;
	}
}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-case-list li{
		width: 50%;
		padding: 0 5px 10px
	}
	.page-case-list li .img-box{
		height: 145px
	}
	.page-case-list li .case-text{
		padding: 10px 15px
	}
	.page-case-list li .case-text h4{
		font-size: 14px
	}
	.page-case-list li .case-text p{
		font-size: 12px
	}
	.case-timg{
		width: 100%;
		float: none;
	}
	.case-info{
		width: 100%;
		padding: 20px
	}
	.case-info dl dd{
		float: none;
	}
	.case-info dl dd h5,.case-info dl dd h6{
		float: none;
	}
	.case-info dl dd:last-child{
		border-bottom: none;
	}
}
/* page newslist */
.page-news-list{margin-top: 20px;}
.page-news-list li{width:25%;padding: 15px;}
.page-news-list li a{display: block;background: #fff;-moz-box-shadow:0px 0px 10px rgba(0,0,0,.08); -webkit-box-shadow:0px 0px 10px rgba(0,0,0,.08); box-shadow:0px 0px 10px rgba(0,0,0,.08);transition: all 1s;-webkit-transition: all 1s;-ms-transition: all 1s;-o-transition: all 1s;-moz-transition: all 1s;padding: 20px;}
.page-news-list li .page-news-img{
	width: 100%;
	height: 182px;
	position: relative;
	overflow: hidden;
}
.page-news-list li .page-news-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.page-news-list li h3{margin-top: 15px;font-size: 18px;color: #333;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;margin-bottom: 10px;}
.page-news-list li .page-news-summary{height: 46px; font-size: 13px;color: #999;line-height: 1.8;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.page-news-list li .page-news-time{margin-top: 15px;border-top: solid 1px #ddd;padding-top: 15px;color: #333;font-size: 14px;}
.page-news-list li:hover a{transform: translateY(-5px);-webkit-transform: translateY(-5px);-moz-transform: translateY(-5px);-ms-transform: translateY(-5px);-o-transform: translateY(-5px)}
.page-news-list li:hover h3{color: #da251c}
/*page news details*/
.page-title{font-size: 20px;color: #000;font-weight: bold}
.page-info{font-size: 12px;color: #999;padding: 10px 0;border-bottom: dashed 1px #ddd;margin-bottom: 30px;}
.page-info span{margin-left: 20px;}
.page-case-left{margin-bottom: 30px;width: 75%;background: #fff;padding: 30px;box-shadow: 4px 5px 14px rgb(210 210 210 / 35%)}
.page-case-12{width: 100%}
.page-case-right{width: 23%;margin-bottom: 30px;background: #fff;padding: 15px;box-shadow: 4px 5px 14px rgb(210 210 210 / 35%)}
.page-case-right h3{font-size: 24px;color: #333;font-weight: 800;}
.page-case-right h3:after{display: block;width: 30px;height: 1px;background: #d81e06;content: "";margin-top: 10px;margin-bottom: 15px;}
.page-news-hot li{padding: 8px 0}
.page-news-hot li a{display: block;overflow:hidden;line-height: 20px;text-overflow: ellipsis;white-space: nowrap;font-size: 14px;color: #000}
.page-news-hot li i{width: 20px;height: 20px;background: #ddd;display: block;float: left;margin-right: 10px;border-radius: 4px;line-height: 20px;text-align: center;font-style: normal;font-size: 12px;color: #666;font-family: SourceHanSerifCN}
.page-news-hot li:hover a{color: #d81e06}
.page-news-hot li:first-child i{background: #d80000;color: #fff}
.page-news-hot li:nth-child(2) i{background: #d85600;color: #fff}
.page-news-hot li:nth-child(3) i{background: #d88e00;color: #fff}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-news-list li{
		width: 100%;
		padding: 0 0 15px;
	}
	.page-case-left{
		width: 100%;
		padding: 15px;
	}
	.page-case-right{
		width: 100%;
	}
	.page-case-right h3{
		font-size: 18px
	}
	.page-case-hot{
		overflow: hidden;
	}
	.page-case-hot li{
		width: 50%;
		float: left;
		padding: 0 5px 0;
		margin-bottom: 0
	}
	.page-case-hot li .case-text{
		padding: 8px 10px
	}
	.page-case-hot li .img-box{
		height: 112px
	}
}
/*page down list*/
.page-down-list{}
.page-down-list li{width: 100%;margin-bottom: 40px;box-shadow: 4px 5px 21px rgba(210,210,210,0.35);}
.page-down-list li:hover{background-color: #013e77;}
.page-down-list li:last-child{margin-bottom: 0;}
.page-down-list li a{display: block;width: 100%;overflow: hidden;padding: 8px 0;}
.page-down-list li a .con{float: left;padding: 13px 66px 13px 24px;
	width: calc(100% - 230px);
	width: -ms-calc(100% - 230px);
	width: -o-calc(100% - 230px);
	width: -moz-calc(100% - 230px);
	width: -webkit-calc(100% - 230px);}
.page-down-list li a .con .picbox{width: 294px;float: left;height: 196px;overflow: hidden;}
.page-down-list li a .con .picbox .pic{width: 100%;height: 100%;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	transition: -webkit-transform 2s;}
.page-down-list li a:hover .con .picbox .pic{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);}
.page-down-list li a .con .wordsbox{float: left;height: 196px;position: relative;
	width: calc(100% - 294px);
	width: -ms-calc(100% - 294px);
	width: -o-calc(100% - 294px);
	width: -moz-calc(100% - 294px);
	width: -webkit-calc(100% - 294px);}
.page-down-list li a .con .wordsbox .wboxs{width: 100%;position: absolute;left: 0;top: 50%;padding-left: 68px;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);}
.page-down-list li a .con .wordsbox .wboxs .date{font-size: 18px;color: #666666;line-height: 24px;margin-bottom: 26px;}
.page-down-list li:hover a .con .wordsbox .wboxs .date{color: #fff;}
.page-down-list li a .con .wordsbox .wboxs .date span{font-size: 36px;}
.page-down-list li a .con .wordsbox .wboxs h2{font-size: 20px;color: #111111;line-height: 24px;margin-bottom: 22px;
	overflow:hidden;text-overflow:ellipsis;display:-webkit-box; -webkit-box-orient:vertical;-webkit-line-clamp:1;}
.page-down-list li:hover a .con .wordsbox .wboxs h2{color: #fff;}
.page-down-list li a .con .wordsbox .wboxs .info{font-size: 16px;color: #666666;line-height: 30px;
	overflow:hidden;text-overflow:ellipsis;display:-webkit-box; -webkit-box-orient:vertical;-webkit-line-clamp:2;}
.page-down-list li:hover a .con .wordsbox .wboxs .info{color: #fff;}
.page-down-list li a .icobox{float: left;width: 230px;position: relative;height: 222px;border-left: 1px solid #e4e4e4;}
.page-down-list li a:hover .icobox{border-left: 1px solid #4e78a0;}
.page-down-list li a .icobox .ico{width: 39px;height: 39px;position: absolute;left: 50%;top: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);}
.page-down-list li a .icobox .ico.ico1{display: none;}
.page-down-list li:hover a .icobox .ico.ico1{display: block;}
.page-down-list li:hover a .icobox .ico.ico2{display: none;}
/*page job*/
.join_con{
	position: relative;
	background-color: #fff;
	padding-bottom: 80px;
}
.join_nav{
	width: 100%;
	color: #000;
	font-size: 14px;
	text-align: left;
	position: relative;
	border-bottom: 1px solid #b2b2b2;
	padding: 25px 4%;
}
.join_nav li{
	display: inline-block;
	opacity: .6;
	padding: 0 20px;
	cursor: pointer;
}
.join_nav li.on,.join_nav li:hover{
	color: #e60012;
	opacity: 1;
}
.join_nav li:nth-child(1){
	padding-left: 0;
}
.join_nav .mark{
	position: absolute;
	right: 4%;
	top: 25px;
}

.join_list{
	width: 100%;
	padding: 0 30px;
	text-align: left;
	position: relative;
}
.join_list li{
	width: 100%;
	color: #000;
	font-size: 12px;
}
.join_list li .li_con{
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
	padding: 30px 4%;
	cursor: pointer;
}
.join_list li:nth-child(2n+2) .li_con{
	background-color: #fcfcfc;
}
.join_list li .li_con:after{
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid #000;
	border-bottom: none;
	position: absolute;
	right: 4%;
	top: 38px;
	/*transition: all .3s;*/
}
.join_list li:hover .li_con:after{
	border-top: 8px solid red;
}
.join_list li.on .li_con:after{
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid red;
	border-top: none;
}
.join_list li .li_con b{
	font-size: 16px;
}
.join_list li .li_con span{
	float: right;
	opacity: .6;
	margin-right: 60px;
}

.join_list li .li_detail{
	width: 100%;
	color: #000;
	font-size: 14px;
	border-bottom: 1px solid #e5e5e5;
	padding: 0 4% 80px;
	display: none;
}
.join_list li .li_detail p{
	line-height: 30px;
}
.join_list li .li_detail b{
	font-weight: bold;
}
.li_detail_jy{
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	padding: 35px 0;
}
.li_detail_jy p{
	display: inline-block;
	width: 36%;
}
.li_detail_jy p:nth-child(2),.li_detail_jy p:nth-child(5){
	width: 42%;
}
.li_detail_jy p:nth-child(3),.li_detail_jy p:nth-child(6){
	width: 20%;
}
.li_detail_jy p b{
	margin-right: 10px;
}

.li_detail_xx{
	width: 100%;
	padding: 30px 0;
}

.li_detail_btn{
	width: 250px;
	height: 60px;
	line-height: 60px;
	color: #f3f3f3;
	font-size: 18px;
	text-align: center;
	background-color: #222;
	margin-left: 0;
	cursor: pointer;
}
.li_detail_btn:hover{
	background-color: #333;
}

.join_pop{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.85);
	display: none;
}
.join_pop_box{
	width: 1200px;
	max-width: 90%;
	max-height: 90%;
	background-color: #fff;
	position: relative;
	top: 52%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 5% 0;
}
.join_pop_box_close{
	position: absolute;
	right: 0;
	bottom: 100%;
	z-index: 100;
	background-color: #e60014;
	padding: 5px;
	cursor: pointer;
}
.join_pop_box_close i{
	display: block;
	color: #fff;
	font-size: 40px;
	transform:rotate(45deg);
	cursor: pointer;
}
.join_pop_con{
	width: 600px;
	max-width: 100%;
	height: 100%;
}
.section_title{
	text-shadow: none;
}
.join_pop_put{
	width: 100%;
	position: relative;
}
.join_pop_put p{
	width: 100%;
	line-height: 40px;
	text-align: left;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}
.join_pop_put p span{
	display: block;
}
.join_pop_put p input{
	display: block;
	width: 100%;
	line-height: 40px;
	cursor: text;
}
.join_pop_put p select{
	display: inline-block;
	width: 45%;
	line-height: 40px;
	border: none;
	cursor: pointer;
}
.join_pop_put p select.bm{
	margin-right: 8%;
}

.join_pop_btn{
	width: 250px;
	height: 60px;
	line-height: 60px;
	color: #f3f3f3;
	font-size: 18px;
	text-align: center;
	background-color: #222;
	margin-left: 0;
	margin-top: 50px;
	cursor: pointer;
}
.join_pop_btn:hover{
	background-color: #333;
}
.join_pop_em{
	width: 100%;
	text-align: left;
	margin-top: 20px;
}
.join_pop_em span{
	color: #d93a3a;
}
@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.join_list{
		padding: 0
	}
	.li_detail_jy{
		padding: 15px 0
	}
	.join_list li .li_con{
		padding: 15px 4%
	}
	.li_detail_jy p{
		width: 50%
	}
	.li_detail_jy p:nth-child(3), .li_detail_jy p:nth-child(6){
		width: 100%
	}
}
/* page jianlicalculator*/
.page-calculator-cont{
	background-color: #fff;
	padding: 50px;
	box-shadow: 4px 5px 14px rgb(210 210 210 / 35%)
}
.item{
	padding: 6px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.item label.itemname {
	padding: 0 10px;
	text-align: right;
	font-size:14px;
	font-weight:800;
	min-width: 42%;
	flex: 1 1 42%;
}
.item div.c-r{
	min-width: 58%;
	flex: 1 1 58%;
}
.item div.c-r .txt_c{
	width: 42%
}
.item_a{
	margin-top: 20px;
	text-align: center;
}
.item_a .btn{
	margin: 0 15px;
	padding: 0 30px;
	height: 42px;
	border-radius: 55px!important;
	background-color: #004e97;
	color: #fff;
	font-size: 16px;
	border: none;
}
.slt {border:1px solid #ccc;
	font-size: 14px;
	height: 30px;
	line-height:24px;
	padding:2px 5px;
	width: 120px;
}
.txt {border:1px solid #ccc;
	font-size: 16px;
	font-weight: 800;
	height: 24px;
	line-height: 24px;
	margin-right: 5px;
	padding: 2px 5px;
}

/* page contact */
.contact{
	width: 100%;
	height: auto;
	display: flex;
	background-color: #fff;
}
.contact-block{
	cursor: pointer;
}
.contact-address,.contact-telephone,.contact-email{
	width: 33.33%;
	height: 262px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.contact-block i{
	font-size: 36px;
	color: #004e97;
}
.addressmap{
	width: 100%;
	height: 368px;
	background-color: #767676;
}
.contact-title{
	font-size: 18px;
	font-weight: 800;
	color: #004e97;
}
.contact-list{
	margin-top: 10px;
}
.contact-list p{
	max-width: 100%;
	font-size: 14px;
	line-height: 1.6;
}
.BMap_bubble_title{
	color: #004e97;
	font-size: 16px;
	font-weight: 800;
}
.BMapLabel{
	border: 0px solid rgb(0,78,151)!important;
	font-size: 16px!important
}
.contact-block.active{
	background-color: #004e97;
    color: #fff !important;
    animation: swim 0.5s;
}
.contact-block.active i,.contact-block.active .contact-title,.contact-block.active .contact-list a{
	color: #fff;
}
@keyframes swim{
	from{transform:scale(0.5, 1);}
	to{transform:scale(1);}
}
@-ms-keyframes swim{
	from{transform:scale(0.5, 1);}
	to{transform:scale(1);}
}
@-webkit-keyframes swim{
	from{transform:scale(0.5, 1);}
	to{transform:scale(1);}
}
@-moz-keyframes swim{
	from{transform:scale(0.5, 1);}
	to{transform:scale(1);}
}
/* pages 分页  */
.pages{
	margin-top: 40px;
	margin-bottom: 30px;
	text-align: center;
}
.pages b, .page-this{
	display: inline-block;
	background: #004e97;
	padding: 0 15px;
	font-size: 14px;
	color: #fff;
	line-height: 40px;
	font-weight: 400;
	margin: 0 5px;
}
.pages a, .page-end, .page-start{
	display: inline-block;
	background: #efefef;
	padding: 0 15px;
	font-size: 12px;
	color: #666;
	height: 40px;
	line-height: 40px;
}
.pages a:hover, .pages b{
	background: #004e97;
    color: #fff;
}
.pages a, .pages b, .page-end, .page-start, .page-this{line-height:40px}
/*page next*/
.page-next{margin-top: 20px;border-top: dashed 1px #ddd;padding-top: 15px;}
.page-next p{font-size: 14px;line-height: 30px;color: #999}
.page-next p a{color: #999}
.page-next p:hover,.page-next p:hover a{color: #004e97;font-weight: bold}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-content .contact{
		flex-wrap: wrap;
	}
	.contact-address, .contact-telephone, .contact-email{
		width: 100%;
		height: auto;
		padding: 20px 0;
		border-bottom: 1px solid rgba(0,0,0,.1)
	}
	.contact-block i{
		font-size: 24px
	}
}
/*footer*/

.bottom{
	padding: 60px 0 80px;
}
.f-left{
	width: 30%;
}
.flogo{
	margin-bottom: 40px;
}
.f-contact-div{
	flex-direction: row;
	align-items: center;
	margin: 15px 0;
	flex-wrap: wrap;
}
.f-contact-div i{
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	font-size: 18px;
	border: 1px solid rgba(255,255,255,.32);
	border-radius: 50%;
	margin-right: 12px;
}
.f-contact-div p{
	padding-right: 30px;
}
.f-contact-div strong{
	width: 100%;
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.f-menu{
	flex-direction: row;
}
.f-menu dl{
	margin-right: 68px;
}
.f-menu dl dt{
	font-size: 18px;
	line-height: 2;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.f-menu dl dt::after{
	content: "";
	width: 26px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.f-menu dl dd{
	font-size: 14px;
	line-height: 1.8;
}
.f-menu dl dd a{
	color: rgba(255,255,255,.68);
}
.f-weixin{
	width: 10%;
	text-align: center;
}
.f-weixin img{
	max-width: 100%
}
.footer-copy{background:#002d57;padding: 25px 0;position: relative;font-size: 14px;color: rgba(255,255,255,.56)}
.footer-copy i{position:absolute;left: 50%;top:-50px;width: 140px;height: 50px;background: url(../images/backg_4.png) no-repeat top center;content: "";margin-left: -70px;cursor: pointer}
.footer-copy a{color: rgba(255,255,255,.56)}
.backTop{
	position: fixed;
	z-index: 10;
	right: 50px;
	bottom: -100px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	cursor: pointer;
	line-height: 50px;
	font-size: 24px;
	color: #1f2329;
}
.backTop.active{
	bottom: 50px;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {
	.f-menu{width: 38.625%}
	.footer-nav-list{display: none}
	.footer-tel dd{width: 100% !important;float: none;}
	.footer-form{width: 41.72%}
	.footer-form h3{font-size: 1.8rem}
	.footer-form h3 span{font-size: 1.2rem}
}
@media screen and (max-width:992px) {
	.footer-top{padding: 30px 0 85px}
	.f-menu{width: 70%}
	.f-weixin{margin-left: auto;margin-right: auto;width: 30%;float: none}
	.footer-form{width: 100%;}
	.footer-form h3{font-size: 1.4rem}
}
@media screen and (max-width: 760px) {
	.pages{
		margin: 20px auto;
	}
	.footer{
		margin-top: 0;
	}
	.bottom{
		padding: 20px 0 40px;
	}
	.f-left{
		width: 100%;
		float: none;
		padding: 0 15px;
	}
	.flogo{
		margin-bottom: 30px;
		text-align: center;
	}
	.flogo img{
		width: 50%;
	}
	.f-contact-div{
		width: 100%;
		justify-content: flex-start;
	}
	.f-contact-div p{
		width: 86%;
		padding-right: 0;
		font-size: 12px;
	}
	.f-menu{width: 100%;padding: 0 20px 20px; margin-bottom: 20px;flex-direction: column;display: none;}
	.footer-tel{font-size: 1.2rem}
	.footer-form-list li{padding: 0}
	.f-weixin{width: 45%}
	.footer-copy i{
		top: -32px;
		height: 32px;
		background-size: contain;
	}
	.footer-copy{font-size: 12px;padding: 10px 0;line-height: 1.8}
	.backTop{
		width: 38px;
		height: 38px;
		line-height: 36px;
		font-size: 14pt;
		right: 30px;
	}
	.backTop.active{
		bottom: 30px;
	}
}
.box_d_mb{ margin:10px;}
.box_d_mb h4{ font-size:16px; font-family:"微软雅黑"; line-height:30px; color:#333333; padding-bottom:10px; }
.text{ border:1px solid #ccc; line-height:24px;padding:10px; color:#333; font-size:14px;}
.text p{ border-bottom:1px dashed #ccc; margin:10px 0; line-height:24px;}
.red{color:#f00; font-weight:800; margin-left:5px;}
.box_d_mc{ line-height:24px; margin:20px 10px; color:#333;}
.box_d_mc table{width: 100%}
.table_a{border-bottom:1px solid #ccc; border-right:1px solid #ccc; font-size:14px; text-align:center; font-weight:800; line-height:24px;}
.table_b{border-bottom:1px solid #ccc; border-right:1px solid #ccc; font-size:14px; text-align:center; font-weight:800; line-height:24px;}
.table_c{border-bottom:1px solid #ccc; border-right:1px solid #ccc; font-size:14px; text-align:center; font-weight:800; line-height:24px;}
.table_d{ border-bottom:1px solid #ccc; border-right:1px solid #ccc; font-size:14px; text-align:center; font-weight:800; line-height:24px;}
.table_e{ border-bottom:1px solid #ccc; border-right:1px solid #ccc;line-height:24px; padding:5px 10px;}
.table_f{ border-bottom:1px solid #ccc; border-right:1px solid #ccc;line-height:24px; text-align:center;padding-right: 10px; word-break: break-all}
.table_g{ border-bottom:1px solid #ccc; border-right:1px solid #ccc;line-height:24px; padding-left:10px; width:600px;}
.box_d_md{ width:500px; border:1px solid #ccc; margin:10px;left: 50%;top: 50%;transform: translate(-50%,-50%)}
.box_d_md h2,.box_d_mf h2,.box_d_mg h2{ background:#006699; height:32px; line-height:32px; font-size:16px; font-family:"微软雅黑"; margin:1px 1px 10px 1px; color:#fff; padding-left:10px; position:relative;}

.box_d_md h2 a,.box_d_mf h2 a,.box_d_mg h2 a{
	color: #FFFFFF;
	font-size: 12px;
	position: absolute;
	right: 5px;
	top:0;
	opacity: 1;
	line-height: 2;
	text-shadow: none;
}
.item span.sel a{
	color: #006699;
	cursor: pointer;
	text-decoration: underline;
}
.box_d_md dl,.box_d_mf dl{ padding:0 10px;}
.md_1{background:#009999;}
.md_2{background:#b2d1e0; cursor: pointer;}
.box_d_md dl dt,.box_d_mf dl dt{  line-height:30px; padding-left:10px; font-size:16px; font-weight:800; color:#333;margin-bottom:2px;}
.box_d_md dd,.box_d_mf dd{  line-height:24px;padding-left:10px; margin-bottom:2px; position:relative;}
.show_on{ background:#ccc;}
.show{ background:#e8e8e8; cursor: pointer;}
.num{ position:absolute; right:10px;}
.btndiv{ margin:10px 0 10px 175px;}
.btndiv_a{ margin:10px 0 10px 80px;}
.btndiv_b{ margin:10px 0 10px 240px;}
.btndiv_c{ margin:20px 0 10px 130px;}
.box_d_mf1,.box_d_md1,.box_d_mg1{
	left: 0px;
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
    background-color: rgb(51, 51, 51,.4);
}
.box_d_mf{ width:620px; border:1px solid #ccc;margin:10px;left: 50%;top: 50%;transform: translate(-50%,-50%)}
.box_d_mg{ width:300px; border:1px solid #ccc;margin:10px;left: 50%;top: 50%;transform: translate(-50%,-50%)}
.box_d_list{ padding:0 10px 10px;}
.box_d_list li{
	height: 24px;
	line-height: 24px;
}
.box_d_list label{vertical-align:center; height:24px;}
.fzli span.jbspan {
	background: none repeat scroll 0 0 #6699CC;
	float: left;
	margin-right: 5px;
	text-align: center;
	width: 65px;
}
.box_fz_list{ padding:0 10px;}
.box_fz_list h3{ background:#b2d1e0;  line-height:30px; padding-left:10px; font-size:16px; color:#333;margin-bottom:3px;}
.fz_show{ background:#ccc; clear: both; overflow:hidden;line-height: 24px; padding-left:20px; margin-bottom:2px;}
.fz_show h4{float: left;margin-right: 10px;}
.fz_show span.show_a{ height:22px; line-height:22px; margin-top: 1px;
	background:#abd9c5;
	float: left;
	margin-right: 5px;
	text-align: center;
	width: 65px;
}
.fz_show span.show_a:hover{ background:#cccc99;}


/*造价咨询服务计算器*/
.calAll{ width:600px; height:auto; margin:50px auto 0px auto; color:#000;}
.calAll li{ list-style:none;}
.calleft{ float:left; width:120px; text-align:right;line-height: 30px;}
.calright{ float:left;}
.calright select{
	height: 32px;
	line-height: 32px;
}
.calright label.r-jj-type{
	display: inline-block;
	padding-right: 30px;
}
.calright label.r-jj-type input[type="radio"]{
	margin-top: 0
}
.notice-box{
	line-height: 22px;
	padding: 30px;
}
#txtMoney,#txtSJmoney{ border:1px #CCC double; height:30px; line-height:30px; font-size:20px;}
#bntSubmit{ /*background-image:url('/Content/skins/images/background_start.png'); width:194px; height:41px;*/
	background-color:#2774CC; width:250px; height:40px; text-align:center; line-height:40px; color:#fff; font-size:16px; font-weight:600; border-radius: 5px; cursor:pointer; }

#current1,#options1 { border:1px solid #CECECE;}
#replace1 {cursor:default;overflow:visible;position:relative;z-index:999;}
#current1 { /*background:url("/Content/skins/images/bgbtn.png") right center no-repeat;margin-bottom:0;*/}
#current1,#replace1,#options1 li { width:250px;height:20px;height:20px;line-height: 20px;}
#options1 { border-top:0 none; display:none;list-style-type:none;margin-top:0;position:absolute;width:260px;}
#current1,#options1 li {padding:5px;}
#current1,#options1,#options1 li {background-color:#FFF;}

#current2,#options2 { border:1px solid #CECECE;}
#replace2 {cursor:default;overflow:visible;position:relative;z-index:998;}
#current2 { /*background:url("/Content/skins/images/bgbtn.png") right center no-repeat;margin-bottom:0;*/}
#current2,#replace2,#options2 li { width:250px;height:20px;height:20px;line-height: 20px;}
#options2 { border-top:0 none; display:none;list-style-type:none;margin-top:0;position:absolute;width:260px;}
#current2,#options2 li {padding:5px;}
#current2,#options2,#options2 li {background-color:#FFF;}
.calAll ul li{ padding:10px;overflow: hidden}

td{border:solid #CECECE 1px; border-width:0px 1px 1px 0px; padding-left:10px; height:30px; line-height:30px;}
th{border:solid #CECECE 1px; border-width:0px 1px 1px 0px; padding-left:10px; height:40px; line-height:40px;}
#tabMoney,#tabSJMoney{ border:solid #CECECE 1px; border-width:1px 0px 0px 1px;}
.spanSum{ font-size:14px; color:#2774CC; }

.jsq_div{position: relative;
	height: 40px;
	width: 100%;
	line-height: 40px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
	text-indent: 100px;
	color: #2774CC;
	background-color:#F2F7FD;
	top:10px;

}
.jsq
{
	width:61px; height:61px;
	position:absolute; left:20px; top:-10.5px;
}

@media screen and (max-width: 1660px) {}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width:950px) {}
@media screen and (max-width: 760px) {
	.page-calculator-cont{
		padding: 20px
	}
	.calAll{
		width: 100%;
		margin: 0 auto
	}
	.calleft{
		width: 25%
	}
	.calright{
		width: 75%
	}
	.calright label{
		margin-right: 15px
	}
	.calright select{
		width: 100%
	}
	#txtMoney, #txtSJmoney{
		width:75%
	}
	#bntSubmit{
		width:72%
	}
	.page-calculator-cont{
		padding: 20px
	}
	.item{
		padding: 6px 0
	}
	.item div.c-r input{
		width: 60%
	}
	.item_a .btn{
		margin: 0 5px;
		padding: 0 20px;
		height: 32px;
	}
	.box_d_md,.box_d_mf,.box_d_mg{
		width: 96%;
		margin: 0 auto
	}
	.notice-box{
		padding: 0
	}
	.box_d_mc{
		margin: 20px auto
	}
}
/*right-fixed*/
#right-fixed{position: fixed;right: 0;top: 50%;transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);z-index: 10;}
.right-fixed-item{width: 70px;height: 74px;color: #fff;background-color: #004e97;padding: 10px;margin-bottom: 10px; position: relative;box-shadow: 0 0 10px rgb(0 0 0 / 17%);border-radius: 10px 0 0 10px;}
.right-fixed-logo{border-radius: 6px 6px 0 0;overflow: hidden;background: #0145a4;height: 70px;}
.right-fixed-item:last-child{overflow: hidden;}
.right-fixed-block{height: 100%;cursor: pointer;position: relative;z-index: 3;justify-content: center;align-items: center}
.right-fixed-block i{font-size: 24px;color: #fff;line-height: 1.2}
.right-fixed-block span{color: #fff;font-size: 12px;}
.right-fixed-item:last-child .right-fixed-block{border:none}
.right-fixed-code{position: absolute;right: -130%;width: 130px;padding: 15px 15px 10px; top: 0;visibility: hidden;transition: all .3s;-webkit-transition: all .3s;-moz-transition: all .3s;-ms-transition: all .3s;z-index: 1;background: #fff;text-align: center}
.right-fixed-code img{
	max-width: 100%
}
.right-fixed-code p{line-height: 2;font-size: 14px;color: #333;}
.right-fixed-contact{position: absolute;right: -250px;background: #fff;border-radius: 6px; top: 0;width:200px;text-align: left;transition: all .3s;-webkit-transition: all .3s;-moz-transition: all .3s;-ms-transition: all .3s;z-index: 1;box-shadow: 0 0 5px rgba(0,0,0,.2)}
.right-fixed-contact-text{
	flex-direction: row;
	align-items: center;
	padding:10px 15px;
	border-radius: 6px 6px 0 0;
}
.right-fixed-contact-text dt i{font-size:24px;color: #004e97;margin-bottom: 0;padding-right: 10px}
.right-fixed-contact-text dd{font-size: 14px;color: #004e97;line-height:1.6;}
.right-fixed-contact-text dd strong{
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #999
}
.right-fixed-contact-text:last-child{border-radius: 0 0 6px 6px;}
.right-fixed-item:hover{}
.right-fixed-item:hover i,.right-fixed-item:hover span{color: #fff}
.right-fixed-item:hover .right-fixed-code{display: block;visibility: visible;right: 75px}
.right-fixed-item:hover .right-fixed-contact{right: 75px}
.right-fixed-item:hover .right-fixed-contact-text i{color: #004e97;}
.right-fixed-contact-text:hover{
	background-color: #004e97;
	color: #fff
}
.right-fixed-item:hover .right-fixed-contact-text:hover dt i,.right-fixed-item:hover .right-fixed-contact-text:hover dd,.right-fixed-item:hover .right-fixed-contact-text:hover dd strong{
	color: #fff
}
@media(max-width: 760px){
    #right-fixed{bottom: 10%;top: auto;display: none}
    .right-fixed-item{width: 30px;height: 30px;}
    .right-fixed-block i{font-size: 1.4rem}
    .right-fixed-block span{display: none}
    .right-fixed-code{width: 200px;}
    .right-fixed-contact{padding: 10px;width:210px;top: auto;bottom: 0}
    .right-fixed-contact dl dt{font-size: 1.2rem}
    .right-fixed-contact dl dd{line-height: 20px;}
    .right-fixed-item:hover .right-fixed-code{right: 30px}
    .right-fixed-item:hover .right-fixed-contact{right: 30px}
}
