@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */



/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Microsoft YaHei","Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */

.header{
	width:100%;
	height:100px;
	background:#fff;
	position: fixed;
	z-index: 999;
	top:0;
	}
.logo{
	overflow:hidden;
	padding:13px 0 0 1%;
}
.toptel{
	overflow:hidden;
	padding:40px;
	border-left:solid 1px #c7c7c7;
}
.topewm{
	text-align:center;
	padding:40px 0;
	position:relative;
	cursor:pointer;
	margin-right:42px;
	}
.topewm .ewmimg{
	opacity:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	position:absolute;
	background:#fff;
	padding:10px;
	border-radius:5px;
	top:100px;
	right:0;
}
.topewm .ewmimg img{
	width:100px;
}
.topewm:hover .ewmimg{
	opacity:1;
}
.small{
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3); 
}
	
/* nav
-------------------------------------------------------------- */
.menu, .menu ul {

  list-style: none;

  padding: 0;

}



.menu > li {

  position: relative;

  display: inline-block;

  outline: 0;

}



.submenu {

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 0;

  overflow: hidden;

  /* IE8 needs this */

  overflow: hidden\0/ !important;

  max-height: 0;

  /* A .submenu should be only revealed when hovering the .menu */

  pointer-events: none;

}



.menu > li:hover .submenu, .menu > li:focus .submenu {

  pointer-events: auto;

  z-index: 10;

  max-height: 2000px;

  -webkit-transition: none;

     -moz-transition: none;

}



/* Default

 ================================================================= */

.submenu li {

  opacity: 0;



  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;

     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;

      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;

       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;

          transition: opacity .4s,         transform .6s, max-height .6s;

}



.menu > li:hover .submenu li, .menu > li:focus .submenu li {

  opacity: 1;



  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;

}

/* Shield

 ================================================================= */

.shield {

  overflow: visible;



  -webkit-perspective: 400px;

     -moz-perspective: 400px;

      -ms-perspective: 400px;

       -o-perspective: 400px;

          perspective: 400px;

}



.shield li {

  -webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);



  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;



  -webkit-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

     -moz-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

      -ms-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

       -o-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

          transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

}
.nav{
	text-align:right;
	margin-right:120px;
}
.nav > ul{

	display:inline-block;
	margin:0;
	}

.nav span{

	display:block !important;

	width:100%;

	line-height:20px;
	font-size:13px;
	font-family:Arial;
	color:#b8b8b8;
	text-transform:uppercase;
}


.nav .menu > li{
	float:left;
	text-align:center;
	line-height:102px;
	position:relative;
	margin:0 30px;
	}


.nav .menu > li a{
	color:#606060;
	font-size:16px;
	display:block;
	line-height:100px;
	position:relative;
	}
.nav .menu > li a:after{
	content:"";
	position:absolute;
	width:0;
	height:2px;
	background:#203371;
	left:0;
	bottom:0;
	    -webkit-transition: all .3s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .3s cubic-bezier(.215, .61, .355, 1) 0s;
}

.nav .menu > li:hover a,.nav .menu > li.active a{
	color:#203371;
	font-weight:bold;
	}
.nav .menu > li:hover a:after,.nav .menu > li.active a:after{
	width:100%;
}



.nav .menu > li .submenu{
	width:160px;
	left:50%;
	margin-left:-80px;
	}

.nav .menu > li .submenu li{

	width:100%;

	line-height:30px;
	padding:5px 0;
	background:#203371;

	text-align:center;
	margin-top:1px;

}

.nav .menu > li .submenu li a{

	display:block;
	color:#fff;
	background:none;
	font-size:14px;
	padding:0;
	line-height:30px;
}

.nav .menu > li .submenu li:hover{
	background:#fff;
}
.nav .menu > li .submenu li:hover a{
	color:#203371;
}
.nav .menu > li .submenu li a:after,.nav .menu > li .submenu li:hover a:after{
	display:none;
}
.nav .menu > li.current:after{
	width:100%;
	}

.cont{
	width:1476px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1476px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	position:relative;
	margin-top:100px;
	}
.banner .banimg1{
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
}
.banner .banimg2{
	background:url(../images/banner2.jpg) no-repeat top center;
	background-size:cover;
}
.banner .banimg3{
	background:url(../images/banner3.jpg) no-repeat top center;
	background-size:cover;
}
.banner .bannernr{
	overflow:hidden;
	position:absolute;
}
.banner .ban1{
	left:11.5%;
	top:38%;
}
.banner .bannernr hr{
	width:206px;
	border:none;
	border-bottom:solid 2px #fff;
	float:right;
}
.banner .ban3 hr{
	border-bottom:solid 4px #fff;
}
.banner .bannernr h4{
	width:100%;
	overflow:hidden;
	font-size:62px;
	color:#fff;
	line-height:72px;
}
.banner .bannernr h5{
	width:100%;
	overflow:hidden;
	font-size:46px;
	color:#fff;
	line-height:56px;
	font-weight:normal;
	margin-bottom:67px;
}
.banner .bannernr h3{
	width:100%;
	overflow:hidden;
	font-size:75px;
	color:#fff;
	line-height:85px;
	margin-top:7px;
}
.banner .ban2 p{
	width:100%;
	overflow:hidden;
	text-align:right;
	font-size:18px;
	color:#fff;
	line-height:30px;
	padding-left:140px;
}
.banner .ban2{
	width:33.7%;
	right:11.4%;
	top:30%;
	text-align:right;
}
.banner .ban2-1{
	overflow:hidden;
	margin-top:96px;
	margin-bottom:30px;
}
.banner .ban2-1 img,.banner .ban3-1 img{
	max-width:100%;
	height:auto;
}
.banner .ban3{
	width:28%;
	right:11.6%;
	top:28%;
	text-align:right;
}
.banner .ban3-1{
	overflow:hidden;
	margin-top:53px;
	margin-bottom:11px;
}
.banner .ban3 p{
	width:100%;
	overflow:hidden;
	text-align:right;
	font-size:22px;
	color:#fff;
	line-height:30px;
}
.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
@media only screen and (min-width: 1921px) and (max-width: 2560px) {
	.banner .swiper-slide{
		height:1147px;
	}
}
@media(max-width:1920px) {
	.banner .swiper-slide{
		height:860px;
	}
}
@media(max-width:1680px) {
	.banner .swiper-slide{
		height:753px;
	}
}
@media(max-width:1600px) {
	.banner .swiper-slide{
		height:717px;
	}
}
@media(max-width:1440px) {
	.banner .swiper-slide{
		height:645px;
	}
}
@media(max-width:1360px) {
	.banner .swiper-slide{
		height:609px;
	}
}
@media(max-width:1280px) {
	.banner .swiper-slide{
		height:573px;
	}
}
@media(max-width:1152px) {
	.banner .swiper-slide{
		height:516px;
	}
}
@media(max-width:1024px) {
	.banner .swiper-slide{
		height:459px;
	}
}
@media(max-width:991px) {
	.banner .swiper-slide{
		height:444px;
	}
}
@media(max-width:768px) {
	.banner .swiper-slide{
		height:344px;
	}
}
@media(max-width:640px) {
	.banner .swiper-slide{
		height:287px;
	}
}
@media(max-width:540px) {
	.banner .swiper-slide{
		height:242px;
	}
}
@media(max-width:425px) {
	.banner .swiper-slide{
		height:190px;
	}
}
.banner .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.banner .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.banner .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.banner .swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.banner .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.banner .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.banner .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.banner .swiper-slide-invisible-blank {
	visibility: hidden
}

.banner .swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.banner .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.banner .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	left:11.6%;
	bottom:102px;
	z-index:99;
	}
.banner .swiper-button-next,.banner .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.banner .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.banner .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}

.banner .swiper-button-next.swiper-button-disabled,.banner .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination {
	width:100%;
	position: absolute;
	text-align: center;
	bottom:55px;
	left:0;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	z-index: 99;
}

