@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;
	position: fixed;
	z-index: 998;
	top:0;
	padding:0 2%;
	border-bottom:solid 1px rgba(255,255,255,0.25);
	}
.logo{
	overflow:hidden;
	padding:14px 0;
}
.topewm{
	text-align:center;
	padding:32.5px 0;
	position:relative;
	cursor:pointer;
	}
.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{
	background: 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:98px;
}
.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 41px;
	}

.nav .menu > li:after{
	content:"";
	width:0;
	height:2px;
	background:#fff;
	position:absolute;
	left:50%;
	margin-left:-12px;
	bottom:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}

.nav .menu > li a{
	color:#fff;
	font-size:16px;
	font-weight:bold;
	display:block;
	line-height:100px;
	}

.nav .menu > li:hover:after,.nav .menu > li.active:after{
	width:24px;
	}



.nav .menu > li .submenu{

	width:140px;
	left:50%;
	margin-left:-70px;
	}

.nav .menu > li .submenu li{

	width:100%;
	line-height:30px;
	padding:5px 0;
	background:#e15517;

	text-align:center;

	border-top:solid 1px #fff;

}

.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:#ee8544;

}
.nav .menu > li.active:after{
	width:24px;
	}

.cont{
	width:1476px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1476px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	}
.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.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 .img{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .bannernr1{
	width:28%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:12%;
}
.banner .swiper-container .bannernr2{
	width:35%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:25%;
}
.banner .swiper-container .bannernr3{
	width:48%;
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-24%;
	bottom:28%;
	text-align:center;
}
.banner .swiper-container .banimg{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .banimg img{
	max-width:100%;
	height:auto;
}
.banner .swiper-container p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-family:Arial;
	line-height:25px;
	margin-top:54px;
}
.banner .banmore{
	width:100%;
	overflow:hidden;
	margin-top:104px;
}
.banner .swiper-container .bannernr3 .banmore{
	margin:90px auto 0;
}
.banner .swiper-container .bannernr3 .banmore a{
	margin:auto;
	text-align:left;
}
.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%;
	height: 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{
	
	}
.banner .swiper-button-next,.banner .swiper-button-prev {
	width: 116px;
	height: 60px;
	border-right:solid 1px #e9e9e9;
	float:left;
	margin:0;
	position:absolute;
	left:0;
}
.banner .swiper-button-prev{
	top:0;
	}
.banner .swiper-button-next{
	top:60px;
	}

.banner .swiper-button-next.swiper-button-disabled,.banner .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}


.banner .swiper-button-prev.swiper-button-black,.banner .swiper-container-rtl .swiper-button-next.swiper-button-black {
	background:url("../images/prev.png") no-repeat center;
	opacity:0.5;
}
.banner .swiper-button-prev:hover{
	opacity:1;
	}

.banner .swiper-button-next.swiper-button-black,.banner .swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background:url("../images/next.png") no-repeat center;
	opacity:0.5;
}
.banner .swiper-button-next:hover{
	opacity:1;
	}

.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination {
	width:27px;
	position: absolute;
	text-align: center;
	top:50%;
	margin-top:-70.5px;
	right:38px;
	-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: 27px;
	height: 27px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	margin:10px 0;
	background:url(../images/dot.png) no-repeat center;
	outline:none;
}

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 {
	background:url(../images/doth.png) no-repeat center;
}

.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:70px;
	right:38px;
	width:24px;
	z-index:99;
}
.shubiao{
	width:14px;
	margin:40px auto 0;
	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;
}
#shubiao hr{
	width:1px;
	height:166px;
	border:none;
	border-left:solid 1px rgba(255,255,255,0.5);
	margin:0 auto 20px;
}
.mouse {
  position: relative;
  width: 24px;
  height: 40px;
  border-radius: 30px;
  border: 2px 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;
}
#shubiao p{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:12px;
	color:#fff;
	line-height:30px;
	}

@-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*/
/* line
-------------------------------------------------------------- */
.line{
	width:100%;
	height:4px;
	background:#e15517;
}
/* tit
-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#00248d;
	line-height:40px;
	font-weight:normal;
	margin-top:4px;
	}
.tit h3 a{
	font-size:30px;
	color:#00248d;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#000;
	font-family:Arial;
	text-transform:uppercase;
	line-height:45px;
	font-weight:bold;
	}
.tit p span{
	font-size:45px;
	color:#00248d;
	font-family:Arial;
	}
.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;
	background:url(../images/hyyybg.jpg) no-repeat top center;
	background-size:cover;
	padding-left:12.6%;
	padding-top:116px;
	}
.hyyy .hyyyen{
	width:100%;
	overflow:hidden;
	font-size: 72px;
    line-height: 72px;
    text-transform: uppercase;
	font-family: Arial;
    font-weight: bold;
	color:#fff;
	}
.hyyy h3{
	width:100%;
	overflow:hidden;
	font-size:25px;
    line-height: 35px;
	color:#fff;
	margin-top:10px;
	}
.hyyy .hyyynr{
	margin-top:66px;
	padding-bottom:230px;
	position:relative;
	}
.hyyy .hyyynr,.hyyy .hyyylist{
	width:100%;
	}
.hyyy .hyyylist{
	position:relative;
	}
.hyyy .hyyylist img{
	width:100%;
	height:auto;
	}
.hyyy .hyyylist .hyyytit{
	width:100%;
	position:absolute;
	left:0;
	bottom:28px;
	padding:0 32px;
	}
.hyyy .hyyylist .hyyytit h4{
	width:75%;
	overflow:hidden;
	float:left;
	font-size:32px;
	color:#fff;
	line-height:42px;
	}
.hyyy .hyyylist .hyyytit .hyyymore{
	width:25%;
	height:60px;
	float:left;
	background:url(../images/icon6.png) no-repeat right center;
	position:relative;
	}
.hyyy .hyyylist .hyyytit .hyyymore a{
	display:block;
	width:100%;
	height:100%;
}
.hyyy .hyyylist .hyyyno{
	overflow:hidden;
	font-family:Arial;
	color:#fff;
	font-size:77px;
	font-weight:bold;
	line-height:77px;
	font-style:italic;
	position:absolute;
	left:0;
	top:-34px;
	}

#plusDiv {
	position:absolute;
	width:60px;
	height:60px;
	background:rgba(255,255,255,0.4);
	border-radius:50%;
    right:78px;
    top: 0;
	animation: pulsate 1s ease-out;
	animation-iteration-count: infinite; /*无穷反复*/
	animation-delay: 1.1s;
}
.hyyynr .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 34px 0 0 0;
	z-index: 1;
}

.hyyynr .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.hyyynr .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.hyyynr .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
}

.hyyynr .swiper-container-android .swiper-slide,.hyyynr .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.hyyynr .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.hyyynr .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
}

.hyyynr .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0 23px;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.hyyynr .swiper-slide .img img{
	width:100%;
	height:auto;
}
.hyyynr .swiper-slide-invisible-blank {
	visibility: hidden
}

.hyyynr .swiper-container-autoheight,.hyyynr .swiper-container-autoheight .swiper-slide {
	height: auto
}

.hyyynr .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
}

.hyyynr .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);
	}
}
.hyyynr .swiper-button{
	width:100%;
	overflow:hidden;
	padding-left:77px;
	position:absolute;
	z-index:9;
	left:0;
	bottom:132px;
}
.hyyynr .swiper-pagination-bullet{
	width:39px;
	height:39px;
	background:url(../images/dot2.png) no-repeat center;
	opacity:1;
	margin:0 35px;
	outline:none;
}
.hyyynr .swiper-pagination-bullet-active{
	background:url(../images/doth2.png) no-repeat center;
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:107px;
	padding-bottom:125px;
}
.protit{
	width:100%;
	overflow:hidden;
}
.protit .protitlf,.protit .protitrt{
	overflow:hidden;
	padding:0;
}
.protit .protitlf h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#404040;
	line-height:55px;
	margin-bottom:2px;
	}
.protit .protitlf h3 span{
	font-size:45px;
	color:#e46c41;
	}
.protit .protitlf hr{
	width:84px;
	border:none;
	border-bottom:solid 2px #404040;
	margin-top:33px;
	}
