@charset "utf-8";



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

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



/* 全局样式

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

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Microsoft YaHei","Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

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



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

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

.header{
	width:100%;
	height:100px;
	position: fixed;
	z-index: 999;
	top:0;
	}
.logo{
	overflow:hidden;
	padding:34px 0 34px 2%;
}
.logo img{
	max-width:100%;
	height:auto;
}
.toptel{
	overflow:hidden;
	padding:40px;
	border-left:solid 1px #c7c7c7;
}
.topewm{
	text-align:center;
	padding:40px 0;
	position:relative;
	cursor:pointer;
	margin-right:2%;
	}
.topewm .ewmimg{
	opacity:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	position:absolute;
	background:#fff;
	padding:10px;
	border-radius:5px;
	top:100px;
	right:0;
}
.topewm .ewmimg img{
	width:100px;
}
.topewm:hover .ewmimg{
	opacity:1;
}
.cnen{
    overflow: hidden;
    line-height: 100px;
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}
.cnen a{
    font-size: 16px;
    color: #fff;
}
.small{
	background: rgba(0,0,0,0.3);
}
	
/* nav
-------------------------------------------------------------- */
.menu, .menu ul {

  list-style: none;

  padding: 0;

}



.menu > li {

  position: relative;

  display: inline-block;

  outline: 0;

}



.submenu {

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 0;

  overflow: hidden;

  /* IE8 needs this */

  overflow: hidden\0/ !important;

  max-height: 0;

  /* A .submenu should be only revealed when hovering the .menu */

  pointer-events: none;

}



.menu > li:hover .submenu, .menu > li:focus .submenu {

  pointer-events: auto;

  z-index: 10;

  max-height: 2000px;

  -webkit-transition: none;

     -moz-transition: none;

}



/* Default

 ================================================================= */

.submenu li {

  opacity: 0;



  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;

     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;

      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;

       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;

          transition: opacity .4s,         transform .6s, max-height .6s;

}



.menu > li:hover .submenu li, .menu > li:focus .submenu li {

  opacity: 1;



  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;

}

/* Shield

 ================================================================= */

.shield {

  overflow: visible;



  -webkit-perspective: 400px;

     -moz-perspective: 400px;

      -ms-perspective: 400px;

       -o-perspective: 400px;

          perspective: 400px;

}



.shield li {

  -webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);



  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;



  -webkit-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

     -moz-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

      -ms-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

       -o-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

          transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

}
.nav{
	text-align:right;
	margin-right:60px;
}
.nav > ul{

	display:inline-block;
	margin:0;
	}

.nav span{

	display:block !important;

	width:100%;

	line-height:20px;
	font-size:13px;
	font-family:Arial;
	color:#b8b8b8;
	text-transform:uppercase;
}


.nav .menu > li{
	float:left;
	text-align:center;
	line-height:102px;
	position:relative;
	margin:0 32px;
	}


.nav .menu > li a{
	color:#fff;
	font-size:16px;
	font-weight:bold;
	display:block;
	line-height:100px;
	position:relative;
	}
.nav .menu > li a:after{
	content:"";
	position:absolute;
	width:0;
	height:2px;
	background:#fff;
	left:50%;
	bottom:0;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	-webkit-transition: .44s;
    transition: .44s;
    -webkit-transition-timing-function: var(--ease-in-out-b);
    transition-timing-function: var(--ease-in-out-b);
}

.nav .menu > li:hover a:after,.nav .menu > li.active a:after{
	width:100%;
	}



.nav .menu > li .submenu{

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

	}

.nav .menu > li .submenu li{

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

}

.nav .menu > li .submenu li a{

	display:block;
	color:#333;
	background:none;
	font-size:14px;
	padding:0;
	line-height:30px;
}
.nav .menu > li .submenu li a:after{
	display:none;
}

.nav .menu > li .submenu li:hover{
	background:#095ec7;
}
.nav .menu > li .submenu li:hover a{
	color:#fff;
}
.nav .menu > li.current:after{
	width:100%;
	}

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

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	position:relative;
	}
.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.banner .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.banner .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.banner .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.banner .swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.banner .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.banner .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.banner .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img,.banner .swiper-slide .video{
	width:100%;
	overflow:hidden;
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.banner video{ width:100%; height:100%; object-fit: cover;}
.indexbg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.08);
	z-index:90;
}
.videonr{
	width:24%;
	overflow:hidden;
	position:absolute;
	left:11.6%;
	bottom:26%;
	z-index:100;
}
.videonr img{
	max-width:100%;
	height:auto;
}
.videonr a{
	display:block;
	width:206px;
	height:56px;
	text-align:center;
	line-height:56px;
	font-size:16px;
	color:#fff;
	border:solid 2px #fff;
	border-radius:30px;
	margin-top:106px;
}
.banner .swiper-slide-invisible-blank {
	visibility: hidden
}

.banner .swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.banner .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.banner .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	left:11.6%;
	bottom:102px;
	z-index:99;
	}
.banner .swiper-button-next,.banner .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.banner .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.banner .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}

.banner .swiper-button-next.swiper-button-disabled,.banner .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination {
	width:46px;
	position: absolute;
	text-align: center;
	top:50%;
	margin-top:-128px;
	left:34px;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	z-index: 99;
}