.banner .swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom:0;
	right: 88px;
	height:40px;
	line-height: 40px;
	color:#b1b1b1;
	font-size:16px;
	top:40px;
}
.swiper-pagination-fraction span{
	color:#b1b1b1;
	line-height:40px;
	font-size:16px;
}
.swiper-pagination-fraction .swiper-pagination-current{
	color:#cf1423;
	font-size:26px;
	font-weight:bold;
}
.swiper-pagination-fraction span:before{
	content:"0";
	}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: 30px;
	height: 30px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	margin:0 10px;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet-active {
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top,.2s -webkit-transform;
	transition: .2s top,.2s -webkit-transform;
	-o-transition: .2s transform,.2s top;
	transition: .2s transform,.2s top;
	transition: .2s transform,.2s top,.2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left,.2s -webkit-transform;
	transition: .2s left,.2s -webkit-transform;
	-o-transition: .2s transform,.2s left;
	transition: .2s transform,.2s left;
	transition: .2s transform,.2s left,.2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right,.2s -webkit-transform;
	transition: .2s right,.2s -webkit-transform;
	-o-transition: .2s transform,.2s right;
	transition: .2s transform,.2s right;
	transition: .2s transform,.2s right,.2s -webkit-transform
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255,255,255,.25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	animation: swiper-preloader-spin 1s steps(12,end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}

/*shubiao*/
.shubiao-index{
	position:absolute;
	bottom:20px;
	left:50%;
	width:26px;
	margin-left:-13px;
	z-index:99;
}
.shubiao{
	position:relative;
}
.shubiao-ncon{
	margin-top:70px;
}
.shubiao_line {
    width: 1px;
    height: 60px;
    background: #fff;
    margin:10px auto;
}
.shubiao_pinyin{
	font-size:14px;
	text-align:center;
	color:#282828;
	margin-top:5px;
}
.shubiao{
	margin:0 auto;
}
.mouse {
  position: relative;
  width: 26px;
  height: 44px;
  border-radius: 30px;
  border: 3px solid #fff;
  margin:auto;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 4px;
  height: 9px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
.banner .bannermore{
	width:480px;
	height:180px;
	overflow:hidden;
	background:#203371 url(../images/morebg.jpg) no-repeat right bottom;
	position:absolute;
	right:0;
	bottom:0;
	z-index:99;
	}
.bannermorenr{
	font-size:20px;
	color:#fff;
	line-height:30px;
	padding-left:60px;
	position:relative;
	margin-left:80px;
	margin-top:70px;
	}
.bannermorenr a{
	font-size:20px;
	color:#fff;
}
.bannermorenr:before{
	content:"";
	width:30px;
	height:2px;
	background:#fff;
	position:absolute;
	left:0;
	top:14px;
	}
.banly{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-bottom:20px;
}
/*banner*/

/* tit

-------------------------------------------------------------- */
.tit{
	width:100%;
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#9b9b9b;
	line-height:40px;
	font-weight:normal;
	}
.tit h3 a{
	font-size:30px;
	color:#9b9b9b;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:90px;
	color:#434343;
	font-family:Arial;
	line-height:90px;
	font-weight:bold;
	}
.more{
	overflow:hidden;
	}
.more a{
	width:166px;
	height:48px;
	display:block;
	font-size:15px;
	color:#fff;
	line-height:48px;
	text-align:center;
	background:#004b94;
	}
	
/* hyyy
-------------------------------------------------------------- */
.hyyy{
	width:100%;
	overflow:hidden;
	padding-top:116px;
	padding-bottom:124px;
	position:relative;
	}
.hyyy .hyyyimg{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.hyyy .hyyyimg img{
	max-width:100%;
	height:auto;
	}
.hyyy .hyyyimg:hover img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.hyyy .hyyytit{
	width:33%;
	height:396px;
	background: -webkit-linear-gradient(top, #203472 , #5a6ea8); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(bottom, #203472 , #5a6ea8); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(bottom, #203472 , #5a6ea8); /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom, #203472 , #5a6ea8); /* 标准的语法 */
	position:absolute;
	right:14%;
	z-index:99;
	bottom:0;
	padding:56px 0 0 66px;
	}
.hyyy .hyyytit h3{
	width:100%;
	overflow:hidden;
	font-size:20px;
	line-height:30px;
	color:#fff;
	font-weight:normal;
	}
.hyyy .hyyytit .hyyyen{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:65px;
	line-height:65px;
	color:#fff;
	margin-top:12px;
	font-weight:bold;
	}
.hyyy .hyyytext{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#fff;
	line-height:45px;
	margin-top:50px;
	}

.pro .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.pro .swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.pro .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.pro .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.pro .swiper-container-android .swiper-slide,.pro .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.pro .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.pro .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.pro .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.pro .swiper-slide .img img{
	width:100%;
	height:auto;
}
.pro .swiper-slide-invisible-blank {
	visibility: hidden
}

.pro .swiper-container-autoheight,.pro .swiper-container-autoheight .swiper-slide {
	height: auto
}

.pro .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.pro .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
@keyframes pulsate {
	 0% {
	 transform: scale(0.1, 0.1);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
	 50% {
	 opacity: 1;
	 filter: none;
	}
	 100% {
	 transform: scale(1.2, 1.2);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
}





.hyyy .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.hyyy .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.hyyy .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.hyyy .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.hyyy .swiper-container-android .swiper-slide,.hyyy .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.hyyy .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.hyyy .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.hyyy .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0 20px;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.hyyytit .swiper-slide {
	padding:0;
}
.hyyy .swiper-slide .img img{
	width:100%;
	height:auto;
}
.hyyy .swiper-slide-invisible-blank {
	visibility: hidden
}

.hyyy .swiper-container-autoheight,.hyyy .swiper-container-autoheight .swiper-slide {
	height: auto
}

.hyyy .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.hyyy .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

.hyyy .swiper-button{
	overflow:hidden;
	position:absolute;
	left:-80px;
	bottom:0;
	z-index: 100;
}
.hyyy .swiper-button-next,.hyyy .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.hyyy .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.hyyy .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	padding-left:11.6%;
	margin-top:156px;
	margin-bottom:166px;
	position:relative;
}
.pro .tit{
	position:absolute;
	left:0;
	top:0;
	z-index:99;
	}
.pro .prolf{
	width:40%;
	overflow:hidden;
	padding-right:10%;
	padding-top:220px;
	}
.pro .prolf h4{
	width:100%;
	overflow:hidden;
	font-size:61px;
	color:#203371;
	line-height:70px;
	}
.pro .prolf .model{
	width:100%;
	overflow:hidden;
	font-size:55px;
	color:#434343;
	line-height:55px;
	font-family:Arial;
	font-weight:bold;
	margin-top:23px;
	}
.pro .prolf .modelsm{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#434343;
	}
.pro .prolf .proms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#9b9b9b;
	margin-top:47px;
	line-height:25px;
	}
.pro .prolf .promore{
	width:100%;
	overflow:hidden;
	margin-top:124px;
	}
.pro .prolf .promore a{
	display:block;
	width:148px;
	line-height:30px;
	font-size:16px;
	padding-bottom:7px;
	color:#203371;
	background:url(../images/icon3.png) no-repeat left bottom;
	}
.pro .prolf .promore a:hover{
	opacity:0.8;
}
.pro .prort{
	width:60%;
	overflow:hidden;
	}
.pro .prort:hover img{
	-webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.pro .swiper-button{
	overflow:hidden;
	position:absolute;
	z-index:9;
	left:50%;
	margin-left: -138px;
	bottom:0;
}
.pro .swiper-button-next,.pro .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.pro .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.pro .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}
.swiper-button-next,.swiper-button-prev{
	outline:none;
	}
.swiper-button-next:hover,.swiper-button-prev:hover{
	opacity:0.8;
}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	padding-top:108px;
	padding-bottom:50px;
	padding-bottom:138px;
	position:relative;
	}
.about:before{
	content:"";
	width:88%;
	height:960px;
	background:url(../images/aboutbg.jpg) no-repeat top left;
	background-size:cover;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
}
.about .tit p,.about .tit h3,.about .tit h3 a{
	text-align:center;
	color:#fff;
	}
.aboutnr .aboutms{
	padding:0 90px;
	margin-top:54px;
	}
.aboutnr .aboutms,.aboutnr .aboutms h4{
	width:100%;
	overflow:hidden;
	}
.aboutnr .aboutms h4{
	font-size:25px;
	color:#fff;
	line-height:35px;
	text-align:center;
	font-weight:normal;
	margin-bottom:17px;
	}
.aboutnr .aboutms p{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:rgba(255,255,255,0.7);
	line-height:30px;
	}

.aboutlist{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg2.jpg) no-repeat top right;
	padding-bottom:252px;
	}
.aboutlist .aboutlistnr{
	padding:0;
	}
.aboutimg{
	width:100%;
	overflow:hidden;
	}
.aboutimg img{
	max-width:100%;
	height:auto;
	}
.ab_fl{
	width:100%;
	overflow:hidden;
	margin-top:78px;
	padding:0 8%;
}
.ab_fl dl{
	overflow:hidden;
	padding:16px 0 12px 76px;
	border-right:solid 1px rgba(255,255,255,0.4);
}
.ab_fl dl:last-child{
	border-right:none;
	}
.ab_fl dl dt{
	width:100%;
	overflow:hidden;
	color:#fff;
	font-size:16px;
	font-weight:normal;
}
.ab_fl dl dt:first-child{
	margin-bottom:14px;
	}
.ab_fl dl dd{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.ab_fl dl dt .counter{
	font-size:65px;
	color:#fff;
	font-weight:bold;
	font-family:Arial;
	line-height:65px;
	}
.aboutmore{
	width:100%;
	overflow:hidden;
	margin-top:96px;
	}
.aboutmore a{
	display:block;
	width:350px;
	height:70px;
	text-align:center;
	line-height:70px;
	font-size:16px;
	color:#203371;
	margin:auto;
	background:#fff url(../images/icon7.png) no-repeat 92% center;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.aboutmore a:hover{
	background-position:94%;
}

/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:url(../images/newsbg.jpg) no-repeat right top;
	padding-bottom:240px;
	margin-top:193px;
	}
.newslist{
	overflow:hidden;
	padding:0 11% 0 0;
	margin-top:76px;
	}
.newslist dl{
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e2e2e2;
	padding-bottom:45px;
	margin-top:40px;
	}
.newslist dl:last-child{
	border-bottom:none;
	}
.newslist dl dt{
	width:18%;
	overflow:hidden;
	float:left;
	}
.newslist dl dt .day{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:74px;
	color:#26262a;
	line-height:66px;
	}
.newslist dl dt .month{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:20px;
	color:#26262a;
	line-height:20px;
	}
.newslist dl dd{
	width:82%;
	overflow:hidden;
	float:left;
	}
.newslist dl dd h4{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#26262a;
	line-height:30px;
	margin-bottom:6px;
	white-space: nowrap;
    text-overflow: ellipsis;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newslist dl dd p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#7f7f81;
	}
.newslist dl:hover dd h4{
	color:#203371;
}

/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	background:#f8f8f8;
	padding-top:132px;
	padding-bottom:158px;
	}
.casenr{
	position:relative;
	}
.caselist{
	width:100%;
	overflow:hidden;
	margin-top:68px;
	}
.caselist .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.caselist .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.caselist .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.caselist .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.caselist .swiper-container-android .swiper-slide,.pro .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.caselist .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.caselist .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.caselist .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.caselist .swiper-slide .img img{
	width:100%;
	height:auto;
}
.caselist .swiper-slide-invisible-blank {
	visibility: hidden
}

.caselist .swiper-container-autoheight,.pro .swiper-container-autoheight .swiper-slide {
	height: auto
}

.caselist .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.caselist .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.caselist .swiper-slide .caserq{
	width:100%;
	height:474px;
	overflow:hidden;
	position:relative;
	}
.caselist .swiper-slide .caseimg{
	width:100%;
	overflow:hidden;
	position:relative;
	height:286px;
	}
.caselist .swiper-slide .caseimg img{
	display:block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.caselist .swiper-slide:hover .caseimg img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.caselist .swiper-slide .casetxt{
	width:90%;
	height:265px;
	overflow:hidden;
	padding:30px 45px 10px 45px;
	background:#fff;
	position:absolute;
	left:5%;
	top:44%;
	}
.casetxt h4,.casetxt .casems,.casetxt .casems p{
	width:100%;
	overflow:hidden;
	}
.casetxt .casems{
	margin-top:20px;
	}
.casetxt h4{
	font-size:20px;
	color:#434343;
	line-height:30px;
	}
.casetxt .casems,.casetxt .casems p{
	line-height:30px;
	font-size:16px;
	color:#8b8b8b;
	}
.caselist .swiper-button{
	overflow:hidden;
	position:absolute;
	z-index:9;
	right:0;
	top:30px;
}
.caselist .swiper-button-next,.caselist .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.caselist .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.caselist .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}

/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	text-align:right;
	color:#fff;
	font-size:16px;
	line-height:30px;
	margin-top:8px;
	}