.protit .protitrt a{
	font-size:22px;
	color:#404040;
	float:right;
	position:relative;
	z-index:2;
	}
.protit .protitrt a:after{
	content:"";
	width:100%;
	height:8px;
	background:#e46c41;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
	}
.prolist{
	width:100%;
	overflow:hidden;
	margin-top:45px;
	}
.prolist dl{
	overflow:hidden;
	padding:0 10px;
	margin:10px 0;
	}
.prolist dl dt,.prolist dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.prolist dl dd{
	margin-top:20px;
	}
.prolist dl dt{
	position:relative;
	height:348px;
	}
.prolist dl dt 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;
	}
.prolist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.prolist dl dd{
	font-size:18px;
	color:#404040;
	line-height:30px;
	}
.pronr .promore{
	width:100%;
	overflow:hidden;
	margin-top:62px;
	}
	
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	position:relative;
	padding-top:146px;
	padding-bottom:190px;
	}
.about .aboutimg{
	width:50%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	top:0;
	z-index:2;
	}
.about .aboutimg img{
	max-width:100%;
	height:auto;
	}
.about .aboutnr{
	position:relative;
	z-index:3;
	}
.aboutnr .aboutlf{
	overflow:hidden;
	padding:0;
	}
.aboutlf .abouten{
	width:100%;
	overflow:hidden;
	}
.aboutlf .abouten img{
	max-width:100%;
	height:auto;
	}
.aboutlf h3{
	width:100%;
	overflow:hidden;
	font-size:40px;
	line-height:50px;
	color:#e15517;
	margin-top:9px;
	}
.aboutlf .aboutjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:32px;
	color:#6d6d6d;
	margin-top:70px;
	padding:0 44px 0 0;
	text-align:justify;
	}
.aboutlf .aboutmore{
	width:100%;
	overflow:hidden;
	margin-top:87px;
	}
.aboutnr .aboutrt{
	overflow:hidden;
	padding:0 0 0 10px;
	text-align:right;
	}
.aboutnr .aboutrt img{
	max-width:100%;
	height:auto;
	}
#wave1{
	position:absolute;
	left:0;
	bottom:0;
	z-index:1;
	}
.ab_fl{
	width:100%;
	overflow:hidden;
	margin-top:33px;
}
.ab_fl dl{
	overflow:hidden;
	padding:0;
	float:left;
	margin-right:80px;
}
.ab_fl dl dt{
	width:100%;
	overflow:hidden;
	color:#000;
	font-size:16px;
	font-weight:normal;
}
.ab_fl dl dd{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#8a8a8a;
	line-height:26px;
}
.ab_fl dl dt .counter{
	font-size:55px;
	color:#343434;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	line-height:55px; 
	}


/* ys
-------------------------------------------------------------- */
.ys{
	width:100%;
	overflow:hidden;
	background:url(../images/ysbg.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	padding-top:158px;
	padding-bottom:112px;
	background-attachment: fixed;
	}
.ysnr .ystit,.ysnr .ystit p,.ysnr .ystit h3{
	width:100%;
	overflow:hidden;
	}
.ysnr .ystit p img{
	max-width:100%;
	height:auto;
	}
.ysnr .ystit h3{
	font-size:40px;
	color:#fff;
	line-height:50px;
	margin-top:10px;
	}
.ysnr .ystit hr{
	width:98px;
	border:none;
	border-bottom:solid 3px #fff;
	margin-top:76px;
	}
.ysnr .cloud-product-box{
	width:100%;
	overflow:hidden;
	margin-top:304px;
	}
.cloud-product-wrapper {
	margin: 0 auto;
	width: 1200px
}
.cloud-product {
	position: relative;
	z-index: 9;
}
.cloud-product-title {
	height: 32px;
	text-align: center;
	line-height: 32px;
	font-size: 32px;
	color: #333
}
.color-blue {
	color: #009fd9
}
.cloud-product-explain {
	margin-top: 26px;
	margin-bottom: 82px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	font-size: 16px;
	color: #999
}
.cloud-product-ul {
	width: 100%
}
.cloud-product-ul li {
	height:200px;
	position: relative;
	width: 18%;
	float: left;
	padding-top:45px;
}
.cloud-product-ul li.active{
	padding-left:0;
	}
.cloud-product-ul li .proicon{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.cloud-product-ul li .proicon img{
	max-width:100%;
	height:auto;
	}
.normal-inner .promore{
	width:56px;
	height:56px;
	display:block;
	border-radius:50%;
	background:#39bc0b url(../images/icon8.png) no-repeat center;
	margin:auto;
	margin-top:59px;
	}
.active-inner-item{
	width:100%;
	height:100%;
	overflow:hidden;
	}
.active-inner-item .pronr{
	width:100%;
	overflow:hidden;
	float:left;
	padding:0 56px;
	}
.active-inner-item .pronr h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	line-height:40px;
	}
.active-inner-item .pronr .proen{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:rgba(255,255,255,0.4);
	font-family:Arial;
	text-transform:uppercase;
	margin-top:10px;
	}

.active-inner-item .pronr .proms{
	width:100%;
	overflow:hidden;
	text-align:justify;
	font-size:16px;
	color:#fff;
	margin-top:13px;
	}
.active-inner-item .pronr .protd{
	width:100%;
	overflow:hidden;
	margin-top:68px;
	}
.active-inner-item .pronr .protd dl{
	overflow:hidden;
	float:left;
	margin-right:45px;
	}
.active-inner-item .pronr .protd dl dt{
	overflow:hidden;
	text-align:center;
	}
.active-inner-item .pronr .protd dl dt img{
	max-width:100%;
	height:auto;
	}
.active-inner-item .pronr .protd dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	line-height:30px;
	font-size:15px;
	color:#fff;
	}
.active-inner-item .pronr .promore{
	width:210px;
	height:60px;
	display:block;
	border-radius:30px;
	color:#fff;
	font-size:16px;
	text-align:center;
	line-height:60px;
	border:solid 2px #fff;
	margin-top:106px;
	}
.active-inner-item .proimg{
	width:63%;
	overflow:hidden;
	text-align:right;
	float:right;
	position:relative;
	}
.normal-inner .proen{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:16px;
	color:#fff;
	text-transform:uppercase;
	text-align:center;
	line-height:30px;
	margin-top:10px;
	}
.cloud-product-ul li h4{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:22px;
	color:#000;
	line-height:32px;
	margin-top:8px;
	}
.cloud-product-ul li hr{
	width:30px;
	border-bottom:solid 2px #39bc0b;
	margin:12px auto 0;
	}
.cloud-product-ul li span{
	width:100%;
	overflow:hidden;
	display:block;
	text-align:center;
	margin-top:178px;
	}
.cloud-product-ul li.active hr{
	width:100%;
	border:none;
	border-bottom:solid 1px #fff;
	margin-top:35px;
	}
.cloud-product-single-top {
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #f2f2f2
}
.cloud-product-name {
	font-size: 18px;
	color: #333;
	font-weight: 700
}
.cloud-product-single-bottom {
	width: 100%;
	height: 340px
}
.empty-space {
	width: 100%;
	height: 99px;
	padding: 26px 0 0 0;
}
.single-bottom-item {
	height: 340px;
	width: 100%
}
.single-bottom-item:first-child {
	border-right: 1px solid #eee
}
.bg-product-pic {
	width: 100%;
	height: 82px
}
.product-introduce-title {
	margin-bottom: 14px;
	height: 22px;
	line-height: 22px;
	font-size: 22px;
	text-align: center
}
.product-introduce-title.normal-weight {
	font-weight: 400
}
.product-introduce-content {
	margin: 0 auto 26px;
	width: 180px;
	line-height: 14px;
	font-size: 14px;
	text-align: center;

	color: #999
}
.product-introduce-list {
	margin: 0 auto;
	padding-top: 28px;
	height: 135px;
	width: 84%;
	border: 1px solid #f1f1f1;
	border-left: none;
	border-right: none
}
.introduce-list-small {
	margin-bottom: 18px;
	line-height: 14px;
	font-size: 14px;
	color: #999;
	text-align: center
}
.product-introduce-price {
	margin: 48px auto 0;
	font-size: 14px;
	text-align: center;
	color: #333
}
.price-blue {
	color: #0af;
	font-size: 38px
}
.normal-inner {
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s
}
.active-inner {
	position: relative;
	display: none;
	height: 100%;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s
}
.introduce-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 360px
}
.cloud-product-ul li.active .active-inner {
	display: block;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1
}
.cloud-product-ul li.active .normal-inner {
	display: none;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0
}
.cloud-product-ul li {
	background:#fff;
	-webkit-transition: width .15s linear;
	-o-transition: width .15s linear;
	-moz-transition: width .15s linear;
	transition: width .15s linear;
	margin:0 0.5%;
}
.cloud-product-ul li.active {
	z-index: 9;
	width: 42%;
}
.cloud-product-ul li.active h4{
	text-align:left;
	}
