@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myThreeFont;
	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:"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:"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:absolute;
	z-index: 999;
	top:0;
	}
.header .headerrt{
	padding-top:16px;
}
.toptel{
	overflow:hidden;
	padding:27.5px 0;
}
.top{
	width:100%;
	overflow:hidden;
	line-height:30px;
	color:#fff;
	text-align:right;
	padding-bottom:6px;
	}
.top a,.top span{
	color:#fff;
	}
.top .e{
	margin-left:26px;
	margin-right:20px;
}
.logo{
	height:100%;
	overflow:hidden;
	padding:19px 0;
}
.logo img{
	max-width:100%;
	height:auto;
}

.small{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1); 
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

/* 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;

}

.nav{
	text-align:right;
	position:relative;
	border-top:solid 1px #fff;
}
.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;
	position:relative;
	}
.nav .menu > li.active:before{
	width:100%;
	}

.nav .menu > li a{
	color:#fff;
	font-size:18px;
	display:block;
	line-height:48px;
	margin:0 25px;
	text-transform:uppercase;
	position:relative;
	z-index:9;
	}
.nav .menu > li:first-child a{
	margin-left:0;
}
.nav .menu > li:last-child a{
	margin-right:0;
}
.nav .menu > li > a:hover{
	color:#282461;
}


.nav .menu > li .submenu{

	width:160px;
	left:50%;
	margin-left:-80px;
	}

.nav .menu > li .submenu li{

	width:100%;
	line-height:30px;
	background:#fff;
	text-align:center;
	margin-top:1px;
}

.nav .menu > li .submenu li a{

	display:block;
	color:#000;
	padding:10px 0;
	font-size:16px;
	line-height:30px;
	margin:0;
}

.nav .menu > li .submenu li:hover{

	background:#282461;

}
.nav .menu > li .submenu li:hover a{
	color:#fff;
	}

.cont{
	width:1554px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1554px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	position:relative;
	}
.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 .bannernr{
	overflow:hidden;
	position:absolute;
	left:9.5%;
	bottom:30%;
	z-index:99;
}
.banner .img .bannernr p{
	width:100%;
	overflow:hidden;
	font-size:48px;
	color:#fff;
	font-weight:bold;
	line-height:60px;
	text-transform:uppercase;
}
.banner .img .bannernr p span{
	color:#e91b25;
	font-size:48px;
}
.banner .more{
	margin-top:52px;
}
.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
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:50px;
	z-index:99;
	}
.banner .swiper-button div{
	width:60px;
	height:60px;
	overflow:hidden;
	border:solid 1px #fff;
	float:left;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.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;
	border-left:none;
}
.banner .swiper-button .swiper-button-prev:hover{
	background:#fff url(../images/prevh.png) no-repeat center;
}
.banner .swiper-button .swiper-button-next:hover{
	background:#fff url(../images/nexth.png) no-repeat center;
}
/*shubiao*/
.banner .down{
	width:66px;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#fff;
	position:absolute;
	left:50%;
	margin-left:-33px;
	bottom:16px;
	z-index:99; 
}
.banner .down span{
	display:block;
	width:1px;
	height:96px;
	background:#fff;
	margin:auto;
	}
/*shubiao*/
.shubiao{
	position:absolute;
	left:50%;
	margin-left:-15px;
	bottom:18px;
	z-index:99;
}
.shubiao span{
	width:1px;
	height:116px;
	background:#fff;
	position:absolute;
	left:27.5px;
	bottom:100px;
}
.mouse {
  position: relative;
  width: 22px;
  height: 36px;
  border-radius: 30px;
  border: 2px solid #fff;
  margin:0 auto 0;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 3px;
  height: 8px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.shubiao p{
	overflow:hidden;
	text-align:center;
	color:#fff;
	margin-top:2px;
}
.banner .down p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	letter-spacing:2px;
	line-height:30px;
}
.banner .swiper-slide img{
		width:100%;
		height:auto;
		min-height:100%;
		transition:1s linear 2s;
		}

@-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);
  }
}
.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-lock {
	display: none
}

.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:#fff;
	line-height:20px;
	font-size:18px;
	font-weight:bold;
	font-family:Arial;
	float:left;
	position:relative;
}

.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: 12px;
	height:12px;
	display: inline-block;
	margin:0 15px;
	border:solid 1px #fff;
	outline:none;
	border-radius:50%;
}

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:#fff;
}

.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-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*/

.banner .swiper-pagination {
	width:100%;
	overflow:hidden;
	text-align:center;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	position:absolute;
	left:0;
	bottom:40px;
	z-index:99;
}
.banner .swiper-pagination-fraction span{
	font-size:30px;
	color:#fff;
	font-family:Arial;
}
.banner .swiper-pagination-fraction .swiper-pagination-current{
	font-size:56px;
	font-family:Arial;
}
.banner .swiper-pagination-fraction span{
	line-height:63px;
}
.banner .swiper-pagination-fraction span:nth-child(2):after{
	content:"/";
	position:absolute;
	left:0;
	bottom:0;
	color:#fff;
	font-size:30px;
}
.banner .swiper-pagination-fraction span:nth-child(2){
	padding-left:10px;
	padding-top:10px;
}
.banner .swiper-scrollbar{
	width:124px;
	height:5px;
	overflow:hidden;
	background:#fff;
	border-radius:5px;
	position:absolute;
	left:11.6%;
	bottom:40px;
	z-index:99;
}
.banner .swiper-scrollbar .swiper-scrollbar-drag{
	margin:0 6px;
}
.banner .swiper-scrollbar-drag {
    background: #55ae97;
}
/* tit

-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#282461;
	line-height:34px;
	text-transform:uppercase;
	}
.tit h3 a{
	font-size:30px;
	color:#282461;
	}
.more{
	width:100%;
	overflow:hidden;
	}
.more a{
	width:190px;
	height:60px;
	line-height:60px;
	font-size:18px;
	color:#fff;
	border:solid 2px #fff;
	display:block;
	border-radius:30px;
	text-align:center;
	}
.more a i{
	float:right;
	margin-right:30px;
	}

/* partner
-------------------------------------------------------------- */
.partner{
	width:100%;
	height:960px;
	overflow:hidden;
	background:url(../images/map.jpg) no-repeat top center;
	position:relative;
	}
.partnerrt{
	width:22%;
	overflow:hidden;
	}
.partnertit{
	width:100%;
	overflow:hidden;
	margin-top:272px;
	}
.partnertit h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#fff;
	line-height:55px;
	font-weight:normal;
	text-align:right;
	}
.partnertit h3 a{
	font-size:45px;
	color:#fff;
	}
.partnertit hr{
	width:70px;
	border:none;
	border-bottom:solid 1px #fff;
	float:right;
	margin-top:38px;
	}
.partnernr .partnerjs{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#fff;
	line-height:30px;
	text-align:right;
	margin-top:76px;
	}
.partnermore{
	width:100%;
	overflow:hidden;
	margin-top:130px;
	}