.banner .swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom:0;
	right: 88px;
	height:40px;
	line-height: 40px;
	color:#b1b1b1;
	font-size:16px;
	top:40px;
}
.swiper-pagination-fraction span{
	color:#b1b1b1;
	line-height:40px;
	font-size:16px;
}
.swiper-pagination-fraction .swiper-pagination-current{
	color:#cf1423;
	font-size:26px;
	font-weight:bold;
}
.swiper-pagination-fraction span:before{
	content:"0";
	}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: 44px;
	height: 44px;
	display: inline-block;
	border-radius: 50%;
	border:solid 1px #fff;
	line-height:45px;
	font-family:Arial;
	font-size:16px;
	color:#fff;
	margin:10px 0;
	outline:none;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet-active,.swiper-pagination-bullet:hover{
	border:solid 2px #fff;
	line-height:46px;
	font-weight:bold;
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top,.2s -webkit-transform;
	transition: .2s top,.2s -webkit-transform;
	-o-transition: .2s transform,.2s top;
	transition: .2s transform,.2s top;
	transition: .2s transform,.2s top,.2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left,.2s -webkit-transform;
	transition: .2s left,.2s -webkit-transform;
	-o-transition: .2s transform,.2s left;
	transition: .2s transform,.2s left;
	transition: .2s transform,.2s left,.2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right,.2s -webkit-transform;
	transition: .2s right,.2s -webkit-transform;
	-o-transition: .2s transform,.2s right;
	transition: .2s transform,.2s right;
	transition: .2s transform,.2s right,.2s -webkit-transform
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255,255,255,.25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	animation: swiper-preloader-spin 1s steps(12,end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}

/*shubiao*/
.shubiao-index{
	position:absolute;
	bottom:30px;
	left:50%;
	width:26px;
	margin-left:-13px;
	z-index:99;
}
.shubiao{
	position:relative;
}
.shubiao-ncon{
	margin-top:70px;
}
.shubiao_line {
    width: 1px;
    height: 60px;
    background: #fff;
    margin:10px auto;
}
.shubiao_pinyin{
	font-size:14px;
	text-align:center;
	color:#282828;
	margin-top:5px;
}
.shubiao{
	margin:0 auto;
}
.mouse {
  position: relative;
  width: 25px;
  height: 40px;
  border-radius: 30px;
  border: 3px solid #fff;
  margin:auto;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 4px;
  height: 9px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
.banner .bannermore{
	width:480px;
	height:180px;
	overflow:hidden;
	background:#203371 url(../images/morebg.jpg) no-repeat right bottom;
	position:absolute;
	right:0;
	bottom:0;
	z-index:99;
	}
.bannermorenr{
	font-size:20px;
	color:#fff;
	line-height:30px;
	padding-left:60px;
	position:relative;
	margin-left:80px;
	margin-top:70px;
	}
.bannermorenr:before{
	content:"";
	width:30px;
	height:2px;
	background:#fff;
	position:absolute;
	left:0;
	top:14px;
	}
.banly{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-bottom:20px;
}
.banner .bannermore a{
	color:#fff;
	font-size:16px;
	display:block;
	}
.banner .bannermore a span{
	color:#fff;
	font-size:50px;
	display:block;
	float:right;
	}
/*banner*/

/* tit

-------------------------------------------------------------- */
.tit{
	width:100%;
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:55px;
	color:#323232;
	line-height:65px;
	text-align:center;
	margin-bottom:26px;
	}
.tit h3 a{
	font-size:55px;
	color:#323232;
	}
.tit hr{
	width:68px;
	border:none;
	border-bottom:solid 4px #095ec7;
	margin:auto;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#acacac;
	font-family:Arial;
	line-height:40px;
	text-align:center;
	text-transform:uppercase;
	margin-top:32px;
	}
.more{
	overflow:hidden;
	}
.more a{
	width:166px;
	height:48px;
	display:block;
	font-size:15px;
	color:#fff;
	line-height:48px;
	text-align:center;
	background:#004b94;
	}
	

/* pro
-------------------------------------------------------------- */
.pro{
	padding-top:115px;
	}
.pronr{
	width:100%;
	overflow:hidden;
	margin-top:76px;
	}
.pro .prolf{
	width:60%;
	overflow:hidden;
	position:relative;
	}
.pro .prolf img,.pro .prort ul li img{
	width:100%;
	height:auto;
	}
.pro .prolf:hover img,.pro .prort ul li:hover img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
	}
.prolf .protit,.prolf .protit h4,.prolf .protit p{
	width:100%;
	overflow:hidden;
	}
.prolf .protit{
	position:absolute;
	left:0;
	top:46px;
	padding:0 58px;
	}
.prolf .protit h4,.pro .prort ul li .protitrt h4{
	font-size:35px;
	color:#323232;
	line-height:45px;
	}
.prolf .protit p,.pro .prort ul li .protitrt p{
	font-size:20px;
	font-family:Arial;
	color:#959598;
	line-height:30px;
	}
.pro .prort{
	width:40%;
	overflow:hidden;
	padding-left:30px;
	}
.pro .prort ul,.pro .prort ul li,.pro .prort ul li .protitrt{
	width:100%;
	overflow:hidden;
	}
.pro .prort ul li{
	position:relative;
	}
.pro .prort ul li .protitrt{
	position:absolute;
	left:0;
	top:0;
	padding:0 58px;
	margin-top:35px;
	}
.swiper-button-next,.swiper-button-prev{
	outline:none;
	}
.pro .prort ul li:nth-child(2){
	margin-top:34px;
	}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat right 70px;
	padding-top:182px;
	padding-bottom:238px;
	}
.about .aboutlf{
	overflow:hidden;
	padding:0;
	font-family:Arial;
	font-size:22px;
	color:#323232;
	line-height:30px;
	text-transform:uppercase;
	}
.about .aboutlf .abouten{
	width:100%;
	overflow:hidden;
	font-size:22px;
	font-family:Arial;
	color:#323232;
	line-height:30px;
	text-transform:uppercase;
	margin-bottom:40px;
	}
.about .aboutlf h5{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#323232;
	line-height:60px;
	}
.about .aboutlf h4{
	width:100%;
	overflow:hidden;
	font-size:60px;
	color:#323232;
	line-height:70px;
	margin-top:11px;
	}
.aboutnr .aboutms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#848484;
	padding-right:156px;
	margin-top:43px;
	text-align:justify;
	}
.aboutnr .aboutmore{
	width:100%;
	overflow:hidden;
	margin-top:64px;
	}
.aboutnr .aboutmore a{
	display:block;
	font-size:16px;
	color:#fff;
	width:208px;
	height:56px;
	background:#095ec7;
	text-align:center;
	line-height:56px;
	border-radius:30px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.ab_fl{
	width:100%;
	overflow:hidden;
	margin-top:87px;
}
.ab_fl dl{
	overflow:hidden;
	padding:0;
}
.ab_fl dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	font-weight:normal;
}
.ab_fl dl dd{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#323232;
	line-height:30px;
}
.ab_fl dl dt .counter{
	font-size:55px;
	color:#323232;
	font-family:Arial;
	line-height:55px;
	}

.aboutnr .aboutmore a:hover,.hyyymore a:hover,.newsmore a:hover,.hzhbmore a:hover{
	opacity:0.8;
}

/* news
-------------------------------------------------------------- */
.proys {
	width:100%;
	overflow:hidden;
    position: relative;
    z-index: 99;
	padding-top:93px;
	padding-bottom:198px;
}
.proysnr{
	margin-top:82px;
	position:relative;
	}
.proys .tit h3,.proys .tit h3 a,.proys .tit p{
	color:#fff;
	}
.proysnr .swiper-slide .proyslist{
	width:100%;
	height:560px;
	overflow:hidden;
	border-radius:20px;
	padding-top:142px;
	position:relative;
	}
.proysnr .swiper-slide .proyslist:after{
	content:"";
	width:100%;
	height:100%;
	background:#3d66d3;
	position:absolute;
	left:0;
	top:0;
	opacity:0;
	z-index:-1;
	-webkit-transition: .5s;
    transition: .5s;
	}
.proysnr .swiper-slide:hover .proyslist:after{
	opacity:1;
	}
.proysnr .swiper-slide:hover .proyslist{
	background:none !important;
	}
.proysnr .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.proysnr .swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.proysnr .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.proysnr .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
}

.proysnr .swiper-container-android .swiper-slide,.proysnr .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.proysnr .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.proysnr .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
}

.proysnr .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0 28px;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.proysnr .swiper-slide .img img{
	width:100%;
	height:auto;
}
.proysnr .swiper-slide-invisible-blank {
	visibility: hidden
}

.proysnr .swiper-container-autoheight,.proysnr .swiper-container-autoheight .swiper-slide {
	height: auto
}

.proysnr .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
}

.proysnr .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.proysnr .swiper-button-prev,.proysnr .swiper-button-next{
	width:50px;
	height:50px;
	z-index:99;
	}
.proysnr .swiper-button-prev{
	background:#fff url(../images/prev2.png) no-repeat center;
	position:absolute;
	right:0;
	bottom:0;
	}
.proysnr .swiper-button-next{
	background:#095ec7 url(../images/next2.png) no-repeat center;
	position:absolute;
	right:-50px;
	bottom:0;
	}
.proysnr .swiper-slide:nth-child(2n){
	margin-top:62px;
	}
.proysnr .swiper-slide:nth-child(3n){
	margin-top:124px;
	}
.proyslist .ysicon{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.proyslist h4{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#fff;
	line-height:45px;
	text-align:center;
	margin-top:46px;
	}
.proyslist .ysms{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#fff;
	line-height:30px;
	padding:0 70px;
	margin-top:34px;
	}
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #071026;
    mix-blend-mode: color-burn
}

.particles #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
}
.proysnr .swiper-button{
	overflow:hidden;
	display:none;
}
.proysnr .swiper-button-prev,.proysnr .swiper-button-next{
	width:16px;
	height:30px;
	z-index:99;
	position:absolute;
	bottom:0;
	}
.proysnr .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
	left:0;
	}
.proysnr .swiper-button-prev:after{
	content:"";
	width:1px;
	height:30px;
	background:#6a707d;
	position:absolute;
	right:-24px;
	top:0;
}
.proysnr .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	left:60px;
	}
