@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myFirstFont;
	src: url('../font/SOURCEHANSANSCN-REGULAR.OTF'),
		 url('../font/SOURCEHANSANSCN-REGULAR.eot'); /* IE9 */
}
@font-face
{
	font-family: myTwoFont;
	src: url('../font/BarlowCondensed-SemiBold_mianfeiziti.ttf'),
		 url('../font/BarlowCondensed-SemiBold_mianfeiziti.eot'); /* IE9 */
}

/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"myFirstFont","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:"myFirstFont","Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */

.header{
	width:100%;
	height:100px;
	background:#fff;
	position: fixed;
	z-index: 998;
	top:0;
	padding:0 1%;
	}
.logo{
	overflow:hidden;
	padding:20px 0;
}
.language,.language ul{
	overflow:hidden;
}
.language ul li{
	overflow:hidden;
	float:left;
	line-height:100px;
	margin-left:20px;
}
.language ul li a{
	font-size:15px;
	color:#252525;
}
.language ul li a:hover,.language ul li a.cur{
	border-bottom:solid 1px #000;
}
.small{
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3); 
}
	
/* nav
-------------------------------------------------------------- */
.menu, .menu ul {

  list-style: none;

  padding: 0;

}



.menu > li {

  position: relative;

  display: inline-block;

  outline: 0;

}



.submenu {

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 0;

  overflow: hidden;

  /* IE8 needs this */

  overflow: hidden\0/ !important;

  max-height: 0;

  /* A .submenu should be only revealed when hovering the .menu */

  pointer-events: none;

}



.menu > li:hover .submenu, .menu > li:focus .submenu {

  pointer-events: auto;

  z-index: 10;

  max-height: 2000px;

  -webkit-transition: none;

     -moz-transition: none;

}



/* Default

 ================================================================= */

.submenu li {

  opacity: 0;



  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;

     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;

      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;

       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;

          transition: opacity .4s,         transform .6s, max-height .6s;

}



.menu > li:hover .submenu li, .menu > li:focus .submenu li {

  opacity: 1;



  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;

}

/* Shield

 ================================================================= */

.shield {

  overflow: visible;



  -webkit-perspective: 400px;

     -moz-perspective: 400px;

      -ms-perspective: 400px;

       -o-perspective: 400px;

          perspective: 400px;

}



.shield li {

  -webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);



  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;



  -webkit-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

     -moz-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

      -ms-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

       -o-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

          transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

}
.nav{
	text-align:right;
	margin-right:56px;
}
.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:100px;
	position:relative;
	}

.nav .menu > li a{
	font-weight:bold;
	font-size:16px;
	color:#252525;
	display:block;
	padding:0 31px;
	line-height:100px;
	}

.nav .menu > li:hover a,.nav .menu > li.active a{
	font-weight:bold;
	color:#55d562;
}


.nav .menu > li .submenu{

	width:200px;
	left:50%;
	margin-left:-100px;

	}

.nav .menu > li .submenu li{
	width:100%;
	line-height:30px;
	padding:5px 0;
	background:#fff;
	font-size:16px;
	color:#252525;
	text-align:center;
	margin-top:1px;
}

.nav .menu > li .submenu li a{
	display:block;
	color:#252525;
	background:none;
	font-size:16px;
	padding:0;
	line-height:30px;
}

.nav .menu > li .submenu li:hover{
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
}
.nav .menu > li .submenu li:hover a{
	color:#fff;
}
.nav .menu > li:hover:after,.nav .menu > li.active:after{
	width:40px;
	}

.cont{
	width:1476px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1476px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	position:relative;
	margin-top:100px;
	}
.banner_bot{
	width:38%;
	height:86px;
	background:#fff;
	border-radius:30px 0 0 0;
	overflow:hidden;
	position:absolute;
	right:0;
	bottom:0;
	z-index:99;
}
.banner .down{
	width:208px;
	line-height:86px;
	height:100%;
	text-align:center;
	font-size:16px;
	color:#fff;
	letter-spacing:5px;
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.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;
	position:relative;
}
.banner .img .banner1-1{
	width:30.5%;
	overflow:hidden;
	position:absolute;
	left:11.6%;
	top:25%;
	z-index:99;
	}
.banner .img .banner1-1 img{
	max-width:100%;
	height:auto;
	}
.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;
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.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
}

.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;
}
.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.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
}

/*shubiao*/
.shubiao-index{
	overflow:hidden;
	position:absolute;
	bottom:50px;
	right:36px;
	z-index:99;
}
.mouse {
  position: relative;
  width: 25px;
  height: 42px;
  border-radius: 30px;
  border: 3px solid #fff;
  margin:auto;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 4px;
  height: 10px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.shubiao-index p{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:15px;
	color:#fff;
	font-family:Arial;
	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);
  }
}

@-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_more{
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	position:absolute;
	left:18%;
	bottom:124px;
	z-index:99;
}

.boxlist .swiper-container,.boxlist2 .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.boxlist .swiper-container-vertical>.swiper-wrapper,.boxlist2 .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.boxlist .swiper-wrapper,.boxlist2 .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
}
.boxlist .swiper-container-android .swiper-slide,.boxlist .mt-tabpage-cont__wrap .swiper-wrapper,
.boxlist2 .swiper-container-android .swiper-slide,.boxlist2 .mt-tabpage-cont__wrap .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.boxlist .swiper-container-multirow>.swiper-wrapper,.boxlist2 .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.boxlist .swiper-container-free-mode>.swiper-wrapper,.boxlist2 .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
}

.boxlist .swiper-slide,.boxlist2 .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
}
.boxlist .swiper-slide-invisible-blank,.boxlist2 .swiper-slide-invisible-blank {
	visibility: hidden
}

.boxlist .swiper-container-autoheight,.boxlist .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide,
.boxlist2 .swiper-container-autoheight,.boxlist2 .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide {
	height: auto
}

.boxlist .swiper-container-autoheight .swiper-wrapper,.boxlist2 .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
}
.boxlist .swiper-button div{
	width:52px;
	height:52px;
	position:absolute;
	top:50%;
	margin-top:-26px;
	outline:none;
	border:solid 4px #d5d5d5;
	border-radius:50%;
	z-index:99;
	}
.boxlist .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	right:210px;
	}
.boxlist .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	right:144px;
	}
.boxlist .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	}
.boxlist .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	}
.boxlist .swiper-button div:hover{
	border:solid 4px #b21e23;
}
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	right:30%;
	bottom:34.5px;
	z-index:100;
	}
