@charset "utf-8";



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

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

@font-face
{
	font-family: myOneFont;
	src: url('../fonts/barlowcondensed-semibold_mianfeiziti.ttf'),
		 url('../fonts/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:"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:"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;
	padding:0 1%;
	background:#fff;
	}
.top{
	width:100%;
	overflow:hidden;
	line-height:40px;
	border-bottom:solid 1px rgba(255,255,255,0.25);
	font-size:13px;
	color:#fff;
	text-align:right;
	}
.top a{
	font-size:13px;
	color:#fff;
	}
.logo{
	height:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
}
.logo img{
	max-width:100%;
	height:auto;
}
/* search
-------------------------------------------------------------- */
.search{
	height:100%;
	overflow:hidden;
	cursor:pointer;
	display:flex;
	align-items:center;
	position:relative;
}	
.search_box{
	width:200px;
	position: absolute;
	top:100px;
	right:5px;
	background-color:#115fad;
	padding:10px; 
	z-index:99;
	display:none;
	}
.search_box input{
	width:80%;
	height: 30px;
	line-height: 30px;
	padding-left: 10px;
	float:left;
	}
.search_box button{
	width:18%;
	height: 30px;
	line-height: 30px;
	text-align:center;
	float:right;
	background:none;
	}
.search_box button 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;
	margin-right:100px;
	padding-right:78px;
	position:relative;
}
.nav::after{
	content:"";
	width:1px;
	height:20px;
	background:#959595;
	position:absolute;
	right:0;
	top:40px;
}
.nav > ul{

	display:inline-block;
	margin:0;
	}
.nav > ul > li .subnav {
    opacity:0;
	height:0;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 100px;
    overflow: hidden;
    text-align: left;
    z-index: 110;
    left: 0;
    background-color: #f5f5f5;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.nav > ul > li:hover .subnav {
    opacity:1;
	height:auto;
}
.nav .subnav .abouter ul{
	width:100%;
	overflow:hidden;
}
.nav .subnav .abouter ul li{
	width:20%;
	overflow:hidden;
	float:left;
	text-align:center;
	border-right: 1px solid #e6e6e6;
}
.nav .subnav .abouter ul li:last-child{
	border-right:none;
}
.nav .subnav .abouter div{
	text-align:center;
}
.nav .subnav .abouter ul li a{
	font-size:16px;
	color:#333;
}
.nav .subnav .abouter ul li i{
	display:block;
	width:50px;
	overflow:hidden;
	margin:auto;
	height:50px;
  -webkit-transition: all .3s;
  transition: all .3s;
  position:relative;
}
.nav .subnav .abouter ul li i::after{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	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%);
}