.link a{
	font-size:16px;
	margin-right:10px;
	color:#fff;
	}
	
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#323232;
	padding-top:92px;
}
.footerrt{
	width:33%;
	overflow:hidden;
	}
.footerrt .bteltit{
	width:100%;
	overflow:hidden;
	text-align:right;
	font-size:17px;
	color:#fff;
	line-height:30px;
	}
.footerrt .btel{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:45px;
	line-height:45px;
	color:#fff;
	font-weight:bold;
	text-align:right;
	margin-top:9px;
	margin-bottom:10px;
}
.footerrt .btel img{
	max-width:100%;
	height:auto;
}
.footerrt .btel a{
	font-size:45px;
	color:#fff;
}
.footerrt p{
	width:100%;
	overflow:hidden;
	color:#fff;
	text-align:right;
}
.footerrt .bicon{
	width:100%;
	overflow:hidden;
	margin-top:39px;
	text-align:right;
}
.footerrt .bicon a{
	margin-left:18px;
	}
.footerrt .bicon img{
	max-width:100%;
	height:auto;
}
.footernr .bnav{
	width:67%;
	overflow:hidden;
	}
.footernr .bnav ul{
	width:100%;
	overflow:hidden;
	}
.footernr .bnav ul li{
	width:20%;
	overflow:hidden;
	float:left;
	}
.footernr .bnav ul li h4{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#fff;
	line-height:30px;
	margin:0 0 32px 0;
	text-align:left;
	font-weight:normal;
	}
.footernr .bnav ul li h4 a{
	font-size:17px;
	color:#fff;
	}
.footernr .bnav ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.4);
	line-height:30px;
	margin-top:13px;
	text-align:left;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.footernr .bnav ul li p a{
	font-size:16px;
	color:rgba(255,255,255,0.4);
	}
.footernr .bnav ul li p a:hover{
	color:#fff;
	}
.bot{
	width:100%;
	overflow:hidden;
	padding:36px 0;
	border-top:solid 1px rgba(255,255,255,0.15);
	margin-top:90px;
	}
.bot .botlf,.bot .botrt{
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.5);
	padding:0;
	line-height:30px;
	}
.bot .botrt{
	text-align:right;
	}
.bot a{
	color:rgba(255,255,255,0.5);
	font-size:16px;
	}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:350px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	margin-top:100px;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:467px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:306px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:263px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:248px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:233px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:210px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:187px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:181px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:140px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:117px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #d3d3d3;
}
.positionnr{
	line-height:30px;
	font-size:16px;
	color:#000;
	padding:24px 0;
	}
.position a:nth-child(1) {
	color: #203371;
	transition: all 0.8s ease;
}

.position a {
	transition: all 0.8s ease;
	font-size:16px;
	color:#000;
}

.position a:hover {
	color: #203371;
}
/* nmenu
-------------------------------------------------------------- */
.nmenu{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.nmenu ul{
	overflow:hidden;
	display:inline-block;
	margin:0;
	}
.nmenu ul li{
	overflow:hidden;
	padding:0 18px;
	float:left;
	line-height:46px;
	border:solid 1px #c1c1c1;
	}
.nmenu ul li a{
	font-size:16px;
	color:#000;
	display:block;
	}
.nmenu ul li:hover{
	background:#003f8c;
	border:solid 1px #003f8c;
	}
.nmenu ul li:hover a{
	color:#fff;
	}
/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#203371;
	line-height:45px;
	}