.partnermore a{
	display:block;
	width:160px;
	height:50px;
	line-height:50px;
	background:#c70b19 url(../images/icon2.png) no-repeat 76% center;
	font-size:16px;
	color:#fff;
	padding-left:30px;
	float:right;
	}
 @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);
	}
}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	padding-bottom:170px;
	margin-top:82px;
	}
.aboutnr{
	width:62%;
	overflow:hidden;
	background:rgba(40,36,97,0.5);
	border-radius:10px;
	padding:45px 50px 63px 50px;
	margin-top:230px;
}
.aboutnr .aboutlf{
	width:40%;
	overflow:hidden;
}
.aboutnr .aboutlf .tit h3,.aboutnr .aboutlf .tit h3 a{
	color:#fff;
}
.aboutnr .aboutrt{
	width:60%;
	overflow:hidden;
}
.aboutnr .aboutrt h5{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	text-transform:uppercase;
	line-height:25px;
	margin-bottom:15px;
}
.aboutjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.aboutmenu{
	width:100%;
	overflow:hidden;
	margin-top:56px;
}
.aboutmenu dl,.aboutmenu dl dt,.aboutmenu dl dd{
	overflow:hidden;
	float:left;
}
.aboutmenu dl:last-child{
	margin-left:60px;
}
.aboutmenu dl dt img{
	max-width:100%;
	height:auto;
}
.aboutmenu dl dd{
	font-size:16px;
	color:#fff;
	line-height:45px;
	text-transform:uppercase;
	margin-left:15px;
}

/* pro
-------------------------------------------------------------- */
.pro{
	margin-top:60px;
	margin-bottom:30px;
	}
.prolf{
	width:25%;
	overflow:hidden;
	}
.prort{
	width:75%;
	overflow:hidden;
	}
.prort h5{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#282461;
	line-height:30px;
	text-transform:uppercase;
	margin-bottom:15px;
}
.prort .projs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
}
.prort ul{
	width:100%;
	overflow:hidden;
	margin-top:26px;
}
.prort ul li{
	width:48%;
	height:240px;
	overflow:hidden;
	float:left;
	border-radius:10px;
	margin:25px 0;
	position:relative;
}
.prort ul li:nth-child(2n+1){
	margin-right:2%;
}
.prort ul li:nth-child(2n){
	margin-left:2%;
}
.prort ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
	object-fit:cover;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.prort ul li:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.prort ul li .protit{
	width:70%;
	overflow:hidden;
	padding:15px 20px;
	font-size:16px;
	color:#fff;
	line-height:30px;
	background: -webkit-linear-gradient(left, rgba(40,36,97,1), rgba(40,36,97,0));
    background: -o-linear-gradient(right, rgba(40,36,97,1), rgba(40,36,97,0));
    background: -moz-linear-gradient(right, rgba(40,36,97,1), rgba(40,36,97,0));
	background: linear-gradient(to right, rgba(40,36,97,1), rgba(40,36,97,0));
	position:absolute;
	left:0;
	bottom:0;
	z-index:99;
}
.prort ul li:hover .protit{
	background: -webkit-linear-gradient(left, rgba(233,27,37,1), rgba(233,27,37,0));
    background: -o-linear-gradient(right, rgba(233,27,37,1), rgba(233,27,37,0));
    background: -moz-linear-gradient(right, rgba(233,27,37,1), rgba(233,27,37,0));
	background: linear-gradient(to right, rgba(233,27,37,1), rgba(233,27,37,0));
}
/* prolist
-------------------------------------------------------------- */
.prolist{
	height:200px;
	background:url(../images/listbg.jpg) no-repeat top center;
	background-size:cover;
	border-radius:10px;
}
.prolist .prolist_tit{
	width:25%;
	overflow:hidden;
	padding-left:50px;
	padding-top:66px;
}
.prolist .prolist_tit .tit h3,.prolist .prolist_tit .tit h3 a{
	color:#fff;
}
.prolist .prolist_nr{
	width:75%;
	overflow:hidden;
	padding-top:66px;
}
.prolist_nr ul,.prolist_nr ul li .counter,.prolist_nr ul li p{
	width:100%;
	overflow:hidden;
}
.prolist_nr ul li{
	overflow:hidden;
	padding:0;
}
.prolist_nr ul li .counter{
	font-size:48px;
	color:#fff;
	line-height:48px;
	font-weight:bold;
}
.prolist_nr ul li p{
	font-size:16px;
	color:#fff;
	line-height:20px;
}

/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	padding-top:75px;
	padding-bottom:109px;
	padding-left:9.5%;
	}
.case .caself{
	width:22.3%;
	overflow:hidden;
	padding-left:40px;
}
.case .casert{
	width:77.7%;
	overflow:hidden;
	position:relative;
}
.case .casert h5{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#282461;
	line-height:30px;
	text-transform:uppercase;
	margin-bottom:16px;
}
.casenr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#282461;
	padding-right:28%;
}
.caselist{
	width:100%;
	overflow:hidden;
	margin-top:52px;
}
.caselist .swiper-container{
	width:115%;
}
.caselist .caseimg{
	width:100%;
	overflow:hidden;
	height:268px;
	position:relative;
	border-radius:10px;
}
.caselist .caseimg 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;
}
.caselist .caseimg:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.case .casert .swiper-button{
	overflow:hidden;
	position:absolute;
	right:9.5%;
	top:0;
}
.case .casert .swiper-button div{
	width:50px;
	height:50px;
	border-radius:50%;
	float:left;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.case .casert .swiper-button .swiper-button-prev{
	background:#282461 url(../images/prev.png) no-repeat center;
}
.case .casert .swiper-button .swiper-button-next{
	background:#282461 url(../images/next.png) no-repeat center;
	margin-left:10px;
}
.case .casert .swiper-button div:hover{
	background-color:#e91b25;
}


/* message
-------------------------------------------------------------- */
::-webkit-input-placeholder {
  color: #a3a3a3;
}
:-moz-placeholder {
  color: #a3a3a3;
}
::-moz-placeholder{
color: #a3a3a3;
}
:-ms-input-placeholder {
  color: #a3a3a3;
}
.nmessage{
	width:100%;
	overflow:hidden;
	margin-top:60px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:10px;
	}
.nmessage p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color: #222;
	line-height:30px;
	margin-top:15px;
}
.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:0 10px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:160px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding:18px 10px;
	}
.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(5){
	width:100%;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
	text-align: center;
}
.nmessagenr .tjbtn button {
    width: 170px;
    height: 60px;
	line-height:60px;
    background: #282461;
    color: #fff;
	text-align:center;
	font-size:16px;
	border-radius:30px;
}
.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;
}
/* contact
-------------------------------------------------------------- */
.contact{
	width:100%;
	overflow:hidden;
	background:url(../images/footerbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:160px;
	padding-bottom:188px;
	}
.contactlf{
	overflow:hidden;
	padding:0;
	}
.contacten{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#333333;
	line-height:50px;
	text-transform:uppercase;
	font-family:Arial;
	margin-top:20px;
	margin-bottom:74px;
	}
.contactlf dl,.contactlf dl dt,.contactlf dl dd{
	width:100%;
	overflow:hidden;
	}
.contactlf dl dt,.contactlf dl dd{
	font-size:16px;
	color:#333;
	line-height:30px;
	font-weight:normal;
	}
.contactlf dl{
	margin-top:30px;
	}

/* footer
-------------------------------------------------------------- */
.footer {
	width: 100%;
	overflow: hidden;
	background: #3d3d3d;
	padding-top:72px;
}
.footernr ul{
	width:100%;
	overflow:hidden;
}
.footernr ul > li{
	overflow:hidden;
	padding:0;
}
.footernr ul li h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-bottom:20px;
}
.footernr ul li h4 a{
	font-size:18px;
	color:#fff;
}
.footernr ul li p{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.5);
	line-height:30px;
	font-size:16px;
	margin-top:5px;
	}