canvas{
    display: inline-block;
    zoom: 1;
}
/* hyyy
-------------------------------------------------------------- */
.hyyy{
	width:100%;
	overflow:hidden;
	padding-left:11.6%;
	margin-top:200px;
	}
.hyyy .hyyylf{
	width:43%;
	overflow:hidden;
	padding-right:180px;
	padding-top:60px;
	}
.hyyy .hyyylf h4{
	width:100%;
	overflow:hidden;
	font-size:55px;
	color:#fff;
	line-height:65px;
	margin-bottom:46px;
	}
.hyyy .hyyylf hr{
	width:350px;
	border:none;
	border-bottom:solid 4px #095ec7;
	letter-spacing: 5px;
	}
.hyyylf .hyyylf_ms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:rgba(255,255,255,0.4);
	margin-top:77px;
	text-align:justify;
	}
.hyyymore{
	width:100%;
	overflow:hidden;
	margin-top:212px;
	}
.hyyymore a{
	display:block;
	font-size:16px;
	color:#fff;
	width:208px;
	height:56px;
	text-align:center;
	line-height:56px;
	border-radius:30px;
	background:#095ec7;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.hyyy .hyyyrt{
	width:57%;
	height:880px;
	overflow:hidden;
	background:url(../images/hyyybg.jpg) no-repeat top center;
	background-size:cover;
	}
.hyyy .hyyyrt ul{
	width:100%;
	overflow:hidden;
	padding-right:48%;
	}
.hyyy .hyyyrt ul li,.hyyy .hyyyrt ul li .hyyyicon,.hyyy .hyyyrt ul li h4,.hyyy .hyyyrt ul li .hyyyrt_js{
	width:100%;
	overflow:hidden;
	}
.hyyy .hyyyrt ul li .hyyyicon img{
	max-width:100%;
	height:auto;
	}
.hyyy .hyyyrt ul li{
	padding:52px 68px 0 70px;
	margin-bottom:30px;
	-webkit-transition: .5s;
    transition: .5s;
	}
.hyyy .hyyyrt ul li h5{
	font-size:23px;
	color:#fff;
	line-height:33px;
	margin-top:9px;
	}
.hyyy .hyyyrt ul li .hyyyrt_js{
	font-size:15px;
	color:#fff;
	line-height:30px;
	margin-top:53px;
	text-align: justify;
    -webkit-transition: .54s;
    transition: .54s;
	display:none;
	}
.hyyy .hyyyrt ul li .hyyyrt_more{
	width:100%;
	overflow:hidden;
	margin-top:90px;
    -webkit-transition: .54s;
    transition: .54s;
	display:none;
	}
.hyyy .hyyyrt ul li .hyyyrt_more img{
	max-width:100%;
	height:auto;
	}
.hyyy .hyyyrt ul li.active{
	background:#3d66d3;
	padding-bottom:86px;
	}
.hyyy .hyyyrt ul li.active .hyyyrt_js,.hyyy .hyyyrt ul li.active .hyyyrt_more{
	display:block;
	}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	position:relative;
	padding-bottom:290px;
	margin-top:156px;
	}
.news:before{
	content:"";
	width:61%;
	height:771px;
	position:absolute;
	right:0;
	top:0;
	background:url(../images/newsbg.jpg) no-repeat center;
	background-size:cover;
	z-index:-1;
	}
.newsnr h4{
	width:100%;
	overflow:hidden;
	font-size:55px;
	color:#323232;
	line-height:65px;
	margin-top:10px;
	}
.newsnr h4:first-child{
	margin-top:46px;
	}
.newslf{
	width:30%;
	overflow:hidden;
	}
.newslf ul,.newslf ul li{
	width:100%;
	overflow:hidden;
	}
.newslf ul{
	margin-top:60px;
	}
.newslf ul li{
	line-height:30px;
	margin-top:32px;
	}
.newslf ul li a{
	font-size:22px;
	color:#323232;
	position:relative;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newslf ul li a:before{
	content:"";
	width:54px;
	height:1px;
	background:#095ec7;
	position:absolute;
	left:0;
	top:14.5px;
	opacity:0;
	}
.newslf ul li:hover a{
	color:#095ec7;
	padding-left:70px;
	}
.newslf ul li:hover a:before{
	opacity:1;
	}
.newsmore{
	width:100%;
	overflow:hidden;
	margin-top:184px;
	}
.newsmore a{
	font-size:16px;
	color:#fff;
	display:block;
	width:208px;
	height:56px;
	line-height:56px;
	text-align:center;
	background:#095ec7;
	border-radius:30px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newsrt{
	width:70%;
	overflow:hidden;
	}
.newslist{
	width:610px;
	height:355px;
	background:#095ec7;
	position:relative;
	}
.newslistnr,.newslist_top{
	width:100%;
	overflow:hidden;
	}
.newslist_top{
	border-bottom:solid 1px rgba(255,255,255,0.4);
	padding-bottom:24px;
	}
.newslist_top h5{
	width:70%;
	overflow:hidden;
	font-size:23px;
	color:#fff;
	font-weight:normal;
	line-height:30px;
	float:left;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newslist_top .newsdate{
	width:30%;
	overflow:hidden;
	float:right;
	text-align:right;
	font-size:15px;
	color:#fff;
	line-height:30px;
	}
.newslistnr{
	width:100%;
	overflow:hidden;
	padding:50px;
	}
.newslist_ms{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:rgba(255,255,255,0.6);
	line-height:30px;
	padding-top:22px;
	}
.newslist_more{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#fff;
	line-height:30px;
	margin-top:58px;
	}
.newslist .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.newslist .swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.newslist .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.newslist .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
}

.newslist .swiper-container-android .swiper-slide,.newslist .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.newslist .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.newslist .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
}

.newslist .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.newslist .swiper-slide .img img{
	width:100%;
	height:auto;
}
.newslist .swiper-slide-invisible-blank {
	visibility: hidden
}

.newslist .swiper-container-autoheight,.newslist .swiper-container-autoheight .swiper-slide {
	height: auto
}

.newslist .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
}

.newslist .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.newslist .swiper-button-prev,.newslist .swiper-button-next{
	width:50px;
	height:50px;
	z-index:99;
	}
.newslist .swiper-button-prev{
	background:#fff url(../images/prev2.png) no-repeat center;
	position:absolute;
	right:0;
	bottom:0;
	}
.newslist .swiper-button-next{
	background:#095ec7 url(../images/next2.png) no-repeat center;
	position:absolute;
	right:-50px;
	bottom:0;
	}
/* hzkh
-------------------------------------------------------------- */
.hzkh{
	width:100%;
	overflow:hidden;
	background:#f8f8f8;
	padding-top:200px;
}
.hzkhnr .hzkhlf{
	width:67%;
	overflow:hidden;
}
.hzkhnr .hzkhlf ul{
	width:100%;
	overflow:hidden;
}
.hzkhnr .hzkhlf ul li{
	width:23%;
	overflow:hidden;
	padding:0;
	text-align:center;
	margin:33px 1%;
	float:left;
}
.hzkhnr .hzkhlf ul li img{
	max-width:100%;
	height:auto;
	-webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.hzkhnr .hzkhlf ul li:hover img{
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
	cursor:pointer;
}
.hzkhnr .hzkhrt{
	width:33%;
	overflow:hidden;
	padding-left:6%;
}
.hzkhnr .hzkhrt .hzkhrt_tit{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#353535;
	line-height:55px;
	font-weight:bold;
	margin-bottom:30px;
}
.hzkhrt .hzkhrt_tit span{
	font-size:65px;
	color:#095ec7;
	font-weight:normal;
}
.hzkhrt p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#323232;
	line-height:30px;
}
.hzhbmore{
	width:100%;
	overflow:hidden;
	margin-top:138px;
}
.hzhbmore a{
	display:block;
	width:208px;
	height:56px;
	background:#095ec7;
	text-align:center;
	line-height:56px;
	font-size:16px;
	color:#fff;
	border-radius:30px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	background:#f8f8f8;
	padding-top:132px;
	padding-bottom:158px;
	}