.ntit p{
	width:100%;
	overflow:hidden;
	font-size: 22px;
    color: #9e9e9e;
	line-height:32px;
	font-weight:bold;
	}
/* nabout
-------------------------------------------------------------- */
.nabout{
	margin-top:60px;
	margin-bottom:60px;
	}
.nabout .naboutnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#585858;
	line-height:30px;
	margin-top:50px;
	}
.nabout .naboutnr p{
	overflow:hidden;
	font-size:16px;
	color:#585858;
	line-height:30px;
	}
.nabout .naboutnr img{
	max-width:100%;
	height:auto;
	}
.nqywh{
	margin-top:50px;
	}
.nqywh,.nqywhnr{
	width:100%;
	overflow:hidden;
	}
.nqywhnr{
	margin-top:40px;
	}
.nqywhnr dl{
	padding:0 15px;
	margin:10px 0;
	}
.nqywhnr dl dt,.nqywhnr dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.nqywhnr dl dt img{
	max-width:100%;
	height:auto;
}
.nqywhnr dl dd{
	font-size:17px;
	line-height:30px;
	text-align:center;
	color:#333;
	margin-top:5px;
	}

/* npro
-------------------------------------------------------------- */
.npro{
	width:100%;
	overflow:hidden;
	background:#f1f1f1;
	padding-top:60px;
	padding-bottom:60px;
	}
.npronr ul{
	width:100%;
	overflow:hidden;
	}
.npronr ul li{
	width:31.3333333%;
	overflow:hidden;
	position:relative;
	float:left;
	margin:20px 1%;
	background:#fff;
	}
.npronr ul li .npropic{
	width:100%;
	overflow:hidden;
	height:306px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	}
.npronr ul li .npropic img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.npronr ul li:hover .npropic img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.npronr ul li .nprobg{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(32,51,113,0.8) url(../images/icon11.png) no-repeat center;
	opacity:0;
	z-index:99;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
	}