.banner .swiper-button div{
	width:9px;
	height:17px;
	outline:none;
	float:left;
	border-radius:50%;
	}
.banner .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
	}
.banner .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	margin-left:30px;
	}
.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination {
	width:100%;
	position: absolute;
	text-align: center;
	bottom:35px;
	left:249px;
	-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-bullet{
	overflow:hidden;
	float:left;
	width:12px;
	height:12px;
	background:#e1e1e1;
	border-radius:50%;
	display:block;
	color:rgba(255,255,255,0.3);
	margin:0 13px;
	font-size:22px;
	font-family:Arial;
	line-height:30px;
	position:relative;
	}
.banner .swiper-pagination .swiper-pagination-bullet-active{
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
	}
.banner .swiper-pagination .swiper-pagination-bullet:hover,.banner .swiper-pagination .swiper-pagination-bullet-active{
	color:#fff;
	font-weight:bold;
	}

.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-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)
}

.zsjmnr .swiper-pagination-bullet {
	width: 144px;
	height: 2px;
	display: inline-block;
	background: #fff;
	margin:10px 0;
	outline:none;
}

.zsjmnr  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
}

.zsjmnr  .swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.zsjmnr  .swiper-pagination-bullet-active {
	background: #b50b1e;
}

.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
}

/*banner*/

/* tit

-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	border-bottom: solid 1px #ebebeb;
	padding-bottom:20px;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:60px;
	font-weight:bold;
	color:#252525;
	line-height:60px;
	text-transform:uppercase;
}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:32px;
	color:#252525;
	line-height:42px;
	}
.tit h3 a{
	font-size:32px;
	color:#252525;
	}
.bg{
	background:#f7f7f7;
	}
/* more
-------------------------------------------------------------- */
.more{
	overflow:hidden;
	}
.more a{
	display:block;
	width:200px;
	height:60px;
	background:#b50b1e url(../images/icon4.png) no-repeat 81% center;
	font-size:15px;
	color:#fff;
	line-height:60px;
	padding-left:48px;
	border-radius:5px;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.more a:hover{
	background:#fff url(../images/icon4.png) no-repeat 81% center;
	color:#808080;
	}

/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	position:relative;
	padding-top:248px;
	padding-bottom:220px;
	}
.about:before{
	content:"";
	width:912px;
	height:912px;
	border:solid 2px #f5f5f5;
	border-radius:50%;
	position:absolute;
	left:19%;
	top:42px;
	z-index:-1;
	}
.about .aboutimg{
	width:35%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	top:116px;
	}
.about .aboutimg img{
	max-width:100%;
	height:auto;
	}
.about .abouttit,.about .abouttit h4,.about .abouttit h5{
	width:100%;
	overflow:hidden;
	}
.about .abouttit h4{
	font-size:43px;
	color:#353535;
	line-height:50px;
	font-weight:normal;
	}
.about .abouttit h5{
	font-size:39px;
	color:#353535;
	line-height:50px;
	font-weight:normal;
	margin-top:8px;
	}
.about .abouttit span{
	width: 46px;
    height: 4px;
    display: block;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
    border-radius: 5px;
    margin-top: 29px;
	}
.aboutnr .aboutjs{
	width:33%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#ababab;
	margin-top:35px;
	}
.aboutlist{
	width:50%;
	overflow:hidden;
	margin-top:106px;
	}
.aboutlist ul{
	width:100%;
	overflow:hidden;
	}
.aboutlist ul li{
	overflow:hidden;
	padding:0;
	}
.aboutlist ul li h4{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#2d2d2d;
	font-weight:normal;
	}