.cloud-product-ul li.active{
	background: -webkit-linear-gradient(left, #d0522a , #dd7921); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #d0522a , #dd7921); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #d0522a , #dd7921); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #d0522a , #dd7921); /* 标准的语法 */
	}
.cloud-product-ul li.active h4{
	font-size:26px;
	}
.cloud-product-ul li .ysjs{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:rgba(255,255,255,0.7);
	line-height:30px;
	margin-top:27px;
	}
.cloud-product-ul li.active .yslxwm{
	width:100%;
	overflow:hidden;
	margin-top:108px;
	}
.cloud-product-ul li.active .yslxwm a{
	width:60px;
	height:60px;
	background:#0555ab url(../images/icon9.png) no-repeat center;
	border-radius:50%;
	display:block;
	}
.active .product-introduce-content {
	color: #eff6ff
}
.active-product-introduce-title {
	color: #fff
}
.active .product-introduce-list {
	padding-top: 22px;
	border-color: #3f9ff9
}
.introduce-list-large {
	margin: 0 auto;
	width: 228px;
	line-height: 22px;
	color: #ddebff;
	font-size: 14px
}
.active .product-introduce-price {
	margin-top: 32px;
	color: #fefeff
}
.product-introduce-price .price-white {
	display: inline-block;
	font-size: 36px;
	height: 36px;
	line-height: 36px;
	color: #fff
}
/* news
-------------------------------------------------------------- */
.news{
	padding-top:156px;
	padding-bottom:206px;
	}
.news .newstit{
	width:100%;
	overflow:hidden;
	margin-bottom:57px;
	border-bottom:solid 1px #e7e7e7;
	}
.newstit .newstitlf,.newstit .newstitrt{
	overflow:hidden;
	padding:0;
	}
.newstit .newstitlf ul{
	width:100%;
	overflow:hidden;
	}
.newstit .newstitlf ul li{
	margin-right:80px;
	float:left;
	line-height:42px;
	padding-bottom:34px;
	position:relative;
	}
.newstit .newstitlf ul li a{
	font-size:32px;
	color:#000;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newstit .newstitlf ul li:after{
	content:"";
	width:0;
	height:2px;
	background:#e15517;
	position:absolute;
	left:0;
	bottom:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.newstit .newstitlf ul li:hover:after{
	width:100%;
	}
.newstit .newstitlf ul li:hover a{
	color:#e15517;
	}
.newstit .newstitrt{
	overflow:hidden;
	}
.newstit .newstitrt a,.pronr .promore a,.aboutlf .aboutmore a,.banner .banmore a{
	display:block;
	width:215px;
	height:58px;
	line-height:58px;
	font-size:16px;
	color:#fff;
	padding-left:42px;
	background:#e15517 url(../images/icon2.png) no-repeat 84% center;
	float:right;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.banner .banmore a{
	float:none;
}
.pronr .promore a{
	float:none;
	margin:auto;
	}
.aboutlf .aboutmore a{
	float:none;
	}
.newstit .newstitrt a:hover,.pronr .promore a:hover,.aboutlf .aboutmore a:hover,.banner .banmore a:hover{
	background-position:88%;
	}
.newsnr,.newsnr ul{
	width:100%;
	overflow:hidden;
	}
.newsnr ul li{
	overflow:hidden;
	padding:0 20px;
	}
.newsnr ul li .newsdate{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#8d8d8d;
	line-height:30px;
	}
.newsnr ul li h4{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#000;
	line-height:32px;
	font-weight:normal;
	margin-top:15px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newsnr ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#8d8d8d;
	line-height:30px;
	margin-top:4px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newsnr ul li .newsimg{
	width:100%;
	overflow:hidden;
	margin-top:35px;
	position:relative;
	height:270px;
	}
.newsnr ul li .newsimg 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;
	}
.newsnr ul li:hover .newsimg img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.newsnr ul li:hover h4{
	color:#e15517;
	font-weight:bold;
	}
/* contact
-------------------------------------------------------------- */
.contact{
	width:100%;
	overflow:hidden;
	background:#e15517;
	padding:87px 0 96px 0;
	}
.contactnr .contactlf,.contactnr .contactrt{
	padding:0;
	overflow:hidden;
	}
.contactnr .contactlf h3{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:50px;
	color:#fff;
	line-height:60px;
	text-transform:uppercase;
	}
.contactnr .contactlf p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-top:24px;
	}
.contactnr .contactlf p a{
	font-size:18px;
	color:#fff;
	}
.contactnr .contactrt a{
	float:right;
	display:block;
	width:215px;
	height:58px;
	line-height:58px;
	border:solid 1px #fff;
	padding-left:42px;
	font-size:16px;
	color:#fff;
	margin-left:32px;
	background:url(../images/icon2.png) no-repeat 84% center;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.contactnr .contactrt{
	margin-top:34px;
	}
.contactnr .contactrt a:hover{
	background:#fff url(../images/icon3.png) no-repeat 88% center;
	color:#e15517;
	}
/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	background:#1a1a1a;
	color:#fff;
	padding:45px 0;
	}
.linknr{
	color:#fff;
	line-height:30px;
	}
.link a{
	margin-right:10px;
	color:#fff;
	}
	
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#1a1a1a;
	padding-top:102px;
}
.footernr{
	margin-bottom:22px;
	}
.footernr .bnav,.footernr .bewm{
	overflow:hidden;
	padding:0;
}
.bnav ul,.bnav ul li h4,.bnav ul li p{
	width:100%;
	overflow:hidden;
}
.bnav ul li{
	width:20%;
	float:left;
	overflow:hidden;
	padding:0;
	}
.bnav ul li h4{
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-bottom:32px;
	}
.bnav ul li h4 a{
	font-size:18px;
	color:#fff;
	}
.bnav ul li p{
	line-height:30px;
	margin-top:15px;
	}
.bnav ul li p,.bnav ul li p a{
	font-size:16px;
	color:rgba(255,255,255,0.5);
	}
.bnav ul li p a:hover{
	color:#fff;
}
.footernr .bewm dl{
	overflow:hidden;
	float:right;
}
.footernr .bewm dl dt,.footernr .bewm dl dd{
	overflow:hidden;
	text-align:center;
}
.footernr .bewm dl dt img{
	max-width:100%;
	height:auto;
	}
.footernr .bewm dl dd{
	color:#fff;
	line-height:30px;
	margin-top:4px;
	}
.bot{
	width:100%;
	overflow:hidden;
	padding:40px 0;
	border-top:solid 1px rgba(255,255,255,0.15);
	}
.bot .botnr{
	color:rgba(255,255,255,0.5);
	font-size:15px;
	line-height:30px;
	text-align:center;
	}
.bot a{
	color:rgba(255,255,255,0.5);
	font-size:15px;
	}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:600px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:800px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:525px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:450px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:425px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:400px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:360px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:320px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:310px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:240px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:200px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:50%;
	overflow:hidden;
	float:right;
	text-align:right;
}
.positionnr{
	overflow:hidden;
	float:right;
	padding:21px 0 21px 32px;
	background: url(../images/icon20.png) no-repeat left center;
	line-height:30px;
	font-size:16px;
	color:#000;
}
.position a:nth-child(1) {
	color:#e15517;
	transition: all 0.8s ease;
}

.position a {
	transition: all 0.8s ease;
	font-size:16px;
	color:#000;
}