.npronr ul li:hover .nprobg{
	opacity:1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.npronr ul li .nprotit{
	width:82%;
	margin:0 9%;
	color: #333;
    font-size: 16px;
	line-height:30px;
	padding:20px 0;
	text-align:center;
	border-top:solid 1px #a9a9a9;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.npro_info{
	margin-top:60px;
	margin-bottom:60px;
}
.npronr .nprojs h1{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#1f1f1f;
	line-height:36px;
	font-weight:normal;
	border-bottom:solid 1px #eaeaea;
	padding-bottom:24px;
}
.npronr .nproimg{
	overflow:hidden;
	text-align:center;
	padding:0;
	}
.npronr .nproimg img{
	max-width:100%;
	height:auto;
	}
.npronr .nprojs{
	overflow:hidden;
	padding:0 0 0 40px;
}
.nlxfs{
	width:100%;
	overflow:hidden;
	margin-top:96px;
	}
.nlxfs a{
	display:block;
	width:160px;
	height:50px;
	text-align:center;
	font-size:16px;
	color:#203371;
	line-height:50px;
	border:solid 2px #203371;
	border-radius:25px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nlxfs a:hover{
	background:#203371;
	color:#fff;
}
.npronr .nprojs .nprossfl{
	width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #343434;
    margin-top: 20px;
	}
.nprofbtit{
	width: 100%;
    overflow: hidden;
	font-size:18px;
	line-height:40px;
	background:#f0f0f0;
	margin-top:40px;
	padding:0 20px;
	color:#000;
}
.nprofbnr{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:30px;
	}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
/* nsb
-------------------------------------------------------------- */
.nsb{
	margin-top:60px;
	margin-bottom:60px;
	}
.nsb .nsbnr{
	width:100%;
	overflow:hidden;
	}
.nsb .ntit h3,.nsb .ntit p{
	text-align:left;
	}
.nsb .ntit p{
	font-size:28px;
	color:#e1e1e1;
	}
.nsblist{
	width:100%;
	overflow:hidden;
	margin-bottom:45px;
	}
.nsblist dl{
	width:23.5%;
	overflow:hidden;
	float:left;
	margin:15px 2% 15px 0;
}
.nsblist dl:nth-child(4n){
	margin-right:0;
	}
.nsblist dl dt,.nsblist dl dd{
	width:100%;
	overflow:hidden;
	}
.nsblist dl dt{
	width:100%;
	overflow:hidden;
	height:316px;
	position:relative;
	}
.nsblist dl dd{
	font-size:18px;
	color:#343434;
	line-height:30px;
	padding-bottom:10px;
	margin-top:23px;
	text-align:center;
}
.nsblist dl dt .nsbbg{
	position:absolute;
	width:100%;
	height:100%;
	background:rgba(0,78,162,0.8) url(../images/icon4.png) no-repeat center;
	top:0;
	left:0;
	padding-top:62px;
	opacity:0;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	}
.nsblist dl:hover dt .nsbbg{
	opacity:1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.nsblist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nsblist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nsblist dl:hover dd{
	color:#3467ac;
	}
/* nxmgl
-------------------------------------------------------------- */
.nxmgl{
	margin-top:60px;
	margin-bottom:60px;
	}
.nxmgl .ntit h3{
	text-align:left;
	}
.nxmgl .ntit p{
	text-align:left;
	font-size:20px;
	color:#e4e4e4;
	}
.nxmglnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	margin-top:65px;
	}
.nxmglnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nxmglnr img{
	max-width:100%;
	height:auto;
	}
/* njbzxfa
-------------------------------------------------------------- */
.njbzxfa{
	margin-top:60px;
	margin-bottom:60px;
	}
.njbzxfanr{
	width:100%;
	overflow:hidden;
	margin-top:94px;
	}
.njbzxfanr dl{
	width:100%;
	overflow:hidden;
	background:#fff;
	margin:0;
	}
.njbzxfanr dl dt,.njbzxfanr dl dd{
	padding:0;
	}
.njbzxfa .ntit h3{
	text-align:left;
	}
.njbzxfa .ntit p{
	text-align:left;
	color:#e0e0e0;
	font-size:28px;
	}
.njbzxfanr dl dt{
	padding:80px 52px 0 52px;
	}
.njbzxfanr dl dt h4{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:22px;
	color:#000;
	line-height:30px;
	font-weight:bold;
	}
.njbzxfanr dl dt p{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:18px;
	color:#343434;
	line-height:30px;
	font-weight:normal;
	margin-top:28px;
	}
.njssl{
	margin-top:60px;
	margin-bottom:60px;
	}
.njssl .njsslnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
.njssl .njsslnr h4{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:26px;
	color:#343434;
	line-height:35px;
	}
.njssl .njsslnr p{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
.kycg{
	width:100%;
	overflow:hidden;
	background:url(../images/honorbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:76px;
	padding-bottom:70px;
	}
.kycg h3{
	width:100%;
	overflow:hidden;
	font-size:36px;
	color:#fff;
	text-align:center;
	line-height:45px;
	}
.kycg dl,.kycg dl dt,.kycg dl dd{
	width:100%;
	overflow:hidden;
	}
.kycg dl dt{
	text-align:center;
	}
.kycg dl dd{
	text-align:center;
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-top:20px;
	}
.kycgnr{
	margin-top:60px;
	}
.kycgnr .owl-carousel .owl-item{
	padding:0 15px;
	}
.kycg dl dt img{
	max-width:100%;
	height:auto;
	}
/* nhonor
-------------------------------------------------------------- */
.nhonor{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhonor .ntit h3{
	text-align:left;
	}
.nhonor .ntit p{
	text-align:left;
	font-size:28px;
	color:#e1e1e1;
	}
.nhonornr{
	width:100%;
	overflow:hidden;
	background:url(../images/honor.jpg) no-repeat right top;
	margin-top:128px;
	padding-bottom:66px;
	}
.nhonornr .nhonorlist{
	padding:0;
	margin-top:70px;
	}
.nhonornr .nhonorlist dl{
	background:#fff;
	padding-top:36px;
	padding-bottom:45px;
	margin:0;
	}
.nhonornr .nhonorlist dl dt,.nhonornr .nhonorlist dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.nhonorlist dl dd{
	font-size:22px;
	color:#343434;
	line-height:30px;
	margin-top:28px;
	font-weight:bold;
	}
/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:60px;
	margin-bottom:60px;
	}
.nnews ul,.nnews ul li{
	width:100%;
	overflow:hidden;
	}
.nnews ul li{
	margin-bottom:50px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li .nnewsimg{
	width:32%;
	overflow:hidden;
	position:relative;
	height:270px;
	}
.nnews ul li .nnewsimg img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nnews ul li:hover .nnewsimg img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nnews ul li .nnewsnr{
	width:68%;
	overflow:hidden;
	padding-left:40px;
	}
.nnews ul li .nnewsnr h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color: #333;
	line-height:30px;
	margin-top:20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li .nnewsnr p{
	width:100%;
	overflow:hidden;
	height:50px;
	line-height:25px;
	margin-top:15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li .nnewsnr .tools{
	width:100%;
	overflow:hidden;
	margin-top: 85px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li .nnewsnr .tools span{
	display: block;
    float: left;
    border: 1px solid #ccc;
    padding: 9px 20px;
    font-size: 13px;
    line-height: 20px;
    color: #666;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li .nnewsnr .tools i{
	display: block;
    float: right;
    margin-top: 25px;
    font-family: Arial,sans-serif;
    font-size: 12px;
    line-height: 15px;
    color: #999;
	font-style: normal;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	}
.nnews ul li:hover{
	background:#203371;
	}
.nnews ul li:hover .nnewsnr h4,.nnews ul li:hover .nnewsnr p,.nnews ul li:hover .nnewsnr .tools span,.nnews ul li:hover .nnewsnr .tools i{
	color:#fff;
	}
.nnews h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
	line-height:34px;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
	}
.nnews .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    color: #666;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.nnews .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 16px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* nxsfw
-------------------------------------------------------------- */
.nxsfw{
	width:100%;
	overflow:hidden;
	background:url(../images/xsfwbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:230px;
	padding-bottom:1175px;
	}
.nxsfwnr{
	padding:0;
	}
.nxsfwnr h3{
	width:100%;
	overflow:hidden;
	font-size:80px;
	color:#232323;
	line-height:90px;
	}
.nxsfwjs{
	width:100%;
	overflow:hidden;
	font-size:15px;
	line-height:26px;
	color:#232323;
	margin-top:48px;
	}
/* ncase
-------------------------------------------------------------- */
.ncaserq{
	width:100%;
	overflow:hidden;
	background:#f8f8f8;
}
.ncase{
	margin-top:60px;
	margin-bottom:60px;
	}
.ncasenr{
	width:100%;
	overflow:hidden;
}
.ncase dl{
	margin:20px 0;
	height:500px;
	position:relative;
	padding:0 10px;
	}
.ncase dl dd{
	width:88%;
	height:280px;
	overflow:hidden;
	padding:30px 30px 10px 30px;
	background:#fff;
	position:absolute;
	left:6%;
	top:44%;
}
.ncase dl dt{
	width:100%;
	overflow:hidden;
	position:relative;
	height:274px;
}
.ncase dl dd h4{
	width:100%;
	overflow:hidden;
	font-size: 20px;
    color: #434343;
    line-height: 30px;
	margin-bottom:10px;
}
.ncase dl dd p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:16px;
	color:#8b8b8b;
	}
.ncase dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.ncase dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.poptrox-popup{
	overflow:visible !important;
}
	
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	margin-top:60px;
	margin-bottom:60px;
}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	border-top:solid 1px #d1d1d1;
	font-size:18px;
	color:#333;
	line-height:35px;
	padding:40px 0 0 0;
	margin-top:28px;
	}
.ncontact .ncontactnr .ncontactlf{
	width:80%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.newm{
	width:20%;
	overflow:hidden;
	}
.newm dl{
	overflow:hidden;
	float:right;
	}
.newm dl dt,.newm dl dd{
	overflow:hidden;
	text-align:center;
	}
.newm dl dt img{
	max-width:100%;
	height:auto;
	border: solid 1px #ccc;
}
.newm dl dd{
	font-size:16px;
	color:#333;
	line-height:32px;
	}
.ncontact .ncontactnr p,.ncontact .ncontactnr .ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.ncontact .ncontactnr p a{
	font-size:16px;
	color:#333;
	}
/* nmessage
-------------------------------------------------------------- */
.nmessage{
	margin-top:80px;
	margin-bottom:80px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:360px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.nmessagenr dl:last-child{
	width:100%;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon12.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon13.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr dl:nth-child(3) dd textarea{
	background:#fff url(../images/icon14.png) no-repeat 24px 21.5px;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #203371;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:6px;
	color:#343434;
	}
.btn1 .intxt{
	width:60px;
	height:32px;
	overflow:hidden;
	font-size:15px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}

/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;width:auto;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp2{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color:#013ea4;
}

.a_txt,.rg{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.topewm,.toptel{display:none}
.headernr{
	width:98%;
}
.rg{display:block;padding-top:19px;margin-right:10px;float:right;}
.rg a img{vertical-align:top}
.a_txt{display:block;position:fixed;top:0px;left:0px;width:0px;height:0px;overflow:hidden;z-index:10000}
.a_txt .div1{position:absolute;width:100%;height:100%;background:#0b0d19;filter:alpha(opacity=0);opacity:0;left:0px;top:0px;z-index:1}
.a_txt .div2{position:absolute;width:20%;left:0px;top:5%;z-index:100;text-align:center;filter:alpha(opacity=0);opacity:0}
.a_txt .div3{position:absolute;width:80%;right:0px;top:0px;background:#0b0d19;height:100%;z-index:100;right:-80%}
.a_txt .div3 ul{padding-left:5%;padding-right:5%}
.a_txt .div3 ul li{border-bottom:1px solid #232530}
.a_txt .div3 ul li a{display:block;height:45px;color:#fff;line-height:45px;padding-left:5%;font-size:16px}
.a_txt .div3 ul li .a_js2{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.a_txt .div3 ul li .a_js2_on{background:url(../images/reduce.jpg) 95% center no-repeat;-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.a_txt .div3 ul li .a_txt2{display:none}
.a_txt .div3 ul li .a_txt2 a{height:40px;line-height:40px;font-size:14px}
}


@media only screen and (min-width: 1440px) and (max-width: 1600px) {
	.npronr ul li .npropic{
		height:263px;
	}
	.ncase dl dt{
		height:233px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.caselist .swiper-slide .caseimg{
		height:245px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.caselist .swiper-slide .caseimg{
		height:231px;
	}
	.npronr ul li .npropic{
		height:249px;
	}
	.ncase dl dt{
		height:220px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.caselist .swiper-slide .caseimg{
		height:218px;
	}
	.npronr ul li .npropic{
		height:234px;
	}
	.ncase dl dt{
		height:206px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.caselist .swiper-slide .caseimg{
		height:196px;
	}
	.nnews ul li .nnewsimg{
		height:238px;
	}
	.npronr ul li .npropic{
		height:211px;
	}
	.ncase dl dt{
		height:184px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.caselist .swiper-slide .caseimg{
		height:174px;
	}
	.nnews ul li .nnewsimg{
		height:212px;
	}
	.npronr ul li .npropic{
		height:187px;
	}
	.ncase dl dt{
		height:162px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.caselist .swiper-slide .caseimg{
		height:169px;
	}
	.nnews ul li .nnewsimg{
		height:205px;
	}
	.npronr ul li .npropic{
		height:181px;
	}
	.ncase dl dt{
		height:157px;
	}
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	.caselist .swiper-slide .caseimg{
		height:220px;
	}
	.nnews ul li .nnewsimg{
		height:178px;
	}
	.npronr ul li .npropic{
		height:241px;
	}
	.ncase dl dt{
		height:208px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 859px) {
	.caselist .swiper-slide .caseimg{
		height:196px;
	}
	.nnews ul li .nnewsimg{
		height:159px;
	}
	.npronr ul li .npropic{
		height:215px;
	}
	.ncase dl dt{
		height:184px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.caselist .swiper-slide .caseimg{
		height:327px;
	}
	.nnews ul li .nnewsimg{
		height:132px;
	}
	.npronr ul li .npropic{
		height:179px;
	}
	.ncase dl dt{
		height:315px;
	}
}
@media only screen and (min-width:540px) and (max-width: 639px) {
	.caselist .swiper-slide .caseimg{
		height:276px;
	}
	.nnews ul li .nnewsimg{
		height:111px;
	}
	.npronr ul li .npropic{
		height:151px;
	}
	.ncase dl dt{
		height:264px;
	}
}
@media only screen and (min-width:425px) and (max-width: 539px) {
	.caselist .swiper-slide .caseimg{
		height:217px;
	}
	.nnews ul li .nnewsimg{
		height:240px;
	}
	.npronr ul li .npropic{
		height:119px;
	}
	.ncase dl dt{
		height:205px;
	}
}
@media only screen and (min-width:375px) and (max-width: 424px) {
	.caselist .swiper-slide .caseimg{
		height:191px;
	}
	.nnews ul li .nnewsimg{
		height:220px;
	}
	.npronr ul li .npropic{
		height:219px;
	}
	.ncase dl dt{
		height:191px;
	}
}
@media only screen and (min-width:320px) and (max-width: 374px) {
	.caselist .swiper-slide .caseimg{
		height:163px;
	}
	.nnews ul li .nnewsimg{
		height:180px;
	}
	.npronr ul li .npropic{
		height:187px;
	}
	.ncase dl dt{
		height:163px;
	}
}
@media only screen and (min-width:0px) and (max-width: 319px) {
	.caselist .swiper-slide .caseimg{
		height:160px;
	}
	.nnews ul li .nnewsimg{
		height:190px;
	}
	.npronr ul li .npropic{
		height:182px;
	}
	.ncase dl dt{
		height:160px;
	}
}

@media(max-width:1768px) {
	.pro .swiper-button{
		margin-left: -133px;
	}
}
@media(max-width:1680px) {
	.banner .bannernr h4{
		font-size:58px;
		line-height:68px;
	}
	.banner .bannernr h3{
		font-size:71px;
		line-height:81px;
	}
	.banner .bannernr h5{
		font-size: 42px;
		line-height:52px;
	}
	.banner .ban2 p{
		padding-left:80px;
	}
	.banner .ban3 p{
		font-size:20px;
	}
	.pro .swiper-button{
		margin-left: -131px;
	}
	.news{
		background-size:860px;
	}
	.news {
		padding-bottom: 200px;
		margin-top: 170px;
	}
	.newslist dl dt .day{
		font-size:70px;
	}
	.ab_fl dl dt .counter{
		font-size:60px;
		line-height:60px;
	}
	.tit p{
		font-size:80px;
		line-height:80px;
	}
	.pro .prolf h4{
		font-size: 50px;
		line-height:60px;
	}
	.pro .prolf .model{
		font-size:45px;
		line-height:45px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:60px;
		line-height:60px;
	}
	.hyyy .hyyytext{
		font-size:32px;
		line-height:42px;
		margin-top:40px;
	}
	.hyyy .hyyytit{
		height:366px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
		}
	.nav{
		margin-right:100px;
	}
	.banner .bannernr h4{
		font-size:54px;
		line-height:64px;
	}
	.banner .bannernr h3{
		font-size:67px;
		line-height:77px;
	}
	.banner .bannernr h5{
		font-size: 38px;
		line-height:48px;
	}
	.banner .ban2 p {
		padding-left: 50px;
	}
	.pro .swiper-button{
		margin-left: -130px;
	}
	.tit p{
		font-size:74px;
		line-height:74px;
	}
	.newslist dl dt .day{
		font-size:66px;
	}
	.pro .prolf h4{
		font-size: 46px;
		line-height:56px;
	}
	.pro .prolf .model{
		font-size:42px;
		line-height:42px;
	}
	.pro .prolf{
		padding-right:8%;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:56px;
		line-height:56px;
	}
	.hyyy .hyyytext{
		font-size:30px;
		line-height:40px;
		margin-top:30px;
	}
	.hyyy .hyyytit {
		height: 346px;
	}
	.ntit h3{
		font-size:32px;
		line-height:42px;
	}
	.npronr .nprojs h1{
		font-size:22px;
		line-height:32px;
	}
	.ncase dl dd{
		top:38%;
	}
	.ncase dl{
		height:450px;
	}
}
@media(max-width:1599px) {
	.caselist .swiper-slide .casetxt{
		top:36%;
	}
	.caselist .swiper-slide .caserq{
		height:440px;
	}
	.case{
		padding-top:100px;
		padding-bottom:100px;
	}
}
@media(max-width:1440px) {
	.nav{
		margin-right:80px;
	}
	.banner .ban3 p{
		font-size:16px;
	}
	.banner .bannernr h4{
		font-size:50px;
		line-height:60px;
	}
	.banner .bannernr h3{
		font-size:63px;
		line-height:73px;
	}
	.banner .bannernr h5{
		font-size: 34px;
		line-height:44px;
	}
	.banner .ban2 p {
		padding-left: 30px;
	}
	.banner .ban2-1{
		margin-top:80px;
	}
	.newslist dl dt .day{
		font-size:62px;
	}
	.newslist dl dt .month{
		font-size:18px;
	}
	.pro .swiper-button{
		margin-left: -124px;
	}
	.pro .prolf h4{
		font-size: 42px;
		line-height:52px;
	}
	.pro .prolf .model{
		font-size:38px;
		line-height:38px;
	}
	.hyyy .hyyytext{
		font-size:28px;
		line-height:38px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:52px;
		line-height:52px;
	}
	.tit p{
		font-size:70px;
		line-height:70px;
	}
	.caselist .swiper-slide .casetxt{
		padding:43px 30px 10px 30px;
	}
	.ab_fl dl dt .counter{
		font-size:56px;
		line-height:56px;
	}
	
}
@media(max-width:1439px) {
	.ncase dl dd {
		top: 35%;
	}
}
@media(max-width:1360px) {
	.nav {
		margin-right: 60px;
	}
	.banner .ban2 p {
		padding-left: 0;
	}
	.banner .bannernr h5{
		margin-bottom:40px;
	}
	.banner .bannernr h4{
		font-size:46px;
		line-height:56px;
	}
	.banner .bannernr h3{
		font-size:59px;
		line-height:69px;
	}
	.banner .ban2-1 {
		margin-top: 50px;
	}
	.banner .bannernr h5 {
		margin-bottom: 30px;
	}
	.ab_fl dl dt .counter{
		font-size:52px;
		line-height:52px;
	}
	.tit p{
		font-size:66px;
		line-height:66px;
	}
	.pro .swiper-button{
		margin-left: -120px;
	}
	.pro .prolf h4{
		font-size: 38px;
		line-height:48px;
	}
	.pro .prolf .model{
		font-size:34px;
		line-height:34px;
	}
	.newslist dl dt .day{
		font-size:58px;
	}
	.newslist dl dt .month{
		font-size:16px;
	}
	.hyyy .hyyytext{
		font-size:26px;
		line-height:36px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:48px;
		line-height:48px;
	}
	.hyyy .hyyytit {
		height: 310px;
	}
	.hyyy .hyyytit{
		padding: 40px 0 0 50px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 40px;
	}
	.nav .menu > li{
		margin: 0 25px;
	}
	.banner .bannernr h4 {
		font-size: 42px;
		line-height: 52px;
	}
	.banner .bannernr h3 {
		font-size: 55px;
		line-height: 65px;
	}
	.banner .bannermore {
		width: 460px;
		height: 160px;
	}
	.banner .bannernr h5 {
		font-size: 32px;
		line-height: 42px;
	}
	.banner .ban2 p{
		font-size:16px;
	}
	.pro .prolf {
		padding-right: 6%;
	}
	.tit p{
		font-size:62px;
		line-height:62px;
	}
	.caselist .swiper-slide .casetxt {
		padding: 30px 20px 10px 20px;
	}
	.casetxt h4{
		font-size:18px;
	}
	.ab_fl dl {
		padding: 16px 0 12px 60px;
	}
	.ab_fl dl dt .counter{
		font-size:48px;
		line-height:48px;
	}
	.caselist .swiper-slide .casetxt {
		top: 32%;
	}
	.hyyy .hyyytext{
		font-size:24px;
		line-height:34px;
		margin-top:20px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:44px;
		line-height:44px;
	}
	.hyyy .hyyytit {
		height: 280px;
	}
	.hyyy .swiper-button{
		left: -60px;
	}
	.hyyy .swiper-button-next, .hyyy .swiper-button-prev{
		width: 60px;
		height: 60px;
	}
	.newslist dl dt .day {
		font-size: 54px;
	}
	.ncase dl dd{
		font-size:16px;
	}
	.ncase dl dd h4{
		font-size:18px;
	}
	.footerrt .btel,.footerrt .btel a{
		font-size: 42px;
		line-height: 42px;
	}
}
@media(max-width:1279px) {
	.ncase dl dd{
		top: 30%;
	}
}
@media(max-width:1152px) {
	.nav {
		margin-right: 20px;
	}
	.nav .menu > li{
		margin: 0 20px;
	}
	.banner .bannermore {
		width: 440px;
		height: 140px;
	}
	.banner .bannernr h5 {
		font-size: 28px;
		line-height: 38px;
	}
	.banner .bannernr h4 {
		font-size: 40px;
		line-height: 50px;
	}
	.banner .ban1{
		top:30%;
	}
	.banner .ban2{
		top:25%;
	}
	.banner .ban3{
		top:23%;
	}
	.ab_fl dl {
		padding: 16px 0 12px 50px;
	}
	.tit p{
		font-size:58px;
		line-height:58px;
	}
	.pro .swiper-button{
		margin-left: -115px;
	}
	.pro .prolf h4{
		font-size: 34px;
		line-height:44px;
	}
	.pro .prolf .model{
		font-size:30px;
		line-height:30px;
	}
	.caselist .swiper-slide .casetxt {
		top: 30%;
	}
	.hyyy .hyyytext{
		font-size:22px;
		line-height:32px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:40px;
		line-height:40px;
	}
	.hyyy .hyyytit {
		height: 260px;
	}
	.nnews ul li .nnewsnr h4{
		margin-top:10px;
	}
	.nnews ul li .nnewsnr .tools{
		margin-top:60px;
	}
	.ncase dl {
		height: 420px;
	}
	.footerrt .btel,.footerrt .btel a{
		font-size: 40px;
		line-height: 40px;
	}
}
@media(max-width:1151px) {
	.ncase dl dd {
		top: 26%;
	}
}
@media(max-width:1024px) {
	.toptel {
		padding: 40px 30px;
	}
	.topewm{
		margin-right:30px;
	}
	.ab_fl dl {
		padding: 16px 0 12px 40px;
	}
	.tit p{
		font-size:54px;
		line-height:54px;
	}
	.pro .swiper-button{
		margin-left: -110px;
	}
	.caselist .swiper-slide .casetxt {
		top: 28%;
	}
	.ncase dl {
		height: 380px;
	}
	.footerrt .btel,.footerrt .btel a{
		font-size: 36px;
		line-height: 36px;
	}
}
@media(max-width:1023px) {
	.header{
		height:70px;
	}
	.logo{
		padding:10px 0 10px 1%;
	}
	.logo img{
		height:50px;
	}
	.banner,.banner_n{
		margin-top:70px;
	}
	.banner .bannermore{
		display:none;
	}
	.banner .swiper-button-next, .banner .swiper-button-prev{
		width:40px;
		height:50px;
	}
	.banner .swiper-button{
		left: 6%;
		bottom: 20px;
	}
	.banner .bannernr h3 {
		font-size: 50px;
		line-height: 60px;
	}
	.banner .ban2 {
		width: 38%;
	}
	.banner .ban3 {
		width: 32%;
	}
}
@media(max-width:991px) {
	.banner .ban2-1{
		margin-top:30px;
		margin-bottom:20px;
	}
	.banner .bannernr h5 {
		margin-bottom: 20px;
	}
	.banner .ban3-1{
		margin-top:30px;
	}
	.banner .bannernr h4 {
		font-size: 38px;
		line-height: 48px;
	}
	.banner .bannernr h3 {
		font-size: 44px;
		line-height: 54px;
	}
	.banner .ban1{
		left:6%;
	}
	.banner .ban3 {
		width: 36%;
		right:6%;
	}
	.banner .ban2 {
		width: 42%;
		right:6%;
	}
	.ncase dl dd {
		top: 38%;
		height:240px;
	}
	.casetxt h4{
		font-size:16px;
	}
	.pro .prolf h4{
		font-size: 30px;
		line-height: 40px;
	}
	.pro .prolf .model{
		font-size:26px;
		line-height:26px;
	}
	.npronr ul li .nprotit{
		padding:10px 0;
	}
	.caselist .swiper-slide .caserq {
		height: 400px;
	}
	.caselist .swiper-slide .casetxt {
		top: 32%;
	}
	.ntit h3{
		font-size:30px;
		line-height:40px;
	}
	.ncontact .ncontactnr .ncontactlf,.newm{
		width:100%;
	}
	.pro{
		padding-left:6%;
		padding-right:6%;
		margin-top:60px;
		margin-bottom:80px;
	}
	.pro .prolf{
		padding-top:110px;
		padding-right:0;
	}
	.pro .prolf,.pro .prort{
		width:100%;
	}
	.pro .prolf .proms,.pro .prolf .promore{
		margin-top:20px;
	}
	.pro .prort{
		margin-top:30px;
	}
	.pro .prort img{
		max-width:100%;
		height:auto;
	}
	.pro .swiper-button{
		left:6%;
		margin-left:0;
	}
	.hyyy .hyyytext{
		font-size:20px;
		line-height:30px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:36px;
		line-height:36px;
	}
	.hyyy .hyyytit {
		padding: 30px 0 0 50px;
	}
	.hyyy .hyyytit {
		height: 240px;
	}
	.tit h3,.tit h3 a{
		font-size:26px;
		line-height:36px;
	}
	.case {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.casetxt .casems, .casetxt .casems p {
		line-height: 25px;
		font-size: 15px;
	}
	.newslist{
		padding:0;
		margin-top:40px;
	}
	.newslist dl{
		padding-bottom: 20px;
		margin-top: 20px;
	}
	.news{
		background:none;
		padding-bottom: 80px;
		margin-top: 80px;
	}
	.newm dl{
		float:left;
		margin-top:20px;
	}
	.ab_fl dl:nth-child(2){
		border-right:none;
	}
	.ab_fl dl:last-child{
		clear:both;
		border-right: solid 1px rgba(255,255,255,0.4);
		margin-top:20px;
	}
	.about:before{
		width:100%;
	}
	.aboutnr .aboutms{
		padding:0;
	}
	.ab_fl{
		margin-top:40px;
	}
	.about{
		padding-top:60px;
		padding-bottom:60px;
	}
	.aboutmore{
		margin-top:60px;
	}
	.aboutmore a {
		width: 240px;
	}
	.hyyy{
		padding-top:60px;
	}
	.ab_fl dl {
		padding: 16px 0 12px 20px;
	}
	.tit p {
		font-size: 50px;
		line-height: 50px;
	}
	.nnews h1{
		font-size:20px;
		line-height:30px;
	}
	.nqywhnr dl {
		padding: 0 10px;
	}
	.nabout .naboutnr{
		margin-top:40px;
	}
	.nnews ul li .nnewsnr .tools{
		margin-top:20px;
	}
	.nnews ul li .nnewsnr{
		padding-left:20px;
	}
	.npronr ul li{
		width:48%;
	}
	.npronr .nprojs{
		padding:0;
	}
	.nlxfs{
		margin-top:30px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child{
		text-align:left;
	}
	.ncase dl dd h4{
		font-size:16px;
	}
	.ncase dl dd p{
		font-size:15px;
		line-height:25px;
	}
	.footer {
		padding-top: 50px;
	}
	.footernr .bnav,.footerrt{
		width:100%;
	}
	.footerrt{
		margin-top:20px;
	}
	.footerrt .bteltit,.footerrt .btel,.footerrt p,.footerrt .bicon,.link{
		text-align:left;
	}
	.footerrt .bicon a{
		margin-left:0;
		margin-right:15px;
	}
	.bot{
		margin-top:40px;
		padding:20px 0;
	}
	.bot .botlf,.bot .botrt{
		text-align:center;
	}
}
@media(max-width:860px) {
	.banner .bannernr h5 {
		font-size: 26px;
		line-height: 36px;
	}
}
@media(max-width:768px) {
	.banner .ban1 {
		top: 20%;
	}
	.tit p {
		font-size: 46px;
		line-height: 46px;
	}
	.banner .bannernr h4 {
		font-size: 34px;
		line-height: 44px;
	}
	.banner .bannernr h3 {
		font-size: 38px;
		line-height: 48px;
	}
	.banner .ban2,.banner .ban3{
		top: 15%;
	}
	.hyyy .hyyytit {
		padding: 30px 0 0 30px;
	}
	.nnews ul li .nnewsnr h4{
		margin-top:0;
	}
}
@media(max-width:767px) {
	.banner .bannernr h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.banner .ban3 p{
		font-size:14px;
		line-height:20px;
	}
	.hyyy{
		padding-bottom:100px;
	}
	.hyyy .hyyytit .hyyyen {
		font-size: 20px;
		line-height: 20px;
		margin-top:5px;
	}
	.hyyy .hyyytit{
		padding: 20px 0 0 30px;
	}
	.hyyy .hyyytext{
		font-size:18px;
		margin-top:10px;
	}
	.hyyy .hyyytit{
		height:170px;
	}
	.hyyy .swiper-button-next, .hyyy .swiper-button-prev{
		width:40px;
		height:40px;
	}
	.hyyy .swiper-button {
		left: -40px;
	}
	.pro .swiper-button-next, .pro .swiper-button-prev {
		width: 50px;
		height: 50px;
	}
	.ncase dl{
		height:460px;
	}
	.ncase dl dd {
		top: 50%;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left:0;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right:0;
	}
	.nmessagenr dl dd textarea{
		height:240px;
	}
	.footernr .bnav ul li{
		width:33.33333333%;
	}
	.footernr .bnav ul li p{
		display:none;
	}
	.footernr .bnav ul li h4{
		margin: 0 0 10px 0;
	}
}
@media(max-width:640px) {
	.ab_fl dl dt .counter {
		font-size: 44px;
		line-height: 44px;
	}
	.aboutmore,.aboutnr .aboutms{
		margin-top: 40px;
	}
	.aboutnr .aboutms h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.aboutmore a {
		width: 140px;
		height: 50px;
		background: #fff;
		line-height: 50px;
	}
	.banner .ban2 p {
		font-size: 14px;
		line-height: 20px;
	}
	.banner .bannernr h5 {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 10px;
	}
	
	.banner .bannernr h4 {
		font-size: 30px;
		line-height: 40px;
	}
	.banner .bannernr h3 {
		font-size: 34px;
		line-height: 44px;
	}
	.banner .ban3 {
		width: 44%;
	}
	.mouse {
		width: 20px;
		height: 36px;
	}
	.shubiao-index{
		bottom:10px;
	}
	.tit p {
		font-size: 32px;
		line-height: 32px;
	}
	.tit h3,.tit h3 a{
		font-size: 24px;
		line-height: 34px;
	}
	.ab_fl{
		padding:0;
	}
	.caselist .swiper-button{
		display:none;
	}
	.newslist dl dd h4{
		font-size:18px;
	}
	.newslist dl dt .day {
		font-size: 50px;
	}
	.pro .swiper-button-next, .pro .swiper-button-prev {
		width: 40px;
		height: 40px;
	}
	.ntit h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.nnews ul li .nnewsnr p,.nnews ul li .nnewsnr .tools{
		margin-top:10px;
	}
	.nlxfs a{
		width:130px;
	}
	.npronr .nprojs h1 {
		font-size: 20px;
		line-height: 30px;
	}
	.footerrt .btel,.footerrt .btel a{
		font-size: 34px;
		line-height: 34px;
	}
}
@media(max-width:540px) {
	.ab_fl dl dt,.ab_fl dl dd{
		font-size:14px;
	}
	.ab_fl dl dd{
		line-height:20px;
	}
	.ab_fl dl dt .counter {
		font-size: 40px;
		line-height: 40px;
	}
	.aboutnr .aboutms h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.newslist dl dd p{
		height:50px;
	}
}
@media(max-width:539px) {
	.nnews ul li .nnewsimg,.nnews ul li .nnewsnr{
		width:100%;
	}
	.nnews ul li .nnewsnr{
		padding:0;
		margin-top:20px;
	}
	.nnews ul li .nnewsnr h4{
		font-size:16px;
	}
	.ncase dl{
		height:380px;
	}
	.ncase dl dd {
		top: 40%;
	}
}
@media(max-width:500px) {
	.hyyy .hyyytit {
		width:35%;
		padding: 20px 0 0 20px;
	}
	.hyyy .hyyytext{
		font-size:16px;
	}
	.hyyy .hyyytit h3{
		font-size:18px;
	}
	.hyyy .hyyytit .hyyyen{
		font-size:18px;
		line-height:18px;
	}
	.banner .bannernr h4 {
		font-size: 26px;
		line-height: 36px;
	}
	.banner .bannernr h3 {
		font-size: 30px;
		line-height: 40px;
		margin-top:0;
	}
	.banner .swiper-button-next, .banner .swiper-button-prev {
		width: 30px;
		height: 40px;
	}
	.banner .swiper-button{
		bottom:10px;
	}
	.banner .ban3,.banner .ban2{
		width: 50%;
	}
	.banner .ban3-1 {
		margin-top: 20px;
	}
	.banner .ban2-1 {
		margin-top: 20px;
		margin-bottom: 15px;
	}
	.shubiao-index{
		display:none;
	}
	.footerrt .btel, .footerrt .btel a {
		font-size: 32px;
		line-height: 32px;
	}
}
@media(max-width:425px) {
	.ab_fl dl dt .counter {
		font-size: 36px;
		line-height: 36px;
	}
	.aboutnr .aboutms h4{
		font-size:18px;
	}
	.aboutnr .aboutms p{
		font-size: 15px;
		line-height: 26px;
	}
	.banner .bannernr h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.banner .bannernr h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.banner .bannernr h5 {
		font-size: 18px;
	}
	.banner .ban2{
		width:54%;
	}
	.banner .ban3 p,.banner .ban2 p{
		font-size:12px;
	}
	.newslist dl dt {
		width: 22%;
	}
	.newslist dl dd {
		width: 78%;
	}
	.newslist dl dt .day {
		font-size: 46px;
	}
	.hyyy .hyyytit {
		height: 160px;
	}
	.hyyy .hyyytit{
		width:40%;
		padding: 15px 0 0 15px;
	}
}
@media(max-width:424px) {
	.npronr ul li {
		width: 100%;
		margin:15px 0;
	}
	.ncase dl{
		width:100%;
		padding:0;
		height: 340px;
	}
	.ncase dl dd {
		padding: 20px 15px 10px 15px;
	}
	.casetxt .casems {
		margin-top: 10px;
	}
}
@media(max-width:375px) {
	.banner .bannernr h5 {
		font-size: 16px;
	}
	.footerrt .btel, .footerrt .btel a {
		font-size: 30px;
		line-height: 30px;
	}
}
@media(max-width:374px) {
	.caselist .swiper-slide .casetxt {
		top: 28%;
	}
	.ncase dl dd {
		top: 34%;
	}
}