.footernr ul li p a{
	color:rgba(255,255,255,0.5);
	font-size:16px;
	}
.footernr ul li a:hover{
	color:#fff;
}
.footernr ul > li ul{
	margin-top:33px;
}
.footernr ul > li ul li{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.5);
	line-height:30px;
	font-size:16px;
	padding-left:38px;
}
.footernr ul > li ul li a{
	color:rgba(255,255,255,0.5);
	font-size:16px;
}
.footernr ul > li ul li.li_tel{
	background:url(../images/icon4.png) no-repeat left center;
}
.footernr ul > li ul li.li_fax{
	background:url(../images/icon5.png) no-repeat left center;
}
.footernr ul > li ul li.li_email{
	background:url(../images/icon6.png) no-repeat left center;
}
.footernr ul > li ul li.li_add{
	background:url(../images/icon7.png) no-repeat left center;
}
.footernr ul > li ul li.li_f{
	background:url(../images/icon8.png) no-repeat left center;
}
.footernr ul > li ul li.li_w{
	background:url(../images/icon9.png) no-repeat left center;
}

.bot{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.5);
	line-height:30px;
	border-top:solid 1px #474747;
	padding:26px 0 30px 0;
	margin-top:54px;
	position:relative;
	}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.5);
}
.bot .botrt{
	text-align:right;
}
.bot a{
	font-size:16px;
	color:rgba(255,255,255,0.5);
	}
.bot a:hover{
	color:#fff;
	}

/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:550px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:733px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:481px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:413px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:390px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:367px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:330px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:293px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:284px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:220px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:183px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
}
.positionnr{
	font-size: 16px;
	color: #343434;
	line-height: 30px;
	padding: 10px 0;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #343434;
}
.position a:hover {
	color: #004b96;
}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	margin-top:30px;
}
.menu_n ul{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	overflow:hidden;
	float:left;
	margin-right:25px;
	font-size:16px;
	color:#333;
	line-height:30px;
	border-bottom: solid 1px #d5d5d5;
}
.menu_n ul li a{
	font-size:16px;
	color:#333;
}
/* nmenu
-------------------------------------------------------------- */
.nmenu {
	overflow: hidden;
}
.nmenu ul {
	width:100%;
	overflow: hidden;
}
.nmenu ul li {
	overflow: hidden;
	float: left;
	line-height: 40px;
	text-align: center;
	border-bottom:solid 2px rgba(150,150,150,0.8);
	margin-right:25px;
}
.nmenu ul li a {
	font-size: 16px;
	color: #343434;
	display: block;
}
.nmenu ul li:hover,.nmenu ul li.active{
	border-bottom:solid 2px #004b96;
}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#004b96;
}


/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow: hidden;
	color: #111111;
    font-size: 35px;
    line-height: 45px;
	}