.nav .subnav .abouter ul li:hover i::after{
	opacity:1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.nav .subnav .abouter ul li:hover i{
	background-position:0 -50px;
}
.nav .subnav .abouter ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
}
.abouter ul,.producter ul{
	padding:20px 0;
}
.abouter ul li:first-child i{
	background:url(../images/navicon1.png) no-repeat center;
	
}
.abouter ul li:first-child i::after{
	background:url(../images/naviconh1.png) no-repeat center;
}
.abouter ul li:nth-child(2) i{
	background:url(../images/navicon2.png) no-repeat center;
}
.abouter ul li:nth-child(2) i::after{
	background:url(../images/naviconh2.png) no-repeat center;
}
.abouter ul li:nth-child(3) i{
	background:url(../images/navicon3.png) no-repeat center;
}
.abouter ul li:nth-child(3) i::after{
	background:url(../images/naviconh3.png) no-repeat center;
}
.abouter ul li:nth-child(4) i{
	background:url(../images/navicon4.png) no-repeat center;
}
.abouter ul li:nth-child(4) i::after{
	background:url(../images/naviconh4.png) no-repeat center;
}
.abouter ul li:nth-child(5) i{
	background:url(../images/navicon5.png) no-repeat center;
}
.abouter ul li:nth-child(5) i::after{
	background:url(../images/naviconh5.png) no-repeat center;
}
.abouter ul li a::after{
	display:none;
}
.nav span{

	display:block !important;

	width:100%;

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


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

.nav .menu > li a{
	color:#333;
	font-size:16px;
	display:block;
	line-height:100px;
	margin:0 52px;
	position:relative;
	z-index:9;
	}
.nav .menu > li a::after{
	content:"";
	width:0px;
	height:3px;
	background:#115fad;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.nav .menu > li a:hover,.nav .menu > li.active a{
	color:#115fad;
	font-weight:bold;
}


.nav .menu > li .submenu{
	width:200px;
	left:50%;
	margin-left:-100px;
	}

.nav .menu > li .submenu li{

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

.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 a:after{
	display:none;
}
.nav .menu > li .submenu li:hover{
	background: -webkit-linear-gradient(to right, #0f9588, #115aa2);
    background: -o-linear-gradient(to right, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right, #0f9588, #115aa2);
    background: linear-gradient(to right, #0f9588, #115aa2);
}
.nav .menu > li .submenu li:hover a{
	color:#fff;
	}
.nav .menu > li:hover a:after,.nav .menu > li.active a:after{
	width:100%;
	}

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

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	position:relative;
	margin-top:100px;
	}
.banner video{ width:100%; height:100%; object-fit: cover;}
.banner video::-webkit-media-controls{ 
	display:none !important;
}
.banner video::-webkit-media-controls-enclosure{
    display: none !important;
}
.banner .indexbg{
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.1);
	position:absolute;
	left:0;
	top:0;
	z-index:9;
}
.mban{
	display:none;
}
.banner .img{
	width:100%;
	height:100%;
	overflow:hidden;
	position:relative;
}
.banner .swiper-container .bannernr{
	overflow:hidden;
	position:absolute;
	z-index:99;
}
.banner .swiper-container .bannernr1{
	width:33.7%;
	text-align:center;
	left:50%;
	margin-left:-16.85%;
	top:40%;
}
.banner .swiper-container .bannernr2{
	width:25.1%;
	left:11.4%;
	top:26.75%;
}
.banner .swiper-container .bannernr3{
	width:42%;
	left:50%;
	margin-left:-21%;
	top:14.4%;
}
.banner .swiper-container .bannernr4{
	width:37.3%;
	left:11.4%;
	top:26.75%;
}
.banner .swiper-container .bannernr5{
	width:27.8%;
	left:11.4%;
	top:26.75%;
}
.banner .swiper-container .bannernr6{
	width:28.7%;
	left:11.4%;
	top:26.75%;
}
.banner .swiper-container .bannernr img{
	max-width:100%;
	height:auto;
}

/*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 > img{
		width:100%;
		height:100%;
		object-fit: cover;
		transition:1s linear 2s;
		}
@media only screen and (min-width: 1024px){
	.banner{
		height:auto;
	}
	.banner .img{
		height:100vh;
	}
}
@-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 .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
}

/*banner*/

.banner .swiper-pagination {
	width:auto;
	-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:16%;
	bottom:118px;
	z-index:99;
}
.banner .swiper-pagination-clickable .swiper-pagination-bullet{
	width:8px;
	height:8px;
	background:#fff;
	border-radius:50%;
	margin:0 10px;
	opacity:1;
}
.banner .swiper-pagination-clickable .swiper-pagination-bullet-active{
	width:14px;
	height:14px;
	margin-bottom:-3px;
}
.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;
}
.banner .swiper-button-prev,.banner .swiper-button-next{
	position:absolute;
	width:80px;
	height:80px;
	border-radius:50%;
	bottom:85px;
	z-index:900;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	outline:none;
}
.banner .swiper-button-prev{
	background:rgba(255,255,255,0.3) url(../images/prev.png) no-repeat center;
	left:11.6%;
}
.banner .swiper-button-next{
	background:rgba(255,255,255,0.3) url(../images/next.png) no-repeat center;
	left:25.5%;
}
.banner .swiper-button-prev:hover{
	background:#fff url(../images/prevh.png) no-repeat center;
}
.banner .swiper-button-next:hover{
	background:#fff url(../images/nexth.png) no-repeat center;
}
/* tit

-------------------------------------------------------------- */
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#272636;
	line-height:40px;
	font-weight:normal;
	padding-left:25px;
	margin-top:3px;
	}
.tit h3 a{
	font-size:30px;
	color:#272636;
	float:left;
	}
.tit h3 span{
	width:262px;
	height:1px;
	display:block;
	background:#bfbebe;
	float:left;
	margin-top:19.5px;
	margin-left:32px;
}
.tit p{
	width:100%;
	font-size:60px;
	color:#272636;
	font-family: myOneFont;
	line-height:70px;
	padding-left:25px;
	position:relative;
	}
.tit p i{
	font-size:60px;
	color:#272636;
	font-family: myOneFont;
	text-transform:uppercase;
	position:relative;
	z-index:9;
}
.tit p::after{
	content:"";
	width:70px;
	height:70px;
	background:rgba(17,95,173,0.5);
	border-radius:50%;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.more{
	overflow:hidden;
	}
.more a{
	display:block;
	width:190px;
	height:50px;
	color:#fff;
	padding-left:28px;
	font-size:16px;
	line-height:50px;
	border-radius:25px;
	background: -webkit-linear-gradient(to right, #0f9588, #115aa2);
    background: -o-linear-gradient(to right, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right, #0f9588, #115aa2);
    background: linear-gradient(to right, #0f9588, #115aa2);
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.more a i{
	width:49px;
	height:100%;
	display:block;
	background:url(../images/icon4.png) no-repeat center;
	float:right;
	}
/* tjpro
-------------------------------------------------------------- */
.tjpro{
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #ebebeb;
	position:relative;
}
.tjpronr{
	height:135px;
	font-size:16px;
	color:#252525;
	line-height:38px;
	background:url(../images/icon2.png) no-repeat left center;
	padding:48.5px 0 48.5px 62px;
	position:relative;
}
.tjpronr a{
	font-size:16px;
	color:#252525;
}
.tjpronr a::after{
	content:"、";
}
.tjpronr a:last-child::after{
	display:none;
}
.tjpronr a:hover{
	color:#115fad;
}
.tjpronr::before{
	content:"PRODUCT";
	font-family:Arial;
	font-size:79px;
	color:#f3f3f3;
	font-weight:bold;
	line-height:135px;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
}
.tjprort{
	width:30%;
	height:135px;
	background:#115fad;
	padding-left:98px;
	position:absolute;
	right:0;
	top:0;
	z-index:9;
}
.tjprort .tjpro_icon{
	width:70px;
	height:70px;
	position:absolute;
	left:-35px;
	top:50%;
	margin-top:-35px;
	z-index:99;
	-webkit-transform: rotate(360deg);
	animation: rotation 10s linear infinite;
	-moz-animation: rotation 10s linear infinite;
	-webkit-animation: rotation 10s linear infinite;
	-o-animation: rotation 10s linear infinite;
}
@-moz-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-o-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
.tjprort .tjpro_tit,.tjprort .tjpro_nr{
	width:100%;
	overflow:hidden;
}
.tjprort .tjpro_tit{
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:30px;
}
.tjprort .tjpro_nr{
	font-size:35px;
	font-family:Arial;
	font-weight:bold;
	color:#fff;
	line-height:40px;
	margin-top:4px;
}

/* 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:#f4f4f4 url(../images/aboutbg.jpg) no-repeat top center;
	padding-top:86px;
	padding-bottom:136px;
	position:relative;
	}
.about::before{
	content:"";
	width:54%;
	height:606px;
	background:rgba(17,95,173,0.9);
	position:absolute;
	right:0;
	top:0;
}
.aboutnr{
	position:relative;
	z-index:9;
}
.about .aboutrt{
	width:49.3%;
	overflow:hidden;
	}
.aboutrt .tit p i,.aboutrt .tit h3,.aboutrt .tit h3 a{
	color:#fff;
}
.aboutrt .tit p::after{
	background:rgba(255,255,255,0.2);
}
.aboutrt .aboutjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#fff;
	margin-top:34px;
}
.aboutrt .more{
	margin-top:102px;
}
/* aboutlist
-------------------------------------------------------------- */
.aboutlist{
	width:100%;
	overflow:hidden;
	margin-top:226px;
}
.aboutlist ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
}
.aboutlist ul li{
	width:30%;
	height:520px;
	overflow:hidden;
	background:#fff;
	padding:82px 50px 0 50px;
	position:relative;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.aboutlist ul li .abouticon{
	width:100%;
	overflow:hidden;
}
.aboutlist ul li .abouticon img{
	max-width:100%;
	height:auto;
}
.aboutlist ul li .abouticon .iconimgh,.aboutlist ul li:hover .abouticon .iconimg{
	display:none;
}
.aboutlist ul li:hover .abouticon .iconimgh{
	display:block;
}
.aboutlist ul li h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#272636;
	font-weight:normal;
	line-height:40px;
	margin-top:24px;
}
.aboutlist ul li .aboutlistjs{
	margin-top:30px;
}
.aboutlist ul li .aboutlistjs,.aboutlist ul li .aboutlistjs p{
	width:100%;
	overflow:hidden;
	color:#96969b;
	font-size:16px;
	line-height:30px;
}
.aboutlist ul li:hover{
	background: -webkit-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -o-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: linear-gradient(to right bottom, #0f9588, #115aa2);
}
.aboutlist ul li:hover h5{
	color:#fff;
}
.aboutlist ul li:hover .aboutlistjs p{
	color:rgba(255,255,255,0.6);
}

/* hyyy
-------------------------------------------------------------- */
.hyyy{
	width:100%;
	height:1000px;
	overflow:hidden;
	background:url(../images/hyyybg1.jpg) no-repeat bottom center;
	background-size:cover;
	}
.hyyynr{
	height:100%;
	position:relative;
	}
.hyyytit{
	width:100%;
	overflow:hidden;
	position:absolute;
	left:0;
	top:117px;
	z-index:99;
	display:flex;
	justify-content:center;
	}
.hyyytit .tit p::after{
	background:#115fad;
	z-index:-1;
	}
.hyyytit .tit h3,.hyyytit .tit h3 a,.hyyytit .tit p i{
	color:#fff;
	}
.hyyytit .tit h3 span{
	display:none;
}
.hyyytit .tit h3{
	text-align:center;
}
.hyyynr ul{
	width:100%;
	overflow:hidden;
	height:100%;
	}
.hyyynr ul li{
	overflow:hidden;
	height:100%;
	padding:0;
	border-right:solid 1px rgba(255,255,255,0.2);
	padding-top:690px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.hyyynr ul li:first-child{
	border-left:solid 1px rgba(255,255,255,0.2);
	}
.hyyynr ul li .hyyyicon,.hyyynr ul li p{
	width:100%;
	overflow:hidden;
	}
.hyyynr ul li .hyyyicon{
	text-align:center;
	}
.hyyynr ul li .hyyyicon img{
	max-width:100%;
	height:auto;
	}
.hyyynr ul li p{
	text-align:center;
	font-size:25px;
	color:#fff;
	line-height:35px;
	margin-top:33px;
	}
.hyyynr ul li:hover{
	background: -webkit-linear-gradient(to top, #115fac, rgba(17,95,172,0));
    background: -o-linear-gradient(to top, #115fac, rgba(17,95,172,0));
    background: -moz-linear-gradient(to top, #115fac, rgba(17,95,172,0));
    background: linear-gradient(to top, #115fac, rgba(17,95,172,0));
	}
/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	background:url(../images/casebg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:74px;
	padding-bottom:168px;
}
.casetit{
	width:100%;
	overflow:hidden;
}
.casetit .tit p i,.casetit .tit h3 a{
	color:#fff;
}
.casetit .tit h3 span{
	background:rgba(255,255,255,0.3);
}
.casetit .tit,.casetit .more{
	padding:0;
}
.casetit .more{
	display:flex;
	justify-content:right;
	padding-top:34px;
}
.casenr,.caselist,.caselist .caseimg,.caselist .casebot h5,.caselist .casebot .casejs,.caselist .casebot .casejs p{
	width:100%;
}
.casenr{
	margin-top:36px;
	position:relative;
}
.caselist{
	position:relative;
}
.caselist .casebg{
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.5);
	border-radius:25px;
	position:absolute;
	left:0;
	top:0;
	z-index:0;
}
.caselist .casebot{
	width:88%;
	min-height:166px;
	overflow:hidden;
	padding:28px 295px 0 45px;
	background:rgba(255,255,255,0.9);
	border-radius:25px;
	position:absolute;
	bottom:-83px;
	left:6%;
	z-index:99;
	opacity:0;
}
.caselist .casebot .casemore{
	width:140px;
	height:50px;
	color:#fff;
	padding-left:20px;
	line-height:50px;
	border-radius:25px;
	background: -webkit-linear-gradient(to right, #0f9588, #115aa2);
    background: -o-linear-gradient(to right, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right, #0f9588, #115aa2);
    background: linear-gradient(to right, #0f9588, #115aa2);
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	position:absolute;
	right:45px;
	top:50%;
	margin-top:-25px;
	z-index:100;
}
.caselist .casebot .casemore i{
	width:49px;
	height:100%;
	display:block;
	background:url(../images/icon4.png) no-repeat center;
	float:right;
}
.caselist .caseimg{
	overflow:hidden;
	border-radius:25px;
}
.caselist .caseimg img{
	width:100%;
	height:auto;
}
.caselist .casebot h5{
	font-size:25px;
	color:#115aa2;
	line-height:35px;
	font-weight:normal;
	margin-bottom:14px;
}
.caselist .casebot .casejs,.caselist .casebot .casejs p{
	font-size:16px;
	color:#000;
	line-height:30px;
}
.casenr .swiper-slide-active .caselist .casebot{
	opacity:1;
}
.casenr .swiper-slide-active .caselist .casebg{
	display:none;
}
.casenr .button div{
	width:15px;
	height:29px;
	position:absolute;
	top:50%;
	margin-top:-14.5px;
	z-index:102;
}
.casenr .button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat;
	left:19%;
}
.casenr .button .swiper-button-next{
	background:url(../images/next2.png) no-repeat;
	right:19%;
}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:#f7f7f7;
	padding-top:84px;
	padding-bottom:80px;
}
.newstit{
	width:100%;
	overflow:hidden;
	}
.newstit .tit,.newstit .more{
	padding:0;
}
.newstit .more a{
	float:right;
}
.newsmenu{
	overflow:hidden;
	text-align:right;
	padding:0;
}
.newsmenu ul{
	overflow:hidden;
	display:inline-block;
}
.newsmenu ul li{
	overflow:hidden;
	float:left;
	line-height:30px;
	margin-left:60px;
	padding-bottom:5px;
	position:relative;
}
.newsmenu ul li::after{
	content:"";
	width:0;
	height:2px;
	background:#115aa2;
	position:absolute;
	left:0;
	bottom:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.newsmenu ul li:hover::after{
	width:100%;
}
.newsmenu ul li a{
	font-size:17px;
	color:#121212;
}
.newsmenu ul li:hover a{
	color:#115aa2;
	font-weight:bold;
}
.newsnr{
	width:100%;
	overflow:hidden;
	margin-top:88px;
}
.newsnr .newslf{
	width:35%;
	height:586px;
	overflow:hidden;
	position:relative;
}
.newsnr .newslf img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.newslf .newsbg{
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.4);
	position:absolute;
	left:0;
	top:0;
	z-index:0;
}
.newslf .newslf_nr{
	width:100%;
	overflow:hidden;
	padding:0 40px;
	position:absolute;
	left:0;
	bottom:48px;
	z-index:9;
}
.newslf .newslf_nr .newsyear,.newslf .newslf_nr .newsday,.newslf .newslf_nr h5{
	width:100%;
	overflow:hidden;
}
.newslf .newslf_nr .newsyear{
	font-family:Arial;
	font-size:15px;
	color:#fff;
	line-height:30px;
}
.newslf .newslf_nr .newsday{
	font-family:Arial;
	font-size:45px;
	color:#fff;
	line-height:45px;
	font-weight:bold;
}
.newslf .newslf_nr h5{
	font-size:20px;
	color:#fff;
	line-height:30px;
	margin-top:46px;
}
.newslf .newslf_nr .more{
	margin-top:34px;
}
.newsnr .newsrt{
	width:63.4%;
	overflow:hidden;
}
.newsnr .newsrt ul{
	width:100%;
	overflow:hidden;
}
.newsnr .newsrt ul li{
	width:48.5%;
	height:276px;
	overflow:hidden;
	float:left;
	margin:0 3% 32px 0;
	background:#fff;
	padding:46px 40px 0 40px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.newsnr .newsrt ul li:nth-child(2n){
	margin-right:0;
}
.newsnr .newsrt ul li h5,.newsnr .newsrt ul li p,.newsnr .newsrt ul li .newsxq{
	width:100%;
	overflow:hidden;
}
.newsnr .newsrt ul li h5{
	font-size:18px;
	color:#363636;
	line-height:30px;
	margin-bottom:23px;
}
.newsnr .newsrt ul li p{
	font-size:15px;
	color:#6f6f6f;
}
.newsnr .newsrt ul li .newsxq{
	font-size:15px;
	color:#363636;
	border-top:solid 1px #b9b9b9;
	line-height:30px;
	background:url(../images/icon18.png) no-repeat right center;
	padding:15px 0;
	margin-top:20px;
}
.newsnr .newsrt ul li:hover .newsxq{
	background:url(../images/iconh18.png) no-repeat right center;
}
.newsnr .newsrt ul li:hover{
	background: -webkit-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -o-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: linear-gradient(to right bottom, #0f9588, #115aa2);
}
.newsnr .newsrt ul li:hover h5,.newsnr .newsrt ul li:hover p,.newsnr .newsrt ul li:hover .newsxq{
	color:#fff;
}


/* pro
-------------------------------------------------------------- */
.pro{
	padding-top:56px;
	padding-bottom:128px;
	}
.pro .tit{
	padding:0;
}
.pronr{
	padding:0;
}
.prolf{
	width:75.5%;
	padding-top:65px;
}
.prolf .proimgrq{
	width:54%;
	padding:0 45px 22px 0;
	position:relative;
}
.prolf .proimgrq::after{
	content:"";
	width:96%;
	height:94.6%;
	background:#115fad;
	position:absolute;
	right:0;
	bottom:0;
	z-index:-1;
}
.prolf .proimgrq .proimg{
	width:100%;
	height:438px;
	overflow:hidden;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.prolf .proimgrq .proimg img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.prolf .proms{
	width:42%;
	overflow:hidden;
}
.prolf .proms h5,.prolf .proms .prossfl,.prolf .proms .protext{
	width:100%;
	overflow:hidden;
}
.prolf .proms h5{
	font-size:40px;
	color:#272636;
	line-height:50px;
}
.prolf .proms .prossfl{
	font-size:18px;
	color:#115fad;
	line-height:30px;
	margin-top:6px;
	border-bottom:solid 1px #c4c4c3;
	padding-bottom:28px;
}
.prolf .proms .protext{
	font-size:16px;
	color:#3d3a39;
	line-height:30px;
	margin-top:25px;
}
.prolf .proms .more{
	margin-top:80px;
}
.promenu{
	width:18%;
	overflow:hidden;
}
.promenu ul,.promenu ul li{
	width:100%;
	overflow:hidden;
}
.promenu ul li{
	height:104px;
	background:#f2f2f2;
	padding:0 30px;
	margin-bottom:1px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.promenu ul li a{
	width:100%;
	height:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
}
.promenu ul li .proname{
	width:70%;
	overflow:hidden;
	float:left;
	font-size:16px;
	color:#272636;
}
.promenu ul li i{
	width:30%;
	height:100%;
	display:block;
	overflow:hidden;
	background:url(../images/icon5.png) no-repeat right center;
	float:right;
}
.promenu ul li:hover{
	background:#115fad;
}
.promenu ul li:hover .proname{
	color:#fff;
}
.promenu ul li:hover i{
	background:url(../images/icon6.png) no-repeat right center;
}
.prolist{
	width:100%;
	overflow:hidden;
	margin-top:35px;
	display:flex;
	justify-content:space-between;
}
.prolist dl{
	width:30.5%;
	overflow:hidden;
}
.prolist dl dt,.prolist dl dd{
	width:100%;
	overflow:hidden;
}
.prolist dl dt > img,.pronr_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;
}
.prolist dl:hover dt > img,.pronr_n dl:hover dt > img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.prolist dl dt{
	height:352px;
	border: solid 1px #ebebeb;
	position:relative;
}
.prolist dl dt .probg,.pronr_n dl dt .probg{
	width:100%;
	height:100%;
	background: -webkit-linear-gradient(to right bottom, rgba(0,157,141,0.69), rgba(17,90,162,0.69));
    background: -o-linear-gradient(to right bottom, rgba(0,157,141,0.69), rgba(17,90,162,0.69));
    background: -moz-linear-gradient(to right bottom, rgba(0,157,141,0.69), rgba(17,90,162,0.69));
    background: linear-gradient(to right bottom, rgba(0,157,141,0.69), rgba(17,90,162,0.69));
	position:absolute;
	left:0;
	top:0;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	z-index:1;
	opacity:0;
}
.prolist dl:hover dt .probg,.pronr_n dl:hover dt .probg{
	opacity:1;
}
.prolist dl dd,.pronr_n dl dd{
	padding-top:18px;
	padding-bottom:10px;
	position:relative;
}
.prolist dl dd h5,.pronr_n dl dd h5{
	width:80%;
	overflow:hidden;
	font-size:18px;
	color:#272636;
	line-height:30px;
	float:left;
	font-weight:normal;
}
.prolist dl dd i,.pronr_n dl dd i{
	display:block;
	width:46px;
	height:46px;
	overflow:hidden;
	background:#dfdede url(../images/icon8.png) no-repeat center;
	border-radius:50%;
	float:right;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.prolist dl:hover dd i,.pronr_n dl:hover dd i{
	background-color:#115fad;
}
.prolist dl dd::after,.pronr_n dl dd::after{
	content:"";
	width:100%;
	height:2px;
	background:#ebebeb;
  position:absolute;
  left:0;
  bottom:0;
  z-index:1;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.prolist dl:hover dd::after,.pronr_n dl:hover dd::after{
	background: -webkit-linear-gradient(to right, #0f9588, #115aa2);
    background: -o-linear-gradient(to right, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right, #0f9588, #115aa2);
    background: linear-gradient(to right, #0f9588, #115aa2);
}

/* message_n
-------------------------------------------------------------- */

.message_n{
	width:100%;
	overflow:hidden;
	margin-top:50px;
	}
.message_n ul{
	width:100%;
	overflow:hidden;
	}
.message_n ul li{
	width:32%;
	overflow:hidden;
	margin:10px 2% 10px 0;
	float:left;
	}
.message_n ul li input{
	width:100%;
	overflow:hidden;
	border:solid 2px #e4e4e4;
	line-height:60px;
	padding:0 10px;
	font-size:16px;
	color:#323232;
	}
.message_n ul li:nth-child(3n){
	margin-right:0;
}
.message_n ul li textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	border:solid 2px #e4e4e4;
	font-size:16px;
	color:#323232;
	line-height:30px;
	padding:18px 10px;
	}
.message_n ul li:nth-child(4){
	width:100%;
	}
.message_n .tjbtn{
    width: 49%;
    overflow: hidden;
}
.message_n .tjbtn button {
    width: 100%;
    height: 60px;
    background: #115fad;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:49%;
	overflow:hidden;
	color:#343434;
	}
.btn1 .intxt{
	width:50%;
	height:60px;
	overflow:hidden;
	font-size:15px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}
.messagebtn_n{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	margin-top:20px;
}

/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.6);
	font-size:16px;
	line-height:30px;
	margin-top:40px;
	}
.link img{
	margin-right:10px;
}
.link a{
	color:rgba(255,255,255,0.6);
	font-size:16px;
	margin-right:10px;
	}
.link a:hover{
    color:#fff;
}
/* searchnr
-------------------------------------------------------------- */
.search_n{
	margin-top:60px;
	margin-bottom:60px;
}
.searchnr{
	overflow:hidden;
	margin-bottom:15px;
	padding: 0 10px;
}
.searchnr .card,.card-img-150,.card-body,.card-title,.card-text{
	width:100%;
	overflow:hidden;
}
.card-img-150{
	height:234px;
	border: 1px solid #ebebeb;
	position:relative;
}
.card-img-150 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;
}
.card-img-150:hover img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.searchlist{
	width:100%;
	overflow:hidden;
}
.my-4{
	width: 100%;
    overflow: hidden;
    text-align: center;
}
.search_n .btn-info{
	background:#064b8a;
	border:solid 1px #064b8a;
}
.card-body h5{
	width:100%;
	height:30px;
	overflow:hidden;
	line-height:30px;
	color:#000;
	font-size:16px;
	margin-top:10px;
	text-align:center;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.card-body h5 a,.card-body h5 span{
	color:#000 !important;
	font-size:16px;
}
.card-body p{
	width:100%;
	overflow:hidden;
}
/* footer
-------------------------------------------------------------- */
.footer {
	width: 100%;
	overflow: hidden;
	background:#115aa2;
	padding-top:102px;
}
.footernr{
	padding-bottom:40px;
}
.footernr .footerlf{
	width:60%;
	overflow:hidden;
	}
.footernr .footerrt{
	width:40%;
	overflow:hidden;
	display:flex;
	justify-content:right;
	}
.footernr .footerrt dl{
	overflow:hidden;
	float:left;
	margin-left: 10px;
	}
.footernr .footerrt dl:first-child{
    margin-left: 0;
}
.footernr .footerrt dl dt,.footernr .footerrt dl dd{
	overflow:hidden;
	text-align:center;
	}
.footernr .footerrt dl dt img{
	max-width:100%;
	height:auto;
	}
.footernr .footerrt dl dd{
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
	}
.botlxfs{
	overflow:hidden;
	margin-right:68px;
}
.botlxfs .contactbtn{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:right;
}
.botlxfs .contactbtn a{
	display:block;
	width:146px;
	height:45px;
	line-height:45px;
	font-size:15px;
	color:#fff;
	background:#d5331c url(../images/icon19.png) no-repeat 24px center;
	padding-left:56px;
}
.bottel{
	width:100%;
	overflow:hidden;
	margin-top:39px;
}
.bottel .bottelbt,.bottel p{
	width:100%;
	overflow:hidden;
	text-align:right;
}
.bottel .bottelbt{
	font-size:15px;
	color:#fff;
	line-height:30px;
}
.bottel p{
	font-size:26px;
	font-family:Arial;
	color:#fff;
	line-height:26px;
	font-weight: bold;
}
.bottel p a{
	font-size:26px;
	font-family:Arial;
	color:#fff;
	font-weight: bold;
}
.botewm{
	overflow:hidden;
}
.botewm img{
	max-width:100%;
	height:auto;
}
.footernr ul{
	width:100%;
	overflow:hidden;
}
.footernr ul li{
	overflow:hidden;
	float:left;
	padding:0;
}
.footernr ul li h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-weight:normal;
	line-height:30px;
	position:relative;
	padding-bottom:16px;
}
.footernr ul li h4 a{
	font-size:17px;
	color:#fff;
	font-weight:bold;
}
.footernr ul li span{
	display:block;
	width:20px;
	height:2px;
	background:#007bbd;
	margin-bottom:35px;
}
.footernr ul li p{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.6);
	line-height:30px;
	font-size:16px;
	margin-top:14px;
	}
.footernr ul li p a{
	color:rgba(255,255,255,0.6);
	font-size:16px;
	}
.footernr ul li:nth-child(3) p{
	background:none;
	padding-left:0;
	}
.footernr ul li p a:hover{
	color:#fff;
}
.footerin{
	width:100%;
	overflow:hidden;
	border-top: solid 1px rgba(255, 255, 255, 0.2);
	padding-top:46px;
	margin-top:42px;
}
.footerin .footerinlf,.footerin .footerinrt{
	overflow:hidden;
	padding:0;
}
.footerin .footerinlf{
	display:flex;
	justify-content:left;
}
.footerin .footerinlf .botadd_icon{
	width:64px;
	height:64px;
	overflow:hidden;
	border:solid 1px rgba(255,255,255,0.4);
	border-radius:50%;
	background:url(../images/icon20.png) no-repeat center;
}
.botadd{
	overflow:hidden;
	margin-left:32px;
}
.botadd p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.footerin .footerinrt{
	display:flex;
	justify-content:right;
}
.footerin .footerinrt a{
	display:block;
	width:65px;
	height:65px;
	border:solid 1px rgba(255,255,255,0.4);
	background:url(../images/icon21.png) no-repeat center;
	border-radius:50%;
}
.bot{
	width:100%;
	overflow:hidden;
	line-height:30px;
	position:relative;
	}
.botnr{
	border-top:solid 1px rgba(255,255,255,0.2);
	padding:36px 0;
}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	color:#fff;
	line-height:30px;
}
.bot .botrt{
	text-align:right;
}
.bot a{
	color:#fff;
	}
/* side
-------------------------------------------------------------- */
.side {
    width:75px;
    position: fixed;
    right: 0;
	background:#115fad;
	top:50%;
    margin-top: -124px;
    z-index: 999;
}
.side ul li {
    width:100%;
	height:64px;
    position: relative;
    cursor: pointer;
}
.side ul li .sideimg{
	width:100%;
	height:100%;
	overflow:hidden;
	text-align:center;
}
.side ul li:first-child .sideimg{
	background:url(../images/icon35.png) no-repeat center;
}
.side ul li:nth-child(2) .sideimg{
	background:url(../images/icon36.png) no-repeat center;
}
.side ul li:nth-child(3) .sideimg{
	background:url(../images/icon37.png) no-repeat center;
}
.side ul li .ewm-box {
    position: absolute;
    z-index: 99;
    background: #fff;
    width: 160px;
	overflow:hidden;
	line-height:30px;
	padding:10px 0;
	text-align:center;
	font-size:16px;
	color:#333;
    right: calc(100% + 5px);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
    -webkit-box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
    box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
}
.side ul li .ewm-box img{
	max-width:100%;
	height:auto;
}
.side ul li.sidetel:hover .ewm-box{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:600px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	margin-top:100px;
}
@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;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:169px;
	}
}
@media(max-width:425px) {
	.banner_n{
		height:133px;
	}
}
/* second-nav
-------------------------------------------------------------- */
.second-nav{
	width:100%;
	height:80px;
	overflow:hidden;
	background:#fefefe;
	box-shadow: 0 8px 21px 0 rgba(0,0,0,.02);
	position:relative;
	z-index:99;
}
.second-nav ul{
	width:100%;
}
.second-nav ul li{
    display: inline-block;
    font-size: 20px;
    padding: 0 30px;
	line-height:80px;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease;
	position:relative;
}
.second-nav ul li a{
	font-size: 20px;
}
.second-nav ul li:hover a,.second-nav ul li.active a{
    color: #115fad
}
.second-nav ul li::after{
	content:"";
    position: absolute;
    background: #115fad;
    border-radius: 40px;
    width: 18px;
    height: 4px;
    transition: transform 300ms ease;
    left:50%;
	margin-left:-9px;
	bottom:0;
	opacity:0;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.second-nav ul li:hover::after,.second-nav ul li.active::after{
	opacity:1;
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
}
.positionnr{
	font-size: 16px;
	color: #343434;
	line-height: 30px;
	padding: 10px 0 10px 30px;
	background: url(../images/icon15.png) no-repeat left 14.5px;
}
.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;
	margin-top:30px;
}
.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: #272636;
    font-size: 40px;
    line-height: 50px;
	margin-bottom:18px;
	}
.ntit span{
    display:block;
	width:58px;
	height:2px;
	background:#115fad;
}
/* nabout
-------------------------------------------------------------- */
.about_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.aboutlf_n{
	width:46%;
	overflow:hidden;
	padding-top:30px;
}
.aboutrt_n{
	width:51%;
	overflow:hidden;
}
.aboutrt_n img{
	max-width:100%;
	height:auto;
}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#444;
	line-height:30px;
	margin-top:40px;
	}
.aboutnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#444;
	line-height:30px;
	}
.aboutmore_n{
	width:100%;
	overflow:hidden;
	margin-top:76px;
}
.aboutmore_n a{
	width: 230px;
    height: 60px;
    line-height: 60px;
    background: #ffba48;
    display: block;
    padding-left: 56px;
    border-radius: 30px;
    font-size: 18px;
    color: #232323;
    position: relative;
	margin:auto;
}
.aboutmore_n a i{
	display:block;
	width:9px;
	height:100%;
	background:url(../images/icon6.png) no-repeat center;
	position:absolute;
	right:45px;
	top:0;
	z-index:99;
}
.aboutbg_n{
	width:100%;
	overflow:hidden;
	background:url(../images/naboutbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:337px;
	padding-bottom:192px;
}
.aboutlist_n,.aboutlist_n ul{
	width:100%;
	overflow:hidden;
}
.aboutlist_n{
	margin-top:50px;
}
.aboutlist_n ul li{
	text-align:center;
	padding:0;
	position:relative;
}
.aboutlist_n ul li::after{
	content:"";
	width:1px;
	height:104px;
	background:rgba(255,255,255,0.4);
	position:absolute;
	right:0;
	top:5px;
}
.aboutlist_n ul li:last-child::after{
	display:none;
}
.aboutlist_n ul li dl{
	display:inline-block;
    position: relative;
}
.aboutlist_n ul li dl dt,.aboutlist_n ul li dl dd{
	width:100%;
	overflow:hidden;
	text-align:left;
	position:relative;
	z-index:9;
}
.aboutlist_n ul li dl dt{
	font-size:16px;
	color:#333;
	font-weight:normal;
	}
.aboutlist_n ul li dl dt font{
	font-size:40px;
	color:#115fad;
}
.aboutlist_n ul li dl dd{
	font-size:16px;
	color:#333;
	line-height:30px;
}
.aboutlist_n ul li dl dt .counter{
	color:#115fad;
	font-size:79px;
	font-family: myOneFont;
	line-height:66px;
	font-weight:bold;
}
.hzdw_n{
	padding:145px 0 168px 0;
}
.hzdwnr_n{
	width:100%;
	overflow:hidden;
	background:#f6f6f6;
	margin-top:44px;
}
.hzdwnr_n .hzdwlf_n,.hzdwnr_n .hzdwrt_n{
	overflow:hidden;
	padding:0;
}
.hzdwnr_n .hzdwlf_n{
	font-size:16px;
	color:#232323;
	line-height:35px;
	padding:96px 54px 0 54px;
}
/* fwlc_n
-------------------------------------------------------------- */
.fwlc_n{
	margin-top:80px;
	margin-bottom:80px;
}
.fwlc_n .ntit{
	margin-bottom:74px;
}
.fwlc_n .fwlclf_n{
	width:44%;
	overflow:hidden;
}
.fwlcnr_n{
	width:100%;
	overflow:hidden;
}
.fwlc_n .fwlcnr_n h5{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#115fad;
	line-height:32px;
	margin-bottom:12px;
}
.fwlc_n .fwlcnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#272636;
	line-height:30px;
}
.fwlc_n .fwlcrt_n{
	width:54%;
	overflow:hidden;
	text-align:right;
}
.fwlc_n .fwlcrt_n img{
	max-width:100%;
	height:auto;
}
/* fwcn_n
-------------------------------------------------------------- */
.fwcn_n{
	width:100%;
	overflow:hidden;
	background:#f6f6f6;
	padding-top:80px;
	padding-bottom:60px;
}
.fwcnnr_n,.fwcnnr_n ul{
	width:100%;
	overflow:hidden;
}
.fwcnnr_n{
	margin-top:56px;
}
.fwcnnr_n ul li{
	width:32%;
	height:288px;
	overflow:hidden;
	background:#fff;
	float:left;
	margin:20px 2% 20px 0;
	padding:76px 50px 0 50px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.fwcnnr_n ul li:nth-child(3n){
	margin-right:0;
}
.fwcnnr_n ul li .fwcnicon_n,.fwcnnr_n ul li h5,.fwcnnr_n ul li p{
	width:100%;
	overflow:hidden;
}
.fwcnnr_n ul li .fwcnicon_n{
	margin-bottom:20px;
}
.fwcnnr_n ul li .fwcnicon_n .fwcniconh,.fwcnnr_n ul li:hover .fwcnicon_n .fwcnicon{
	display:none;
}
.fwcnnr_n ul li:hover .fwcnicon_n .fwcniconh{
	display:block;
}
.fwcnnr_n ul li h5{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#272636;
	line-height:32px;
	font-weight:normal;
	margin-bottom:4px;
}
.fwcnnr_n ul li p{
	font-size:16px;
	color:#96969b;
	line-height:30px;
}
.fwcnnr_n ul li:hover{
	background: -webkit-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -o-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: -moz-linear-gradient(to right bottom, #0f9588, #115aa2);
    background: linear-gradient(to right bottom, #0f9588, #115aa2);
}
.fwcnnr_n ul li:hover h5,.fwcnnr_n ul li:hover p{
	color:#fff;
}
/* ycjk_n
-------------------------------------------------------------- */
.ycjk_n{
	width:100%;
	overflow:hidden;
	background:#f6f6f6;
	padding-top:80px;
	padding-bottom:60px;
}
.ycjkjs_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#272636;
	line-height:30px;
	margin-top:30px;
}
.ycjknr_n{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	margin-top:72px;
}
.ycjknr_n dl{
	width:48%;
	overflow:hidden;
}
.ycjknr_n dl dt,.ycjknr_n dl dd{
	width:100%;
	overflow:hidden;
}
.ycjknr_n dl dt img{
	width:100%;
	height:auto;
}
.ycjknr_n dl dd{
	font-size:16px;
	color:#272636;
	line-height:30px;
	text-align:center;
	margin-top:20px;
}
/* fwys_n
-------------------------------------------------------------- */
.fwys_n{
	width:100%;
	overflow:hidden;
	background:#f6f6f6;
	padding-top:80px;
	padding-bottom:60px;
}
.fwysnr_n,.fwysnr_m{
	width:100%;
	overflow:hidden;
	margin-top:25px;
}
.fwysnr_n img{
	max-width:100%;
	height:auto;
}
.fwys_n {
    padding-top: 60px;
    padding-bottom: 40px;
}
.fwysnr_m{
	display:none;
}
.fwysnr_m ul,.fwysnr_m ul li{
	width:100%;
	overflow:hidden;
}
.fwysnr_m ul li{
	background: #fff;
	font-size:16px;
	color:#333;
	line-height:30px;
	padding:20px;
	margin:20px 0;
}
/* progx_n
-------------------------------------------------------------- */
.progx_n{
	margin-top:92px;
	margin-bottom:60px;
}
.progx_n h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#232323;
	line-height:55px;
	text-align:center;
	margin-bottom:20px;
}
.progx_n ul,.progx_n ul li{
	width:100%;
	overflow:hidden;
}
.progx_n ul li{
	background:#f6f6f6;
	padding:30px 40px;
	border-radius:30px;
	margin:60px 0;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.progx_n ul li:hover{
	background:#29a85e;
}
.progx_n ul li .progxlf_n{
	width:17%;
	overflow:hidden;
}
.progx_n ul li .progxicon_n{
	overflow:hidden;
}
.progx_n ul li .progxicon_n .iconh,.progx_n ul li:hover .progxicon_n .icond{
	display:none;
}
.progx_n ul li:hover .progxicon_n .iconh{
	display:block;
}
.progx_n ul li .progxnum_n{
	font-family:Arial;
	font-size:45px;
	color:#232323;
	font-weight:bold;
	margin-left:36px;
	line-height:79px;
}
.progx_n ul li .progxlf_n span{
	display:block;
	width:48px;
	height:1px;
	background:#cccccc;
	margin-top:39px;
}
.progx_n ul li .progxrt_n{
	width:80%;
	height:79px;
	overflow:hidden;
	position:relative;
}
.progx_n ul li .progxrt_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#232323;
	line-height:26px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.progx_n ul li:hover .progxnum_n,.progx_n ul li:hover .progxrt_n p{
	color:#fff;
}
.progx_n ul li:hover .progxlf_n span{
	background:#fff;
}
/* qywh_n
-------------------------------------------------------------- */
.qywh_n,.qywh_n ul{
	width:100%;
	overflow:hidden;
}
.qywh_n ul li{
	width:20%;
	height:750px;
	overflow:hidden;
	float:left;
	padding:150px 50px 0 50px;
	position:relative;
	transition: width 300ms ease;
}
.qywh_n ul li:first-child{
	background:url(../images/qywh1.jpg) no-repeat top center;
	background-size:cover;
}
.qywh_n ul li:nth-child(2){
	background:url(../images/qywh2.jpg) no-repeat top center;
	background-size:cover;
}
.qywh_n ul li:nth-child(3){
	background:url(../images/qywh3.jpg) no-repeat top center;
	background-size:cover;
}
.qywh_n ul li:nth-child(4){
	background:url(../images/qywh4.jpg) no-repeat top center;
	background-size:cover;
}
.qywh_n ul li:nth-child(5){
	background:url(../images/qywh5.jpg) no-repeat top center;
	background-size:cover;
}
.qywh_n ul li::before{
	content:"";
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.3);
	position:absolute;
	left:0;
	top:0;
	transition: opacity 300ms ease;
	z-index:0;
}
.qywh_n ul li h5{
	width:100%;
	overflow:hidden;
	font-size:32px;
	color:#fff;
	line-height:42px;
	font-weight:normal;
	text-align:center;
	margin-bottom:20px;
}
.qywh_n ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
}
.qywh_n ul li h5,.qywh_n ul li p{
	position:relative;
	z-index:9;
}
.qywh_n ul:hover li {
    width: 18.5%
}
.qywh_n ul:hover li:hover {
    width: 26%
}
.qywh_n ul li:hover::before{
	background:rgba(17, 95, 173, 0.8);
}
/* dsj_n
-------------------------------------------------------------- */
.dsj_n{
	width:100%;
	overflow:hidden;
	background:url(../images/dsjbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:130px;
	padding-bottom:96px;
	position:relative;
}
.dsjnr_n{
	width:100%;
	overflow:hidden;
	margin-top:92px;
	padding-left:11.3%;
	position:relative;
}
.dsjnr_n::after{
	content:"";
	width:100%;
	height:2px;
	background:#e1e1e1;
	position:absolute;
	left:0;
	top:50%;
	margin-top:-0.5px;
}
.dsjnr_n .swiper-container{
	overflow:hidden;
}
.dsjnr_n .swiper-slide:nth-child(2n) .dsjlist_n{
	margin-top:252px;
	padding-top:40px;
}
.dsjlist_n{
	width:100%;
	height:252px;
	position:relative;
}
.dsjlist_n h5,.dsjlist_n p{
	width:100%;
	overflow:hidden;
}
.dsjnr_n .swiper-slide .dsjlist_n::before{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #115fad;
    border-radius: 16px;
    position: absolute;
    left: 0;
}
.dsjnr_n .swiper-slide:nth-child(2n+1) .dsjlist_n::before{
	bottom: -8px;
}
.dsjnr_n .swiper-slide:nth-child(2n) .dsjlist_n::before{
	top: -8px;
}
.dsjnr_n .swiper-slide .dsjlist_n::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #115fad;
    border-radius: 6px;
    position: absolute;
    left: 5px;
}
.dsjnr_n .swiper-slide:nth-child(2n+1) .dsjlist_n::after{
	bottom: -3px;
}
.dsjnr_n .swiper-slide:nth-child(2n) .dsjlist_n::after{
	top: -3px;
}
.dsjlist_n h5{
	font-size:24px;
	color:#1f1f1f;
	font-weight:normal;
	line-height:42px;
	margin-bottom:8px;
}
.dsjlist_n h5 span{
	font-size:42px;
	color:#1f1f1f;
	font-family:Arial;
	font-weight:bold;
	margin-right:10px;
}
.dsjlist_n p{
	font-size:18px;
	color:#1f1f1f;
	line-height:30px;
}

.dsjnr_n dl,.dsjnr_n dl dt,.dsjnr_n dl dd,.dsjyear_n,.dsjyear_n p{
	width:100%;
	overflow:hidden;
}
.dsjnr_n dl dt{
	font-size:22px;
	font-family:Arial;
	line-height:32px;
	color:#bbbbbb;
	margin-bottom:7px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.dsjnr_n .swiper-slide-active dl dt,.dsjnr_n dl:hover dt{
	color:#de5413;
}
.dsjnr_n dl dd .dsjjs_n,.dsjnr_n dl dd p{
	font-size:16px;
	color:#bbbbbb;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.dsjnr_n dl:hover dd .dsjjs_n,.dsjnr_n dl:hover dd p,.dsjnr_n .swiper-slide-active dl dd .dsjjs_n,.dsjnr_n .swiper-slide-active dl dd .dsjjs_n p{
	color:#181818;
}
.dsjnr_n dl dd .dsjjs_n{
	padding-right:60px;
	min-height: 125px;
}
.dsjnr_n dl dd .dsjbg_n,.dsjnr_n dl dd .dsjjs_n{
	width:100%;
	overflow:hidden;
}
.dsjnr_n dl dd .dsjbg_n img{
	width:100%;
	height:auto;
	opacity:0.2;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.dsjnr_n dl:hover dd .dsjbg_n img,.dsjnr_n .swiper-slide-active dl dd .dsjbg_n img{
	opacity:1;
}
.dsj_n .swiper-button{
	overflow:hidden;
	position:absolute;
	right:11.6%;
	top:138px;
	z-index:99;
}
.dsj_n .swiper-button div{
	width:52px;
	height:52px;
	float:left;
}
.dsj_n .swiper-button .swiper-button-prev{
	background:#6c6c6b url(../images/prev.png) no-repeat center;
}
.dsj_n .swiper-button .swiper-button-next{
	margin-left:32px;
	background:#6c6c6b url(../images/next.png) no-repeat center;
}
.dsj_n .swiper-button .swiper-button-disabled{
	opacity:0.6;
}
/* honor_n
-------------------------------------------------------------- */
.honor_n{
	width:100%;
	overflow:hidden;
	background:url(../images/honorbg.png) no-repeat top center;
	background-size:cover;
	padding-top:92px;
	padding-bottom:58px;
	}
.honornr_n,.honornr_n .honorimg_n{
	width:100%;
	overflow:hidden;
}
.honornr_n{
	margin-top:40px;
}
.honornr_n .honorimg_n img{
	width:100%;
	height:auto;
}
.honornr_n .honorimg_n:hover img{
	-webkit-transform: scale(1.05);
    transform: scale(1.05);
    -o-transform: scale(1.05);
}
.honorlist_n .swiper-button{
	overflow:hidden;
	}
.honorlist_n .swiper-button div{
	width:16px;
	height:31px;
	overflow:hidden;
	position:absolute;
	top:50%;
	margin-top:-15.5px;
	}
.honorlist_n .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	left:-36px;
	}
.honorlist_n .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	right:-36px;
	}
.honorbot_n{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	margin-top:40px;
}
.honorbot_n .swiper-pagination,.honorbot_n .button{
	width:50%;
	overflow:hidden;
}
.honorbot_n .swiper-pagination{
	position:inherit;
}
.honorbot_n .swiper-pagination span{
	font-size:20px;
	float:left;
	color:#999;
	padding:0 20px;
	line-height:52px;
	position:relative;
}
.honorbot_n .swiper-pagination span::before{
	content:"0";
}
.honorbot_n .swiper-pagination span:first-child::after{
	content:"/";
	font-size:20px;
	color:#999;
	position:absolute;
	right:0;
	top:0;
}
.honorbot_n .swiper-pagination span:first-child{
	padding-left:0;
	padding-right:30px;
}
.honorbot_n .swiper-pagination .swiper-pagination-current{
	font-size: 34px;
    color: #1f1f1f;
}
.honorbot_n .button{
	text-align:right;
}
.honorbot_n .button div{
	width:52px;
	height:52px;
	opacity:0.6;
	display:inline-block;
}
.honorbot_n .button .swiper-button-prev{
	background:#6c6c6b url(../images/prev2.png) no-repeat center;
}
.honorbot_n .button .swiper-button-next{
	background:#6c6c6b url(../images/next2.png) no-repeat center;
	margin-left:20px;
}
.honorbot_n .button div:hover{
	opacity:1;
}
/* gssl_n
-------------------------------------------------------------- */
.gssl_n{
	width:100%;
	overflow:hidden;
	background: #f3f3f3;
	padding:60px 0;
}
.gsslnr_n dl{
	width:90%;
	padding:0;
	height:588px;
	box-shadow: 0px 0px 46px rgba(6,0,1,0.05);
    -moz-box-shadow: 0px 0px 46px rgba(6,0,1,0.05);
    -webkit-box-shadow: 0px 0px 46px rgba(6,0,1,0.05);
	margin:77px 0;
	background:#fff;
	}
.gsslnr_n dl:nth-child(2n+1){
	margin-left:10%;
}
.gsslnr_n dl:nth-child(2n){
	margin-right:10%;
}
.gsslnr_n dl dt .gsslnum_n{
	overflow:hidden;
	font-size:106px;
	line-height:106px;
	font-family:myOneFont;
	color:#6b6b6b;
	font-weight:bold;
	text-transform:uppercase;
	position:absolute;
	top:-50px;
	left:70px;
}
.gsslnr_n dl dt{
	width:60%;
	padding:70px 70px 0 70px;
	position:relative;
	}
.gsslnr_n dl:nth-child(2n+1) dt{
	float:left;
	}
.gsslnr_n dl:nth-child(2n+1) dd{
	float:right;
	}
.gsslnr_n dl:nth-child(2n) dt{
	float:right;
	}
.gsslnr_n dl:nth-child(2n) dd{
	float:left;
	}
.gsslnr_n dl dt h5{
	width:100%;
	overflow:hidden;
	font-size: 24px;
    color: #6b6b6b;
	line-height:34px;
}
.gsslnr_n dl dt .gsslms_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#a7a7a7;
	line-height:30px;
	font-weight:normal;
	margin-top:30px;
}
.gsslnr_n dl dt .gsslms_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#3e3e3e;
	line-height:30px;
	font-weight:normal;
	}
.gsslnr_n dl dd{
	width:40%;
	height:100%;
	overflow:hidden;
	position:relative;
	}
.gsslnr_n dl dd 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;
}
.gsslnr_n dl:hover dd img{
	-webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
	}

/* pro_n
-------------------------------------------------------------- */
.marg{
	margin:0;
}
.pro_n{
	padding-top:60px;
	padding-bottom:60px;
	}
.pronr_n{
	width:100%;
	overflow:hidden;
}
.pronr_n dl{
	width:32%;
	overflow:hidden;
	float:left;
	margin:20px 2% 20px 0;
}
.pronr_n dl:nth-child(3n){
	margin-right:0;
}
.pronr_n dl dt,.pronr_n dl dd{
	width:100%;
	overflow:hidden;
}
.pronr_n dl dt{
	height:370px;
	border: solid 1px #ebebeb;
	position:relative;
}
.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;
}
.prorq_n{
	width:100%;
	overflow:hidden;
	background:#fbfbfb;
	padding-top:60px;
	padding-bottom:60px;
}
.prorq_n .proimg_n{
	padding:0;
	position:relative;
}
.prorq_n .proimg_n .probtn{
	width:96px;
	height:96px;
	background:#a38a63 url(../images/prev3.png) no-repeat center;
	position:absolute;
	left:0;
	top:0;
	z-index:90;
	cursor:pointer;
}
.prorq_n .proimg_n .swiper-slide img{
	width:100%;
	height:auto;
}
.prorq_n .proimg_n .propic_n{
	width:100%;
	overflow:hidden;
	box-shadow:9px 0px 18px rgba(0,0,0,0.02);
}
.prorq_n .proimg_n .mySwiper{
	width:100%;
	overflow:hidden;
	margin-top:15px;
}
.prorq_n .proimg_n .mySwiper .swiper-slide-thumb-active{
	border:solid 2px #115fad;
}
.prorq_n .prort_n{
	overflow:hidden;
	padding:30px 0 0 66px;
}
.prorq_n .prort_n .more{
	margin-top:20px;
}
.prorq_n .prort_n .more a{
	width:240px;
}
.prorq_n .prort_n h1{
	width:100%;
	overflow:hidden;
	color:#272636;
	font-size:35px;
	line-height:45px;
	font-weight:bold;
	margin:0;
	border-bottom:solid 1px #ece1d1;
	padding-bottom:34px;
}
.prorq_n .prort_n .fbnr h5{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#272636;
	line-height:35px;
	font-weight:normal;
	margin-bottom:10px;
}
.prorq_n .prort_n .fbnr{
	width:100%;
	overflow:hidden;
	color:#696971;
	font-size:16px;
	line-height:30px;
	margin-top:33px;
}
.prorq_n .prort_n .fbnr p,.prorq_n .fbxq p{
	color:#696971;
	font-size:16px;
	line-height:30px;
}
.prorq_n .fbxq{
	width:100%;
	overflow:hidden;
	color:#272636;
	font-size:16px;
	line-height:30px;
	margin-top:50px;
}
.prorq_n .fbxq img{
	max-width:100%;
	height:auto;
}
.prorq_n .fbxq h5{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#115fad;
	line-height:35px;
	margin-bottom: 10px;
}
.fbxq table{
	width:100%;
	white-space: nowrap;
	background:#d4ebf8;
	}
.fbxq table tr,.fbxq table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
	color:#333;
}
.fbxq table td{
	vertical-align:middle;
	text-align:center;
}
.fbxq table td p{
	font-size:16px;
	color:#333;
}
.procs_n,.procs_n h5,.procs_n .procsnr_n{
	width:100%;
	overflow:hidden;
}
.procs_n .procsnr_n{
	margin-top:30px;
	font-size:16px;
	line-height:30px;
	color:#34322f;
}
.proxqmenu{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-bottom:50px;
}
.proxqmenu ul{
	overflow:hidden;
	display:inline-block;
}
.proxqmenu ul li{
	float:left;
	margin:5px 69px;
	line-height:32px;
	padding-bottom:14px;
	position:relative;
}
.proxqmenu ul li::after{
	content:"";
	width:74px;
	height:2px;
	background:#115fad;
	position:absolute;
	left:50%;
	margin-left:-37px;
	bottom:0;
}
.proxqmenu ul li a{
	font-size:22px;
	color:#272636;
}
.proxqmenu ul li.active a{
	color:#115fad;
	font-weight:bold;
}
.proxqnr{
	display:none;
}
.proxqnr.active{
	display:block;
}
/*产品展示结束*/
	
/* case_n
-------------------------------------------------------------- */
.case_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.casenr_n{
	width:100%;
	overflow:hidden;
}
.case_n dl{
	width:32%;
	overflow:hidden;
	float:left;
	margin:20px 2% 20px 0;
	}
.case_n dl:nth-child(3n){
	margin-right:0;
}
.case_n dl dt,.case_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.case_n dl dt{
	position:relative;
	height:354px;
	}
.case_n 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;
	}
.case_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.case_n dl dd{
	line-height:30px;
	font-size:18px;
	color:#333;
	margin-top:10px;
	}
.case_n dl:hover dd{
	color:#115fad;
}
.gallery{
	width:100%;
	overflow:hidden;
	position:relative;
}
/* nnews
-------------------------------------------------------------- */
.news_n{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
	}
.newslist_n{
	width:100%;
	overflow:hidden;
	padding:35px 0;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.newslist_n .newsimg_n{
	width:21%;
	overflow:hidden;
	height:225px;
	position:relative;
}
.newslist_n .newsimg_n 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;
}
.newslist_n:hover .newsimg_n img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.newslist_n .newsrt_n{
	width:79%;
	overflow:hidden;
	padding:0 240px 0 48px;
	background:url(../images/icon33.png) no-repeat center right;
}
.newslist_n .newsrt_n .newsdate_n{
	width:100%;
	overflow:hidden;
	color: #115fad;
    font-size: 16px;
	line-height:30px;
	margin-top:32px;
}
.newslist_n .newsrt_n h5{
	width:100%;
	overflow:hidden;
    font-size: 22px;
	line-height:32px;
	color:#272631;
	font-weight:normal;
	margin-top:14px;
}
.newslist_n .newsrt_n .newsms_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#807f83;
	line-height:30px;
	margin-top:10px;
}
.newslist_n:hover{
	background:#115fad;
}
.newslist_n:hover .newsrt_n h5,.newslist_n:hover .newsrt_n .newsms_n,.newslist_n:hover .newsrt_n .newsdate_n{
	color:#fff;
}
.newslist_n:hover .newsrt_n{
	background:url(../images/iconh33.png) no-repeat center right;
}
.newsinfo_n{
	margin-top:60px;
	margin-bottom:60px;
}
.newsinfo_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 28px;
	line-height:38px;
    color: #262626;
	font-weight:normal;
    text-align: center;
	border-bottom:solid 1px #ececec;
	padding-bottom:24px;
	}