.aboutlist ul li h4 span{
	overflow:hidden;
	font-size:80px;
	color:#2d2d2d;
	font-family: myTwoFont;
	line-height:80px;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.aboutlist ul li p{
	width:100%;
	overflow:hidden;
	color:#2d2d2d;
	font-size:16px;
	}
.aboutlist ul li:hover h4 span{
	background-image:-webkit-linear-gradient(left,#f9c411,#44d76b); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
	}
.about .aboutbtn{
	width:206px;
	height:206px;
	border-radius:50%;
	    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	position:absolute;
	right:28%;
	top:50%;
	margin-top:-103px;
	}
.about .aboutbtn a{
	display:block;
	width:100%;
	height:100%;
	background:url(../images/icon2.png) no-repeat center;
	}
.video{
	width:600px;
	height:525px;
	overflow:hidden;
	position:fixed;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	display:none;
	z-index:990;
	}
.videonr{
	width:100%;
	overflow:hidden;
	}
.video .closed{
	overflow:hidden;
	line-height:25px;
	float:right;
	font-size:18px;
	cursor:pointer;
	background-image:-webkit-linear-gradient(left,#f9c411,#44d76b); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent;
	}
/* fsls
-------------------------------------------------------------- */
.fsls{
	width:100%;
	overflow:hidden;
	background:url(../images/fslsbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:520px;
	padding-bottom:136px;
	}
.fsls .fslsnr{
	position:relative;
	}
.fsls .fslsnr .fslsmore{
	width:206px;
	height:206px;
	border-radius:50%;
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
  position:absolute;
  top:0;
  left:52%;
  z-index:99;
	}
.fsls .fslsnr .fslsmore a{
	display:block;
	text-align:center;
	line-height:206px;
	font-size:16px;
	color:#fff;
	letter-spacing:3px;
	}
.fsls .fslsnr .fslsmore a i{
	width:24px;
	margin-left:5px;
	}
.fslsnr .fslstit{
	width:100%;
	overflow:hidden;
	}
.fslsnr .fslstit h4{
	width:100%;
	overflow:hidden;
	color:#353535;
	font-size:50px;
	line-height:60px;
	font-weight:normal;
	}
.fslsnr .fslstit h4 a{
	color:#353535;
	font-size:50px;
}
.fslsnr .fslstit span{
	width:46px;
	height:4px;
	display:block;
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
  border-radius:5px;
  margin-top:34px;
	}
.fslsnr .fslstit p{
	width:100%;
	overflow:hidden;
	color:#353535;
	font-size:30px;
	line-height:40px;
	}
.fslsnr .fslsjs{
	width:33%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#adadad;
	margin-top:32px;
	}
.fslsnr .fslsjs p{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#adadad;
	}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	height:1000px;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
	}
.pro ul{
	width:100%;
	height:100%;
	overflow:hidden;
	}
.pro ul li{
	height:100%;
	overflow:hidden;
	position:relative;
	border-right:solid 1px rgba(255,255,255,0.5);
	}
.pro ul li:after{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	bottom:0;
	background: -webkit-linear-gradient(top, rgba(249,196,17,0.8) , rgba(68,215,107,0.8));
    background: -o-linear-gradient(bottom, rgba(249,196,17,0.8) , rgba(68,215,107,0.8));
    background: -moz-linear-gradient(bottom, rgba(249,196,17,0.8) , rgba(68,215,107,0.8));
    background: linear-gradient(to bottom, #rgba(249,196,17,0.8) , rgba(68,215,107,0.8));
	z-index:0;
	opacity:0;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.pro ul li:last-child{
	border-right:none;
	}
.pro ul li .pronr{
	width:100%;
	height:183px;
	overflow:hidden;
	padding:0 40px;
	position:absolute;
	left:0;
	bottom:126px;
	z-index:2;
	}
.pro ul li .num{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:20px;
	color:#e1e1e1;
	margin-bottom:37px;
	}
.pro ul li .proen{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:30px;
	color:#e1e1e1;
	line-height:35px;
	}
.pro ul li h4{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#e1e1e1;
	line-height:45px;
	font-weight:normal;
	}
.pro ul li span{
	width: 46px;
    height: 4px;
    display: block;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
    border-radius: 5px;
    margin-top: 34px;
	}
.pro ul li p{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.8);
	line-height:30px;
	font-size:20px;
	margin-top:40px;
	display:none;
	}
.pro ul li .promore{
	width:266px;
	height:62px;
	text-align:center;
	background:#fff;
	border-radius:30px;
	line-height:62px;
	font-size:17px;
	color:#252525;
	letter-spacing:5px;
	margin-top:102px;
	display:none;
	}
.pro ul li:hover:after{
	opacity:1;
	}
.pro ul li:hover p,.pro ul li:hover .promore{
	display:block;
	}
.pro ul li:hover .pronr{
	height:477px;
}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:#f1f1f1;
	padding-right:11.6%;
	margin-bottom:125px;
	}
.news .newslf{
	width:36%;
	height:1000px;
	overflow:hidden;
	position:relative;
	}
.news .newslf:before{
	content:"";
	width:100%;
	height:60%;
	position:absolute;
	left:0;
	bottom:0;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) , rgba(0,0,0,0.8));
    background: -o-linear-gradient(bottom,rgba(0,0,0,0) , rgba(0,0,0,0.8));
    background: -moz-linear-gradient(bottom, rgba(0,0,0,0) , rgba(0,0,0,0.8));
    background: linear-gradient(to bottom, rgba(0,0,0,0) , rgba(0,0,0,0.8));
	}
.news .newslf .newslfnr{
	width:100%;
	overflow:hidden;
	padding:0 88px;
	position:absolute;
	left:0;
	bottom:82px;
	}
.news .newslf .newslfnr .newsmore{
	width:70%;
	overflow:hidden;
	padding-top:21px;
	}
.news .newslf .newslfnr .newsmore span{
	display:block;
	width:266px;
	height:62px;
	text-align:center;
	line-height:62px;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	color:#fff;
	font-size:17px;
	border-radius:30px;
	letter-spacing:5px;
	}
.news .newslf .newslfnr h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	line-height:40px;
	color:#fff;
	font-weight:normal;
	margin-bottom:42px;
	}
.news .newslf .newslfnr .newsdate{
	width:30%;
	overflow:hidden;
	text-align:right;
	}
.news .newslf .newslfnr .newsdate span{
	width:100%;
	overflow:hidden;
	display:block;
	font-size:60px;
	color:#fff;
	line-height:60px;
	font-family: myTwoFont;
	}
.news .newslf .newslfnr .newsdate p{
	width:100%;
	overflow:hidden;
	font-family: myTwoFont;
	font-size:24px;
	line-height:30px;
	color:#fff;
	}
.news .newsrt{
	width:64%;
	overflow:hidden;
	padding-top:68px;
	}
.news .newsrt .newstit{
	width:100%;
	overflow:hidden;
	margin-bottom:46px;
	}
.news .newsrt .newstit h4{
	width:100%;
	overflow:hidden;
	font-size:40px;
	line-height:50px;
	color:#353535;
	text-align:center;
	font-weight:normal;
	}
.news .newsrt .newstit h4 a{
	font-size:40px;
	color:#353535;
}
.news .newsrt .newstit span{
	width: 46px;
    height: 4px;
    display: block;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
    border-radius: 5px;
	margin:22px auto 0;
	}
.news .newsrt .newsnrlf{
	width:42.5%;
	overflow:hidden;
	margin-left:5%;
	}
.news .newsrt .newsnrlf dl{
	background:#fff;
	padding-bottom:22px;
	border-radius:20px;
	}