.position a:hover {
	color: #e15517;
}
/* nmenu
-------------------------------------------------------------- */
.nmenu{
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e5e5e5;
	margin-top:28px;
	}
.nmenu ul{
	width:50%;
	overflow:hidden;
	float:left;
	margin:0;
	}
.nmenu ul li{
	overflow:hidden;
	float:left;
	line-height:72px;
	padding:0 36px;
	text-align:center;
	font-size:16px;
	color:#000;
	}
.nmenu ul li:hover,.nmenu ul li.active{
	background:#e15517;
	}
.nmenu ul li a{
	font-size:16px;
	color:#000;
	display:block;
	position:relative;
	}
.nmenu ul li:hover,.nmenu ul li.active{
	color:#fff;
	}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#fff;
	}
.nmenu ul li:hover a:after,.nmenu ul li.active a:after{
	width:100%;
	}
/* nabout
-------------------------------------------------------------- */
.nabout{
	margin-top:102px;
	margin-bottom:138px;
	}
.nabout .naboutimg{
	overflow:hidden;
	padding:0;
	text-align:right;
	}
.nabout .naboutimg img{
	max-width:100%;
	height:auto;
	}
.nabout .naboutnr{
	overflow:hidden;
	padding:42px 50px 0 0;
	}
.naboutnr .nabouten{
	width:100%;
	overflow:hidden;
	}
.naboutnr .nabouten img{
	max-width:100%;
	height:auto;
	}
.naboutnr h3{
	width:100%;
	overflow:hidden;
	color: #e15517;
	font-size:40px;
	line-height:50px;
	margin-top:10px;
	}
.naboutnr hr{
	width: 76px;
	border:none;
	border-bottom:solid 2px #111111;
	margin-top:24px;
	}
.naboutimg img{
	max-width:100%;
	height:auto;
	}
.naboutnr .naboutjs{
	width:100%;
	overflow:hidden;
	color: #8a8a8a;
	line-height:30px;
	font-size:16px;
	margin-top:12px;
	margin-top:52px;
	}
.naboutnr .naboutjs p{
	overflow:hidden;
	color: #8a8a8a;
	line-height:30px;
	font-size:16px;
	}
/* nqywh
-------------------------------------------------------------- */
.nqywh{
	width:100%;
	overflow:hidden;
	background:url(../images/qywhbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:162px;
	padding-bottom:263px;
	background-attachment: fixed;
	}
.nqywh h3,.njzg h3{
	width:100%;
	overflow:hidden;
	font-size:52px;
	line-height:62px;
	text-align:center;
	color: #fff;
	font-weight:normal;
	}
.nqywh hr,.njzg hr{
	width: 64px;
	border:none;
	border-bottom:solid 2px #d9d9d9;
	margin:42px auto 0;
	}
.nqywh .nqywhnr ul,.njzg ul{
	width:100%;
	overflow:hidden;
	margin-top:78px;
	}
.nqywhnr ul li,.njzg ul li{
	width:20%;
	overflow:hidden;
	float:left;
	padding:0 10px;
	margin:10px 0;
	}
.nqywhnr ul li .nqywhicon,.njzg ul li .nqywhicon{
	width:100%;
	height:75px;
	overflow:hidden;
	text-align:center;
	}
.nqywhnr ul li .nqywhicon img,.njzg ul li .nqywhicon img{
	max-width:100%;
	height:auto;
	}
.nqywhnr ul li h4,.njzg ul li h4{
	width:100%;
	overflow:hidden;
	font-size:25px;
	line-height:35px;
	color:#fff;
	text-align:center;
	margin-top:14px;
	}
.nqywhnr ul li p,.njzg ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:27px;
	color:#fff;
	margin-top:20px;
	text-align:center;
	}
/* njzg
-------------------------------------------------------------- */
.njzg{
	width:100%;
	overflow:hidden;
	background:url(../images/jzgbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:162px;
	padding-bottom:273px;
	background-attachment: fixed;
	}
/* nfzlc
-------------------------------------------------------------- */
.history{
	width:100%;
	overflow:hidden;
	background:#f6f6f6;
	padding-top:58px;
	padding-bottom:152px;
	}
.historytit h3{
	width:100%;
	overflow:hidden;
	font-size:48px;
	color:#e15517;
	line-height:58px;
	font-weight:normal;
	}
.historytit p{
	width:100%;
	overflow:hidden;
	font-size:27px;
	color:#333;
	line-height:37px;
	margin-top:5px;
	}
.history .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.history .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.history .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.history .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
}
.history .swiper-container-android .swiper-slide,.history .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.history .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.history .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
}

.history .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.history .swiper-slide .img img{
	width:100%;
	height:auto;
}
.history .swiper-slide-invisible-blank {
	visibility: hidden
}

.history .swiper-container-autoheight,.history .swiper-container-autoheight .swiper-slide {
	height: auto
}

.history .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
}

.history .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.history-tab {
  position: relative;
  z-index: 2;
  margin-top: 4vw;
}
.history-tab:before {
  position: absolute;
  left: 0;
  top: 66px;
  content: "";
  width: 100%;
  height: 1px;
  background: #999999;
  opacity: 0.6;
  z-index: -1;
}
.history-wrap {
  position: relative;
}
.inner {
    width: 1200px;
    margin: 0px auto;
}
.history-numble {
  position: relative;
  width: 75px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
}
.history-numble:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 10px;
  content: "";
  width: 100%;
  height: 3px;
  background: #999999;
}
.history-numble span {
  display: block;
  text-align: center;
  color: #999999;
  font-size: 12px;
  font-family: "Gilroy";
  line-height: 1;
}
.history-numble span:first-child {
  margin-bottom: 62px;
}
.history-year {
  margin-top: 37px;
  display: flex;
}
.year-slide {
  display: flex;
  justify-content: space-between;
}
.year-slide.swiper-slide-active p {
  opacity: 1;
  transform: scale(1);
}
.year-slide.swiper-slide-active .history-info {
  opacity: 1;
  visibility: visible;
}
.year-slide p {
  color: #333333;
  font-size: 5.3125vw;
  line-height: 1;
  font-family: "Gilroy";
  transition: 0.5s;
}
.history-info {
  width: 54.91%;
  padding-top: 18px;
  transition: 0.5s;
}
.history-info span {
  display: block;
  color: #666666;
  font-size: 16px;
}
.history-swiper {
  display: flex;
  overflow: hidden;
}
.history-slide {
  width: 20%;
  text-align: center;
  cursor: pointer;
}
.history-slide:hover time {
  color: #1F90D0;
}
.history-slide:hover b:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background: rgba(31, 144, 208, 0.33);
}
.history-slide:hover b i {
  border-color: #1F90D0;
}
.history-slide:hover b i:before {
  background: #1F90D0;
}
.history-slide time {
  display: block;
  margin-bottom: 18px;
  line-height: 1;
  color: #999999;
  font-size: 22px;
  font-family: "Gilroy";
  transition: 0.35s;
}
.history-slide p {
  margin: auto;
  margin-top: 20px;
  color: #333333;
  font-size: 14px;
  text-align: left;
  font-weight: bold;
}
.history-slide b {
  display: block;
  position: relative;
  z-index: 3;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: 0.35s;
}
.history-slide b:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(191, 191, 191, 0.33);
  transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.history-slide b i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -9px;
  width: 16px;
  height: 16px;
  border: 1px solid #BFBFBF;
  border-radius: 50%;
  transition: 0.3s;
}
.history-slide b i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BFBFBF;
  transition: 0.3s;
}
.history-btns {
  position: absolute;
  left: -70px;
  right: -70px;
  height: 0px;
  top: 42px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}
.history-btns span {
  display: block;
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #999999;
  font-size: 16px;
  cursor: pointer;
  transition: 0.45s;
  outline:none;
}
.history-btns span.prev {
  left: 0;
  background:#DCDCDC url(../images/prev.png) no-repeat center;
}
.history-btns span.next {
  right: 0;
  background:#DCDCDC url(../images/next.png) no-repeat center;
}
.history-btns span:last-child {
  margin-bottom: 0;
}

/* npro
-------------------------------------------------------------- */
.npro{
	padding-top:112px;
	padding-bottom:182px;
	width:100%;
	overflow:hidden;
	position:relative;
	}