.ntit p {
    width: 100%;
    overflow: hidden;
    font-family: myThreeFont;
    color: #111111;
    font-size: 22px;
    text-transform: uppercase;
}
/* nabout
-------------------------------------------------------------- */
.about_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	margin-top:50px;
	position: relative;
}
.aboutimg_n{
	width:60%;
	overflow:hidden;
}
.aboutrt_n{
    width: 51.4%;
	overflow:hidden;
	position: absolute;
    right: 0;
    bottom: 0;
	padding: 40px 2% 30px 2%;
	background: #282461;
}
.aboutrt_n h4{
	position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(232, 232, 232, 0.1);
	color:#fff;
	line-height:24px;
}
.aboutrt_n h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 60px;
    background-color: #fff;
}
.aboutjs_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
}
.aboutjs_n p{
	font-size:16px;
	color:#fff;
}
.prolist_n{
	margin-bottom:60px;
}
/* history
-------------------------------------------------------------- */
.history{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	margin-bottom:80px;
}
.DevelopmentHistory .swiper_box {
  margin-left: 5.2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.DevelopmentHistory .swiper_box .banner2 {
  margin-top:50px;
  margin-bottom: 50px;
}
.DevelopmentHistory .swiper_box .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide {
    padding-left: 0.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom:50px;
    cursor: pointer;
}
.DevelopmentHistory .swiper_box .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
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item {
  padding-left: 30px;
  min-height:200px;
  position: relative;
  top: 0;
  transition: .33s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .year {
  font-size: 30px;
  line-height:40px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr {
  line-height: 30px;
  font-size:16px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  	overflow: hidden;
	padding-right: 10px;
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 2px;
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 2px;
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	background: rgba(7, 49, 144, 1);
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.1);
}


.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr p {
      line-height: 30px;
    font-size: 16px;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.09rem;
  width: 4px;
  height: 4px;
  border: 2px solid #025eb6;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  height: 100%;
  width: 1px;
  background: #ddd;
}

.DevelopmentHistory .swiper_box .banner2 .active .item .year {
  color: #025eb6;
}
.DevelopmentHistory .swiper_box .banner2 .active .item .fzlcnr {
  color: #000;
}
.DevelopmentHistory .swiper_box .banner2 .active .item::before {
  top: 0.15rem;
  background: #025eb6;
}
.DevelopmentHistory .swiper_box .banner2 .active .item::after {
  top: 0.4rem;
}



.DevelopmentHistory .box {
  margin-top: 40px;
}
.DevelopmentHistory .box .banner1 {
  width: 94%;
}
.DevelopmentHistory .box .banner1 .swiper-slide {
  cursor: pointer;
}
.DevelopmentHistory .box .banner1 .swiper-slide p {
  font-size: 23px;
  color: #999;
  text-align: center;
  cursor: pointer;
}
.DevelopmentHistory .box .banner1 .active p {
  color: #025eb6;
}
.DevelopmentHistory .box .button{
  width: 13px;
    height: 24px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.DevelopmentHistory .box .prev{
	background: url(../images/prev2.png) no-repeat center;
}
.DevelopmentHistory .box .next{
	background: url(../images/next2.png) no-repeat center;
}
.DevelopmentHistory .box .button i:hover {
  color: #025eb6;
}
.DevelopmentHistory .img_box {
  margin-left: 10.4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  margin-top: -2rem;
}
.DevelopmentHistory .img_box .img_list {
  position: relative;
  left: 0;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
}
.DevelopmentHistory .img_box .img_list > img {
  height: 1.85rem;
  position: relative;
  left: 0;
}
.DevelopmentHistory .img_box .img_list .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../images/tu2.png") no-repeat;
  background-position: -800px 50%;
  -webkit-transition: 0.6s ease-in;
  -o-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
  background-size: auto 100%;
  -webkit-mask-image: url("../images/tu3.png");
  -webkit-mask-size: auto 100%;
}
.w1520 {
    padding-left: 5.2%;
    padding-right: 5.2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.flexBetween {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
/* qywh_n
-------------------------------------------------------------- */
.qywh_n{
	width:100%;
	overflow:hidden;
	background:url(../images/qywhbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:108px;
	padding-bottom:152px;
}
.qywh_n .tit .titen{
	color:rgba(255,255,255,0.3);
}
.qywh_n .tit h3{
	color:#fff;
}
.qywh_n .qywhnr_n,.qywh_n .qywhnr_n h5,.qywh_n .qywhnr_n .qywhjs_n,.qywh_n .qywhnr_n .qywhjs_n p,.qywhnr_n ul{
	width:100%;
	overflow:hidden;
}
.qywh_n .qywhnr_n{
	margin-top:64px;
}
.qywh_n .qywhnr_n ul li{
	height:430px;
	background:#fff;
	width:48.5%;
	overflow:hidden;
	float:left;
	padding:56px 54px 0 54px;
}
.qywh_n .qywhnr_n ul li:last-child{
	float:right;
}
.qywh_n .qywhnr_n ul li h5{
	font-size:25px;
	color:#212121;
	line-height:35px;
	font-weight:normal;
	margin-bottom:24px;
}
.qywh_n .qywhnr_n ul li .qywhjs_n p{
	font-size:16px;
	color:#797979;
	line-height:30px;
}
/* honor_n
-------------------------------------------------------------- */
.honor_n{
	margin-top:60px;
	margin-bottom:60px;
}
.honornr_n{
	width:100%;
	overflow:hidden;
}
.honornr_n dl{
	overflow:hidden;
	padding:0 15px;
	margin:20px 0;
}
.honornr_n dl dt,.honornr_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.honornr_n dl dt{
	height:504px;
	position:relative;
}
.honornr_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.honornr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.honornr_n dl dd{
	color: #2d2317;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    margin-top: 10px;
}
.honornr_n dl:hover dd{
	color:#282461;
}

/* npro
-------------------------------------------------------------- */
.pro_n{
	padding-top:60px;
	padding-bottom:60px;
	}
.pro_n .prolf_n{
	width:30%;
	overflow:hidden;
	background:#F3F5F8;
	}
.pro_n .prort_n{
	width:66%;
	overflow:hidden;
	}
.prolf_n .search {
  height: 78px;
  padding: 17px 6.5% 0;
  background:#282461;
}
.prolf_n .search .sea-wrap {
  position: relative;
  width: 100%;
  height: 39px;
}
.prolf_n .search i {
  position: absolute;
  left: 0;
  top: 12px;
  width:16px;
  height:16px;
  background:url(../images/icon10.png) no-repeat center;
  opacity:0.5;
}
.prolf_n .search input {
  width: 100%;
  height: 39px;
  padding: 0 25.4% 0 6%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background:none;
}
.prolf_n .search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.prolf_n .search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.prolf_n .search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.prolf_n .search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.prolf_n .search .btn {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 22.4%;
  height: 30px;
  line-height: 30px;
  color: #004282;
  background-color: #fff;
  border-radius: 15px;
  padding:0;
  z-index: 2;
}
.pro_n .prolf_n ul,.pro_n .prolf_n ul li{
	width:100%;
	overflow:hidden;
}
.pro_n .prolf_n ul li{
	padding:10px 6.5%;
	line-height:22px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.pro_n .prolf_n ul li a{
	display:block;
}
.pro_n .prolf_n ul li span{
	font-size:16px;
	color:#000;
}
.pro_n .prolf_n ul li i{
	width:7px;
	height:10px;
	background:url(../images/icon11.png) no-repeat center;
	display:black;
	float:right;
	margin-top:6px;
}
.pro_n .prolf_n ul li:hover{
	background:#282461;
}
.pro_n .prolf_n ul li:hover span{
	color:#fff;
}
.pro_n .prolf_n ul li:hover i{
	background:url(../images/iconh11.png) no-repeat center;
}
.pronr_n,.pronr_n ul{
	width:100%;
	overflow:hidden;
}
.pronr_n ul li{
    width: 48%;
    height: 492px;
    overflow: hidden;
    float: left;
    border-radius: 10px;
    margin: 0 0 30px 0;
    position: relative;
}
.pronr_n ul li:nth-child(2n+1){
	margin-right:2%;
}
.pronr_n ul li:nth-child(2n){
	margin-left:2%;
}
.pronr_n ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.pronr_n ul li:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.pronr_n ul li .protit{
	width:100%;
	overflow:hidden;
	padding:15px 20px;
	font-size:16px;
	color:#fff;
	line-height:30px;
	background: -webkit-linear-gradient(left, rgba(40,36,97,1), rgba(40,36,97,0));
    background: -o-linear-gradient(right, rgba(40,36,97,1), rgba(40,36,97,0));
    background: -moz-linear-gradient(right, rgba(40,36,97,1), rgba(40,36,97,0));
	background: linear-gradient(to right, rgba(40,36,97,1), rgba(40,36,97,0));
	position:absolute;
	left:0;
	bottom:0;
	z-index:99;
}
.pronr_n ul li:hover .protit{
	background: -webkit-linear-gradient(left, rgba(233,27,37,1), rgba(233,27,37,0));
    background: -o-linear-gradient(right, rgba(233,27,37,1), rgba(233,27,37,0));
    background: -moz-linear-gradient(right, rgba(233,27,37,1), rgba(233,27,37,0));
	background: linear-gradient(to right, rgba(233,27,37,1), rgba(233,27,37,0));
}

.nprolf{
	width:50%;
}
.nprolf img{
	max-width:100%;
	width:100%;
	border:1px solid #ddd;
	padding:3px;
}
.nprort{
	width:45%;
}
.nprort h1{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	border-bottom:solid 1px #ddd;
	padding-bottom:28px;
}
.nprort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-top:26px;
	margin-bottom:40px;
}
.nprort .npro_infolei span{
	font-size:20px;
	color:#333;
}
.nproinfo{
	font-size:16px;
	color:#666;
	line-height:30px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    background: #f0f0f0;
    margin-top: 40px;
    padding: 0 20px;
    color: #000;
}
.nprofbnr {
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	white-space: nowrap;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
.imglist{
	margin-top:30px;
}
.imglist,.imglist ul{
	width:100%;
	overflow:hidden;
}
.imglist ul li{
	overflow:hidden;
	padding:0 10px;
	margin:10px 0;
}
.imglist ul li img{
	max-width:100%;
	height:auto;
}

/*产品展示结束*/
	
/* case_n
-------------------------------------------------------------- */
.case_n{
	margin-top:60px;
	margin-bottom:60px;
}
.casenr_n{
	width:100%;
	overflow:hidden;
}
.casenr_n dl{
	overflow:hidden;
	padding:0 15px;
	margin:20px 0;
}
.casenr_n dl dt,.casenr_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.casenr_n dl dt{
	height:358px;
	position:relative;
}
.casenr_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.casenr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.casenr_n dl dd{
	color: #2d2317;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    margin-top: 10px;
}
.casenr_n dl:hover dd{
	color:#282461;
}
/* sb_n
-------------------------------------------------------------- */
.sb_n{
	margin-top:60px;
	margin-bottom:60px;
}
.sbnr_n{
	width:100%;
	overflow:hidden;
}
.sbnr_n dl{
	overflow:hidden;
	padding:0 15px;
	margin:20px 0;
}
.sbnr_n dl dt,.sbnr_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.sbnr_n dl dt{
	height:240px;
	position:relative;
}
.sbnr_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.sbnr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.sbnr_n dl dd{
	color: #2d2317;
    font-size: 16px;
	height:50px;
    text-align: center;
    line-height: 25px;
    margin-top: 10px;
}
.sbnr_n dl:hover dd{
	color:#282461;
}

	
/* contact_n
-------------------------------------------------------------- */
.contact_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.contactnr_n{
	margin-top:52px;
}
.contactnr_n,.contactnr_n ul{
	width:100%;
	overflow:hidden;
	}
.contactnr_n ul li{
	overflow:hidden;
	padding:0 35px;
	height: 420px;
    text-align: center;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.contacts-c1{
	margin-top: 80px;
	height: 60px;
	line-height: 60px;
}
.contacts-c1 .img2{
	display: none;
}
.contacts-c2{
	font-size: 20px;
	color: #002222;
	margin-top: 40px;
	font-weight:bold;
	margin-bottom: 30px;
}
.contacts-c3,.contacts-c3 a,.contacts-c3 p{
	font-size: 16px;
    line-height: 25px;
    color: #222;
}
.contacts-c1 img{
	max-height: 100%;
}
.contactnr_n ul li:nth-child(2n+1){
		background: #fafafa;
	}
.contactnr_n ul li:nth-child(2n){
		background: #f1f1f1;
	}
.contactnr_n ul li:hover{
	background: #282461;
}
.contactnr_n ul li:hover *{
	color: #fff;
}
.contactnr_n ul li:hover .contacts-c1 .img1{
	display: none;
}
.contactnr_n ul li:hover .contacts-c1 .img2{
	display: inline-block;
}
.map{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:60px;
	}
.map img{
	width:100%;
	height:auto;
	}
/* jssl_n
-------------------------------------------------------------- */
.jssl_n{
	margin-top:60px;
	margin-bottom:60px;
}
.jssllist_n,.jsslcont_n{
	width:100%;
	overflow:hidden;
}
.jssllist_n{
	margin:50px 0;
}
.jssllist_n .jsslimg_n{
	width:48%;
	overflow:hidden;
	border-radius:0 200px 0 0;
}
.jssllist_n .jsslimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.jssllist_n .jsslcont_n{
	width:52%;
	overflow:hidden;
	padding-top:50px;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	padding-left:200px;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	padding-right:200px;
}
.jssllist_n:nth-child(2n+1) .jsslimg_n{
	float:left;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslimg_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	float:left;
}
.jsslen{
	width:100%;
	overflow:hidden;
	font-size: 50px;
    color: #333333;
    line-height: 55px;
    font-family: Arial;
    margin-top: 20px;
	margin-bottom:100px;
}
.jsslcont_n h4,.jsslcont_n p{
	width:100%;
	overflow:hidden;
}
.jsslcont_n h4{
	font-size: 45px;
    color: #333;
    line-height: 55px;
    font-weight: normal;
    margin-bottom: 16px;
	margin-bottom:60px;
}
.jsslcont_n p{
    line-height: 30px;
    font-size: 16px;
    color: #333;
}
/* nnewslist

-------------------------------------------------------------- */
.nnewslist{
	width:100%;
	overflow:hidden;
	background:#f7f7f7;
	padding:65px 0;
	}
.nnewslist dl{
	width:48%;
	overflow:hidden;
	float:left;
	background:#fff;
	padding:30px;
	margin:15px 1%;
	}
.nnewslist dl dt{
	width:16%;
	overflow:hidden;
	float:left;
	border-right:solid 1px #dddddd;
	padding:15px 0;
	}
.nnewslist dl dt .nnews_day{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#343434;
	font-family:Arial;
	line-height:50px;
	}
.nnewslist dl dt .nnews_year{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#343434;
	font-family:Arial;
	font-weight:normal;
	line-height:24px;
	font-weight:bold;
	}
.nnewslist dl dd{
	width:84%;
	overflow:hidden;
	float:right;
	padding-left:32px;
	}
.nnewslist dl dd h4{
	width:100%;
	overflow:hidden;
	font-size:19px;
	line-height:30px;
	color:#000;
	font-weight:normal;
	margin-top:10px;
	    text-overflow: ellipsis;
    white-space: nowrap;
	}
.nnewslist dl dd p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#737373;
	margin-top:10px;
	    text-overflow: ellipsis;
    white-space: nowrap;
	}
.nnewslist dl:hover{
	background: #282461;
	}
.nnewslist dl:hover dd h4,.nnewslist dl:hover dt .nnews_day,.nnewslist dl:hover dt .nnews_year{
	color:#fff;
	}
.nnewslist dl:hover dd p{
	color:rgba(255,255,255,0.7);
	}
.nnewslist dl:hover dt{
	border-right:solid 1px rgba(255,255,255,0.3);
	}
.news_n{
	margin-top:60px;
	margin-bottom:60px;
	}

.newsdate_n{
	margin-top:10px;
}
.newsdate_n .date_n,.newsdate_n .newsxq_n{
	overflow:hidden;
	padding:0;
	font-size:16px;
	color:#b2b2b2;
	line-height:30px;
}
.newsdate_n .newsxq_n{
	text-align:right;
}
.newsnr_n ul li h4{
	font-size:20px;
	color:#222222;
    overflow: hidden;
	line-height:30px;
	margin-top:10px;
	white-space: nowrap;
    text-overflow: ellipsis;
	font-weight:normal;
}
.newsnr_n ul li:hover h4{
	color:#de341e;
}
.news_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 28px;
	line-height:38px;
    color: #262626;
	font-weight:normal;
    text-align: center;
	border-bottom:solid 1px #d9d9d9;
	padding-bottom:26px;
	}
.news_n .fbtime{
	width: 100%;
    overflow: hidden;
	margin-top:20px;
	text-align:center;
	font-size:16px;
	line-height:30px;
	}
.news_n .nnewsdatelf{
	width: 70%;
    overflow: hidden;
	line-height:30px;
	font-size:16px;
	color:#333;
	}
.news_n .nnewsdatert{
	width: 30%;
    overflow: hidden;
	text-align:right;
	font-size:16px;
	color:#333;
	line-height:30px;
	}
.news_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.news_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.news_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;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:#282461;
}

.toggle,#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1151px) and (min-width: 0px){
	.nav,.top span,.icon2,.side,.logojs,.search_box,.toptel,.side{
		display:none
	}
	/**/
	#toggleMenu {
	  position: absolute;
	  width: 100%;
	  min-height: 0;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  overflow: hidden;
	  top:0;
	  left:0;
	  z-index:-1;
	  opacity:0;
	}
	#toggleMenu.active{
		min-height:100vh;
	}
	#toggleMenu.active{
		z-index:999;
	  opacity:1;
	}
	#toggleMenu nav {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  padding: 40px 100px;
	  z-index: 100;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
			  justify-content: space-between;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}

	#toggleMenu nav .logo {
	  position: relative;
	  font-size: 2em;
	  color: #fff;
	  text-transform: uppercase;
	  font-weight: 700;
	  z-index: 15;
	  text-decoration: none;
	  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu nav .full-width-menu {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100vh;
	  width: 100%;
	  overflow-y: auto;
	  visibility: hidden;
	  opacity: 0;
	  background: #282461;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	  overflow: hidden;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu {
	  opacity: 1;
	  visibility: visible;
	}

	#toggleMenu nav .full-width-menu .cntBox {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}

	#toggleMenu nav .full-width-menu .cntBox:nth-child(1) {
	  width: 100%;
	  background: #282461;
	  -webkit-transform: translateX(-100%);
		  -ms-transform: translateX(-100%);
			  transform: translateX(-100%);
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu .cntBox:nth-child(1) {
	  -webkit-transform: translateX(0);
		  -ms-transform: translateX(0);
			  transform: translateX(0);
	  visibility: visible;
	  opacity: 1;
	}

	#toggleMenu nav .full-width-menu .cntBox:nth-child(2) {
	  padding: 0 15px;
	  width: 40%;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
	  background: #282461;
	  -webkit-transform: translateX(100%);
		  -ms-transform: translateX(100%);
			  transform: translateX(100%);
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu .cntBox:nth-child(2) {
	  -webkit-transform: translateX(0);
		  -ms-transform: translateX(0);
			  transform: translateX(0);
	  visibility: visible;
	  opacity: 1;
	  background: -webkit-linear-gradient(top, #1ccc98 , #042d93);
		background: -o-linear-gradient(bottom, #1ccc98 , #042d93);
		background: -moz-linear-gradient(bottom, #1ccc98 , #042d93);
		background: linear-gradient(to bottom, #1ccc98 , #042d93);
	}

	#toggleMenu nav .navigation {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  width: 80%;
	}

	#toggleMenu nav .navigation li {
	  padding: 5px 0;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-30px);
		  -ms-transform: translateX(-30px);
			  transform: translateX(-30px);
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}

	#toggleMenu.active nav .navigation li {
		width:100%;
		overflow:hidden;
	  line-height:40px;
	  visibility: visible;
	  opacity: 1;
	  -webkit-transform: translateX(0px);
		  -ms-transform: translateX(0px);
			  transform: translateX(0px);
	}

	#toggleMenu.active nav .navigation li:nth-child(1) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu.active nav .navigation li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu.active nav .navigation li:nth-child(3) {
	  -webkit-transition-delay: 0.5s;
		   -o-transition-delay: 0.5s;
			  transition-delay: 0.5s;
	}

	#toggleMenu.active nav .navigation li:nth-child(4) {
	  -webkit-transition-delay: 0.6s;
		   -o-transition-delay: 0.6s;
			  transition-delay: 0.6s;
	}

	#toggleMenu.active nav .navigation li:nth-child(5) {
	  -webkit-transition-delay: 0.7s;
		   -o-transition-delay: 0.7s;
			  transition-delay: 0.7s;
	}

	#toggleMenu nav .navigation li a {
	  letter-spacing: 0.5px;
	  font-size: 18px;
	  line-height:30px;
	  font-weight: 700;
	  text-decoration: none;
	  color: #fff;
	  margin:0;
	  -webkit-transition: all ease 0.3s;
	  -o-transition: all ease 0.3s;
	  transition: all ease 0.3s;
	}


	#toggleMenu nav .hinfo {
		width:100%;
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  width: 80%;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(30px);
		  -ms-transform: translateX(30px);
			  transform: translateX(30px);
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}

	#toggleMenu.active nav .hinfo {
	  opacity: 1;
	  visibility: visible;
	  -webkit-transform: translateX(0px);
		  -ms-transform: translateX(0px);
			  transform: translateX(0px);
	}

	#toggleMenu.active nav .hinfo{
	  -webkit-transition-delay: 0.5s;
		   -o-transition-delay: 0.5s;
			  transition-delay: 0.5s;
	}

	#toggleMenu.active nav .hinfo:nth-child(2) {
	  -webkit-transition-delay: 0.6s;
		   -o-transition-delay: 0.6s;
			  transition-delay: 0.6s;
	}

	#toggleMenu.active nav .hinfo:nth-child(3) {
	  -webkit-transition-delay: 0.7s;
		   -o-transition-delay: 0.7s;
			  transition-delay: 0.7s;
	}

	#toggleMenu nav .hinfo:not(:first-child) {
	  margin-top: 30px;
	}

	#toggleMenu nav .hinfo li {
		width:100%;
		overflow:hidden;
		line-height:30px;
	  font-size: 16px;
	  font-weight: 600;
	  padding-top: 5px;
	  color: #fff;
	  text-align:left;
	  font-weight:normal;
	}

	#toggleMenu nav .hinfo li:nth-child(1) {
	  font-size: 18px;
	  opacity: 0.5;
	}

	#toggleMenu nav .hinfo li a {
	  text-decoration: none;
		line-height:30px;
	  font-size: 16px;
	  color: #fff;
	  display: inline-block;
	  margin:0;
	  font-weight:normal;
	}

	#toggleMenu nav .hinfo li a:hover {
	  opacity: 0.5;
	  color:#fff !important;
	}

	#toggleMenu nav .social {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	}

	#toggleMenu nav .social li:first-child {
	  width: 100%;
	}

	#toggleMenu nav .social li {
	  width: 50%;
	}
	.toggle {
	  position: absolute;
	  width: 40px;
	  height: 40px;
	  cursor: pointer;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
			  right:100px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 3px;
	  margin: 3px 5px;
	  width: 30px;
	  display: block;
	  background: #fff;
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.showHeader .toggle span,.hover .toggle span{
		background: #000;
	}
	.toggle.active span{
		background: #fff;
	}

	.toggle span:nth-child(2) {
	  width: 25px;
	  margin-left: -10px;
	}


	.toggle.active span:nth-child(1) {
	  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
		  -ms-transform: rotate(-45deg) translate(-5px, 6px);
			  transform: rotate(-45deg) translate(-5px, 6px);
	}

	.toggle.active span:nth-child(2) {
	  opacity: 0;
	}

	.toggle.active span:nth-child(3) {
	  -webkit-transform: rotate(45deg) translate(-6px, -7px);
		  -ms-transform: rotate(45deg) translate(-6px, -7px);
			  transform: rotate(45deg) translate(-6px, -7px);
	}


	#toggleMenu .content {
	  position: relative;
	  z-index: 10;
	  text-align: center;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	  -webkit-transition-delay: 1s;
		   -o-transition-delay: 1s;
			  transition-delay: 1s;
	}

	#toggleMenu .content h2 {
	  position: relative;
	  color: #fff;
	  font-size: 4rem;
	  text-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu .content h2 span {
	  font-size: 0.2em;
	  font-weight: 300;
	  letter-spacing: 5px;
	  padding: 0 10px;
	  text-transform: uppercase;
	  background: #fff;
	  color: #111;
	  text-shadow: 0 5px 5px rgba(0,0,0,0);
	  -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
			  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu.active .content {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-200px);
		  -ms-transform: translateX(-200px);
			  transform: translateX(-200px);
	  -webkit-transition-delay: 0s;
		   -o-transition-delay: 0s;
			  transition-delay: 0s;
	}

	#toggleMenu .sci {
	  position: absolute;
	  bottom: 40px;
	  right: 100px;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  z-index: 100;
	}

	#toggleMenu .sci li {
	  list-style: none;
	  margin: 5px;
	  padding: 0 6px;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu.active .sci li {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateY(100px);
		  -ms-transform: translateY(100px);
			  transform: translateY(100px);
	}

	#toggleMenu .sci li a {
	  color: #111;
	  background: #fff;
	  text-decoration: none;
	  display: inline-block;
	  letter-spacing: 2px;
	  font-weight: 500;
	  font-size: 12px;
	  padding: 2px 5px;
	  text-transform: uppercase;
	}

	#toggleMenu .sci li a:hover {
	  background: #111;
	  color: #fff;
	}

	#toggleMenu .sci li:nth-child(1) {
	  -webkit-transition-delay: 0.2s;
		   -o-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}

	#toggleMenu .sci li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu .sci li:nth-child(3) {
	  -webkit-transition-delay: 0.4s;
		   -o-transition-delay: 0.4s;
			  transition-delay: 0.4s;
	}
}