.newsinfo_n .fbtime{
	width: 100%;
    overflow: hidden;
	margin-top:20px;
	text-align:center;
	font-size:16px;
	color:#272631;
	line-height:30px;
	}
.newsinfo_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 35px;
    font-size: 16px;
    line-height: 30px;
    color: #807f83;
}
.newsinfo_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #807f83;
}
.newsinfo_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
	
/* contact_n
-------------------------------------------------------------- */
.contact_n{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	margin-bottom:80px;
	}
.contact_n h3{
	width:100%;
	overflow:hidden;
	font-size: 36px;
	color: #171f29;
	font-weight:normal;
	line-height:46px;
	margin-bottom:30px;
}
.contactnr_n{
	margin-top:30px;
}
.contactnr_n,.contactnr_n ul{
	width:100%;
	}
.contactnr_n ul li{
	width:32%;
	height:258px;
	overflow:hidden;
	margin:20px 2% 20px 0;
	padding:80px 50px 0 50px;
	text-align:center;
	float:left;
	background: #eff6fe;
	transition: all .3s ease;
	}
.contactnr_n ul li:nth-child(3n){
	margin-right:0;
}
.contactnr_n ul li .icon{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.contactnr_n ul li .icon .iconimgh,.contactnr_n ul li:hover .icon .iconimg{
	display:none;
}
.contactnr_n ul li:hover .icon .iconimgh{
	display:block;
	margin:auto;
}
.contactnr_n ul li p{
	width:100%;
	overflow:hidden;
	font-size: 16px;
    color: #808080;
    margin-top: 15px;
}
.contactnr_n ul li p a{
	font-size: 16px;
    color: #808080;
}
.contactnr_n ul li:hover {
    transform: translateY(-10px);
    background-color: #115fad;
    box-shadow: 0 20px 40px rgba(17, 95, 173, 0.3);
}
.contactnr_n ul li:hover p,.contactnr_n ul li:hover p a{
	color:#fff;
}
.map_n{
	width:100%;
	overflow:hidden;
	}
.map_n img{
	width:100%;
	height:auto;
	}


/* 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:#115fad;
}
.newsbot_n{
	width: 100%;
    overflow: hidden;
	border-top:solid 1px #cfdaf0;
	display:flex;
	justify-content:space-between;
	padding:21px 0;
	margin-top:30px;
}
.newsbot_n .newsprev,.newsbot_n .newsnext{
	width:43%;
	overflow:hidden;
	font-size:16px;
	color:#000;
	line-height:30px;
}
.newsbot_n .newsprev a,.newsbot_n .newsnext a{
	font-size:16px;
	color:#000;
}
.newsbot_n .newsfh{
	width:14%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#000;
	line-height:30px;
}
.newsbot_n .newsfh img{
	margin-right:8px;
}
.newsbot_n .newsnext{
	text-align:right;
}
.newsbot_n a{
	font-size:16px;
	color:#000;
}
.newsbot_n a:hover{
	color:#115fad;
}

.a_txt,.rg{
	display:none;
}
.toggle,#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) 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: #115fad;
	  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: #115fad;
	  -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: #115fad;
	  -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:40px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 3px;
	  margin: 3px 5px;
	  width: 30px;
	  display: block;
	  background: #115fad;
	  -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 dl dt{
		height:353px;
	}
	.case_n dl dt{
		height:270px;
	}
	.prolist dl dt{
		height:336px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.pronr_n dl dt{
		height:317px;
	}
	.case_n dl dt{
		height:318px;
	}
	.prolist dl dt{
		height:302px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.pronr_n dl dt{
		height:300px;
	}
	.case_n dl dt{
		height:298px;
	}
	.prolist dl dt{
		height:285px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.pronr_n dl dt{
		height:282px;
	}
	.case_n dl dt{
		height:279px;
	}
	.prolist dl dt{
		height:268px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.pronr_n dl dt{
		height:253px;
	}
	.case_n dl dt{
		height:261px;
	}
	.prolist dl dt{
		height:241px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.pronr_n dl dt{
		height:225px;
	}
	.case_n dl dt{
		height:239px;
	}
	.prolist dl dt{
		height:214px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.pronr_n dl dt{
		height:218px;
	}
	.case_n dl dt{
		height:211px;
	}
	.prolist dl dt{
		height:208px;
	}
}
@media only screen and (min-width: 912px) and (max-width: 991px) {
	.pronr_n dl dt{
		height:172px;
	}
	.case_n dl dt{
		height:307px;
	}
	.prolist dl dt{
		height:200px;
	}
}
@media only screen and (min-width: 853px) and (max-width: 911px) {
	.pronr_n dl dt{
		height:288px;
	}
	.case_n dl dt{
		height:287px;
	}
	.prolist dl dt{
		height:187px;
	}
}
@media only screen and (min-width: 820px) and (max-width: 852px) {
	.pronr_n dl dt{
		height:276px;
	}
	.case_n dl dt{
		height:264px;
	}
	.prolist dl dt{
		height:180px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 819px) {
	.pronr_n dl dt{
		height:259px;
	}
	.case_n dl dt{
		height:245px;
	}
	.prolist dl dt{
		height:168px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.pronr_n dl dt{
		height:215px;
	}
	.case_n dl dt{
		height:239px;
	}
	.prolist dl dt{
		height:441px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.pronr_n dl dt{
		height:181px;
	}
	.case_n dl dt{
		height:196px;
	}
	.prolist dl dt{
		height:372px;
	}
}
@media only screen and (min-width: 430px) and (max-width: 539px) {
	.pronr_n dl dt{
		height:296px;
	}
	.case_n dl dt{
		height:165px;
	}
	.prolist dl dt{
		height:296px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 429px) {
	.pronr_n dl dt{
		height:292px;
	}
	.case_n dl dt{
		height:165px;
	}
	.prolist dl dt{
		height:292px;
	}
}
@media only screen and (min-width: 412px) and (max-width: 424px) {
	.pronr_n dl dt{
		height:283px;
	}
	.case_n dl dt{
		height:217px;
	}
	.prolist dl dt{
		height:283px;
	}
}
@media only screen and (min-width: 390px) and (max-width: 411px) {
	.pronr_n dl dt{
		height:268px;
	}
	.case_n dl dt{
		height:205px;
	}
	.prolist dl dt{
		height:268px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 389px) {
	.pronr_n dl dt{
		height:258px;
	}
	.case_n dl dt{
		height:197px;
	}
	.prolist dl dt{
		height:258px;
	}
}
@media only screen and (min-width: 360px) and (max-width: 374px) {
	.pronr_n dl dt{
		height:247px;
	}
	.case_n dl dt{
		height:189px;
	}
	.prolist dl dt{
		height:247px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
	.pronr_n dl dt{
		height:220px;
	}
	.case_n dl dt{
		height:168px;
	}
	.prolist dl dt{
		height:220px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.pronr_n dl dt{
		height:192px;
	}
	.case_n dl dt{
		height:147px;
	}
	.prolist dl dt{
		height:192px;
	}
}

@media(max-width:1768px) {
	.banner .swiper-pagination{
		left:17%;
	}
	.banner .swiper-button-next{
		left: 27.5%;
	}
}
@media(max-width:1680px) {
	.caselist .casebot .casemore{
		right:30px;
	}
	.caselist .casebot {
		padding: 28px 250px 0 30px;
	}
	.caselist .casebot h5 {
		font-size: 22px;
		line-height:32px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
		}
	.nav {
		margin-right: 70px;
		padding-right: 48px;
	}
	.nav .menu > li a {
		margin: 0 45px;
	}
	.banner .swiper-pagination{
		left:18%;
	}
	.banner .swiper-button-next{
		left: 30%;
	}
	.aboutlist ul li {
		width: 31%;
		padding: 70px 40px 0 40px;
	}
	.aboutlist ul li h5{
		font-size:26px;
		line-height:36px;
	}
	.tjprort {
		padding-left: 70px;
	}
	.tjprort .tjpro_nr {
		font-size: 32px;
	}
	.prolf .proms h5 {
		font-size: 35px;
		line-height:45px;
	}
	.caselist .casebot h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.caselist .casebot .casejs, .caselist .casebot .casejs p {
		font-size: 14px;
		line-height: 25px;
	}
	.ntit h3{
		font-size:36px;
		line-height:46px;
	}
	.aboutlist_n ul li dl dt .counter{
		font-size:70px;
	}
	.qywh_n ul li {
		padding: 150px 30px 0 30px;
	}
	.qywh_n ul li h5{
		font-size:28px;
		line-height:38px;
	}
	.dsj_n .swiper-button{
		right:6%;
	}
	.dsjnr_n {
		padding-left: 6%;
	}
	.dsjlist_n h5{
		line-height:38px;
		font-size: 20px;
	}
	.dsjlist_n h5 span{
		font-size:38px;
	}
	.dsjlist_n p {
		font-size: 16px;
		line-height:26px;
	}
	.dsjnr_n .swiper-slide:nth-child(2n) .dsjlist_n {
		padding-top: 30px;
	}
	.dsjlist_n h5{
		margin-bottom:5px;
	}
	.prorq_n .prort_n h1 {
		font-size: 30px;
		line-height: 40px;
	}
	.prorq_n .prort_n .fbnr h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.proxqmenu ul li {
		margin: 5px 50px;
	}
	.proxqmenu ul li a {
		font-size: 20px;
	}
	.newsinfo_n h1{
		font-size:26px;
		line-height:36px;
	}
	.newslist_n .newsrt_n {
		padding: 0 200px 0 48px;
	}
	.gsslnr_n dl dt .gsslms_n{
		margin-top:20px;
	}
	.gsslnr_n dl dt {
		padding: 70px 50px 0 50px;
	}
	.gsslnr_n dl dt .gsslnum_n{
		left:50px;
	}
	.gsslnr_n dl dt .gsslnum_n {
		font-size: 96px;
		line-height: 96px;
	}
	.contact_n h3 {
		font-size: 32px;
		line-height: 42px;
	}
	.botlxfs {
        margin-right: 40px;
    }
}
@media(max-width:1550px) {
	.fwcnnr_n ul li {
		padding: 76px 40px 0 40px;
	}
	.dsjlist_n h5{
		line-height:34px;
		font-size: 18px;
	}
	.dsjlist_n h5 span{
		font-size:34px;
	}
	.dsjlist_n p {
		font-size: 15px;
		line-height:25px;
	}
}
@media(max-width:1440px) {
	.nav {
		margin-right: 60px;
		padding-right: 38px;
	}
	.nav .menu > li a {
		margin: 0 40px;
	}
	.banner .swiper-button-next{
		left: 31%;
	}
	.banner .swiper-button-prev, .banner .swiper-button-next{
		bottom:65px;
	}
	.banner .swiper-pagination{
		bottom:98px;
	}
	.promenu ul li .proname {
		width: 80%;
	}
	.promenu ul li i {
		width: 20%;
	}
	.prolf .proms h5 {
		font-size: 30px;
		line-height:40px;
	}
	.aboutlist ul li {
		padding: 60px 30px 0 30px;
	}
	.caselist .casebot .casemore {
		width: 180px;
		font-size: 12px;
		padding-left:15px;
	}
	.caselist .casebot {
		padding: 28px 220px 0 20px;
	}
	.caselist .casebot .casemore {
		right: 20px;
	}
	.aboutlf_n{
		padding-top:0;
	}
	.aboutlist_n ul li dl dt .counter{
		font-size:60px;
		line-height:60px;
	}
	.qywh_n ul li h5{
		font-size:26px;
		line-height:36px;
	}
	.prorq_n .prort_n h1 {
		font-size: 26px;
		line-height: 36px;
	}
	.prorq_n .prort_n .fbnr h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.prorq_n .prort_n {
		padding: 20px 0 0 50px;
	}
	.proxqmenu ul li {
		margin: 5px 30px;
	}
	.newslist_n .newsrt_n {
		padding: 0 160px 0 48px;
	}
	.newsnr .newsrt ul li{
		padding: 46px 30px 0 30px;
	}
	.card-img-150{
		height:198px;
	}
	.gsslnr_n dl dt {
		padding: 50px 40px 0 40px;
	}
	.gsslnr_n dl dt .gsslnum_n {
		font-size: 86px;
		line-height: 86px;
		left:40px;
	}
	.botlxfs {
        margin-right: 20px;
    }
}
@media(max-width:1360px) {
	.nav {
		margin-right: 50px;
		padding-right: 28px;
	}
	.nav .menu > li a {
		margin: 0 35px;
	}
	.banner .swiper-pagination{
		left:19%;
	}
	.banner .swiper-button-next{
		left: 33%;
	}
	.aboutlist ul li h5 {
		font-size: 24px;
		line-height: 34px;
	}
	.aboutlist ul li .aboutlistjs, .aboutlist ul li .aboutlistjs p {
		font-size: 15px;
		line-height: 28px;
	}
	.fwcnnr_n ul li {
		padding: 76px 30px 0 30px;
	}
	.newslist_n .newsrt_n {
		padding: 0 100px 0 48px;
	}
	.footernr .footerrt dl dt img{
	    width: 100px;
	}
	.footernr .footerrt dl dd {
        font-size: 14px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 40px;
		padding-right: 18px;
	}
	.nav .menu > li a {
		margin: 0 30px;
	}
	.banner .swiper-button-prev, .banner .swiper-button-next{
		bottom:45px;
	}
	.banner .swiper-button-prev, .banner .swiper-button-next {
		width: 60px;
		height: 60px;
	}
	.banner .swiper-pagination {
		bottom: 68px;
		left: 18%;
	}
	.caselist .casebot h5{
		margin-bottom:10px;
		font-size: 18px;
		line-height: 25px;
	}
	.aboutlist_n ul li dl dt .counter{
		font-size:50px;
		line-height:50px;
	}
	.aboutlist_n ul li dl dt,.aboutlist_n ul li dl dd{
		font-size:15px;
	}
	.aboutlist_n ul li dl dt font {
		font-size: 30px;
	}
	.tjprort {
		padding-left: 50px;
	}
	.tjprort .tjpro_nr {
		font-size: 30px;
	}
	.promenu {
		width: 20%;
	}
	.fwcnnr_n ul li {
		padding: 60px 30px 0 30px;
	}
	.qywh_n ul li {
		padding: 150px 20px 0 20px;
	}
	.prolist dl dd i, .pronr_n dl dd i{
		width: 36px;
		height: 36px;
	}
	.prolist dl dd h5, .pronr_n dl dd h5{
		font-size:17px;
	}
	.prorq_n .prort_n h1 {
		font-size: 24px;
		line-height: 34px;
	}
	.contactnr_n ul li{
		padding:80px 50px 0 50px;
	}
	.contact_n h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.card-img-150{
		height:175px;
	}
	.gsslnr_n dl dt h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.gsslnr_n dl dt .gsslms_n p {
		font-size: 15px;
		line-height: 28px;
	}
}

@media(max-width:1152px) {
	.nav .menu > li a {
		margin: 0 25px;
	}
	.banner .swiper-button-prev, .banner .swiper-button-next {
		width: 50px;
		height: 50px;
	}
	.banner .swiper-pagination {
		bottom: 63px;
		left: 17%;
	}
	.promenu ul li{
		padding: 0 20px;
	}
	.tjpronr {
		padding: 48.5px 0 48.5px 46px;
	}
	.tjpronr,.tjpronr a{
		font-size:15px;
	}
	.aboutlist ul li .aboutlistjs,.aboutlist ul li h5{
		margin-top: 20px;
	}
	.aboutlist ul li {
		padding: 50px 30px 0 30px;
	}
	.newslist_n .newsrt_n {
		padding: 0 80px 0 40px;
	}
	.gsslnr_n dl dt .gsslnum_n {
		font-size: 76px;
		line-height: 76px;
		top: -40px;
	}
	.gsslnr_n dl dt h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.gsslnr_n dl dt .gsslms_n p {
		font-size: 14px;
		line-height: 25px;
	}
	.botlxfs {
        margin-right: 10px;
    }
    .bottel p,.bottel p a{
        font-size: 26px;
    }
    .footernr .footerrt dl dt img {
        width: 84px;
    }
    .footernr .footerrt dl dd {
        font-size: 12px;
    }
}
@media(max-width:1070px) {
	.nav .menu > li a {
		margin: 0 22px;
	}
}

@media(max-width:1024px) {
	.banner .swiper-button-next {
		left: 34.5%;
	}
}
@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.logo{
		padding:10px 0;
	}
	.logo img{
		height:40px;
	}
	.banner,.banner_n{
		margin-top:60px;
	}
	.pcban{
		display:none;
	}
	.mban{
		display:block;
	}
	.banner .img{
		height:auto;
	}
	.banner .swiper-pagination {
		bottom: 40px;
		left: 6%;
	}
	.search_box{
		top:60px;
	}
	.tjpro{
		display:none;
	}
	.caselist .casebot {
		padding: 20px;
	}
	.caselist .casebot .casemore{
		position:inherit;
		top:inherit;
		margin-top:5px;
		right: inherit;
	}
	.caselist .casebot .casemore {
		width: 170px;
		height:40px;
		line-height:40px;
	}
	.caselist .casebot .casemore i {
		width: 40px;
		background-size: 40px;
	}
	.fwysnr_n{
		display:none;
	}
	.fwysnr_m{
		display:block;
	}
	.news {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.newsnr {
		margin-top: 40px;
	}
	.newsnr .newslf,.newsnr .newsrt{
		width:100%;
	}
	.newsnr .newsrt{
		margin-top:30px;
	}
	.prolf{
		width:100%;
	}
	.promenu{
		display:none;
	}
	.pro {
		padding-bottom: 60px;
	}
	.aboutlf_n,.aboutrt_n{
		width:100%;
	}
	.aboutrt_n{
		margin-top:30px;
		text-align:center;
	}
	.qywh_n ul li,.qywh_n ul:hover li,.qywh_n ul:hover li:hover{
		width: 33.333333333333333%;
		height:400px;
	}
	.qywh_n ul li{
		padding: 100px 20px 0 20px;
	}
	.gsslnr_n dl{
		width:100%;
		height:auto;
		margin: 40px 0;
	}
	.gsslnr_n dl:nth-child(2n+1) {
		margin-left: 0;
	}
	.gsslnr_n dl:nth-child(2n) {
		margin-right: 0;
	}
	.gsslnr_n dl dt,.gsslnr_n dl dd{
		width:100%;
		float:none !important;
	}
	.gsslnr_n dl dd{
		text-align:center;
		height: auto;
	}
	.gsslnr_n dl dd img {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		height: auto;
		object-fit: inherit;
	}
	.gsslnr_n dl:hover dd img{
		-webkit-transform: translate(0, 0) scale(1.1);
		transform: translate(0, 0) scale(1.1);
	}
	.gsslnr_n dl:before {
		font-size: 60px;
		line-height: 60px;
		top: -30px;
	}
	.gsslnr_n dl dt h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.gsslnr_n dl dt h5 {
		font-size: 18px;
	}
	.gsslnr_n dl dt,.gsslnr_n dl:nth-child(8) dt{
		padding: 50px 30px 40px 30px;
	}
	.gsslnr_n dl:nth-child(2n+1) dt .casenum{
		left:40px;
	}
	.gsslnr_n dl:nth-child(2n) dt .casenum{
		right:40px;
	}
	.gsslnr_n dl dt .casenum {
		font-size: 70px;
		line-height: 70px;
		top: -35px;
	}
	.gsslnr_n dl dt .gsslms_n {
		margin-top: 10px;
	}
	.gsslnr_n dl dt .gsslnum_n{
		left:30px;
	}
	.footer {
		padding-top: 50px;
	}
	.footernr .footerlf,.footernr .footerrt{
		width:100%;
	}
	.footernr .footerrt{
		margin-top:10px;
	}
	.footernr ul li p{
		display:none;
	}
	.footerin {
		padding-top: 30px;
		margin-top: 30px;
	}
	.bottel {
		margin-top: 20px;
	}
}
@media(max-width:991px) {
	.banner .swiper-button-prev, .banner .swiper-button-next{
		display:none;
	}
	.banner .swiper-pagination {
		bottom: 20px;
	}
	.second-nav{
		height:auto;
	}
	.second-nav ul li {
		padding: 0;
		width: 50%;
		float: left;
		line-height:30px;
		padding:5px 0;
	}
	.second-nav ul li,.second-nav ul li a {
		font-size: 18px;
	}
	.tit p,.tit p i{
		font-size:40px;
	}
	.tit p {
		line-height: 50px;
		padding-left: 20px;
	}
	.tit p::after {
		width: 50px;
		height: 50px;
	}
	.tit h3,.tit h3 a{
		font-size:26px;
		line-height:36px;
	}
	.about{
		padding-top:60px;
		padding-bottom:40px;
	}
	.about .aboutrt {
		width: 100%;
	}
	.aboutrt .more,.aboutrt .aboutjs{
		margin-top: 30px;
	}
	.aboutlist {
		margin-top: 40px;
	}
	.aboutlist ul{
		display:inherit;
	}
	.aboutlist ul li{
		width:100%;
		margin-bottom:20px;
		height:auto;
		padding:30px;
	}
	.aboutlist ul li .abouticon img{
		width:50px;
	}
	.newsmenu {
		text-align: left;
		margin-top:30px;
	}
	.newsmenu ul li{
		margin-left:0;
		margin-right:20px;
	}
	.prolist{
		margin-top:20px;
	}
	.case{
		padding-top:60px;
		padding-bottom:60px;
	}
	.caselist .caseimg{
		border-radius:10px 10px 0px 0px;
	}
	.caselist .casebot{
		width:100%;
		position:inherit;
		border-radius:0px 0px 10px 10px;
	}
	.casenr .button .swiper-button-prev{
		left:7%;
	}
	.casenr .button .swiper-button-next{
		right:7%;
	}
	.casenr .swiper-container{
		overflow:hidden;
	}
	.caselist .casebot i{
		display:none;
	}
	.caselist .casebot {
		padding: 20px 30px;
		min-height:auto;
	}
	.casetit .more {
		justify-content: left;
	}
	.prolist dl {
		width: 32%;
	}
	.prolf .proimgrq .proimg {
		height: 360px;
	}
	.prolist dl dd h5{
		width:85%;
	}
	.prolf .proms h5 {
		font-size: 25px;
		line-height: 35px;
	}
	.prolist dl dd h5{
		font-size: 16px;
	}
	.prolist dl dd i{
		width: 30px;
		height: 30px;
	}
	.hyyy{
		height:800px;
	}
	.hyyytit{
		top:20px;
	}
	.hyyynr ul li:nth-child(4){
		border-left:solid 1px rgba(255,255,255,0.2);
	}
	.hyyynr ul li:nth-child(4),.hyyynr ul li:nth-child(5),.hyyynr ul li:nth-child(6){
		border-top:solid 1px rgba(255,255,255,0.2);
	}
	.hyyynr ul li{
		height:50%;
		padding-top: 25%;
	}
	.hyyynr ul li span {
		margin: 30px auto 0;
	}
	.hyyynr ul li p{
		margin-top:20px;
		font-size:22px;
		line-height:32px;
	}
	.ntit h3 {
		font-size: 32px;
		line-height: 42px;
	}
	.casenr {
		padding: 0 6%;
	}
	.aboutlist_n ul li dl dt .counter{
		font-size:45px;
		line-height:45px;
	}
	.aboutlist_n ul li dl dt,.aboutlist_n ul li dl dd{
		font-size:14px;
	}
	.aboutlist_n ul li dl dt font {
		font-size: 25px;
	}
	.honor_n{
		padding-top:60px;
	}
	.dsj_n .swiper-button div{
		width: 35px;
		height: 35px;
	}
	.dsj_n .swiper-button .swiper-button-next,.honorbot_n .button .swiper-button-next{
		margin-left: 10px;
	}
	.dsj_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.honorbot_n .button div{
		width: 35px;
		height: 40px;
	}
	.honorbot_n .swiper-pagination .swiper-pagination-current {
		font-size: 30px;
	}
	.honorbot_n .swiper-pagination span{
		padding:0 10px;
	}
	.honorbot_n .swiper-pagination span:first-child {
		padding-right: 20px;
	}
	.dsjlist_n h5{
		line-height:30px;
		font-size: 16px;
	}
	.dsjlist_n h5 span{
		font-size:30px;
		margin-right:5px;
	}
	.dsjlist_n p {
		font-size: 14px;
		line-height: 24px;
	}
	.fwcnnr_n ul li{
	    margin: 10px 2% 10px 0;
	}
	.pronr_n dl,.case_n dl,.contactnr_n ul li,.fwcnnr_n ul li{
		width: 49%;
	}
	.pronr_n dl:nth-child(2n),.case_n dl:nth-child(2n),.contactnr_n ul li:nth-child(2n),.fwcnnr_n ul li:nth-child(2n){
		margin-right: 0;
	}
	.pronr_n dl:nth-child(2n+1),.case_n dl:nth-child(2n+1),.contactnr_n ul li:nth-child(2n+1),.fwcnnr_n ul li:nth-child(2n+1){
		margin-right: 2%;
	}
	.prorq_n .prort_n {
		padding: 40px 0 0 0;
	}
	.prorq_n .prort_n h1{
		padding-bottom:20px;
	}
	.prorq_n .prort_n .fbnr{
		margin-top:20px;
	}
	.proxqmenu ul li a {
		font-size: 18px;
	}
	.proxqmenu ul li {
		margin: 5px 15px;
	}
	.prorq_n .fbxq h5{
		font-size:22px;
		line-height:32px;
	}
	.prorq_n .prort_n h1 {
		font-size: 22px;
		line-height: 32px;
	}
	.fwlc_n .fwlclf_n,.fwlc_n .fwlcrt_n{
		width:100%;
	}
	.fwlc_n .fwlcrt_n{
		text-align:center;
		margin-top:30px;
	}
	.fwlc_n .ntit {
		margin-bottom: 50px;
	}
	.newsbot_n{
		display:inherit;
	}
	.newsbot_n .newsprev, .newsbot_n .newsnext,.newsbot_n .newsfh{
		width:100%;
		text-align:center;
	}
	.newsinfo_n h1 {
		font-size: 22px;
		line-height: 32px;
	}
	.newslist_n .newsimg_n {
		width: 30%;
	}
	.newslist_n .newsrt_n{
		width:70%;
		padding:0 0 0 20px;
		background:none;
	}
	.newslist_n .newsrt_n h5,.newslist_n .newsrt_n .newsdate_n {
		margin-top: 10px;
	}
	.ycjknr_n dl dd {
		font-size: 14px;
		margin-top: 10px;
	}
	.contact_n h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.messagebtn_n{
		display:inherit;
	}
	.btn1,.message_n .tjbtn{
		width:100%;
	}
	.message_n .tjbtn{
		margin-top:20px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.botnr {
		padding: 20px 0;
	}
	.card-body h5{
		font-size:14px;
		margin-top:5px;
	}
	.card-body h5 a,.card-body h5 span{
		font-size:14px;
	}
}
@media(max-width:768px) {
	.ntit h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.pronr_n dl dd h5 {
		font-size: 16px;
	}
	.pronr_n dl dd i {
		width: 30px;
		height: 30px;
	}
	.prorq_n .fbxq h5{
		font-size:20px;
		line-height:30px;
	}
	.case_n dl dd {
		font-size: 16px;
		margin-top: 5px;
	}
	.contactnr_n ul li {
		padding: 80px 30px 0 30px;
	}
	.contact_n h3 {
		font-size: 22px;
		line-height: 32px;
	}
}
@media(max-width:767px) {
	.proxqmenu ul{
		width:100%;
	}
	.proxqmenu ul li{
		width:50%;
		float:left;
	}
	.proxqmenu ul li{
		margin:5px 0;
	}
	.proxqmenu ul li a {
		font-size: 16px;
	}
	.prolf .proimgrq,.prolf .proms{
		width:100%;
	}
	.prolf .proms{
		margin-top:30px;
	}
	.prolf .proms .more {
		margin-top: 30px;
	}
	.prolf .proms .prossfl{
		padding-bottom: 20px;
	}
	.prolf .proms .protext {
		margin-top: 20px;
	}
	.prolist{
		display:inherit;
	}
	.prolist dl{
		width:100%;
		margin:20px 0;
	}
	.prolf .proimgrq .proimg {
		height: auto;
	}
	.prolf .proimgrq {
		padding: 0 30px 22px 0;
	}
	.prolf {
		padding-top:40px;
	}
	.prolf .proms h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.prolf .proms .prossfl {
		font-size: 17px;
	}
	.message_n ul li{
		width:100%;
		margin: 10px 0;
	}
	.message_n ul li textarea{
		height:200px;
	}
	.ycjknr_n dl{
		width:100%;
		margin:20px 0;
	}
	.ycjknr_n{
		display:inherit;
	}
	.ycjknr_n{
		margin-top:40px;
	}
}
@media(max-width:640px) {
	.banner .swiper-pagination-clickable .swiper-pagination-bullet {
		margin-left:6px;
		margin-right:6px;
	}
	.banner .swiper-pagination {
		left: 2%;
	}
	.banner .swiper-slide .img > img {
		width: 120%;
		margin-left: -10%;
		min-height:auto;
	}
	.banner .swiper-container .bannernr2,.banner .swiper-container .bannernr4,.banner .swiper-container .bannernr5,.banner .swiper-container .bannernr6{
		left:2%;
	}
	.banner .swiper-container .bannernr2{
		width: 35.1%;
		top:27.75%;
	}
	.banner .swiper-container .bannernr3{
		width: 52%;
		margin-left: -26%;
		top:15.4%;
	}
	.banner .swiper-container .bannernr4{
		width: 47.3%;
		top:27.75%;
	}
	.banner .swiper-container .bannernr5{
		width:37.8%;
		top:27.75%;
	}
	.banner .swiper-container .bannernr6{
		width: 38.7%;
		top:27.75%;
	}
	.tit p,.tit p i{
		font-size:30px;
	}
	.tit p {
		line-height: 40px;
		padding-left: 15px;
	}
	.tit p::after {
		width: 40px;
		height: 40px;
	}
	.tit h3,.tit h3 a{
		font-size:22px;
		line-height:32px;
	}
	.newsnr .newslf {
		height: 440px;
	}
	.newsnr .newsrt ul li {
		width:100%;
		padding: 30px 20px;
		height:auto;
		margin: 0 0 20px 0;
	}
	.newsnr .newsrt ul li h5{
		margin-bottom:10px;
	}
	.newsnr .newsrt ul li .newsxq {
		padding: 10px 0;
	}
	.aboutlist ul li h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.aboutlist ul li{
		padding:30px 20px;
	}
	.caselist .casebot {
		padding: 20px;
	}
	.prolf .proms .prossfl {
		font-size: 16px;
	}
	.prolf .proimgrq {
		padding: 0 20px 20px 0;
	}
	.prorq_n .prort_n .more a {
		width: 215px;
	}
	.hyyy{
		height:600px;
	}
	.hyyynr ul li .hyyyicon img{
		height:40px;
	}
	.hyyynr ul li {
		padding-top: 180px;
	}
	.hyyynr ul li p{
		font-size:20px;
		line-height:30px;
		margin-top:10px;
	}
	.more a {
		width: 140px;
		height: 40px;
		padding-left: 20px;
		line-height: 40px;
	}
	.more a i {
		width: 39px;
		background-size: 39px;
	}
	.newslf .newslf_nr {
		padding: 0 30px;
		bottom: 20px;
	}
	.newslf .newslf_nr h5,.newslf .newslf_nr .more{
		margin-top: 20px;
	}
	.newslf .newslf_nr .newsday {
		font-size: 40px;
		line-height: 40px;
	}
	.newslf .newslf_nr h5 {
		font-size: 18px;
	}	
	.qywh_n ul li,.qywh_n ul:hover li,.qywh_n ul:hover li:hover{
		width: 50%;
	}
	.qywh_n ul li h5 {
		font-size: 24px;
		line-height: 34px;
	}
	.qywh_n ul li:last-child,.qywh_n ul:hover li:hover:last-child{
		width:100%;
	}
	.fwcnnr_n ul li {
		width:100%;
		padding: 40px 20px;
		height:auto;
		margin: 10px 0;
	}
	.fwcnnr_n ul li:nth-child(2n+1){
		margin-right:0;
	}
	.honorbot_n .swiper-pagination .swiper-pagination-current {
		font-size: 25px;
	}
	.second-nav ul li, .second-nav ul li a {
		font-size: 16px;
	}
	.case_n dl dd {
		font-size: 14px;
	}
	.newslist_n .newsimg_n,.newslist_n .newsrt_n{
		width: 100%;
	}
	.newslist_n .newsrt_n{
		padding:0;
	}
	.newslist_n{
		padding:30px 0;
	}
	.newslist_n .newsrt_n h5{
		font-size: 20px;
		line-height: 30px;
	}
	.newslist_n .newsrt_n .newsms_n{
		font-size:14px;
		line-height:25px;
	}
	.contactnr_n ul li {
		width:100%;
		height:auto;
		padding: 30px 20px;
	}
	.searchnr {
		padding: 0 5px;
	}
	.gsslnr_n dl dt .gsslnum_n {
		font-size: 60px;
		line-height: 60px;
		top: -30px;
		left:20px;
	}
	.gsslnr_n dl dt, .gsslnr_n dl:nth-child(8) dt {
		padding: 40px 20px;
	}
	.botadd {
		margin-left: 10px;
	}
	.footerin .footerinrt a {
		width: 40px;
		height: 40px;
	}
	.footerin .footerinlf .botadd_icon {
		width: 40px;
		height: 40px;
		background-size:15px;
	}
	.footernr ul li h4{
		text-align:center;
	}
	.footernr ul li h4,.footernr ul li h4 a {
		font-size: 16px;
	}
}
@media(max-width:540px) {
	.newsnr .newslf {
		height: 370px;
	}
	.card-img-150{
		height:145px;
	}
}
@media(max-width:539px) {
	.pronr_n dl {
		width: 100%;
		margin:20px 0;
	}
	.pronr_n dl:nth-child(2n+1) {
		margin-right:0;
	}
}
@media(max-width:500px) {
	.proxqmenu ul li{
		width:100%;
	}
}
@media(max-width:425px) {
	.banner .swiper-pagination {
		bottom: 10px;
	}
	.banner .swiper-container .bannernr2{
		width: 45.1%;
	}
	.banner .swiper-container .bannernr3{
		width: 62%;
		margin-left: -31%;
	}
	.banner .swiper-container .bannernr4{
		width: 57.3%;
	}
	.banner .swiper-container .bannernr5{
		width:47.8%;
	}
	.banner .swiper-container .bannernr6{
		width: 48.7%;
	}
	.caselist .casebot h5 {
		font-size: 18px;
	}
	.casenr .button div {
		margin-top: -65px;
	}
	.newslf .newslf_nr .newsday {
		font-size: 35px;
		line-height: 35px;
	}
	.newslf .newslf_nr {
		padding: 0 20px;
	}
	.newsnr .newslf {
		height: 290px;
	}
	.qywh_n ul li h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.qywh_n ul li p{
		font-size:14px;
		line-height:24px;
	}
	.aboutlist_n ul li dl dt .counter{
		font-size:40px;
		line-height:40px;
	}
	.second-nav ul li,.second-nav ul li a{
		font-size:16px;
	}
	.footerin .footerinlf .botadd_icon {
		width: 22px;
		height: 22px;
		background-size: 10px;
		margin-top:4px;
	}
	.botadd {
		margin-left: 5px;
	}
	.botadd p {
		font-size: 15px;
		line-height:25px;
	}
	.card-img-150{
		height:111px;
	}
	.footernr .footerrt{
	    display:inherit;
	}
	.botlxfs {
	    width: 100%;
        margin-right: 0;
    }
    .botewm{
        width: 100%;
        margin-top: 20px;
    }
}
@media(max-width:424px) {
	.case_n dl{
		width:100%;
		margin:20px 0;
	}
}
@media(max-width:375px) {
	.qywh_n ul li{
		padding: 100px 10px 0 10px;
	}
	.newslf .newslf_nr h5, .newslf .newslf_nr .more {
		margin-top: 10px;
	}
	.card-img-150{
		height:96px;
	}
	
}
@media(max-width:319px) {
	.aboutlist_n ul li dl dt .counter{
		font-size:34px;
		line-height:34px;
	}
	.aboutlist_n ul li dl dt font {
		font-size: 22px;
	}
	.dsjlist_n h5{
		line-height:26px;
		font-size: 14px;
	}
	.dsjlist_n h5 span{
		font-size:26px;
		margin-right:5px;
	}
	.dsjlist_n p {
		font-size: 13px;
		line-height: 23px;
	}
	
}