.npro .nproimg1{
	width:32%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	top:0;
	right:0;
}
.npro .nproimg1 img{
	max-width:100%;
	height:auto;
}
.npronr .nprolf{
	width:60%;
	overflow:hidden;
	}
.nprojs{
	width:100%;
	overflow:hidden;
	padding-left:50px;
	position:relative;
	}
.nprojs:before{
	content:"";
	width:5px;
	height:96px;
	background:#e15517;
	position:absolute;
	left:0;
	top:0;
	}
.nprojs h3{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#393939;
	line-height:50px;
	font-weight:normal;
	}
.nprojs p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#393939;
	line-height:34px;
	margin-top:24px;
	}
.nprolf h4{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#393939;
	line-height:32px;
	font-weight:normal;
	margin-top:64px;
	}
.nprolf ul{
	margin-top:23px;
	}
.nprolf ul,.nprolf ul li{
	width:100%;
	overflow:hidden;
	line-height:30px;
	}
.nprolf ul li{
	border-bottom:solid 1px #e5e5e5;
	padding:9px 0;
	}
.nprolf ul li .ggtit{
	width:22%;
	overflow:hidden;
	font-size:16px;
	color:#393939;
	}
.nprolf ul li .ggnr{
	width:78%;
	overflow:hidden;
	font-size:16px;
	color:#393939;
	}
.color{
	width:100%;
	overflow:hidden;
	}
.color .colorlf{
	width:22%;
	overflow:hidden;
	}
.color .colorrt{
	width:78%;
	overflow:hidden;
	padding-top:46px;
	}
.color .colorrt img{
	max-width:100%;
	height:auto;
	}
/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	height:117px;
	font-size:97px;
	padding-bottom:20px;
	line-height:97px;
	color:#e2e1e1;
	font-family:Arial;
	text-transform:uppercase;
	font-weight:bold;
	font-style:italic;
	border-bottom:solid 4px #e15517;
	position:relative;
	}
.ntit h3{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#393939;
	line-height:50px;
	position:absolute;
	left:0;
	bottom:20px;
	font-style:normal;
	font-weight:normal;
	}
/* npro2
-------------------------------------------------------------- */
.npro2{
	width:100%;
	overflow:hidden;
	background:#ededed;
	padding-top:102px;
	padding-bottom:110px;
	position:relative;
	}
.npro2 .nproimg{
	width:46%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	top:0;
}
.npro2 .nproimg img{
	max-width:100%;
	height:auto;
}
.npro2 .nprolf2{
	overflow:hidden;
	padding:0 30px 0 0;
	}
.nprolf2 .npronr2{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#393939;
	margin-top:50px;
	}
.nprolf2 .npronr2 p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#393939;
	line-height:32px;
	}
/* npro3
-------------------------------------------------------------- */
.npro3{
	margin-top:92px;
	margin-bottom:116px;
	}
.npro3 ul{
	width:100%;
	overflow:hidden;
	margin-top:90px;
	}
.npro3 ul li{
	width:48%;
	overflow:hidden;
	float:left;
	margin:0 1%;
	}
.npro3 ul li img{
	max-width:100%;
	height:auto;
	}
/* npro4
-------------------------------------------------------------- */
.npro4{
	margin-bottom:80px;
	}
.npro4 ul{
	margin-top:50px;
	}
.npro4 ul,.npro4 ul li{
	width:100%;
	overflow:hidden;
	}
.npro4 ul li{
	width:100%;
	height:180px;
	overflow:hidden;
	position:relative;
	}
.npro4 ul li .nprolf4{
	width:12%;
	overflow:hidden;
	text-align:center;
	font-size:45px;
	color:#e15517;
	line-height:180px;
	position:relative;
	}
.npro4 ul li .nprolf4:after{
	content:"/";
	position:absolute;
	right:0;
	top:0;
	color:#393939;
	font-size:20px;
}
.npro4 ul li .nprort4{
	width:88%;
	overflow:hidden;
	padding-top:52px;
	padding-right:20px;
	padding-left:30px;
	}
.npro4 ul li .nprort4 h4{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#393939;
	line-height:35px;
	font-weight:normal;
	margin-bottom:10px;
	}
.npro4 ul li .nprort4 p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#393939;
	line-height:30px;
	}
.npro4 ul li:nth-child(2n+1){
	background:#fdf2ed;
	}
.npro4 ul li:nth-child(2n){
	background:#fef8f6;
	}

/* 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;
	}

/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:60px;
	margin-bottom:60px;
	}
.nnews dl{
	width:100%;
	overflow:hidden;
	background:#fff;
	position:relative;
	z-index:1;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.04);
	margin-bottom:40px;
	}
.nnews dl:after{
	content:"";
	width: 0;
    height: 0;
    padding-top: 0;
    position: absolute;
    background: #e15517;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
	}
.nnews dl dt{
	width:15%;
	overflow:hidden;
	float:left;
	padding:30px 0 30px 34px;
	position:relative;
	}
.nnews dl dt:after{
	content:"";
	width:1px;
	position:absolute;
	height:0%;
	right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    z-index: 2;
    transition: .7s;
	}
.nnews dl:hover dt:after{
	height:200%;
	transition-delay:.3s;
	}
.nnews dl dt .time{
	width:145px;
	height:145px;
	border: 1px solid #e15517;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	}
.nnews dl dt .time p{
	width:100%;
	overflow:hidden;
	font-size: 25px;
    color: #e15517;
	text-align:center;
	line-height:35px;
	font-weight:normal;
	}
.nnews dl dd{
	width:80%;
	overflow:hidden;
	float:left;
	padding-left:5%;
	padding-top:30px;
	}
.nnews dl dd h5{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#333;
	line-height:34px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nnews dl dd .nnewsjs{
	width:100%;
	overflow:hidden;
	color:#a4a4a4;
	line-height:30px;
	margin-top:17px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nnews dl dd .nnewsmore{
	width:100%;
	overflow:hidden;
	font-size: 16px;
    color: #e15517;
	margin-top:40px;
	}
.nnews dl:hover:after{
  width: 100%;
  padding-top: 100%;
  transform: translate(-50%, -50%) scale(3);
  transition: .5s;
  transition-timing-function: linear;
}
.nnews dl:hover dd h5,.nnews dl:hover dd .nnewsjs,.nnews dl:hover dd .nnewsmore,.nnews dl:hover dt .time p{
	color:#fff;
	}
.nnews dl:hover dt .time{
	border:solid 1px #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: 30px;
    color: #333;
}
.nnews .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.nnews .fbnr p a,.nnews .fbnr p span,.nnews .fbnr p strong.nnews .fbnr p b{
	font-size: 16px;
    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
-------------------------------------------------------------- */
.ncase{
	margin-top:40px;
	margin-bottom:60px;
	}
.ncase ul li{
	overflow:hidden;
	margin:40px 0;
	padding-bottom:38px;
	}
.ncase ul li .ncaseimg,.ncase ul li .ncasetit{
	width:100%;
	overflow:hidden;
	}
.ncase ul li .ncaseimg{
	position:relative;
	height:470px;
}
.ncase ul li .ncaseimg 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 ul li:hover .ncaseimg img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.ncase ul li .ncasetit{
	width:244px;
	height:76px;
	background:#e15517;
	font-size:20px;
	color:#fff;
	text-align:center;
	line-height:76px;
	position:absolute;
	left:50%;
	margin-left:-122px;
	bottom:0;
	}
	
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	margin-top:60px;
	margin-bottom:60px;
}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	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{
	margin-top:60px;
	margin-bottom:60px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	}
.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:nth-child(1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon17.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon18.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3) dd textarea{
	background:#fff url(../images/icon19.png) no-repeat 24px 21.5px;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #e15517;
    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:#e15517;
}