@media only screen and (min-width: 1600px) and (max-width: 1600px) {
	.pronr_n ul li{
		height:446px;
	}
	.casenr_n dl dt{
		height:322px;
	}
	.sbnr_n dl dt{
		height:215px;
	}
	.honornr_n dl dt{
		height:453px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.pronr_n ul li{
		height:401px;
	}
	.casenr_n dl dt{
		height:286px;
	}
	.sbnr_n dl dt{
		height:192px;
	}
	.honornr_n dl dt{
		height:403px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.pronr_n ul li{
		height:379px;
	}
	.casenr_n dl dt{
		height:269px;
	}
	.sbnr_n dl dt{
		height:180px;
	}
	.honornr_n dl dt{
		height:379px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.pronr_n ul li{
		height:356px;
	}
	.casenr_n dl dt{
		height:251px;
	}
	.sbnr_n dl dt{
		height:168px;
	}
	.honornr_n dl dt{
		height:354px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.pronr_n ul li{
		height:321px;
	}
	.casenr_n dl dt{
		height:223px;
	}
	.sbnr_n dl dt{
		height:149px;
	}
	.honornr_n dl dt{
		height:314px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.pronr_n ul li{
		height:285px;
	}
	.casenr_n dl dt{
		height:195px;
	}
	.sbnr_n dl dt{
		height:130px;
	}
	.honornr_n dl dt{
		height:274px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.pronr_n ul li{
		height:276px;
	}
	.casenr_n dl dt{
		height:188px;
	}
	.sbnr_n dl dt{
		height:126px;
	}
	.honornr_n dl dt{
		height:265px;
	}
}
@media only screen and (min-width: 912px) and (max-width: 991px) {
	.pronr_n ul li{
		height:385px;
	}
	.casenr_n dl dt{
		height:237px;
	}
	.sbnr_n dl dt{
		height:159px;
	}
	.honornr_n dl dt{
		height:334px;
	}
}
@media only screen and (min-width: 820px) and (max-width: 911px) {
	.pronr_n ul li{
		height:346px;
	}
	.casenr_n dl dt{
		height:210px;
	}
	.sbnr_n dl dt{
		height:141px;
	}
	.honornr_n dl dt{
		height:296px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 819px) {
	.pronr_n ul li{
		height:324px;
	}
	.casenr_n dl dt{
		height:195px;
	}
	.sbnr_n dl dt{
		height:130px;
	}
	.honornr_n dl dt{
		height:274px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.pronr_n ul li{
		height:270px;
	}
	.casenr_n dl dt{
		height:261px;
	}
	.sbnr_n dl dt{
		height:175px;
	}
	.honornr_n dl dt{
		height:354px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.pronr_n ul li{
		height:475px;
	}
	.casenr_n dl dt{
		height:217px;
	}
	.sbnr_n dl dt{
		height:145px;
	}
	.honornr_n dl dt{
		height:292px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.pronr_n ul li{
		height:374px;
	}
	.casenr_n dl dt{
		height:167px;
	}
	.sbnr_n dl dt{
		height:111px;
	}
	.honornr_n dl dt{
		height:221px;
	}
}
@media only screen and (min-width: 414px) and (max-width: 424px) {
	.casenr_n dl dt {
		height: 162px;
	}
	.sbnr_n dl dt{
		height:108px;
	}
	.honornr_n dl dt{
		height:214px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 413px) {
	.pronr_n ul li{
		height:330px;
	}
	.casenr_n dl dt{
		height:145px;
	}
	.sbnr_n dl dt{
		height:97px;
	}
	.honornr_n dl dt{
		height:190px;
	}
}
@media only screen and (min-width: 360px) and (max-width: 374px) {
	.casenr_n dl dt {
		height: 138px;
	}
	.sbnr_n dl dt{
		height:92px;
	}
	.honornr_n dl dt{
		height:180px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
	.pronr_n ul li{
		height:281px;
	}
	.casenr_n dl dt{
		height:120px;
	}
	.sbnr_n dl dt{
		height:80px;
	}
	.honornr_n dl dt{
		height:156px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.pronr_n ul li{
		height:246px;
	}
	.casenr_n dl dt{
		height:103px;
	}
	.sbnr_n dl dt{
		height:69px;
	}
	.honornr_n dl dt{
		height:131px;
	}
}

@media(max-width:1768px) {
	.case .caself {
		padding-left: 0;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
		}
	.aboutnr {
		width: 68%;
	}
	.case {
		padding-left: 6%;
	}
	.case .casert .swiper-button{
		right: 6%;
	}
	.contactnr_n ul li {
		padding: 0 20px;
	}
	.nprort h1{
		font-size: 26px;
		line-height: 36px;
	}
}
@media(max-width:1440px) {
	.contacts-c2 {
		font-size: 18px;
	}
	.aboutjs_n p {
		font-size: 15px;
	}
	.nprort h1{
		font-size: 24px;
		line-height: 34px;
	}
}
@media(max-width:1360px) {
	.aboutmenu dl:last-child {
		margin-left: 40px;
	}
	.aboutmenu dl dd{
		margin-left:10px;
	}
	.aboutjs_n p {
		font-size: 14px;
		line-height:24px;
	}
	
}
@media(max-width:1280px) {
	.nav .menu > li a {
		margin: 0 20px;
	}
	.aboutjs {
		font-size: 15px;
		line-height: 25px;
	}
	.aboutmenu dl dt img{
		width:35px;
	}
	.aboutmenu dl dd{
		line-height:35px;
		font-size: 15px;
	}
	.aboutmenu dl:last-child {
		margin-left: 20px;
	}
	.prolist_nr ul li .counter {
		font-size: 40px;
		line-height: 40px;
	}
	.prolist_nr ul li p {
		font-size: 15px;
	}
	.news_n h1{
	    font-size: 24px;
	    line-height: 34px;
	}
}
@media(max-width:1152px) {
	.nav .menu > li a {
		margin: 0 15px;
	}
	.contacts-c2 {
		font-size: 16px;
	}
	.contacts-c3, .contacts-c3 a, .contacts-c3 p {
		font-size: 15px;
	}
	.prolist_nr ul li .counter {
		font-size: 35px;
		line-height: 35px;
	}
	.prolist_nr ul li p {
		font-size: 14px;
	}
	.nnewslist dl dt .nnews_day {
        font-size: 40px;
    }
}
@media(max-width:1151px) {
	.logo{
		padding:15px 0;
	}
	.logo img{
		height:30px;
	}
	.headernr{
		width:98%;
	}
	.aboutimg_n,.aboutrt_n{
		width:100%;
	}
	.aboutimg_n img{
		max-width:100%;
		height:auto;
	}
	.aboutrt_n{
		position:inherit;
	}
}
@media(max-width:1024px) {
	
}

@media(max-width:1023px) {
	.aboutnr {
		width: 100%;
		margin-top:80px;
	}
	.about{
		padding-bottom:80px;
	}
}
@media(max-width:991px) {
	.tit h3,.tit h3 a{
		font-size: 25px;
		line-height: 30px;
	}
	.prolist{
		height:auto;
	}
	.prolist .prolist_tit,.prolist .prolist_nr{
		width:100%;
	}
	.prolist .prolist_tit{
		padding:30px 20px;
	}
	.prolist .prolist_nr{
		padding:0 20px 30px 20px;
	}
	.prolf,.prort{
		width:100%;
	}
	.prort{
		margin-top:30px;
	}
	.banner .swiper-pagination{
		bottom:20px;
	}
	.case .caself,.case .casert{
		width:100%;
	}
	.case .casert{
		margin-top:30px;
	}
	.about{
		margin-top:60px;
	}
	.aboutnr .aboutlf,.aboutnr .aboutrt{
		width:100%;
	}
	.aboutnr .aboutrt{
		margin-top:30px;
	}
	.aboutmenu {
		margin-top: 30px;
	}
	.case {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.honornr_n dl dd{
		font-size:14px;
	}
	.nprort h1{
		font-size: 22px;
		line-height: 32px;
	}
	.nprolf,.nprort{
		width:100%;
	}
	.nprort{
		margin-top:30px;
	}
	.nprort .npro_infolei{
		margin-bottom:0;
	}
	.nprort .npro_infolei,.nprort .npro_infolei span{
		font-size:18px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.pro_n .prolf_n,.pro_n .prort_n{
		width:100%;
	}
	.pro_n .prolf_n{
		margin-bottom:30px;
	}
	.pro_n .prolf_n ul{
		display:none;
	}
	.contactnr_n ul li {
		margin-bottom:10px;
	}
	.nnewslist dl dt,.nnewslist dl dd{
		width:100%;
	}
	.nnewslist dl dd {
        padding-left: 0;
    }
    .nnewslist dl dt, .nnewslist dl:hover dt {
        border-right: none;
    }
	.news_n h1{
	    font-size: 22px;
	    line-height: 32px;
	}
	.positionrt,.nmenu{
	    width: 100%;
	}
	.nmenu{
	    margin-top: 10px;
	}
	.bot{
		margin-top:30px;
		padding: 20px 0;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.footer {
		padding-top: 60px;
	}
}
@media(max-width:768px) {
	.sbnr_n dl dd {
		font-size: 14px;
		line-height: 20px;
	}
	.prort ul li {
		height: 180px;
		margin: 15px 0;
	}
	.prort ul li .protit{
		width:100%;
		padding: 8px 20px;
	}
}
@media(max-width:767px) {
	.case .casert .swiper-button{
		position:inherit;
		right: 0;
		top: 0;
		margin-top:30px;
	}
	.case{
		padding-right: 6%;
	}
	.casenr{
		padding-right: 0;
	}
	.caselist .swiper-container {
		width: 100%;
	}
	.contacts-c1 {
		margin-top: 40px;
	}
	.contacts-c2 {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.contactnr_n ul li {
		padding-bottom: 40px;
		height:auto;
	}
	.casenr_n dl,.sbnr_n dl{
		padding:0 10px;
	}
}
@media(max-width:640px) {
	.banner .swiper-pagination{
		bottom:10px;
	}
	.banner .swiper-slide .img img {
		width: 120%;
		margin-left: -10%;
	}
	.swiper-pagination-bullet{
		margin: 0 10px;
	}
	.prort ul li{
		height: 150px;
	}
	.prort ul li .protit {
		padding: 5px 10px;
		font-size:14px;
	}
	.aboutnr {
		padding: 40px 30px;
	}
	.aboutjs {
		font-size: 14px;
	}
	.prolist_nr ul li .counter {
		font-size: 30px;
		line-height: 30px;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right: 0;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left: 0;
	}
	.nmessagenr .tjbtn button {
		width: 130px;
		height: 45px;
		line-height:45px;
	}
	.casenr_n dl,.sbnr_n dl{
		margin: 10px 0;
	}
	.nnewslist dl {
		width: 100%;
	}
}
@media(max-width:639px) {
	.pronr_n ul li{
		width:100%;
	}
	.pronr_n ul li:nth-child(2n+1) {
		margin-right:0;
	}
	.pronr_n ul li:nth-child(2n) {
		margin-left:0;
	}
}
@media(max-width:500px) {
	.sbnr_n dl dd {
		font-size: 12px;
		height: 60px;
	}
	
}
@media(max-width:425px) {
	.aboutnr {
		padding: 30px 20px;
	}
	.aboutmenu dl dt img {
		width: 25px;
	}
	.aboutmenu dl dd {
		line-height: 25px;
		font-size: 14px;
		margin-left: 5px;
	}
	.aboutmenu dl:last-child {
		margin-left: 10px;
	}
	.prolist_nr ul li .counter {
		font-size: 25px;
		line-height: 25px;
	}
	.prolist_nr ul li p {
		font-size: 12px;
	}
	
}
@media(max-width:424px) {
	.prort ul li{
		width:100%;
	}
	.prort ul li:nth-child(2n+1) {
		margin-right:0;
	}
	.prort ul li:nth-child(2n) {
		margin-left: 0;
	}
}
@media(max-width:375px) {
	.prolist_nr ul li{
		width:100%;
		margin-bottom:10px;
	}
}
@media(max-width:319px) {
	.aboutmenu dl{
		width:100%;
	}
	.aboutmenu dl:last-child {
		margin-left: 0;
		margin-top:10px;
	}
}