.casenr{
	position:relative;
	}
.caselist{
	width:100%;
	overflow:hidden;
	margin-top:68px;
	}
.caselist .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding:0;
	z-index: 1;
}

.caselist .swiper-container-no-flexbox .swiper-slide {
	float: left
}

.caselist .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.caselist .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.caselist .swiper-container-android .swiper-slide,.pro .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.caselist .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.caselist .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.caselist .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	padding:0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.caselist .swiper-slide .img img{
	width:100%;
	height:auto;
}
.caselist .swiper-slide-invisible-blank {
	visibility: hidden
}

.caselist .swiper-container-autoheight,.pro .swiper-container-autoheight .swiper-slide {
	height: auto
}

.caselist .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.caselist .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.caselist .swiper-slide .caserq{
	width:100%;
	height:474px;
	overflow:hidden;
	position:relative;
	}
.caselist .swiper-slide .caseimg{
	width:100%;
	overflow:hidden;
	}
.caselist .swiper-slide .caseimg img{
	max-width:100%;
	height:auto;
	}
.caselist .swiper-slide .casetxt{
	width:90%;
	height:265px;
	overflow:hidden;
	padding:43px 50px 0 50px;
	background:#fff;
	position:absolute;
	left:5%;
	top:44%;
	}
.casetxt h4,.casetxt .casems,.casetxt .casems p{
	width:100%;
	overflow:hidden;
	}
.casetxt .casems{
	margin-top:20px;
	}
.casetxt h4{
	font-size:20px;
	color:#434343;
	line-height:30px;
	}
.casetxt .casems,.casetxt .casems p{
	line-height:30px;
	font-size:16px;
	color:#8b8b8b;
	}
.caselist .swiper-button{
	overflow:hidden;
	position:absolute;
	z-index:9;
	right:0;
	top:30px;
}
.caselist .swiper-button-next,.caselist .swiper-button-prev {
	width: 80px;
	height: 80px;
	float:left;
	margin:0;
}
.caselist .swiper-button-prev{
	background:#203371 url(../images/prev.png) no-repeat center;
	}
.caselist .swiper-button-next{
	background:#fff url(../images/next.png) no-repeat center;
	}

/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	background:#323232;
	color:#979797;
	font-size:16px;
	line-height:30px;
	}
.linknr{
	border-bottom:solid 1px #4b4b4b;
	padding-bottom:37px;
	padding-top:42px;
	}
.link a{
	font-size:16px;
	margin-right:10px;
	color:#979797;
	}
	
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#323232;
	padding-top:82px;
}
.footerlf{
	width:33%;
	overflow:hidden;
}
.footerlf .blogo{
	width:100%;
	overflow:hidden;
}
.footerlf .blogo img{
	max-width:100%;
	height:auto;
}
.footerlf dl{
	width:100%;
	overflow:hidden;
	background:url(../images/icon7.png) no-repeat left center;
	padding-left:62px;
	margin-top:42px;
	margin-bottom:24px;
}
.footerlf dl dt{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#969696;
	line-height:30px;
	}
.footerlf dl dd{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#d7d7d7;
	line-height:40px;
	font-family:Arial;
	}
.footerlf dl dd a{
	font-size:40px;
	color:#d7d7d7;
}
.footerlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#969696;
	line-height:30px;
	}
.footerlf .bewm{
	width:100%;
	overflow:hidden;
	margin-top:32px;
	}
.footerlf .bewm img{
	max-width:100%;
	height:auto;
	}
.footerrt{
	width:14%;
	overflow:hidden;
	}
.footerrt dl{
	overflow:hidden;
	float:right;
	}
.footerrt dl dt,.footerrt dl dd{
	overflow:hidden;
	text-align:center;
}
.footerrt dl dt img{
	max-width:100%;
	height:auto;
}
.footerrt dl dd{
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
	margin-top:14px;
}
.footernr .bnav{
	width:53%;
	overflow:hidden;
	}
.footernr .bnav ul{
	width:100%;
	overflow:hidden;
	}
.footernr .bnav ul li{
	width:20%;
	overflow:hidden;
	float:left;
	}
.footernr .bnav ul li h4{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#d7d7d7;
	line-height:30px;
	margin:0 0 20px 0;
	text-align:left;
	font-weight:normal;
	}
.footernr .bnav ul li h4 a{
	font-size:17px;
	color:#fff;
	}
.footernr .bnav ul li p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#969696;
	line-height:30px;
	margin-top:13px;
	text-align:left;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.footernr .bnav ul li p a{
	font-size:15px;
	color:#969696;
	}
.footernr .bnav ul li p a:hover{
	color:#fff;
	}
.bot{
	width:100%;
	overflow:hidden;
	padding:43px 0;
	border-top:solid 1px rgba(255,255,255,0.15);
	margin-top:74px;
	}
.bot .botlf,.bot .botrt{
	overflow:hidden;
	color:rgba(255,255,255,0.3);
	padding:0;
	line-height:30px;
	}
.bot .botrt{
	text-align:right;
	}
.bot a{
	color:rgba(255,255,255,0.3);
	}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:600px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:800px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:525px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:450px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:425px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:400px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:360px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:320px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:310px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:240px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:200px;
	}
}
/* position
-------------------------------------------------------------- */
.nmenu {
	text-align:center;
	height:64px;
}
.nmenu ul{
	overflow:hidden;
	display:inline-block;
}
.nmenu ul li{
	overflow:hidden;
	float:left;
	line-height:30px;
	padding:17px 25px;
	-webkit-transition: .5s;
    transition: .5s;
}
.nmenu ul li a{
	font-size:16px;
	color:#333;
	display:block;
}
.nmenu ul li:hover,.nmenu ul li.active{
	background:#666;
	}
.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:#095ec7;
	line-height:45px;
	}
.ntit p{
	width:100%;
	overflow:hidden;
	font-size: 22px;
    color: #9e9e9e;
	line-height:32px;
	font-weight:bold;
	}
/* nabout
-------------------------------------------------------------- */
.nabout{
	margin-top:80px;
	margin-bottom:80px;
	}
.nabout .naboutimg{
	width:42%;
	overflow:hidden;
	}
.nabout .naboutnr{
	width:58%;
	overflow:hidden;
	font-size:16px;
	color:#585858;
	line-height:30px;
	padding-left:60px;
	text-align: justify;
	}
.nabout .naboutnr p{
	overflow:hidden;
	font-size:16px;
	color:#585858;
	line-height:30px;
	}
.nabout .naboutnr img,.nabout .naboutimg img,.nabout img{
	max-width:100%;
	height:auto;
	}