.news .newsrt .newsnrlf dl,.news .newsrt .newsnrlf dl dt,.news .newsrt .newsnrlf dl dd{
	width:100%;
	overflow:hidden;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.news .newsrt .newsnrlf dl dt{
	position:relative;
	height:262px;
	}
.news .newsrt .newsnrlf dl:nth-child(2){
	margin-top:40px;
	border-radius:20px 20px 0 0;
	}
.news .newsrt .newsnrlf dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.news .newsrt .newsnrlf dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.news .newsrt .newsnrlf dl dd{
	padding:0 34px;
	}
.news .newsrt .newsnrlf dl dd h5{
	width:100%;
	overflow:hidden;
	height:66px;
	font-size:23px;
	color:#0c0c0c;
	line-height:33px;
	font-weight:normal;
	margin-top:47px;
	}
.news .newsrt .newsnrlf dl dd .newsdatert{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:16px;
	color:#a5a5a5;
	line-height:30px;
	background:url(../images/icon4.png) no-repeat right center;
	margin-top:24px;
	}
.news .newsrt .newsnrlf dl dd hr{
	width:100%;
	border:none;
	border-bottom:solid 1px #e6e6e6;
	margin-top:40px;
	}
.news .newsrt .newsnrlf dl dd span{
	width: 46px;
    height: 4px;
    display: block;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
    border-radius: 5px;
    margin-top: 34px;
	}
.news .newsrt .newsnrlf dl dd p{
	font-size:16px;
	color:#8e8e8e;
	margin-top:31px;
	margin-bottom:22px;
	}
.news .newsrt .newsnrlf dl:hover{
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	}
.news .newsrt .newsnrlf dl:hover dd h5,.news .newsrt .newsnrlf dl:hover dd p,.news .newsrt .newsnrlf dl:hover dd .newsdatert{
	color:#fff;
	}
.news .newsrt .newsnrlf dl:hover dd .newsdatert{
	background:url(../images/icon5.png) no-repeat right center;
	}
.news .newsrt .newsnrlf dl:hover dd span{
	background:#fff;
	}
.news .newsrt .newsnrlf dl:hover dd hr{
	border-bottom:solid 1px #fff;
	}

/* link
-------------------------------------------------------------- */
.link{
	font-size:16px;
	color:#a8a8a8;
	line-height:30px;
	padding:45px 0;
	}
.link span{
	font-size:18px;
	font-weight: bold;
	background-image:-webkit-linear-gradient(left,#f9c411,#44d76b); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
	text-transform:uppercase;
	}
.link a{
	font-size:15px;
	color:#888888;
	margin-right:10px;
	}
.linkrq{
	width:100%;
	overflow:hidden;
	background:#f1f1f1;
	}
	
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#f1f1f1 url(../images/footerbg.jpg) no-repeat right bottom;
	padding-bottom:82px;
	padding-top:100px;
}
.footer .footernr{
	padding-top:30px;
}
.footernr .footerlf{
	width:16%;
	overflow:hidden;
}
.footernr .footerlf ul{
	width:100%;
	overflow:hidden;
}
.footernr .footerlf ul li{
	width:100%;
	overflow:hidden;
	line-height:45px;
	font-size:35px;
	color:#101010;
	margin-bottom:40px;
}
.footernr .footerlf ul li a{
	font-size:35px;
	color:#101010;
}
.footernr .footerlf ul li a:hover{
	background-image:-webkit-linear-gradient(left,#f9c411,#44d76b); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
}
.footer .footerrt{
	width:84%;
	overflow:hidden;
	border-left:solid 1px #dcdcdc;
	padding-left:106px;
}
.footer .footerrt .teltit{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#101010;
	line-height: 22px;
}
.footer .footerrt .telnr{
	width:100%;
	overflow:hidden;
	font-size:60px;
	color:#101010;
	line-height:60px;
	margin-bottom:35px;
	font-family: myTwoFont;
}
.footer .footerrt .telnr a{
	font-size:60px;
	color:#101010;
	font-family: myTwoFont;
}
.footer .footerrt p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:16px;
	color:#888888;
}
.footer .footerrt p a{
	font-size:16px;
	color:#888888;
}
.footer .footerrt .botewm{
	width:100%;
	overflow:hidden;
	margin-top:92px;
}
.footer .footerrt .botewm img{
	max-width:100%;
	height:auto;
}
.bot{
	width:100%;
	overflow:hidden;
	background:#f1f1f1;
	}
.bot .botnr{
	font-size:15px;
	color:#131313;
	line-height:30px;
	padding:21px 0;
}
.bot a{
	font-size:15px;
	color:#131313;
}

/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:500px;
	background:url(../images/aboutban.jpg) no-repeat top center;
	background-size:cover;
	margin-top:100px;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:667px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:438px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:375px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:354px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:333px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:300px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:267px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:258px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:200px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:167px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:141px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e6e6e6;
}
.positionnr .positionrt{
	text-align:right;
	font-size:16px;
	color:#343434;
	line-height:30px;
	padding:15px 0 15px 30px;
	background:url(../images/icon6.png) no-repeat left 19.5px;
	}
.positionnr .positionrt a{
	font-size:16px;
	color:#343434;
	}
.positionnr .positionrt a:hover {
	background-image: -webkit-linear-gradient(left,#f9c411,#44d76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nmenu{
	overflow:hidden;
	}
.nmenu ul{
	overflow:hidden;
	margin:0;
	}
.nmenu ul li{
	overflow:hidden;
	float:left;
	line-height:60px;
	padding:0 20px;
	text-align:center;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nmenu ul li a{
	font-size:16px;
	color:#000;
	display:block;
	}
.nmenu ul li:hover,.nmenu ul li.active{
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f9c411 , #44d76b); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f9c411 , #44d76b); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f9c411 , #44d76b); /* 标准的语法 */
  border-radius:5px;
}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#fff;
}

/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#b21e23;
	line-height:45px;
	}
.ntit p{
	width:100%;
	overflow:hidden;
	font-size: 22px;
    color: #b21e23;
	line-height:32px;
	font-weight:bold;
	}