.a_txt,.rg{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.topewm{display:none}
.headernr{
	width:98%;
}
.rg{display:block;padding-top:34px;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: 1600px) and (max-width: 1600px) {
	.ncase ul li .ncaseimg{
		height:447px;
	}
	.prolist dl dt{
		height:332px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.newsnr ul li .newsimg{
		height:229px;
	}
	.ncase ul li .ncaseimg{
		height:400px;
	}
	.prolist dl dt{
		height:296px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.newsnr ul li .newsimg{
		height:215px;
	}
	.ncase ul li .ncaseimg{
		height:377px;
	}
	.prolist dl dt{
		height:279px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.newsnr ul li .newsimg{
		height:201px;
	}
	.ncase ul li .ncaseimg{
		height:353px;
	}
	.prolist dl dt{
		height:261px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.newsnr ul li .newsimg{
		height:178px;
	}
	.ncase ul li .ncaseimg{
		height:316px;
	}
	.prolist dl dt{
		height:233px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.newsnr ul li .newsimg{
		height:156px;
	}
	.ncase ul li .ncaseimg{
		height:279px;
	}
	.prolist dl dt{
		height:205px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.newsnr ul li .newsimg{
		height:150px;
	}
	.ncase ul li .ncaseimg{
		height:269px;
	}
	.prolist dl dt{
		height:198px;
	}
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	.newsnr ul li .newsimg{
		height:203px;
	}
	.ncase ul li .ncaseimg{
		height:231px;
	}
	.prolist dl dt{
		height:169px;
	}
}
@media only screen and (min-width: 768px) and (max-width:859px) {
	.newsnr ul li .newsimg{
		height:178px;
	}
	.ncase ul li .ncaseimg{
		height:204px;
	}
	.prolist dl dt{
		height:148px;
	}
}
@media only screen and (min-width: 640px) and (max-width:767px) {
	.newsnr ul li .newsimg{
		height:178px;
	}
	.ncase ul li .ncaseimg{
		height:353px;
	}
	.prolist dl dt{
		height:261px;
	}
}
@media only screen and (min-width: 540px) and (max-width:639px) {
	.newsnr ul li .newsimg{
		height:178px;
	}
	.ncase ul li .ncaseimg{
		height:295px;
	}
	.prolist dl dt{
		height:217px;
	}
}
@media only screen and (min-width: 425px) and (max-width:539px) {
	.newsnr ul li .newsimg{
		height:210px;
	}
	.ncase ul li .ncaseimg{
		height:228px;
	}
	.prolist dl dt{
		height:167px;
	}
}
@media only screen and (min-width: 375px) and (max-width:424px) {
	.newsnr ul li .newsimg{
		height:198px;
	}
	.ncase ul li .ncaseimg{
		height:199px;
	}
	.prolist dl dt{
		height:145px;
	}
}
@media only screen and (min-width: 320px) and (max-width:374px) {
	.newsnr ul li .newsimg{
		height:168px;
	}
	.ncase ul li .ncaseimg{
		height:167px;
	}
	.prolist dl dt{
		height:120px;
	}
}
@media only screen and (min-width: 0px) and (max-width:319px) {
	.newsnr ul li .newsimg{
		height:160px;
	}
	.ncase ul li .ncaseimg{
		height:162px;
	}
	.prolist dl dt{
		height:115px;
	}
}


@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
		}
	.ab_fl dl dt .counter {
		font-size: 50px;
		line-height:50px;
	}
	#shubiao hr{
		height:140px;
	}
	.newstit .newstitlf ul li{
		line-height:38px;
	}
	.newstit .newstitlf ul li a{
		font-size:28px;
	}
	.newsnr ul li .newsimg{
		margin-top:20px;
	}
	.newsnr ul li h4{
		font-size:20px;
		line-height:30px;
	}
	.news {
		padding-top: 130px;
		padding-bottom: 160px;
	}
	.protit .protitlf h3,.protit .protitlf h3 span{
		font-size:40px;
		line-height:50px;
	}
	.nqywh h3, .njzg h3{
		font-size:48px;
		line-height:58px;
	}
	.historytit h3{
		font-size:44px;
		line-height:54px;
	}
	.historytit p{
		font-size:23px;
		line-height:33px;
	}
	.ntit {
		height: 110px;
		font-size: 90px;
		line-height: 90px;
	}
	.ntit h3,.nprojs h3{
		font-size:36px;
		line-height:46px;
	}
	.nmenu ul li {
		padding: 0 30px;
	}
	.cloud-product-ul li.active{
		padding-top:30px;
	}
}
@media(max-width:1440px) {
	.nav {
		margin-right: 70px;
	}
	.nav .menu > li {
		margin: 0 35px;
	}
	.banner .swiper-container p{
		font-size:16px;
	}
	.ab_fl dl dt .counter {
		font-size: 46px;
		line-height:46px;
	}
	.aboutlf h3,.ysnr .ystit h3{
		font-size: 36px;
		line-height: 46px;
	}
	.protit .protitlf h3,.protit .protitlf h3 span{
		font-size:36px;
		line-height:46px;
	}
	.nqywh h3, .njzg h3{
		font-size:44px;
		line-height:54px;
	}
	.naboutnr h3 {
		font-size: 36px;
		line-height: 46px;
	}
	.historytit h3{
		font-size:40px;
		line-height:50px;
	}
	.historytit p{
		font-size:20px;
		line-height:30px;
	}
	.ntit {
		height: 100px;
		font-size: 80px;
		line-height: 80px;
	}
	.ntit h3,.nprojs h3{
		font-size:32px;
		line-height:42px;
	}
	.nnews dl dt {
		width: 17%;
	}
	.nnews dl dd{
		padding-left:3%;
	}
	.nmenu ul li {
		padding: 0 25px;
	}
	.banner .banmore {
		margin-top: 50px;
	}
	.banner .swiper-container .bannernr3 .banmore {
		margin: 50px auto 0;
	}
}
@media(max-width:1360px) {
	.shubiao-index{
		bottom:50px;
	}
	#shubiao hr{
		height:120px;
	}
	.contactnr .contactrt a{
		margin-left:20px;
	}
	.contactnr .contactlf h3{
		font-size:46px;
		line-height:56px;
	}
	.inner {
		width: 88%;
	}
	.ntit {
		height: 90px;
		font-size: 70px;
		line-height: 70px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 50px;
	}
	.nav .menu > li {
		margin: 0 30px;
	}
	.shubiao-index {
		bottom: 30px;
	}
	#shubiao hr {
		height: 100px;
		margin: 0 auto 10px;
	}
	.banner .swiper-container p{
		font-size:15px;
		line-height:20px;
	}
	.ab_fl dl{
		margin-right:60px;
	}
	.ab_fl dl dt .counter {
		font-size: 42px;
		line-height:42px;
	}
	.about{
		padding-top:100px;
	}
	.newstit .newstitlf ul li {
		margin-right: 60px;
	}
	.history-btns {
		left: -60px;
		right: -60px;
	}
	.npro4 ul li .nprort4 h4 {
		font-size: 23px;
		line-height: 33px;
	}
	.npro4 ul li .nprort4 p{
		font-size:18px;
	}
	.nnews dl dt {
		width: 19%;
	}
	.nnews dl dd{
		padding-left:1%;
	}
	.nnews dl dd h5{
		font-size:22px;
		line-height:32px;
	}
	.cloud-product-ul li.active {
		padding-top: 20px;
	}
	.nqywhnr ul li h4, .njzg ul li h4{
		font-size: 22px;
		line-height: 32px;
	}
	.active-inner-item .pronr {
		padding: 0 40px;
	}
	.active-inner-item .pronr .proms{
		margin-top:10px;
	}
}
@media(max-width:1152px) {
	.nav {
		margin-right: 30px;
	}
	.nav .menu > li {
		margin: 0 26px;
	}
	.ab_fl dl dt .counter {
		font-size: 38px;
		line-height: 38px;
	}
	.contactnr .contactrt a{
		width:180px;
	}
	.contactnr .contactlf h3 {
		font-size: 42px;
		line-height: 52px;
	}
	.nqywh h3, .njzg h3{
		font-size:40px;
		line-height:50px;
	}
	.ntit h3,.nprojs h3{
		font-size: 30px;
		line-height: 40px;
	}
	.npro4 ul li .nprort4{
		padding-top:40px;
	}
	.nnews dl dt {
		padding: 30px 0 30px 24px;
	}
	.nnews dl dt .time {
		width: 130px;
		height: 130px;
	}
	.nnews dl dd .nnewsmore{
		margin-top:25px;
	}
}

@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.logo{
		padding:5px 0;
	}
	.logo img{
		height:50px;
	}
	.rg{
		padding-top:14px;
	}
	.shubiao-index{
		display:none;
	}
	.history-btns {
		left: -40px;
		right: -40px;
	}
	.nmenu{
		margin-top:10px;
	}
	.nmenu ul,.position{
		width:100%;
	}
	.nmenu ul{
		margin-top:10px;
	}
	.nmenu ul li{
		line-height:50px;
	}
	.positionnr{
		width:100%;
		text-align:left;
		padding:5px 0 5px 32px;
	}
}
@media(max-width:991px) {
	.banner .banmore,.banner .swiper-container p{
		margin-top:30px;
	}
	.banner .swiper-container .bannernr2{
		bottom:20%;
	}
	.banner .swiper-container .bannernr3 .banmore {
		margin: 30px auto 0;
	}
	.banner .swiper-container .bannernr3{
		bottom:25%;
	}
	.about .aboutimg{
		display:none;
	}
	.aboutlf .aboutjs{
		padding:0;
		margin-top:40px;
	}
	.about {
		padding-top: 80px;
		padding-bottom:100px;
	}
	.aboutlf .aboutmore {
		margin-top: 50px;
	}
	.pro {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.pronr .promore{
		margin-top:40px;
	}
	.newstit .newstitrt a, .pronr .promore a, .aboutlf .aboutmore a,.banner .banmore a{
		width:140px;
		height:48px;
		line-height:48px;
		padding-left:20px;
	}
	.prolist dl dd {
		margin-top: 10px;
		font-size:16px;
	}
	.ys{
		padding-top:80px;
		padding-bottom:80px;
	}
	.ysnr .cloud-product-box{
		margin-top:60px;
	}
	.cloud-product-ul li,.cloud-product-ul li.active{
		width:49%;
	}
	.cloud-product-ul li{
		margin: 5px 0.5%;
	}
	.active-inner-item .pronr h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.cloud-product-ul li.active{
		padding-top:20px;
	}
	.active-inner-item .pronr {
		padding: 0 30px;
	}
	.active-inner-item .pronr .proms {
		margin-top: 5px;
	}
	.protit .protitlf h3,.protit .protitlf h3 span{
		font-size:32px;
		line-height:42px;
	}
	.aboutlf h3,.ysnr .ystit h3{
		font-size: 32px;
		line-height: 42px;
	}
	.aboutlf .abouten img,.ysnr .ystit p img{
		height:40px;
	}
	.newstit .newstitlf ul li {
		margin-right: 40px;
	}
	.newstit .newstitlf ul li a {
		font-size: 24px;
	}
	.newsnr ul li h4{
		font-size:18px;
	}
	.newsnr ul li p{
		font-size:15px;
	}
	.news {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.nnews h1{
		font-size:20px;
	}
	.contactnr .contactrt a {
		width:140px;
		padding-left: 20px;
		margin-left: 0;
		margin-right: 20px;
		float:left;
	}
	.nqywhnr ul li, .njzg ul li{
		width:33.3333333%;
	}
	.nqywhnr ul li:nth-child(4), .njzg ul li:nth-child(4){
		clear:both;
	}
	.nqywhnr ul li h4, .njzg ul li h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.nqywhnr ul li p, .njzg ul li p {
		font-size: 15px;
		line-height: 25px;
	}
	.nqywh,.njzg{
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.nqywh h3, .njzg h3,.historytit h3{
		font-size:36px;
		line-height:46px;
	}
	.historytit p {
		font-size: 18px;
		line-height: 25px;
	}
	.npronr .nprolf{
		width:100%;
	}
	.nabout .naboutnr{
		padding:0;
	}
	.ncontact .ncontactnr .ncontactlf,.newm{
		width:100%;
	}
	.newm{
		margin-top:20px;
		padding:0 15px;
	}
	.newm dl{
		float:left;
	}
	.npro4 ul li .nprort4 {
		padding-top: 30px;
	}
	.npro4 ul li .nprolf4{
		font-size:40px;
	}
	.nnews dl dt .time {
		width: 110px;
		height: 110px;
	}
	.nnews dl dt .time p {
		font-size: 22px;
	}
	.nnews dl dd .nnewsjs,.nnews dl dd .nnewsmore{
		margin-top:10px;
	}
	.nnews dl dd h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.nabout {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.naboutnr h3 {
		font-size: 32px;
		line-height: 42px;
	}
	.naboutnr .nabouten img{
		height:40px;
	}
	.ncase ul li{
		padding-bottom:25px;
	}
	.ncase ul li .ncasetit{
		height:50px;
		line-height:50px;
	}
	.ncase ul li .ncasetit{
		font-size:18px;
	}
	.active-inner-item .pronr h3 {
		font-size: 22px;
		line-height: 32px;
	}
	.nmenu ul li {
		padding: 0 20px;
	}
	.footer{
		padding-top:60px;
	}
	.footernr .bewm dl{
		float:left;
	}
	.footernr .bewm{
		margin-top:20px;
	}
	.bnav ul li p{
		display:none;
	}
	.link {
		padding: 30px 0;
	}
}
@media(max-width:860px) {
	.nnews dl dt .time {
		width: 90%;
	}
	.nnews dl dt .time p {
		font-size: 18px;
		line-height: 30px;
	}
}
@media(max-width:767px) {
	.banner .swiper-container p{
		font-size:14px;
		margin-top:30px;
		line-height:15px;
	}
	.active-inner-item .pronr {
		padding: 0 20px;
	}
	.active-inner-item .pronr h3 {
		font-size: 22px;
		line-height: 32px;
	}
	.cloud-product-ul li h4{
		font-size:20px;
		line-height:30px;
	}
	.protit .protitlf h3,.protit .protitlf h3 span{
		font-size:28px;
		line-height:38px;
	}
	.protit .protitrt{
		margin-top:30px;
	}
	.protit .protitrt a{
		float:left;
	}
	.active-inner-item .pronr h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.active-inner-item .pronr .proms{
		font-size:15px;
	}
	.nqywh h3, .njzg h3,.historytit h3{
		font-size:32px;
		line-height:42px;
	}
	.newsnr ul li h4{
		margin-top:5px;
	}
	.historytit p {
		font-size: 16px;
	}
	.nqywh .nqywhnr ul, .njzg ul {
		margin-top: 50px;
	}
	.aboutlf h3,.ysnr .ystit h3{
		font-size: 28px;
		line-height: 38px;
	}
	.aboutlf .abouten img,.ysnr .ystit p img{
		height:35px;
	}
	.ncase ul li .ncasetit{
		font-size:16px;
	}
	.npro4 ul li .nprolf4,.npro4 ul li .nprort4{
		width:100%;
	}
	.npro4 ul li{
		height:auto;
	}
	.npro4 ul li .nprolf4{
		text-align:left;
		line-height:50px;
		padding:20px 20px 0 20px;
	}
	.npro4 ul li .nprolf4:after{
		display:none;
	}
	.npro4 ul li .nprort4{
		padding:20px;
	}
	.npro4 ul li .nprort4 h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.npro4 ul li .nprort4 p {
		font-size: 16px;
	}
	.npro3{
		margin-top:60px;
		margin-bottom:60px;
	}
	.npro2{
		padding-top:60px;
		padding-bottom:60px;
	}
	.npro3 ul{
		margin-top:40px;
	}
	.npro3 ul li{
		width:98%;
		margin:10px 0;
	}
	.npro {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.npronr .nprolf,.npro .nproimg1{
		width:100%;
	}
	.npro2 .nproimg{
		width:100%;
		position:inherit;
		margin-top:20px;
	}
	.npro2 .nprolf2{
		padding:0;
	}
	.npro .nproimg1{
		position:inherit;
		margin-top:20px;
	}
	.nprojs{
		padding-left:20px;
	}
	.ntit {
		height: 80px;
		font-size: 60px;
		line-height: 60px;
	}
	.ntit h3, .nprojs h3{
		font-size:26px;
		line-height:36px;
	}
	.news{
		padding-bottom:60px;
	}
	.newsnr ul li{
		padding:0;
		margin-bottom:20px;
	}
	.news .newstit{
		margin-bottom:40px;
	}
	.newstit .newstitrt{
		display:none;
	}
	.contactnr .contactlf h3 {
		font-size: 38px;
		line-height: 48px;
	}
	.nqywhnr ul li, .njzg ul li {
		width: 50%;
	}
	.nqywhnr ul li:nth-child(4), .njzg ul li:nth-child(4){
		clear:none;
	}
	.nqywhnr ul li:nth-child(3),.nqywhnr ul li:nth-child(5),.njzg ul li:nth-child(3),.njzg ul li:nth-child(5){
		clear:both;
	}
	.nqywhnr ul li h4, .njzg ul li h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.history-btns {
		left: -30px;
		right: -30px;
	}
	
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(1) {
		margin-right:0;
	}
	.nmessagenr dl:nth-child(2) {
		margin-left: 0;
	}
	.nmessagenr dl dd textarea{
		height:240px;
	}
	.ncontact .ncontactnr{
		margin-top:0;
	}
	.nqywhnr ul li h4, .njzg ul li h4,.nqywhnr ul li p, .njzg ul li p{
		margin-top:10px;
	}
	.bnav ul li h4 a {
		font-size: 16px;
	}
}
@media(max-width:640px) {
	.header {
		height: 50px;
	}
	.logo img {
		height: 40px;
	}
	.rg {
		padding-top: 9px;
	}
	.banner .swiper-container p {
		margin-top: 15px;
	}
	.banner .swiper-pagination{
		right:10px;
	}
	.swiper-pagination-bullet{
		margin:5px 0;
	}
	.cloud-product-ul li.active {
		padding-top: 10px;
	}
	.active-inner-item .pronr .proms {
		font-size: 14px;
	}
	.newstit .newstitrt a, .pronr .promore a, .aboutlf .aboutmore a, .banner .banmore a {
		width: 70px;
		height: 30px;
		line-height: 30px;
		padding-left: 5px;
		font-size: 12px;
		background-position: 94%;
		background-size: 11px;
	}
	.banner .swiper-container .bannernr3 .banmore {
		margin: 10px auto 0;
	}
	.banner .banmore, .banner .swiper-container p {
		margin-top: 10px;
	}
	.ab_fl dl{
		margin-right:0;
		width:33.3333333%;
	}
	.active-inner-item .pronr .proms{
		margin-top:5px;
	}
	.active-inner-item .pronr {
		padding: 0 15px;
	}
	.newstit .newstitlf ul li{
		line-height:30px;
		padding-bottom:20px;
		margin-right: 30px;
	}
	.newstit .newstitlf ul li a {
		font-size: 20px;
	}
	.pro {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.protit .protitlf h3, .protit .protitlf h3 span {
		font-size: 24px;
		line-height: 34px;
	}
	.protit .protitrt a{
		font-size:20px;
	}
	.aboutlf h3,.ysnr .ystit h3{
		font-size: 24px;
		line-height: 34px;
	}
	.aboutlf .abouten img,.ysnr .ystit p img{
		height:30px;
	}
	.contactnr .contactlf h3 {
		font-size: 34px;
		line-height: 44px;
	}
	.contact {
		padding: 60px 0;
	}
	.ntit {
		height: 70px;
		font-size: 50px;
		line-height: 50px;
	}
	.nnews dl dt{
		display:none;
	}
	.nnews dl dd{
		width:100%;
		padding:20px;
	}
	.nnews dl dd h5 {
		font-size: 18px;
	}
	.nqywhnr ul li h4, .njzg ul li h4{
		font-size:18px;
	}
	.nqywhnr ul li p, .njzg ul li p {
		font-size: 14px;
		line-height: 25px;
	}
	.nqywhnr ul li .nqywhicon,.njzg ul li .nqywhicon,.nqywhnr ul li .nqywhicon img, .njzg ul li .nqywhicon img{
		height:50px;
	}
	.history{
		padding-bottom:60px;
	}
	.naboutnr .nabouten img {
		height: 30px;
	}
	.naboutnr h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.nqywh h3, .njzg h3, .historytit h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.historytit p {
		font-size: 14px;
	}
	.nqywh hr, .njzg hr {
		margin: 20px auto 0;
	}
	.color .colorlf,.color .colorrt{
		width:100%;
	}
	.color .colorrt{
		padding-top:20px;
	}
	.prolist dl dd{
		font-size:15px;
	}
	.nmenu ul li {
		padding: 0 10px;
	}
}

@media(max-width:540px) {
	.nprolf ul li .ggtit{
		width:30%;
	}
	.nprolf ul li .ggnr{
		width:70%;
	}
}
@media(max-width:500px) {
	.banner .swiper-container .bannernr1 {
		width: 38%;
	}
	.banner .swiper-container .bannernr3 {
		width: 58%;
		margin-left:-29%;
		bottom:20%;
	}
	.banner .swiper-container p {
		font-size: 12px;
		line-height: 15px;
	}
	.swiper-pagination-bullet{
		width:16px;
		height:16px;
		margin: 2px 0;
	}
	.banner .swiper-pagination{
		margin-top:-30.5px;
		right:5px;
	}
	.swiper-pagination-bullet-active{
		background-size:16px;
	}
	.cloud-product-ul li h4 {
		font-size: 18px;
	}
	.active-inner-item .pronr h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.active-inner-item .pronr {
		padding: 0 10px;
	}
	.active-inner-item .pronr h3 {
		font-size: 16px;
	}
	.active-inner-item .pronr .proms {
		font-size: 13px;
	}
	.history-btns {
		left: -20px;
		right: -20px;
	}
	.bnav ul li h4{
		margin-bottom:20px;
	}
	.bnav ul li {
		width: 33.333333%;
	}
}
@media(max-width:425px) {
	.banner .swiper-container .bannernr2,.banner .swiper-container .bannernr1{
		bottom: 10%;
	}
	.banner .swiper-container .bannernr3 {
		bottom: 20%;
	}
	.ab_fl dl dt .counter {
		font-size: 34px;
		line-height: 34px;
	}
	.contactnr .contactrt a {
		width: 120px;
		padding-left: 10px;
		height: 48px;
		line-height: 48px;
		margin-right:10px;
		font-size:15px;
	}
	.active-inner-item .pronr h3 {
		font-size: 18px;
	}
	.active-inner-item .pronr .proms {
		font-size: 12px;
	}
	.ntit {
		height: 66px;
		font-size: 46px;
		line-height: 46px;
	}
	.ncase ul li .ncasetit {
		width: 220px;
		margin-left: -110px;
	}
}
@media(max-width:424px) {
	.nqywhnr ul li .nqywhicon,.njzg ul li .nqywhicon,.nqywhnr ul li .nqywhicon img, .njzg ul li .nqywhicon img{
		height:40px;
	}
	.cloud-product-ul li, .cloud-product-ul li.active {
		width: 98%;
	}
	.cloud-product-ul li.active {
		padding-top: 20px;
	}
	.active-inner-item .pronr {
		padding: 0 20px;
	}
}
@media(max-width:375px) {
	.banner .swiper-container .bannernr2, .banner .swiper-container .bannernr1 {
		bottom: 7%;
	}
	.banner .swiper-container p{
		line-height:13px;
	}
	.banner .swiper-container .bannernr3 {
		bottom: 10%;
	}
	.banner .swiper-pagination {
		margin-top: -10.5px;
	}
	.ab_fl dl dt .counter {
		font-size: 32px;
		line-height: 32px;
	}
	.ab_fl dl dt,.ab_fl dl dd{
		font-size:14px;
	}
	.active-inner-item .pronr .proms{
		font-size:14px;
	}
	.history-btns {
		left: -10px;
		right: -10px;
	}
	.nqywhnr ul li h4, .njzg ul li h4 {
		font-size: 17px;
	}
	.nprolf ul li .ggtit{
		width:35%;
	}
	.nprolf ul li .ggnr{
		width:65%;
	}
}
@media(max-width:319px) {
	.ntit {
		height: 62px;
		font-size: 42px;
		line-height: 42px;
	}
	.banner .swiper-container .bannernr2, .banner .swiper-container .bannernr1 {
		bottom: 5%;
	}
}