.nhzkh,.nqyfc{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.nhzkh h4,.nqyfc h4{
	width:100%;
	overflow:hidden;
	text-align: center;
    font-size: 36px;
    color: #323231;
    line-height: 46px;
	}
.nhzkh ul,.nqyfc ul{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.nhzkh ul li{
	width: 23%;
    overflow: hidden;
    margin: 20px 1%;
    float: left;
	text-align:center;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nhzkh ul li img,.nqyfc ul li img{
	max-width:100%;
	height:auto;
}
.nqyfc ul li{
	width:48%;
	overflow:hidden;
	float:left;
	margin:15px 1%;
}

/* nkyhz
-------------------------------------------------------------- */
.nkyhz{
	margin-top:60px;
	margin-bottom:60px;
}
.nkyhznr{
	width:100%;
	overflow:hidden;
}
.nkyhznr dl{
	overflow:hidden;
	padding:0 10px;
	margin:10px 0;
}
.nkyhznr dl dt,.nkyhznr dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.nkyhznr dl dt img{
	max-width:100%;
	height:auto;
}
.nkyhznr dl dd{
	line-height:20px;
	padding:5px 0;
	height:50px;
}
/* npro
-------------------------------------------------------------- */
.npro{
	width:100%;
	overflow:hidden;
	background:#f1f1f1;
	padding-top:60px;
	padding-bottom:60px;
	}
.npronr ul{
	width:100%;
	overflow:hidden;
	}
.npronr ul li{
	width:31.3333333%;
	overflow:hidden;
	position:relative;
	float:left;
	margin:20px 1%;
	background:#fff;
	}
.npronr ul li .npropic{
	width:100%;
	overflow:hidden;
	height:289px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	}
.npronr ul li .npropic img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.npronr ul li:hover .npropic img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.npronr ul li .nprobg{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(9,94,199,0.8) url(../images/icon9.png) no-repeat center;
	opacity:0;
	z-index:99;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
	}
.npronr ul li:hover .nprobg{
	opacity:1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.npronr ul li .nprotit{
	width:82%;
	overflow:hidden;
	margin:0 9%;
	color: #333;
    font-size: 16px;
	line-height:30px;
	padding:20px 0;
	text-align:center;
	border-top:solid 1px #a9a9a9;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.npro_info{
	margin-top:60px;
	margin-bottom:60px;
}
.npronr .nprojs h1{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#1f1f1f;
	line-height:36px;
	font-weight:normal;
	border-bottom:solid 1px #eaeaea;
	padding-bottom:24px;
}
.npronr .nproimg{
	overflow:hidden;
	text-align:center;
	padding:0;
	}
.npronr .nproimg img{
	max-width:100%;
	height:auto;
	}
.npronr .nprojs{
	overflow:hidden;
	padding:0 0 0 40px;
}
.nlxfs{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.nlxfs a{
	display:block;
	width:160px;
	height:50px;
	text-align:center;
	font-size:16px;
	color:#095ec7;
	line-height:50px;
	border:solid 2px #095ec7;
	border-radius:25px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nlxfs a:hover{
	background:#095ec7;
	color:#fff;
}
.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;
	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%;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
/* nsb
-------------------------------------------------------------- */
.nsb{
	margin-top:60px;
	margin-bottom:60px;
	}
.nsb .nsbnr{
	width:100%;
	overflow:hidden;
	}
.nsb .ntit h3,.nsb .ntit p{
	text-align:left;
	}
.nsb .ntit p{
	font-size:28px;
	color:#e1e1e1;
	}
.nsblist{
	width:100%;
	overflow:hidden;
	margin-bottom:45px;
	}
.nsblist dl{
	width:23.5%;
	overflow:hidden;
	float:left;
	margin:15px 2% 15px 0;
}
.nsblist dl:nth-child(4n){
	margin-right:0;
	}
.nsblist dl dt,.nsblist dl dd{
	width:100%;
	overflow:hidden;
	}
.nsblist dl dt{
	width:100%;
	overflow:hidden;
	height:316px;
	position:relative;
	}
.nsblist dl dd{
	font-size:18px;
	color:#343434;
	line-height:30px;
	padding-bottom:10px;
	margin-top:23px;
	text-align:center;
}
.nsblist dl dt .nsbbg{
	position:absolute;
	width:100%;
	height:100%;
	background:rgba(0,78,162,0.8) url(../images/icon4.png) no-repeat center;
	top:0;
	left:0;
	padding-top:62px;
	opacity:0;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	}
.nsblist dl:hover dt .nsbbg{
	opacity:1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.nsblist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nsblist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nsblist dl:hover dd{
	color:#3467ac;
	}
/* nxmgl
-------------------------------------------------------------- */
.nxmgl{
	margin-top:60px;
	margin-bottom:60px;
	}
.nxmgl .ntit h3{
	text-align:left;
	}
.nxmgl .ntit p{
	text-align:left;
	font-size:20px;
	color:#e4e4e4;
	}
.nxmglnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	margin-top:65px;
	}
.nxmglnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nxmglnr img{
	max-width:100%;
	height:auto;
	}
/* njbzxfa
-------------------------------------------------------------- */
.njbzxfa{
	margin-top:60px;
	margin-bottom:60px;
	}
.njbzxfanr{
	width:100%;
	overflow:hidden;
	margin-top:94px;
	}
.njbzxfanr dl{
	width:100%;
	overflow:hidden;
	background:#fff;
	margin:0;
	}
.njbzxfanr dl dt,.njbzxfanr dl dd{
	padding:0;
	}
.njbzxfa .ntit h3{
	text-align:left;
	}
.njbzxfa .ntit p{
	text-align:left;
	color:#e0e0e0;
	font-size:28px;
	}
.njbzxfanr dl dt{
	padding:80px 52px 0 52px;
	}
.njbzxfanr dl dt h4{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:22px;
	color:#000;
	line-height:30px;
	font-weight:bold;
	}
.njbzxfanr dl dt p{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:18px;
	color:#343434;
	line-height:30px;
	font-weight:normal;
	margin-top:28px;
	}
.njssl{
	margin-top:60px;
	margin-bottom:60px;
	}
.njssl .njsslnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
.njssl .njsslnr h4{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:26px;
	color:#343434;
	line-height:35px;
	}
.njssl .njsslnr p{
	width:100%;
	overflow:hidden;
	margin:0;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
.kycg{
	width:100%;
	overflow:hidden;
	background:url(../images/honorbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:76px;
	padding-bottom:70px;
	}
.kycg h3{
	width:100%;
	overflow:hidden;
	font-size:36px;
	color:#fff;
	text-align:center;
	line-height:45px;
	}
.kycg dl,.kycg dl dt,.kycg dl dd{
	width:100%;
	overflow:hidden;
	}
.kycg dl dt{
	text-align:center;
	}
.kycg dl dd{
	text-align:center;
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-top:20px;
	}
.kycgnr{
	margin-top:60px;
	}
.kycgnr .owl-carousel .owl-item{
	padding:0 15px;
	}
.kycg dl dt img{
	max-width:100%;
	height:auto;
	}
/* nhonor
-------------------------------------------------------------- */
.nhonor{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhonor .ntit h3{
	text-align:left;
	}
.nhonor .ntit p{
	text-align:left;
	font-size:28px;
	color:#e1e1e1;
	}
.nhonornr{
	width:100%;
	overflow:hidden;
	background:url(../images/honor.jpg) no-repeat right top;
	margin-top:128px;
	padding-bottom:66px;
	}
.nhonornr .nhonorlist{
	padding:0;
	margin-top:70px;
	}
.nhonornr .nhonorlist dl{
	background:#fff;
	padding-top:36px;
	padding-bottom:45px;
	margin:0;
	}
.nhonornr .nhonorlist dl dt,.nhonornr .nhonorlist dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.nhonorlist dl dd{
	font-size:22px;
	color:#343434;
	line-height:30px;
	margin-top:28px;
	font-weight:bold;
	}
/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:60px;
	margin-bottom:60px;
	}
.npro .nnews{
	margin-top:0;
	margin-bottom:0;
}
.nnews dl{
	width:100%;
	overflow:hidden;
	background:#fff;
	position:relative;
	z-index:1;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.04);
	margin-bottom:40px;
	}
.nnews dl:after{
	content:"";
	width: 0;
    height: 0;
    padding-top: 0;
    position: absolute;
    background: #095ec7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
	}
.nnews dl dt{
	width:15%;
	overflow:hidden;
	float:left;
	padding:30px 0 30px 34px;
	position:relative;
	}
.nnews dl dt:after{
	content:"";
	width:1px;
	position:absolute;
	height:0%;
	right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    z-index: 2;
    transition: .7s;
	}
.nnews dl:hover dt:after{
	height:200%;
	transition-delay:.3s;
	}
.nnews dl dt .time{
	width:145px;
	height:145px;
	border: 1px solid #095ec7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	}
.nnews dl dt .time p{
	width:100%;
	overflow:hidden;
	font-size: 25px;
    color: #095ec7;
	text-align:center;
	line-height:35px;
	font-weight:normal;
	}
.nnews dl dd{
	width:80%;
	overflow:hidden;
	float:left;
	padding-left:5%;
	padding-top:30px;
	}
.nnews dl dd h5{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#333;
	line-height:34px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nnews dl dd .nnewsjs{
	width:100%;
	overflow:hidden;
	color:#a4a4a4;
	line-height:30px;
	margin-top:17px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nnews dl dd .nnewsmore{
	width:100%;
	overflow:hidden;
	font-size: 16px;
    color: #095ec7;
	margin-top:40px;
	}
.nnews dl:hover:after{
  width: 100%;
  padding-top: 100%;
  transform: translate(-50%, -50%) scale(3);
  transition: .5s;
  transition-timing-function: linear;
}
.nnews dl:hover dd h5,.nnews dl:hover dd .nnewsjs,.nnews dl:hover dd .nnewsmore,.nnews dl:hover dt .time p{
	color:#fff;
	}
.nnews dl:hover dt .time{
	border:solid 1px #fff;
	}
.nnews h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
	line-height:34px;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
	}
.nnews .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    color: #666;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.nnews .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* nxsfw
-------------------------------------------------------------- */
.nxsfw{
	width:100%;
	overflow:hidden;
	background:url(../images/xsfwbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:230px;
	padding-bottom:1175px;
	}
.nxsfwnr{
	padding:0;
	}
.nxsfwnr h3{
	width:100%;
	overflow:hidden;
	font-size:80px;
	color:#232323;
	line-height:90px;
	}
.nxsfwjs{
	width:100%;
	overflow:hidden;
	font-size:15px;
	line-height:26px;
	color:#232323;
	margin-top:48px;
	}
/* ncase
-------------------------------------------------------------- */
.ncase{
	margin-top:60px;
	margin-bottom:60px;
	}
.ncase dl{
	padding:0 10px;
	margin:20px 0;
	}
.ncase dl dt,.ncase dl dd{
	width:100%;
	overflow:hidden;
	}
.ncase dl dt{
	position:relative;
	height:344px;
}
.ncase dl dd{
	font-size:18px;
	line-height:30px;
	margin-top:20px;
	}
.ncase dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.ncase dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.poptrox-popup{
	overflow:visible !important;
}
	
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	margin-top:60px;
	margin-bottom:60px;
}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	border-top:solid 1px #d1d1d1;
	font-size:18px;
	color:#333;
	line-height:35px;
	padding:40px 0 0 0;
	margin-top:28px;
	}
.ncontact .ncontactnr .ncontactlf{
	width:80%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.newm{
	width:20%;
	overflow:hidden;
	}
.newm dl{
	overflow:hidden;
	float:right;
	}
.newm dl dt,.newm dl dd{
	overflow:hidden;
	text-align:center;
	}
.newm dl dt img{
	max-width:100%;
	height:auto;
	border: solid 1px #ccc;
}
.newm dl dd{
	font-size:16px;
	color:#333;
	line-height:32px;
	}
.ncontact .ncontactnr p,.ncontact .ncontactnr .ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.ncontact .ncontactnr p a{
	font-size:16px;
	color:#333;
	}
/* nmessage
-------------------------------------------------------------- */
.nmessage{
	margin-top:80px;
	margin-bottom:80px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:360px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.nmessagenr dl:last-child{
	width:100%;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon10.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon11.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr dl:nth-child(3) dd textarea{
	background:#fff url(../images/icon12.png) no-repeat 24px 21.5px;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #095ec7;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:6px;
	color:#343434;
	}
.btn1 .intxt{
	width:60px;
	height:32px;
	overflow:hidden;
	font-size:15px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}

/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;width:auto;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp2{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color:#095ec7;
}

.a_txt,.rg{
	display:none;
}
.rg img{
	height:24px;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.topewm{display:none}
.headernr{
	width:98%;
}
.rg{display:block;padding-top:8px;float:right;margin-right:10px;}
.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: 1922px){
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:100vh;
	}
}
@media only screen and (min-width: 1920px) and (max-width: 1921px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:960px;
	}
}
@media only screen and (min-width: 1680px) and (max-width: 1919px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:840px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1679px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:800px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:720px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1600px) {
	.npronr ul li .npropic{
		height:248px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:680px;
	}
	.npronr ul li .npropic{
		height:234px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:640px;
	}
	.npronr ul li .npropic{
		height:220px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:576px;
	}
	.npronr ul li .npropic{
		height:198px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.banner .swiper-slide .img, .banner .swiper-slide .video{
		height:512px;
	}
	.npronr ul li .npropic{
		height:176px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.npronr ul li .npropic{
		height:170px;
	}
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	.npronr ul li .npropic{
		height:227px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 859px) {
	.npronr ul li .npropic{
		height:202px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.npronr ul li .npropic{
		height:168px;
	}
	.banner .swiper-slide .img{
		height:400px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.npronr ul li .npropic{
		height:142px;
	}
	.banner .swiper-slide .img{
		height:340px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.npronr ul li .npropic{
		height:112px;
	}
	.banner .swiper-slide .img{
		height:266px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
	.npronr ul li .npropic{
		height:98px;
	}
	.banner .swiper-slide .img{
		height:230px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
	.npronr ul li .npropic{
		height:84px;
	}
	.banner .swiper-slide .img{
		height:200px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.npronr ul li .npropic{
		height:80px;
	}
	.banner .swiper-slide .img{
		height:190px;
	}
}

@media(max-width:1680px) {
	.about .aboutlf h5{
		font-size:46px;
		line-height:56px;
	}
	.about .aboutlf h4{
		font-size:56px;
		line-height:66px;
	}
	.ab_fl dl dt .counter{
		font-size:50px;
		line-height:50px;
	}
	.prolf .protit h4, .pro .prort ul li .protitrt h4{
		font-size: 32px;
		line-height:42px;
	}
	.tit h3,.tit h3 a,.hyyy .hyyylf h4,.newsnr h4{
		font-size:50px;
		line-height:60px;
	}
	.hyyy .hyyylf hr {
		width: 300px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
		}
	.nav {
		margin-right: 40px;
	}
	.nav .menu > li {
		margin: 0 25px;
	}
	.about .aboutlf h5{
		font-size:42px;
		line-height:52px;
	}
	.about .aboutlf h4{
		font-size:52px;
		line-height:62px;
	}
	.proyslist h4{
		font-size:30px;
		line-height:40px;
	}
	.tit h3,.tit h3 a,.hyyy .hyyylf h4,.newsnr h4{
		font-size:46px;
		line-height:56px;
	}
	.hyyy .hyyylf hr {
		width: 280px;
	}
	.tit p{
		font-size:26px;
		line-height:36px;
	}
	.ntit h3 {
		font-size: 32px;
		line-height: 42px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit{
		font-size:40px;
		line-height:50px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit span{
		font-size:60px;
	}
	.prolf .protit h4, .pro .prort ul li .protitrt h4{
		font-size: 30px;
		line-height:40px;
	}
	.prolf .protit p, .pro .prort ul li .protitrt p{
		font-size:18px;
	}
}
@media(max-width:1440px) {
	.nav {
		margin-right: 20px;
	}
	.nav .menu > li {
		margin: 0 20px;
	}
	.videonr a{
		width:160px;
		height:50px;
		line-height:50px;
	}
	.about .aboutlf h5{
		font-size:42px;
		line-height:52px;
	}
	.about .aboutlf h4{
		font-size:52px;
		line-height:62px;
	}
	.proyslist .ysms {
		padding: 0 50px;
	}
	.proyslist h4 {
		font-size: 26px;
		line-height: 36px;
	}
	.ab_fl dl dt .counter{
		font-size:46px;
		line-height:46px;
	}
	.tit h3,.tit h3 a,.hyyy .hyyylf h4,.newsnr h4{
		font-size:42px;
		line-height:52px;
	}
	.tit p {
		font-size: 24px;
		line-height: 34px;
	}
	.hyyy .hyyylf hr {
		width: 260px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit{
		font-size:36px;
		line-height:46px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit span{
		font-size:56px;
	}
	.prolf .protit h4, .pro .prort ul li .protitrt h4{
		font-size: 26px;
		line-height:36px;
	}
	.prolf .protit p, .pro .prort ul li .protitrt p{
		font-size:16px;
	}
	.nnews dl dt {
		width: 17%;
	}
	.nnews dl dd{
		padding-left:3%;
	}
}
@media(max-width:1360px) {
	.nav .menu > li {
		margin: 0 15px;
	}
	.about .aboutlf h5{
		font-size:38px;
		line-height:48px;
	}
	.about .aboutlf h4{
		font-size:48px;
		line-height:58px;
	}
	.ab_fl dl dt .counter{
		font-size:42px;
		line-height:42px;
	}
	.prolf .protit,.pro .prort ul li .protitrt{
		padding:0 48px;
	}
	.hyyy .hyyylf {
		padding-right: 150px;
	}
	.footerlf dl dd,.footerlf dl dd a{
		font-size:36px;
		line-height:36px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 10px;
	}
	.nav .menu > li {
		margin: 0 10px;
	}
	.about .aboutlf h5{
		font-size:34px;
		line-height:44px;
	}
	.about .aboutlf h4{
		font-size:44px;
		line-height:54px;
	}
	.nnews dl dt {
		width: 19%;
	}
	.nnews dl dd{
		padding-left:1%;
	}
	.nmenu ul li {
		padding: 17px 20px;
	}
	.ab_fl dl dt .counter{
		font-size:38px;
		line-height:38px;
	}
	.proyslist h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.proysnr .swiper-slide{
		padding:0 20px;
	}
	.proyslist .ysms{
		margin-top:20px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit{
		font-size:32px;
		line-height:42px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit span{
		font-size:52px;
	}
	.hyyy .hyyylf {
		padding-right: 120px;
	}
	.prolf .protit,.pro .prort ul li .protitrt{
		padding:0 40px;
	}
	.prolf .protit h4, .pro .prort ul li .protitrt h4{
		font-size: 22px;
		line-height:32px;
	}
	.prolf .protit p, .pro .prort ul li .protitrt p{
		font-size:14px;
	}
	.prolf .protit{
		top:30px;
	}
	.pro .prort ul li .protitrt{
		margin-top:30px;
	}
	.nnews dl dd h5{
		font-size:22px;
		line-height:32px;
	}
	.nabout .naboutnr{
		padding-left:40px;
	}
	.footerlf dl dd,.footerlf dl dd a{
		font-size:34px;
		line-height:34px;
	}
	
}
@media(max-width:1152px) {
	.nav {
		margin-right: 0;
	}
	.nav .menu > li a{
		font-size: 15px;
	}
	.cnen{
	    margin-right: 10px;
	}
	.about .aboutlf h5{
		font-size:30px;
		line-height:40px;
	}
	.about .aboutlf h4{
		font-size:40px;
		line-height:50px;
	}
	.ab_fl dl dt .counter{
		font-size:34px;
		line-height:34px;
	}
	.aboutnr .aboutms{
		padding-right:100px;
	}
	.hyyy .hyyylf {
		padding-right: 100px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit{
		font-size:28px;
		line-height:38px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit span{
		font-size:48px;
	}
	.newslist{
		width:86%;
	}
	.prolf .protit, .pro .prort ul li .protitrt {
		padding: 0 30px;
	}
	.nnews dl dt {
		padding: 30px 0 30px 24px;
	}
	.nnews dl dt .time {
		width: 130px;
		height: 130px;
	}
	.nnews dl dd .nnewsmore{
		margin-top:25px;
	}
	.footerlf dl dd, .footerlf dl dd a {
		font-size: 32px;
		line-height: 32px;
	}
	.footerrt dl dd {
		font-size: 15px;
		margin-top: 8px;
	}
}
@media(max-width:1080px) {
	.nav .menu > li {
		margin: 0 7px;
	}
	.footerlf dl dd, .footerlf dl dd a {
		font-size: 30px;
		line-height: 30px;
	}
}
@media(max-width:1024px) {
	.hzkhnr .hzkhrt .hzkhrt_tit{
		font-size:24px;
		line-height:34px;
	}
	.hzkhnr .hzkhrt .hzkhrt_tit span{
		font-size:44px;
	}
	.hzkhnr .hzkhrt {
		padding-left: 5%;
	}
	.hyyy .hyyylf {
		padding-right: 80px;
	}
}
	.mban{
		display:none;
	}
@media(max-width:1023px) {
	.header{
		height:40px;
	}
	.logo{
		padding:10px 0 10px 1%;
	}
	.logo img{
		height:20px;
	}
	.cnen {
        line-height: 40px;
    }
	.pcban{
		display:none;
	}
	.mban{
		display:block;
	}
}
@media (min-width: 992px){
	.nkyhznr dl{
		width: 20%;
	}
}
@media(max-width:991px) {
	.nabout {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.nhzkh h4,.nqyfc h4{
		font-size:32px;
		line-height:42px;
	}
	.swiper-pagination-bullet {
		width: 30px;
		height: 30px;
		line-height: 30px;
		margin: 10px 0;
	}
	.swiper-pagination-bullet-active,.swiper-pagination-bullet:hover{
		line-height:30px;
	}
	.banner .swiper-pagination{
		width:30px;
		left:10px;
		margin-top: -75px;
	}
	.shubiao-index{
		bottom:10px;
	}
	.aboutnr .aboutms {
		padding-right: 0;
	}
	.proysnr .swiper-button{
		display:block;
	}
	.proysnr{
		padding-bottom:40px;
	}
	.nmenu{
		height:auto;
	}
	.nmenu ul li {
		padding:10px;
	}
	.hzkhnr .hzkhlf,.hzkhnr .hzkhrt{
		width:100%;
	}
	.hzkhnr .hzkhrt{
		padding-left:0;
		margin-top:20px;
	}
	.hzkh{
		padding-top:40px;
	}
	.hzhbmore{
		margin-top:40px;
	}
	.hyyy .hyyyrt{
		height:auto;
	}
	.hzkhnr .hzkhlf ul li {
		width: 31.33333333%;
		margin: 20px 1%;
	}
	.proys {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.tit h3, .tit h3 a,.hyyy .hyyylf h4,.newsnr h4{
		font-size: 38px;
		line-height: 48px;
	}
	.tit p {
		font-size: 22px;
		line-height: 32px;
	}
	.pro {
		padding-top: 80px;
	}
	.news{
		margin-top:80px;
		padding-bottom:80px;
	}
	.newslist {
		height:auto;
	}
	.newslf,.newsrt{
		width:100%;
	}
	.newsnr h4:first-child{
		margin-top:0;
	}
	.newsrt{
		margin-top:40px;
	}
	.newslf ul {
		margin-top: 20px;
	}
	.newsmore {
		margin-top: 60px;
	}
	.news:before{
		display:none;
	}
	.newslist_top h5{
		font-size:20px;
	}
	.nnews dl dt .time {
		width: 110px;
		height: 110px;
	}
	.nnews dl dt .time p {
		font-size: 22px;
	}
	.nnews dl dd .nnewsjs,.nnews dl dd .nnewsmore{
		margin-top:10px;
	}
	.nnews dl dd h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.prolf .protit h4, .pro .prort ul li .protitrt h4{
		font-size: 20px;
		line-height:30px;
	}
	.ntit h3 {
		font-size: 30px;
		line-height: 40px;
	}
	.ncontact .ncontactnr .ncontactlf,.newm{
		width:100%;
	}
	.newm dl{
		float:left;
		margin-top:20px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.hyyy{
		padding-left:6%;
		padding-right:6%;
		margin-top:80px;
	}
	.hyyy .hyyylf{
		width:100%;
		padding-right:0;
		padding-top:0;
	}
	.hyyy .hyyyrt{
		width:100%;
		margin-top:40px;
	}
	.hyyylf .hyyylf_ms{
		margin-top:40px;
	}
	.hyyymore{
		margin-top:30px;
	}
	.hyyy .hyyylf hr {
		width: 230px;
	}
	.hyyy .hyyyrt ul{
		padding-right:0;
	}
	.npronr ul li{
		width:48%;
	}
	.npronr .nprojs{
		padding:0;
		margin-top:20px;
	}
	.npronr .nprojs h1{
		font-size:22px;
	}
	.nlxfs{
		margin-top:30px;
	}
	.nhzkh ul li {
		width: 31.333%;
	}
	.footer{
		padding-top:60px;
	}
	.footerlf,.footernr .bnav,.footerrt{
		width:100%;
	}
	.footernr .bnav{
		margin-top:20px;
	}
	.footerrt dl{
		float:left;
		margin-top:20px;
	}
	.footernr .bnav ul li p{
		display:none;
	}
	.bot{
		margin-top:50px;
	}
	.nabout .naboutimg,.nabout .naboutnr{
		width:100%;
	}
	.nabout .naboutnr{
		padding-left:0;
		margin-top:20px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
		}
}
@media(max-width:860px) {
	.nnews dl dt .time {
		width: 90%;
	}
	.nnews dl dt .time p {
		font-size: 18px;
		line-height: 30px;
	}
}
@media(max-width:768px) {
	.about {
		padding-top: 140px;
		padding-bottom: 180px;
	}
	.npronr ul li .nprotit{
		padding: 10px 0;
	}
	.npronr ul li .nprobg{
		background-size:40px;
	}
}
@media(max-width:767px) {
	.banner .swiper-slide .img{
		position:relative;
		overflow:hidden;
	}
	.banner .swiper-slide .img img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 126%;
		transition: all .5s ease;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
	}
	.shubiao-index{
		display:none;
	}
	.pro .prolf,.pro .prort{
		width:100%;
	}
	.pro .prort{
		padding-left:0;
		margin-top:30px;
	}
	.pro .prort ul li:nth-child(2){
		margin-top:30px;
	}
	.newslist_top h5 {
		font-size: 18px;
	}
	.tit h3, .tit h3 a,.hyyy .hyyylf h4,.newsnr h4{
		font-size: 34px;
		line-height: 44px;
	}
	.tit p {
		font-size: 20px;
		line-height: 30px;
		margin-top:20px;
	}
	.tit h3{
		margin-bottom:20px;
	}
	.ab_fl{
		margin-top:40px;
	}
	.ab_fl dl{
		margin-bottom:10px;
	}
	.proysnr .swiper-slide {
		padding: 0;
	}
	.proysnr .swiper-slide:nth-child(2n),.proysnr .swiper-slide:nth-child(3n){
		margin-top:0;
	}
	.hyyy .hyyylf hr {
		width: 210px;
	}
	.hzkhnr .hzkhlf ul li {
		width: 48%;
		margin: 10px 1%;
	}
	.nhzkh ul li{
		margin: 10px 1%;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right: 0;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left: 0;
	}
	.nmessagenr dl dd textarea{
		height:240px;
	}
	.nhzkh ul li {
		width: 48%;
	}
}
@media(max-width:640px) {
	.banner .swiper-pagination-bullet {
		margin: 5px 0;
	}
	.banner .swiper-pagination{
		width:auto;
		left:5px;
		margin-left:0;
		top:inherit;
		bottom:10px;
	}
	.banner .swiper-pagination-bullet{
		float:left;
		margin:0 5px;
		width:20px;
		height:20px;
		line-height:20px;
		font-size:12px;
	}
	.banner .swiper-pagination-bullet-active, .swiper-pagination-bullet:hover{
		line-height:20px;
	}
	.about .aboutlf h5{
		font-size:26px;
		line-height:36px;
	}
	.about .aboutlf h4{
		font-size:36px;
		line-height:46px;
	}
	.aboutnr .aboutmore a,.hyyymore a,.newsmore a,.hzhbmore a{
		width: 150px;
		height: 50px;
		line-height: 50px;
	}
	.about .aboutlf .abouten{
		margin-bottom:30px;
	}
	.aboutnr .aboutms,.aboutnr .aboutmore{
		margin-top:30px;
	}
	.ab_fl{
		margin-top:40px;
	}
	.about {
		padding-top: 60px;
		padding-bottom: 60px;
		background:none;
	}
	.proysnr .swiper-slide .proyslist {
		height: auto;
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.tit h3, .tit h3 a, .hyyy .hyyylf h4, .newsnr h4 {
		font-size: 30px;
		line-height: 40px;
	}
	.newslist {
		width: 100%;
	}
	.newslist .swiper-button-prev, .newslist .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	.newslist .swiper-button-prev{
		right:40px;
	}
	.newslist .swiper-button-next{
		right:0;
	}
	.newslist_top h5,.newslist_top .newsdate{
		width:100%;
	}
	.newslist_top .newsdate{
		text-align:left;
	}
	.newslistnr {
		padding: 30px;
	}
	.hyyy .hyyyrt ul li h5{
		font-size:20px;
		line-height:30px;
	}
	.hyyy .hyyyrt ul li {
		padding: 40px 40px 0 40px;
	}
	.npronr .nprojs h1 {
		font-size: 20px;
	}
	.nlxfs a{
		width:140px;
	}
	.npronr ul li .nprotit{
		font-size:15px;
	}
	.nnews dl dt{
		display:none;
	}
	.nnews dl dd{
		width:100%;
		padding:20px;
	}
	.nnews dl dd h5 {
		font-size: 18px;
	}
	.nkyhznr dl{
		width:50%;
	}
}
@media(max-width:540px) {
	.about .aboutlf h5{
		font-size:22px;
		line-height:32px;
	}
	.about .aboutlf h4{
		font-size:32px;
		line-height:42px;
	}
	
}
@media(max-width:500px) {
	.footernr .bnav ul li {
		width: 33.333333%;
	}
}
@media(max-width:425px) {
	.ab_fl dl dt .counter {
		font-size: 30px;
		line-height: 30px;
	}
	.proyslist .ysms {
		padding: 0 40px;
	}
	.proyslist h4{
		margin-top:30px;
	}
	.proysnr .swiper-slide .proyslist{
		padding-top:60px;
		padding-bottom:60px;
	}
}
@media(max-width:375px) {
	.about .aboutlf h5{
		font-size:20px;
		line-height:30px;
	}
	.about .aboutlf h4{
		font-size:30px;
		line-height:40px;
	}
	.footerlf dl dd, .footerlf dl dd a {
		font-size: 26px;
		line-height: 26px;
	}
	
}
@media(max-width:340px) {
	
}