.margin{
	padding-top:100px;
	}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	width:18%;
	overflow:hidden;
	margin-top:30px;
	text-align:center;
	padding-top:286px;
}
.menu_n ul,.menu_n ul li{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	text-align:center;
	line-height:30px;
	margin:20px 0;
	position:relative;
}
.menu_n ul li:after{
	content:"";
	width:30px;
	height:1px;
	background:#b50b1e;
	position:absolute;
	right:70px;
	top:14.5px;
	opacity:0;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.menu_n ul li a{
	font-size:22px;
	color:#565656;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#b21e23;
}
.menu_n ul li:hover:after{
	opacity:1;
	}
.menu_n ul li:hover a{
	color:#fff;
	}
/* nabout
-------------------------------------------------------------- */
.nabout{
	margin-top:60px;
	margin-bottom:60px;
	}
.nabout .tit{
	width:100%;
	overflow:hidden;
	}
.naboutnr{
	width:100%;
	overflow:hidden;
	margin-top:65px;
	font-size:16px;
	line-height:30px;
	color:#000;
	}
.naboutnr p{
	font-size:16px;
	line-height:30px;
	color:#000;
	}
.naboutnr img{
	max-width:100%;
	height:auto;
	}
/* honor
-------------------------------------------------------------- */
.honor{
	padding-top:208px;
	padding-bottom:200px;
	}
.honor,.honornr{
	width:100%;
	overflow:hidden;
	}
.honornr{
	padding-bottom:100px;
	}
.honorimg{
	width:100%;
	overflow:hidden;
	}
.honornr{
	margin-top:40px;
	}
.honornr .swiper-slide{
	padding:0 20px;
	text-align:center;
	}
.honornr .swiper-button{
	overflow:hidden;
	text-align:center;
	margin-top:44px;
	}
.honornr .swiper-button div{
	width:56px;
	height:56px;
	border:solid 1px #fff;
	border-radius:50%;
	display:inline-block;
	margin:0 27px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.honornr .swiper-button-prev{
	background:url(../images/prev5.png) no-repeat center;
	}
.honornr .swiper-button-next{
	background:url(../images/next5.png) no-repeat center;
	}
.honornr .swiper-button div:hover{
	background-color:#b50b1e;
	border:solid 1px #b50b1e;
	}
/* npro
-------------------------------------------------------------- */
.npro{
	margin-top:60px;
	margin-bottom:60px;
	}
.npro dl{
	padding:0 10px;
	margin:20px 0;
	}
.npro dl dt,.npro dl dd{
	width:100%;
	overflow:hidden;
	}
.npro dl dt{
	width:100%;
	overflow:hidden;
	height:314px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	font-weight:normal;
	}
.npro dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.npro dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.npro dl dd{
	padding:17px 0;
	font-size:18px;
	line-height:30px;
	text-align:center;
	color:#252525;
	background: #f5f5f5;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.npro dl:hover dd{
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	color:#fff;
}
.nprojs h1{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#1f1f1f;
	line-height:36px;
	font-weight:normal;
	border-bottom:solid 1px #eaeaea;
	padding-bottom:24px;
}
.npronr .nproimg{
	overflow:hidden;
	padding:0;
	}
.npronr .nproimg img{
	max-width:100%;
	height:auto;
	}
.nprojs{
	overflow:hidden;
	padding:0 0 0 40px;
}
.nlxfs{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.nlxfs a{
	display:block;
	width:160px;
	height:50px;
	text-align:center;
	font-size:16px;
	    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	line-height:50px;
	color:#fff;
	border-radius:10px;
	}
.npronr .nprojs .nprossfl{
	width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #343434;
    margin-top: 20px;
	}
.npronr .nproms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	margin-top:20px;
	line-height:26px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
	font-size:18px;
	line-height:40px;
	background:#f0f0f0;
	margin-top:40px;
	padding:0 20px;
	color:#000;
}
.nprofbnr{
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:30px;
	}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#fff;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
.npro-about{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
}
.npro-about p,.npro-about a,.npro-about span{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
}
.npro-about img{
	max-width:100%;
	height:auto;
}
.npro-about a:hover{
	color:#b21e23;
}
.npro-about a{
	text-decoration: underline;
}
.pronav .active{
    color: #b21e23;
}

.npro-about .pronav{
    width: 100%;
    height: 80px;
}
.npro-about h3{
	width: 100%;
    overflow: hidden;
	line-height: 35px;
    font-size: 24px;
	color:#333;
	margin-bottom:30px;
	/*float: left;*/
}
.h h3{
	width: 33%;
    overflow: hidden;
	line-height: 35px;
    font-size: 24px;
	color:#333;
	margin-bottom:30px;
	float: left;
}
/* nhonor
-------------------------------------------------------------- */
.nhonor{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhonornr{
	width:100%;
	overflow:hidden;
}
.nhonornr ul{
	width:100%;
	overflow:hidden;
	margin:0;
	}
.nhonornr ul li{
	width:23%;
	overflow:hidden;
	float:left;
	margin:20px 1%;
	text-align:center;
	}
.nhonornr ul li .nhonorimg{
	width:100%;
	overflow:hidden;
	position:relative;
	height:220px;
}
.nhonornr ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:5px;
}
.nhonornr ul li .nhonorimg img{
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.nhonornr ul li:hover .nhonorimg img{
	transform: scale(1.1);
	}
.nhonornr ul li:hover p{
	color:#55d562;
}
/* nsb
-------------------------------------------------------------- */
.nsb{
	margin-top:60px;
	margin-bottom:60px;
	}
.nsbnr{
	width:100%;
	overflow:hidden;
}
.nsbnr ul{
	width:100%;
	overflow:hidden;
	margin:0;
	}
.nsbnr ul li{
	width:23%;
	overflow:hidden;
	float:left;
	margin:20px 1%;
	text-align:center;
	}
.nsbnr ul li .nsbimg{
	width:100%;
	overflow:hidden;
	position:relative;
	height:148px;
}
.nsbnr ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:5px;
}
.nsbnr ul li .nsbimg img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.nsbnr ul li:hover .nsbimg img{
	transform:translate(-50%, -50%) scale(1.1);
	}
	
/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:60px;
	margin-bottom:60px;
	}
.nnews dl{
	width:100%;
	overflow:hidden;
	background: #f5f5f5;
	margin:45px 0;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nnews dl dt{
	width:24%;
	overflow:hidden;
	float:left;
	position: relative;
    height: 208px;
	}
.nnews dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.nnews dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nnews dl dd{
	width:76%;
	overflow:hidden;
	float:left;
	padding:0 20px 0 60px;
	}
.nnews dl dd .nnewstit{
	width:76%;
	overflow:hidden;
	font-size:20px;
	color:#343434;
	line-height:30px;
	margin-top:18px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nnews dl dd .nnewsms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#737373;
	line-height:30px;
	margin-top:15px;
	margin-bottom:34px;
	}
.nnews dl dd .nnewsmore{
	width:114px;
	overflow:hidden;
	font-size:16px;
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	color:#fff;
	line-height:34px;
	text-align:center;
	border-radius:5px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nnews dl dd .nnewsdate{
	width:24%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#55d562;
	text-align:right;
	margin-top:18px;
	}
.nnews dl:hover, dl:hover .nnewsnr{
	background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
	}
.nnews dl:hover dd .nnewstit,.nnews dl:hover dd .nnewsms,.nnews dl:hover dd .nnewsdate{
	color:#fff;
	}
.nnews dl:hover dd .nnewsmore{
	background:#fff;
	color:#333;
	}
.nnews h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
	line-height:40px;
	font-weight: normal;
	}
.nnews .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.nnews .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr p{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.nnews .fbnr p,.nnews .fbnr strong,.nnews .fbnr span,.nnews .fbnr a{
    font-size: 16px;
    color: #333;
}
.nnews .fbnr img{
	max-width:100%;
	height:auto;
	}
/* nzsjm
-------------------------------------------------------------- */
.nzsjm {
	width:100%;
	overflow:hidden;
	margin-top:60px;
	color:#fff;
	font-size:16px;
	line-height:30px;
}
.nzsjm p{
	overflow:hidden;
	color:#fff;
	font-size:16px;
	line-height:30px;
}
.nzsjm img{
	max-width:100%;
	height:auto;
}
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.ncontact .ncontactnr .ncontactlf,.ncontact .ncontactnr .newm{
	overflow:hidden;
	padding:0;
	}
.ncontact .ncontactnr .ncontactlf h4{
	width:100%;
	overflow:hidden;
	font-size:28px;
	font-weight:normal;
	}
.ncontact .ncontactnr .ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	}
.ncontact .ncontactnr .ncontactlf p a{
	font-size:16px;
}
.ncontact .ncontactnr .newm dl{
	overflow:hidden;
	float:right;
	}
.ncontact .ncontactnr .newm dl dt,.ncontact .ncontactnr .newm dl dd{
	overflow:hidden;
	text-align:center;
	}
.ncontact .ncontactnr .newm dl dt img{
	max-width:100%;
	height:auto;
	border:solid 1px #ccc;
	}
.ncontact .ncontactnr .newm dl dd{
	line-height:30px;
	}
.map{
	width:100%;
	overflow:hidden;
	text-align:center;
	border-radius:3s0px;
	margin-top:64px;
	}
.map img{
	max-width:100%;
	height:auto;
	}
/* nmessage
-------------------------------------------------------------- */
.nmessage{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	margin-bottom:80px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:360px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.nmessagenr dl:last-child{
	width:100%;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon7.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon8.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr dl:nth-child(3) dd textarea{
	background:#fff url(../images/icon9.png) no-repeat 24px 21.5px;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: -webkit-linear-gradient(left, #f9c411 , #44d76b);
    background: -o-linear-gradient(right, #f9c411 , #44d76b);
    background: -moz-linear-gradient(right, #f9c411 , #44d76b);
    background: linear-gradient(to right, #f9c411 , #44d76b);
    color: #fff;
	text-align:center;
	font-size:18px;
}
.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:#55d562;
}

.a_txt,.rg{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.icon1,.icon2,.banner .search{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: 1440px) and (max-width: 1599px) {
	.npro dl dt{
		height:268px;
	}
	.nhonornr ul li .nhonorimg{
		height:191px;
	}
	.news .newsrt .newsnrlf dl dt {
		height: 229px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.npro dl dt{
		height:252px;
	}
	.nhonornr ul li .nhonorimg{
		height:180px;
	}
	.nsbnr ul li .nsbimg{
		height:139px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:216px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.npro dl dt{
		height:236px;
	}
	.nhonornr ul li .nhonorimg{
		height:170px;
	}
	.nsbnr ul li .nsbimg{
		height:131px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:204px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.npro dl dt{
		height:211px;
	}
	.nhonornr ul li .nhonorimg{
		height:153px;
	}
	.nsbnr ul li .nsbimg{
		height:118px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:183px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.npro dl dt{
		height:186px;
	}
	.nhonornr ul li .nhonorimg{
		height:136px;
	}
	.nsbnr ul li .nsbimg{
		height:105px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:163px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.npro dl dt{
		height:180px;
	}
	.nhonornr ul li .nhonorimg{
		height:131px;
	}
	.nsbnr ul li .nsbimg{
		height:102px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:236px;
	}
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	.npro dl dt{
		height:238px;
	}
	.nhonornr ul li .nhonorimg{
		height:155px;
	}
	.nsbnr ul li .nsbimg {
		height: 120px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:205px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 859px) {
	.npro dl dt{
		height:211px;
	}
	.nhonornr ul li .nhonorimg{
		height:139px;
	}
	.nsbnr ul li .nsbimg {
		height: 107px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:183px;
	}
}
@media only screen and (min-width: 641px) and (max-width: 767px) {
	.nhonornr ul li .nhonorimg{
		height:116px;
	}
	
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.npro dl dt{
		height:174px;
	}
	.nsbnr ul li .nsbimg {
		height: 89px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 640px) {
	.nhonornr ul li .nhonorimg{
		height:149px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.npro dl dt{
		height:144px;
	}
	.nsbnr ul li .nsbimg {
		height: 75px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.npro dl dt{
		height:111px;
	}
	.nhonornr ul li .nhonorimg{
		height:117px;
	}
	.nsbnr ul li .nsbimg {
		height: 91px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:220px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
	.npro dl dt{
		height:206px;
	}
	.nnews dl dt{
		height:194px;
	}
	.nhonornr ul li .nhonorimg{
		height:104px;
	}
	.nsbnr ul li .nsbimg {
		height: 80px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:194px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
	.npro dl dt{
		height:174px;
	}
	.nnews dl dt{
		height:165px;
	}
	.nhonornr ul li .nhonorimg{
		height:88px;
	}
	.nsbnr ul li .nsbimg {
		height: 68px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:165px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.npro dl dt{
		height:150px;
	}
	.nnews dl dt{
		height:145px;
	}
	.nhonornr ul li .nhonorimg{
		height:77px;
	}
	.nsbnr ul li .nsbimg {
		height: 60px;
	}
	.news .newsrt .newsnrlf dl dt{
		height:145px;
	}
}

@media(max-width:1768px) {
	.news .newslf .newslfnr {
		padding: 0 70px;
	}
	.news .newslf .newslfnr h4{
		font-size:26px;
		line-height:36px;
	}
}
@media(max-width:1680px) {
	.about .abouttit h4{
		font-size:40px;
	}
	.about .abouttit h5{
		font-size:36px;
	}
	.news .newslf .newslfnr {
		padding: 0 60px;
	}
	.news .newslf .newslfnr h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.pro ul li p{
		font-size:18px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
	}
	.banner .swiper-button {
		right: 25%;
	}
	.about .abouttit h4 {
		font-size: 36px;
		line-height:46px;
	}
	.about .abouttit h5 {
		font-size: 32px;
		line-height:42px;
	}
	.aboutnr .aboutjs {
		width: 40%;
	}
	.aboutlist ul li h4 span{
		font-size:70px;
		line-height:70px;
	}
	.pro ul li h4 {
		font-size: 32px;
		line-height: 42px;
	}
	.fslsnr .fslsjs {
		width: 40%;
	}
	.pro ul li .proen{
		font-size:24px;
	}
	.pro ul li p{
		font-size:18px;
	}
	.news {
		padding-right: 6%;
	}
	.news .newsrt .newsnrlf {
		width: 45%;
	}
	.news .newslf .newslfnr .newsmore span {
		width: 240px;
	}
	.news .newslf .newslfnr .newsdate span{
		font-size:50px;
		line-height:50px;
	}
	.news .newslf .newslfnr .newsdate p{
		font-size:20px;
	}
}
@media(max-width:1440px) {
	.nav{
		margin-right:30px;
	}
	.banner .swiper-button {
		right: 20%;
	}
	.aboutlist ul li h4 span{
		font-size:60px;
		line-height:60px;
	}
	.pro ul li h4 {
		font-size: 28px;
		line-height: 38px;
	}
	.pro ul li .proen {
		font-size: 20px;
		line-height: 30px;
	}
	.news .newslf .newslfnr .newsmore span {
		width: 90%;
	}
	.news .newslf .newslfnr {
		padding: 0 40px;
	}
	.footernr .footerlf ul li,.footernr .footerlf ul li a{
		font-size:30px;
		line-height:40px;
	}
}
@media(max-width:1360px) {
	.nav .menu > li a {
		padding: 0 25px;
	}
	.banner .swiper-button {
		right: 15%;
	}
	.aboutnr .aboutjs {
		width: 45%;
	}
	.fslsnr .fslstit h4,.fslsnr .fslstit h4 a{
		font-size: 46px;
		line-height: 56px;
	}
	.pro ul li .pronr {
		padding: 0 35px;
	}
	.pro ul li p {
		font-size: 16px;
	}
	.footernr .footerlf ul li,.footernr .footerlf ul li a{
		font-size:26px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 20px;
	}
	.nav .menu > li a {
		padding: 0 20px;
	}
	.banner .swiper-button {
		right: 6%;
	}
	.about .abouttit h4 {
		font-size: 32px;
		line-height:42px;
	}
	.about .abouttit h5 {
		font-size: 28px;
		line-height:38px;
	}
	.aboutlist ul li h4 span {
		font-size: 56px;
		line-height: 56px;
	}
	.news .newslf .newslfnr h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.fslsnr .fslstit h4,.fslsnr .fslstit h4 a{
		font-size: 42px;
		line-height: 52px;
	}
	.fslsnr .fslstit p {
		font-size: 26px;
		line-height: 36px;
	}
	.pro ul li .promore{
		width:100%;
	}
	.news .newslf .newslfnr {
		padding: 0 30px;
	}
	.news .newsrt .newsnrlf dl dd {
		padding: 0 20px;
	}
	.news .newsrt .newsnrlf dl dd h5{
		font-size:20px;
		line-height:30px;
	}
	.footernr .footerlf ul li, .footernr .footerlf ul li a {
		font-size: 22px;
	}
}
@media(max-width:1200px) {
	
	
}
@media(max-width:1152px) {
	.nav {
		margin-right: 0;
	}
	.nav .menu > li a {
		padding: 0 15px;
	}
	.banner .swiper-pagination{
		left:220px;
	}
	.banner .swiper-pagination .swiper-pagination-bullet{
		margin:0 10px;
	}
	.aboutlist ul li h4 span {
		font-size: 52px;
		line-height: 52px;
	}
	.about .abouttit h4 {
		font-size: 28px;
		line-height: 38px;
	}
	.about .abouttit h5 {
		font-size: 24px;
		line-height: 34px;
	}
	.pro ul li .pronr {
		padding: 0 25px;
	}
	.pro ul li .proen {
		font-size: 18px;
	}
	.pro ul li h4 {
		font-size: 24px;
		line-height: 34px;
	}
}
@media(max-width:1080px) {
	.nav .menu > li a {
		padding: 0 10px;
	}
}
@media(max-width:1024px) {
	.banner .swiper-button .swiper-button-next {
		margin-left: 15px;
	}
}
@media(max-width:1023px) {
	.news {
		padding-left: 6%;
	}
	.news .newslf{
		display:none;
	}
	.news .newsrt{
		width:100%;
	}
	.news .newsrt .newsnrlf{
		width:46%;
		margin:0 2%;
	}
	.news .newsrt .newstit h4,.news .newsrt .newstit h4 a{
		font-size:36px;
		line-height:46px;
	}
}
@media(max-width:991px) {
	.banner .down,.banner .swiper-button{
		display:none;
	}
	.banner_bot {
		width: 100%;
		height: 86px;
		background: none;
	}
	.banner .swiper-pagination {
		left: 0;
		bottom:10px;
	}
	.aboutnr .aboutjs {
		width: 100%;
	}
	.aboutlist {
		width: 100%;
		margin-top: 40px;
	}
	.about .aboutimg{
		position:inherit;
		width:100%;
		top:50px;
	}
	.fsls{
		background-position: right;
	}
	.fslsnr .fslsjs {
		width: 100%;
	}
	.pro{
		height:800px;
	}
	.pro ul li{
		height:400px;
	}
	.pro ul li .promore{
		width:200px;
		margin-top:30px;
	}
	.pro ul li p{
		margin-top:20px;
	}
	.pro ul li .pronr{
		bottom:50px;
	}
	.pro ul li:nth-child(1),.pro ul li:nth-child(2){
		border-bottom: solid 1px rgba(255,255,255,0.5);
	}
	.pro ul li span{
		margin-top:20px;
	}
	.pro ul li .num{
		margin-bottom:20px;
	}
	.pro ul li:hover .pronr{
		height:310px;
	}
	.nsbnr ul li{
		width: 31.33333333%;
	}
	.nhonornr ul li{
		width:31.33333333333%;
	}
	.ncontact .ncontactnr .newm{
		margin-top:30px;
	}
	.ncontact .ncontactnr .newm dl{
		float:left;
	}
	.nmessagenr dl dd textarea{
		height:240px;
	}
	.about {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.nprojs {
		padding: 0;
		margin-top:30px;
	}
	.nprojs h1{
		font-size:22px;
		line-height:32px;
	}
	.nlxfs{
		margin-top:30px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.nnews h1{
		font-size:22px;
		line-height:35px;
	}
	.positionnr .positionrt,.nmenu{
		width:100%;
	}
	.positionnr .positionrt{
		text-align:left;
	}
	.fsls .fslsnr .fslsmore a i{
		display:none;
	}
	.fsls .fslsnr .fslsmore {
		width: 106px;
		height: 106px;
		left:80%;
	}
	.fsls .fslsnr .fslsmore a{
		line-height:106px;
	}
	.npro dl dd {
		padding: 10px 0;
	}
	.nmenu ul li{
		line-height:40px;
	}
	.footer {
		padding-top: 30px;
	}
	.footernr .footerlf,.footer .footerrt{
		width:100%;
	}
	.footer .footerrt{
		padding-left:0;
		border-left:none;
	}
	.footernr .footerlf ul li{
		width:16.666666666667%;
		text-align:center;
		float:left;
	}
}
@media(max-width:860px) {
	
}
@media(max-width:767px) {
	.pro ul li .promore {
		width: 130px;
		height: 40px;
		line-height: 40px;
		letter-spacing: 2px;
	}
	.tit h3,.tit h3 a{
		font-size: 28px;
		line-height:38px;
	}
	.news{
		margin-bottom:60px;
	}
	.news .newsrt .newsnrlf{
		width:100%;
		margin:0 0 40px 0;
	}
	.news .newsrt .newsnrlf dl dd h5{
		height:auto;
	}
	.news .newsrt .newsnrlf dl dd h5{
		margin-top:20px;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right:0;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left: 0;
	}
	.npro dl dd{
		font-size:16px;
	}
	.nnews dl dt,.nnews dl dd{
		width:100%;
	}
	.nnews dl dd {
		padding: 0 20px 20px 20px;
	}
	.nnews dl dd .nnewstit,.nnews dl dd .nnewsdate{
		width:100%;
	}
	.nnews dl dd .nnewsdate{
		text-align:left;
	}
	.nnews h1 {
		font-size: 20px;
		line-height: 30px;
	}
	.nmenu ul li {
		padding: 0;
		width: 20%;
	}
	.footernr .footerlf ul li, .footernr .footerlf ul li a {
		font-size: 20px;
	}
	.footer{
		background: #f1f1f1;
		padding-bottom: 20px;
	}
	.footer .footerrt .botewm {
		margin-top: 30px;
	}
}
@media(max-width:640px) {
	.logo{
		padding:10px 0;
	}
	.logo img{
		height:40px;
	}
	.header{
		height:60px;
	}
	.rg{
		padding-top:18px;
	}
	.rg img{
		height:24px;
	}
	.language{
		display:none;
	}
	.banner,.banner_n{
		margin-top:60px;
	}
	.banner .swiper-slide .img img {
		width: 110%;
	}
	.tit h3,.tit h3 a{
		font-size: 24px;
		line-height:34px;
	}
	.about {
		padding-top: 60px;
	}
	.aboutlist ul li h4 span {
		font-size: 48px;
		line-height: 48px;
	}
	.about .aboutbtn {
		width: 110px;
		height: 110px;
		margin-top: -80px;
	}
	.news .newsrt .newstit h4, .news .newsrt .newstit h4 a {
		font-size: 34px;
		line-height: 44px;
	}
	.nsbnr ul li p{
		font-size:14px;
	}
	.nhonornr ul li {
		width: 48%;
	}
	.video{
		width: 88%;
		height: auto;
	}
	.video iframe{
		width: 100%;
		height: auto;
	}
	.fslsnr .fslstit h4,.fslsnr .fslstit h4 a{
		font-size: 38px;
		line-height: 48px;
	}
	.fslsnr .fslstit p {
		font-size: 22px;
		line-height: 32px;
	}
	.fsls .fslsnr .fslsmore{
		display:none;
	}
	.fsls {
		background-size: 991px;
		padding-top: 110px;
	}
	.nmenu ul li {
		width: 33.3333333333%;
	}
	.footer {
		padding-top: 0;
	}
	.footernr .footerlf ul li, .footernr .footerlf ul li a {
		font-size: 18px;
	}
	.footer .footerrt .telnr,.footer .footerrt .telnr a{
		font-size: 50px;
		line-height: 50px;
	}
}
@media(max-width:540px) {
	.about .abouttit h4 {
		font-size: 24px;
		line-height: 34px;
	}
	.about .abouttit h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.about .aboutbtn {
		margin-top: -40px;
	}
	.aboutlist ul li h4 span {
		font-size: 44px;
		line-height: 44px;
	}
	.fsls {
		background-size: 760px;
		padding-top:80px;
		padding-bottom:80px;
	}
	.fslsnr .fslstit h4,.fslsnr .fslstit h4 a{
		font-size: 34px;
		line-height: 44px;
	}
	.nhonornr ul li p{
		font-size:14px;
	}
}
@media(max-width:539px) {
	.nsbnr ul li {
		width: 48%;
	}
}
@media(max-width:500px) {
	.aboutlist ul li h4 span {
		font-size: 40px;
		line-height: 40px;
	}
	.about .aboutbtn {
		margin-top: 0;
	}
	.footernr .footerlf ul li {
		width: 33.3333333333%;
		line-height:30px;
		margin-bottom:20px;
	}
}
@media(max-width:425px) {
	.about .aboutbtn {
		margin-top: 60px;
	}
	.about .aboutbtn {
		margin-top: 130px;
	}
	.aboutlist ul li h4 span {
		font-size: 32px;
	}
	.aboutlist ul li h4,.aboutlist ul li p{
		font-size:14px;
	}
	.about .abouttit h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.about .abouttit h5 {
		font-size: 18px;
	}
	.fsls {
		background-size: 660px;
	}
	.pro ul li .pronr{
		padding: 0 15px;
	}
	.pro ul li .proen {
		font-size: 16px;
	}
	.pro ul li p {
		font-size: 14px;
	}
	.pro ul li h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.pro ul li p {
		font-size: 15px;
		line-height: 25px;
	}
	.pro ul li .promore {
		width: 110px;
		letter-spacing: 0;
	}
	.nnews dl dd .nnewstit{
		font-size:18px;
	}
	.footer .footerrt .telnr,.footer .footerrt .telnr a{
		font-size: 40px;
		line-height: 40px;
	}
}
@media(max-width:424px) {
	.npro dl{
		width:100%;
	}
}
@media(max-width:375px) {
	.aboutlist ul li h4 span {
		font-size: 26px;
	}
	.pro ul li p {
		font-size: 14px;
		line-height:25px;
	}
	.nmenu ul li {
		width: 50%;
	}
	.footer .footerrt .telnr,.footer .footerrt .telnr a{
		font-size: 36px;
	}
}
@media(max-width:319px) {
	.about .aboutbtn {
		margin-top: 170px;
	}
	.pro ul li .pronr {
		padding: 0 10px;
	}
	.pro ul li p {
		line-height:20px;
	}
}