@charset "utf-8";



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

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

@font-face
{
	font-family: myOneFont;
	src: url('../font/BarlowCondensed-SemiBold_mianfeiziti.ttf'),
		 url('../font/BarlowCondensed-SemiBold_mianfeiziti.eot'); /* IE9 */
}

/* 全局样式

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

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

p{line-height:25px;}

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

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



*{margin:0;padding:0;}

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

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

.body{background:#fff;}

.nbody{background:#efefef;}

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



img{border:0px;}

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

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

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Arial";

	}

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



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

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

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

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

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

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

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



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

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



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



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

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

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

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

	}

/* top

-------------------------------------------------------------- */
.header{
	width:100%;
	height:90px;
	position:absolute;
	z-index: 999;
	top:0;
	padding:0 1%;
	}
.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;
}
.topsearch{
	height:100%;
	display:flex;
	align-items:center;
	margin-left:20px;
}
.search_box{
	width:260px;
	position: absolute;
	top:60px;
	right:0;
	background-color:#054f90;
	padding:10px; 
	z-index:99;
	display:none;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	}
.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;
}
.language{
	height:90px;
	color:#fff;
	line-height:90px;
	position:relative;
}
.language a > img{
	margin-right:10px;
}
.language a{
	font-size:16px;
	color:#fff;
}
.language a i{
	margin-left:10px;
}
.language .languagenr{
	width:90px;
    display: none;
    position: absolute;
    left: 0;
    top:65px;
	z-index:10000;
}
.language .languagenr p{
	width:100%;
	padding:0;
	background:#fff;
    height: 35px;
    line-height: 35px;
    text-align: center;
}
.language .languagenr p a {
	width:100%;
    height: 35px;
    line-height: 35px;
    color: #181818;
    font-size: 16px;
	display:block;
}
.language .languagenr p:hover{
	background:#054f90;
}
.language .languagenr p:hover a{
	color:#fff;
}
.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
-------------------------------------------------------------- */
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	display: block;
}
.header .navbar_nav li{
	float:left;
	padding: 0 30px;
	position: relative;
	display: block;
}

.header .navbar_nav li > a{
	text-decoration: none;
	height: 100%;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 18px;
	font-weight:bold;
	line-height:90px;
	position:relative;
}
.header .navbar_nav li > a::after{
	content:"";
	width:6px;
	height:6px;
	background:#054f90;
	border-radius:50%;
	position:absolute;
	left:50%;
	margin-left:-3px;
	bottom:16px;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}
.header .navbar_nav li:hover > a,.header .navbar_nav li.active > a{
	color:#054f90;
}
.header .navbar_nav li:hover a::after,.header .navbar_nav li.active a::after{
	opacity:1;
}
.header .navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar_nav li.dropdown .jt{
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu{
	overflow:hidden;
	opacity: 0;
	position: absolute;
	padding-top:90px;
	top:0;
	background:rgba(255,255,255,0.8);
	border-radius:0 0 10px 10px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    left: 0;
	z-index:-1;
	border-top:solid 2px #054f90;
	-webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);

  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	display:block;
	width:100%;
	overflow:hidden;
	font-size: 16px;
	color: #252525;
	padding: 5px 0;
	line-height:25px;
	text-align: center;
}
.header .navbar_nav li.dropdown .dropdown_menu a:last-child{
	margin-bottom:10px;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	opacity: 1;
  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #666;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #054f90;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}

.header.on .left .img1{
	display: none;
}
.header.on .left .img2{
	display: block;
}
.header.on .navbar_nav li a{
	color: #333;
}
.header.on .navbar_nav li:hover a{
	color: #2d9bd0;
}
#navToggle{
	display: none;
}

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

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	position:relative;
	}

.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

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

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

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.banner .img{
	width:100%;
	overflow:hidden;
	position:relative;
}
.banner .swiper-slide .img{
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
	-webkit-transition: opacity .5s ease-in-out, transform 2s ease .6s;
	-webkit-transition: opacity .5s ease-in-out, -webkit-transform 2s ease .6s;
	transition: opacity .5s ease-in-out, -webkit-transform 2s ease .6s;
	-o-transition: opacity .5s ease-in-out, transform 2s ease .6s;
	transition: opacity .5s ease-in-out, transform 2s ease .6s;
	transition: opacity .5s ease-in-out, transform 2s ease .6s, -webkit-transform 2s ease .6s;
}
.banner .swiper-slide-active .img{
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.banner .img .bannertext{
	width:46.4%;
	overflow:hidden;
	position:absolute;
	left:11.4%;
	bottom:26%;
	z-index:99;
	}
.banner .img .bannertext img{
	max-width:100%;
	height:auto;
	}
@keyframes textAnimation {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  40%, 70% ,100%{
    transform: scale(1);
    opacity: 1;
  }
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

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

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

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img > img{
	width:100%;
	height:auto;
	min-height:100%;
		transition:1s linear 2s;
}
.swiper-slide-invisible-blank {
	visibility: hidden
}

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

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

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:50px;
	z-index:99;
	}
.banner .swiper-button div{
	width:60px;
	height:60px;
	overflow:hidden;
	border:solid 1px #fff;
	float:left;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.banner .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
}
.banner .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	border-left:none;
}
.banner .swiper-button .swiper-button-prev:hover{
	background:#fff url(../images/prevh.png) no-repeat center;
}
.banner .swiper-button .swiper-button-next:hover{
	background:#fff url(../images/nexth.png) no-repeat center;
}
/*shubiao*/
.banner .down{
	width:66px;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#fff;
	position:absolute;
	left:50%;
	margin-left:-33px;
	bottom:16px;
	z-index:99; 
}
.banner .down span{
	display:block;
	width:1px;
	height:96px;
	background:#fff;
	margin:auto;
	}
/*shubiao*/
.shubiao{
	position:absolute;
	right:30px;
	bottom:40px;
	z-index:99;
}
.shubiao span{
	display:block;
	width:1px;
	height:100px;
	background:#fff;
	margin-left:11.5px;
	margin-bottom:22px;
}
.mouse {
  position: relative;
  width: 24px;
  height: 44px;
  border-radius: 30px;
  border: 3px 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:auto;
		min-height:100%;
		transition:1s linear 2s;
		}

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

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
.boxlist .swiper-container,.boxlist2 .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

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

.boxlist .swiper-wrapper,.boxlist2 .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.boxlist .swiper-container-android .swiper-slide,.boxlist .mt-tabpage-cont__wrap .swiper-wrapper,
.boxlist2 .swiper-container-android .swiper-slide,.boxlist2 .mt-tabpage-cont__wrap .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.boxlist .swiper-container-multirow>.swiper-wrapper,.boxlist2 .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

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

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

.boxlist .swiper-container-autoheight,.boxlist .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide,
.boxlist2 .swiper-container-autoheight,.boxlist2 .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide {
	height: auto
}

.boxlist .swiper-container-autoheight .swiper-wrapper,.boxlist2 .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}
.boxlist .swiper-button div{
	width:52px;
	height:52px;
	position:absolute;
	top:50%;
	margin-top:-26px;
	outline:none;
	border:solid 4px #d5d5d5;
	border-radius:50%;
	z-index:99;
	}
.boxlist .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	right:210px;
	}
.boxlist .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	right:144px;
	}
.boxlist .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	}
.boxlist .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	}
.boxlist .swiper-button div:hover{
	border:solid 4px #b21e23;
}
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

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

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

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

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

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

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

.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}

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

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

.swiper-pagination-fraction span{
	color:#3a3a3a;
	line-height:20px;
	font-size:22px;
	font-family:Arial;
	float:left;
	position:relative;
}

.swiper-pagination-fraction span.swiper-pagination-current{
	color:#054f90;
}
.swiper-pagination-fraction span.swiper-pagination-current::after{
	content:"/";
	color:#3a3a3a;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

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

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

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

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

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

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

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

.swiper-pagination-bullet {
	width:28px;
	height:6px;
	background:#fff;
	opacity:0.4;
	display: inline-block;
	margin:0 4px;
	outline:none;
	border-radius:5px;
	position:relative;
}

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

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

.swiper-pagination-bullet-active{
	width:50px;
	opacity:1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-lock {
	display: none
}



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

.swiper-scrollbar-lock {
	display: none
}

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

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

.swiper-slide-zoomed {
	cursor: move
}

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube {
	overflow: visible
}

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

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

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

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

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

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

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

.swiper-container-flip {
	overflow: visible
}

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

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

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

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

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

/*banner*/

.banner .swiper-pagination{
	overflow:hidden;
	text-align:center;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	position:absolute;
	left:11.4%;
	bottom:68px;
	z-index:99;
}
.banner .swiper-pagination-fraction span{
	font-size:30px;
	color:#fff;
	font-family:Arial;
}
.banner .swiper-pagination-fraction .swiper-pagination-current{
	font-size:56px;
	font-family:Arial;
}
.banner .swiper-pagination-fraction span{
	line-height:63px;
}
.banner .swiper-pagination-fraction span:nth-child(2):after{
	content:"/";
	position:absolute;
	left:0;
	bottom:0;
	color:#fff;
	font-size:30px;
}
.banner .swiper-pagination-fraction span:nth-child(2){
	padding-left:10px;
	padding-top:10px;
}
.banner .swiper-scrollbar{
	width:124px;
	height:5px;
	overflow:hidden;
	background:#fff;
	border-radius:5px;
	position:absolute;
	left:11.6%;
	bottom:40px;
	z-index:99;
}
.banner .swiper-scrollbar .swiper-scrollbar-drag{
	margin:0 6px;
}
.banner .swiper-scrollbar-drag{
    background: #55ae97;
}
.banner_menu{
	width:100%;
	overflow:hidden;
	padding:0 6%;
	position:absolute;
	left:0;
	bottom:54px;
	z-index:99;
}
.banner_menu ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
}
.banner_menu ul li{
	width:33.2%;
	height:100px;
	overflow:hidden;
	background:#fff;
	padding:20px 46px 0 46px;
	border-radius:5px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.banner_menu ul li:hover{
	background:#054f90;
}
.banner_menu ul li .banner_menulf{
	width:80%;
	overflow:hidden;
}
.banner_menu ul li .banner_menulf h5{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#373737;
	line-height:32px;
	font-weight:normal;
}
.banner_menu ul li .banner_menulf p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#a3a3a3;
	line-height:30px;
}
.banner_menu ul li:hover .banner_menulf h5,.banner_menu ul li:hover .banner_menulf p{
	color:#fff;
}
.banner_menu ul li .banner_menurt{
	width:20%;
	overflow:hidden;
	text-align:right;
}
.banner_menu ul li .banner_menurt img{
	max-width:100%;
	height:auto;
}
.banner_menu ul li .banner_menurt .baniconh,.banner_menu ul li:hover .banner_menurt .banicon{
	display:none;
}
.banner_menu ul li:hover .banner_menurt .baniconh{
	display:block;
	float:right;
}
/* tit

-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#3a3a3a;
	line-height:50px;
	font-weight:normal;
	}
.tit h3 a{
	font-size:40px;
	color:#3a3a3a;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#3a3a3a;
	line-height:60px;
	font-family:Arial;
	font-weight: 900;
	}
.more{
	width:100%;
}
.more a{
	width:158px;
	height:50px;
	line-height:50px;
	font-size:16px;
	color:#054f90;
	border:solid 1px #054f90;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding-left:22px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	position:relative;
	}
.more a span{
	font-size:16px;
	color:#054f90;
}
.more a i{
	margin-right:25px;
	font-size:16px;
	color:#054f90;
	font-style:normal;
}
.more a:hover{
	background:#054f90;
	transform:translateY(-3px);
}
.more a:hover span,.more a:hover i{
	color:#fff;
}

/* 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;
	padding-bottom:155px;
	position:relative;
	}
.aboutcont{
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:wrap;
	position:relative;
	z-index:9;
}
.about .aboutlf{
	width:42%;
	overflow:hidden;
}
.about .aboutlf img{
	max-width:100%;
	height:auto;
}
.about .aboutrt{
	width:51%;
	overflow:hidden;
}
.about .abouten{
	width:88%;
	overflow:hidden;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.about .abouten img{
	max-width:100%;
	height:auto;
}
.aboutnr{
	margin-top:46px;
}
.aboutnr,.aboutnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#878787;
	line-height:30px;
}
.aboutrt .more{
	margin-top:80px;
}

/* aboutlist
-------------------------------------------------------------- */
.aboutlist{
	width:100%;
	overflow:hidden;
	margin-top:88px;
}
.aboutlist ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}
.aboutlist ul li dl{
	overflow:hidden;
}
.aboutlist ul li dl dt,.aboutlist ul li dl dd{
	width:100%;
	overflow:hidden;
}
.aboutlist ul li dl dt{
	font-size:30px;
	color:#1c2026;
	font-family:Arial;
	font-weight:normal;
	}
.aboutlist ul li dl dd{
	font-size:16px;
	color:#1c2026;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li dl dt .timer{
	color:#1c2026;
	font-size:77px;
	line-height:77px;
	color:#1c2026;
	font-family:Arial;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li dl dt font{
	font-size:40px;
	color:#1c2026;
	font-family:Arial;
	}
.aboutlist ul li .line{
	width:1px;
	height:88px;
	background:#d2d2d4;
	transform:rotate(30deg);
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:#ececec;
	padding-top:187px;
	padding-bottom:94px;
	position:relative;
}
.pro .probg{
	width:45.1%;
	height:900px;
	background:#fff;
	position:absolute;
	bottom:0;
	left:20.8%;
	z-index:0;
}
.pro .probg .proen{
	width:100%;
	overflow:hidden;
	position:absolute;
	left:0;
	bottom:0;
	z-index:1;
}
.pro .probg .proen img{
	max-width:100%;
	height:auto;
}
.pro .protit{
	width:906px;
	overflow:hidden;
	margin:0 auto 42px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	position:relative;
	z-index:9;
}
.pro .prolist,.prolist .proimg{
	width:100%;
	overflow:hidden;
}
.prolist .proimg{
	position:relative;
}
.prolist .proimg > img{
	width:100%;
	height:auto;
}
.prolist .proicon{
	width:80px;
	height:80px;
	background:#054f90;
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	right:0;
	bottom:0;
	z-index:9;
}
.prolist h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#3a3a3a;
	line-height:40px;
	font-weight:normal;
	margin-top:30px;
}
.protitrt{
	overflow:hidden;
	display:flex;
	align-items:center;
}
.protitrt .swiper-button-next{
	margin-right:38px;
}

/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	background:url(../images/casebg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:215px;
}
.casenr{
	width:660px;
	height:745px;
	background:rgba(255,255,255,0.88);
	border-radius:20px 20px 0 0;
	padding:66px 66px 0 66px;
}
.casems{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#6c6a6b;
	line-height:30px;
}
.casenr hr{
	width:100%;
	border:none;
	border-bottom:solid 1px #bdbec0;
	margin-top:29px;
	margin-bottom:32px;
}
.casenr .more{
	margin-top:50px;
}

/* zwwl
-------------------------------------------------------------- */
.zwwl{
	width:100%;
	overflow:hidden;
	position:relative;
	padding-top:162px;
	padding-bottom:172px;
}
.zwwlcont{
	position:relative;
	z-index:9;
}
.zwwllf{
	width:28.5%;
	overflow:hidden;
}
.zwwlrt{
	width:64%;
	overflow:hidden;
}
.zwwlrt ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.zwwlrt ul li{
	width:32%;
	height:587px;
	overflow:hidden;
	border-radius:10px;
	position:relative;
}
.zwwlrt ul li img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.zwwlrt ul li .zwwljs{
	width:100%;
	overflow:hidden;
	padding:0 30px;
	position:absolute;
	left:0;
	bottom:50px;
	font-size:15px;
	color:#fff;
}
.zwwlnr{
	width:100%;
	overflow:hidden;
	margin-top:42px;
}
.zwwlnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#878787;
	line-height:30px;
}
.zwwllf .more{
	margin-top:58px;
}
.zwwl .zwwlen{
	width:88.7%;
	overflow:hidden;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.zwwl .zwwlen img{
	max-width:100%;
	height:auto;
}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:#ececec;
	padding-top:110px;
	padding-bottom:155px;
}
.newstit{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	flex-wrap:wrap;
	border-bottom:solid 1px #d4d4d4;
}
.newstit .tit{
	padding-bottom:25px;
}
.newsmenu{
	overflow:hidden;
}
.newsmenu ul{
	overflow:hidden;
	display:flex;
	justify-content:flex-end;
}
.newsmenu ul li{
	overflow:hidden;
	margin-left:90px;
	padding-bottom:37px;
	position:relative;
}
.newsmenu ul li::after{
	content:"";
	width:0;
	height:2px;
	background:#0f5694;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsmenu ul li:hover::after{
	width:100%;
}
.newsmenu ul li a{
	font-size:18px;
	color:#3a3a3a;
}
.newsmenu ul li:hover a{
	color:#054f90;
}
.newsnr{
	width:100%;
	overflow:hidden;
	margin-top:95px;
}
.newsnr ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.newsnr ul li{
	width:32.5%;
	height:340px;
	overflow:hidden;
	background:#fff;
	border-radius:10px;
	padding:38px 35px 0 35px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsnr ul li:hover{
	background:#054f90;
}
.newsnr ul li .newsdate{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#054f90;
	overflow:hidden;
	line-height:30px;
}
.newsnr ul li h5{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#3a3a3a;
	overflow:hidden;
	line-height:30px;
	margin-top:13px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#7f7f80;
	overflow:hidden;
	margin-top:18px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr ul li:hover .newsdate,.newsnr ul li:hover h5,.newsnr ul li:hover p{
	color:#fff;
}
.newsnr ul li .newsicon{
	width:100%;
	overflow:hidden;
	margin-top:66px;
}
.newsnr ul li .newsicon .iconimgh,.newsnr ul li:hover .newsicon .iconimg{
	display:none;
}
.newsnr ul li:hover .newsicon .iconimgh{
	display:block;
}

/* message
-------------------------------------------------------------- */
.nmessage{
	width:100%;
	overflow:hidden;
	margin-top:50px;
	}

/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#333333;
	padding:72px 0 0 0;
	position:relative;
}
.footernr .footerlf{
	width:36.6%;
	overflow:hidden;
	}
.botlogo{
	width:100%;
	overflow:hidden;
	margin-bottom:142px;
}
.botlogo img{
	max-width:100%;
	height:auto;
}
.botlogo h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	font-weight: normal;
	line-height:40px;
	}
.footernr .footerlf .bottel{
	width:100%;
	overflow:hidden;
}
.footernr .footerlf .bottel p{
	width:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
	font-size:16px;
	color:#858585;
	line-height:30px;
	font-family:Arial;
	margin-top:5px;
}
.footernr .footerlf .bottel p a{
	font-size:16px;
	color:#858585;
}
.footernr .footerlf .bottel p img{
	margin-right:18px;
	max-width:100%;
	height:auto;
}
.footernr .footerlf .bottel .bottelnr .bottelphone{
	line-height:40px;
}
.footernr .footerlf .bottel .bottelnr .bottelphone,.footernr .footerlf .bottel .bottelnr .bottelphone a{
	font-size:35px;
	color:#d5d7dc;
	font-weight:bold;
}
.footernr .footerrt{
	width:61.4%;
	overflow:hidden;
	}
.footerrt ul{
	width:100%;
	overflow:hidden;
}
.footerrt ul li{
	width:20%;
	overflow:hidden;
	float:left;
}
.footerrt ul li h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	line-height:30px;
	padding-bottom:16px;
	margin-bottom:22px;
	position:relative;
}
.footerrt ul li h4 a{
	font-size:18px;
	color:#fff;
}
.footerrt ul li h4::after{
	content:"";
	width:120px;
	height:1px;
	background:rgba(133,133,133,0.5);
	position:absolute;
	left:0;
	bottom:0;
}
.footerrt ul li p{
	width:100%;
	overflow:hidden;
	color:#858585;
	line-height:30px;
	font-size:16px;
	margin-top:17px;
	}
.footerrt ul li p a{
	color:#858585;
	font-size:16px;
	}
.footerrt ul li p a:hover{
	color:#fff;
}
.bot{
	width:100%;
	overflow:hidden;
	line-height:30px;
	padding:28px 0;
	position:relative;
	margin-top:76px;
	border-top:solid 1px rgba(133,133,133,0.2);
	}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	font-size:15px;
	color:#858585;
}
.bot .botrt{
	text-align:right;
}
.botlf p,.bot a{
	font-size:15px;
	color:#858585;
	}
.botlf p{
	line-height:30px;
	}
.bot a:hover{
	color:#fff;
	}
.bot .botrt dl{
	overflow:hidden;
	float:right;
	}
.bot .botrt dl dt,.bot .botrt dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.bot .botrt dl dt img{
	max-width:100%;
	height:auto;
	}
.bot .botrt dl dd{
	font-size:15px;
	color:#fff;
	line-height:30px;
	letter-spacing:5px;
	margin-top:4px;
	}
/* 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:224px;
	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;
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:600px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
}
@media only screen and (min-width: 1921px) and (max-width: 2560px) {
	.banner_n{
		height:800px;
	}
}
@media(max-width:1768px) {
	.banner_n{
		height:553px;
	}
}
@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;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
	border-bottom:solid 1px #e5e5e5;
}
.positionnr .positionrt{
	font-size: 16px;
	color: #3a3a3a;
	line-height: 30px;
	padding: 25px 0;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #054f90;
}
.position a:hover {
	color: #054f90;
}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	overflow:hidden;
}
.menu_n ul{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	width:200px;
	overflow:hidden;
	padding:0 5px;
	display:flex;
	align-items:center;
	text-align:center;
	float:left;
	font-size:16px;
	color:#2c3441;
	height:80px;
	position:relative;
}
.menu_n ul li::after{
	content:"";
	width:0;
	height:1px;
	background:#054f90;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.menu_n ul li:hover::after,.menu_n ul li.active::after{
	width:100%;
}
.menu_n ul li a{
	font-size:16px;
	color:#2c3441;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#054f90;
}
/* 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 #005bac;
}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#005bac;
}


/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow: hidden;
	color: #3a3a3a;
    font-size:50px;
    line-height:60px;
	font-weight:normal;
	}
.ntit p {
    width: 100%;
    overflow: hidden;
    font-family:Arial;
    color: #3a3a3a;
    font-size:30px;
	line-height:40px;
}
/* nabout
-------------------------------------------------------------- */
.about_n{
	width:100%;
	overflow:hidden;
	position:relative;
	padding-top:126px;
	padding-bottom:168px;
	}
.about_n .aboutimg_n{
	width:46.2%;
	overflow:hidden;
	border-radius:60px 0 0 0;
	position:absolute;
	right:0;
	top:126px;
}
.about_n .aboutimg_n img{
	max-width:100%;
	height:auto;
}
.aboutlf_n{
	width:49%;
	overflow:hidden;
}
.aboutnr_n{
	width:100%;
	font-size:16px;
	color:#878787;
	line-height:30px;
	margin-top:36px;
	padding-right:10px;
	}
/* 应用到特定元素 */
.aboutnr_n::-webkit-scrollbar {
	width:2px; 
	height:100%;
}
.aboutnr_n::-webkit-scrollbar-track {
  background: #cddce9; /* 轨道颜色 */
}
/* 应用到特定元素 */
.aboutnr_n::-webkit-scrollbar-thumb {
	background:#054f90; /* 滑块颜色 */
}

.aboutnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#878787;
	line-height:30px;
}
/* history_n
-------------------------------------------------------------- */
.history_n{
	width:100%;
	overflow:hidden;
	background:url(../images/fzlcbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:82px;
	padding-bottom:112px;
}
.historynr_n{
	width:100%;
	position:relative;
	margin-top:87px;
}
.mySwiper2{
	width:100%;
	overflow:hidden;
}
.mySwiper{
	width:100%;
	overflow:hidden;
	margin-top:78px;
}
.mySwiper2 .year{
	width:100%;
	overflow:hidden;
	font-size:235px;
	color:#044781;
	line-height:235px;
	font-family:Arial;
	font-weight:800;
	text-align:center;
}
.mySwiper2 .historyjs_n{
	width:720px;
	height:190px;
	padding:0 10px;
	background:#fff;
	border-radius:30px;
	box-shadow:0px 0px 49px rgba(0,0,0,0.1);
	display:flex;
	align-items:center;
	margin:-64px auto 0;
	position:relative;
	z-index:9;
}
.mySwiper2 .historyjs_n .historytext_n{
	width:100%;
	overflow:hidden;
}
.mySwiper2 .historyjs_n h5{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:35px;
	color:#3a3a3a;
	line-height:45px;
	font-weight:normal;
	margin-bottom:18px;
}
.mySwiper2 .historyjs_n p{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:18px;
	color:#3a3a3a;
	line-height:30px;
}
.mySwiper2 .swiper-slide{
	padding-bottom:50px;
}
.mySwiper .swiper-slide{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding-bottom:14px;
}
.mySwiper .swiper-slide .year{
	font-size:26px;
	color:#3a3a3a;
	font-family:Arial;
	font-weight:800;
	line-height:36px;
	position:relative;
}
.mySwiper .swiper-slide span{
	display:block;
	width:50%;
	height:1px;
	background:#b7b7b7;
}
.mySwiper .swiper-slide .year::after{
	content:"";
	width:10px;
	height:10px;
	background:#3a3a3a;
	border-radius:50%;
	position:absolute;
	left:50%;
	margin-left:-5px;
	bottom:-14px;
	opacity:0;
}
.mySwiper .swiper-slide.swiper-slide-thumb-active .year::after{
	background:#044781;
}
.mySwiper .swiper-slide.swiper-slide-thumb-active .year{
	color:#044781;
}
.mySwiper .swiper-slide.swiper-slide-thumb-active .year::after{
	opacity:1;
}
.historynr_n .swiper-button-prev,.historynr_n .swiper-button-next{
	width:86px;
	height:86px;
	border-radius:50%;
	border:solid 1px #bfbfbf;
	position:absolute;
	top:50%;
	margin-top:-43px;
	z-index:99;
}
.historynr_n .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	left:-126px;
}
.historynr_n .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	border-color:#044781;
}
.historynr_n .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	right:-126px;
}
.historynr_n .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	border-color:#044781;
}
.historynr_n .swiper-button-prev.swiper-button-disabled,.historynr_n .swiper-button-next.swiper-button-disabled{
	opacity:0.3;
}
/* gscy_n
-------------------------------------------------------------- */
.gscy_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	padding-top:132px;
	position:relative;
}
.gscy_n img{
	max-width:100%;
	height:auto;
}
.gscy_n .ntit{
	width:auto;
	position:absolute;
	left:11.6%;
	top:108px;
	text-align:left;
}
/* qywh_n
-------------------------------------------------------------- */
.qywh_n{
	width:100%;
	overflow:hidden;
	background:url(../images/qywhbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:107px;
	padding-bottom:166px;
}
.qywh_n .ntit h3,.qywh_n .ntit p{
	color:#fff;
}
.qywhlf_n{
	width:48%;
	overflow:hidden;
}
.qywh_ggy{
	width:100%;
	overflow:hidden;
	margin-top:90px;
}
.qywh_ggy span{
	font-size:32px;
	color:#fff;
}
.qywhnr_n{
	width:100%;
	overflow:hidden;
}
.qywhnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.6);
	line-height:30px;
	margin-top:26px;
}
.qywhrt_n{
	width:44%;
	overflow:hidden;
	border-left:solid 1px rgba(255,255,255,0.3);
	padding-left:100px;
	margin-top:62px;
	padding-bottom:60px;
}
.qywhrt_n dl{
	width:100%;
	overflow:hidden;
	padding-left:98px;
	margin-top:90px;
}
.qywhrt_n dl:first-child{
	background:url(../images/icon8.png) no-repeat left center;
}
.qywhrt_n dl:nth-child(2){
	background:url(../images/icon9.png) no-repeat left center;
}
.qywhrt_n dl:nth-child(3){
	background:url(../images/icon10.png) no-repeat left center;
}
.qywhrt_n dl dt,.qywhrt_n dl dd{
	width:100%;
	overflow:hidden;
}
.qywhrt_n dl dt{
	font-size:32px;
	color:#fff;
	line-height:42px;
	font-weight:normal;
}
.qywhrt_n dl dd{
	font-size:18px;
	color:rgba(255,255,255,0.6);
	line-height:30px;
	margin-top:8px;
}
/* zwwl_n
-------------------------------------------------------------- */
.zwwl_n{
	width:100%;
	overflow:hidden;
	background:#e8e8f0;
	padding-top:80px;
	padding-bottom:112px;
}
.zwwltit_n{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}
.zwwltit_n .ntit{
	width:35%;
	overflow:hidden;
}
.zwwltitrt_n{
	width:65%;
	overflow:hidden;
}
.zwwltitrt_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#3a3a3a;
	line-height:30px;
	margin:26px 0;
}
.zwwlnr_n,.zwwlnr_n ul{
	width:100%;
	overflow:hidden;
}
.zwwlnr_n{
	margin-top:40px;
}
.zwwlnr_n ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.zwwlnr_n ul li{
	width:24%;
	height:630px;
	overflow:hidden;
	background:#fff;
	padding-top:236px;
	border-radius:10px;
	position:relative;
}
.zwwlnr_n ul li:nth-child(2n+1){
	margin-top:60px;
}
.zwwlnr_n ul li .zwwlimg_n{
	width:96.6%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	top:0;
}
.zwwlnr_n ul li .zwwlimg_n img{
	max-width:100%;
	height:auto;
}
.zwwlnr_n ul li .zwwltext_n{
	width:100%;
	overflow:hidden;
	padding:0 30px;
	position:relative;
	z-index:9;
}
.zwwlnr_n ul li .zwwltext_n .zwwlnum_n{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#3d3d3d;
	font-family:Arial;
	line-height:50px;
	font-weight:900;
	margin-bottom:16px;
}
.zwwlnr_n ul li .zwwltext_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#9d9d9d;
}

/* ysnr_n
-------------------------------------------------------------- */
.ys_n{
	padding-top:100px;
	padding-bottom:100px;
}
.ysnr_n,.ysnr_n ul{
	width:100%;
	overflow:hidden;
}
.ysnr_n{
	margin-top:35px;
}
.ysnr_n ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.ysnr_n ul li{
	width:49%;
	height:167px;
	overflow:hidden;
	background:#f2f3f5;
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:15px 0;
}
.ysnr_n ul li .ysnum_n{
	width:12%;
	overflow:hidden;
	text-align:center;
	font-size:40px;
	color: #131315;
	font-weight:bold;
	line-height:40px;
}
.ysnr_n ul li .ysjs_n{
	width:88%;
	overflow:hidden;
}
.ysnr_n ul li .ysjs_n h5,.ysnr_n ul li .ysjs_n p{
	width:100%;
	overflow:hidden;
}
.ysnr_n ul li .ysjs_n h5{
	font-size:20px;
	color: #131315;
	line-height:30px;
	margin-bottom:10px;
}
.ysnr_n ul li .ysjs_n p{
	color: #131315;
}
/* history
-------------------------------------------------------------- */
.history{
	margin-top:80px;
}
.timeline {
	position: relative;
	padding-left: 50px;
	padding-right: 15px;
	margin-top:50px;
}
	
.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	width: 4px;
	background: #2c3e50;
}

.timeline-item {
	position: relative;
	margin-bottom: 50px;
	padding: 30px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -30px;
	top: 50px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.item-2023::before { background-color: #2c3e50; }
.item-2024::before { background-color: #2c3e50; }
.item-2025::before { background-color: #2c3e50; }

.timeline-year {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
}

.year-2023 { color: #2c3e50; }
.year-2024 { color: #2c3e50; }
.year-2025 { color: #2c3e50; }

.timeline-title {
	font-size:21px;
	line-height:31px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #34495e;
}

.timeline-subtitle {
	font-size: 0.9rem;
	color: #7f8c8d;
	font-style: italic;
	margin-bottom: 15px;
}

.timeline-content {
	font-size: 16px;
	line-height:25px;
	color: #555;
}

@media (max-width: 768px) {
	.timeline {
		padding-left: 30px;
	}
	
	.timeline::before {
		left: 15px;
	}
	
	.timeline-item::before {
		left: -25px;
	}
	
	.timeline-item {
		padding: 20px;
	}
}

@media (max-width: 576px) {
	
	.timeline-year {
		font-size: 1.8rem;
	}
	
	.timeline-title {
		font-size: 1.3rem;
	}
}

/* honor_n
-------------------------------------------------------------- */
.honor_n{
	width:100%;
	overflow:hidden;
	padding-top:100px;
	padding-bottom:200px;
	}
.honornr_n .tit p,.honornr_n .tit h3{
	text-align:center;
	}
.honorlist_n{
	width:100%;
	margin-top:78px;
	position:relative;
	}
.honorlist_n .swiper-slide{
	padding:0 10px;
	}
.honorlist_n .swiper-slide .honorimg_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.honorlist_n .swiper-slide .honorimg_n img{
	max-width:100%;
	height:auto;
	}
.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;
	}
/* ywfw_n
-------------------------------------------------------------- */
.ywfw_n{
	margin-top:60px;
	margin-bottom:60px;
}
.ywfw_n dl{
	width:100%;
	overflow:hidden;
	background:#fff;
	padding:30px 50px;
	margin:40px 0;
	border-radius:10px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.ywfw_n dl dt,.ywfw_n dl dd{
	width:100%;
	overflow:hidden;
}
.ywfw_n dl dt{
	font-size: 36px;
    color: #242a33;
    line-height: 46px;
}
.ywfw_n dl dd{
	margin-top: 16px;
}
.ywfw_n dl dd,.ywfw_n dl dd p{
	font-size: 16px;
    color: #242a33;
    line-height: 30px;
}
.ywfw_n dl:hover{
	background:#054f90;
}
.ywfw_n dl:hover dt,.ywfw_n dl:hover dd,.ywfw_n dl:hover dd p{
	color:#fff;
}
/* njob
-------------------------------------------------------------- */
.njob{
	margin-top:60px;
	margin-bottom:60px;
	}
.njob h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#000;
	text-align:center;
	font-weight:normal;
	line-height:45px;
}
.njob hr{
	width:84px;
	border:none;
	border-bottom:solid 1px #b9b9b9;
	margin:30px auto 0;
}
.njob .njobtit{
	width:100%;
	overflow:hidden;
	margin-top:76px;
	}
.njob .njobtit div{
	padding:0;
	line-height:30px;
	text-align:center;
	font-size:16px;
	color:#343434;
	}
.njob p{
	width:100%;
	overflow:hidden;
}
.njob,.njob p{	
	font-size:16px;
	color:#737373;
}
.sideMenu{
	width: 100%;
	overflow:hidden;
	margin-top:40px;
}
.sideMenu h4{
	width: 100%;
	height: 70px;
	line-height: 70px;
	font-size: 20px;
	font-weight: bold;
	color: #2e2e2e;
	cursor: pointer;
	padding:0 20px;
	background:#e7e7e7 url(../images/icon25.png) no-repeat 95% center;
	margin:0;
}
.sideMenu h4 div{
	padding:0;
	text-align:center;
	font-size:16px;
	height:70px;
	line-height:30px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.sideMenu ul li.active h4{
	color:#fff;
	background:#054f90 url(../images/icon26.png) no-repeat 95% center;
}
.sideMenu ul li.active h4 div{
	color:#fff;
	}
.sideMenu .joblist{
	width:100%;
	overflow:hidden;
	height:0;
	opacity:0;
	border:solid 1px #054f90;
	border-top:none;
	font-size:16px;
	color:#737373;
	line-height:30px;
	margin-bottom:20px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.sideMenu ul li.active .joblist{
	height:auto;
	padding:30px;
	opacity:1;
}
.sideMenu .joblist p{
	overflow:hidden;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
/* npro
-------------------------------------------------------------- */
.probg_n{
	background:#f4f4f4;
}
.pro_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.pronr_n,.pronr_n ul,.tjpro,.tjpro ul{
	width:100%;
	overflow:hidden;
}
.tjpro{
	margin-top:13px;
}
.tjpro ul{
	display:flex;
	flex-wrap:wrap;
}
.pronr_n ul{
	width: 100%;
    overflow: hidden;
}
.tjpro ul li{
	width: 32%;
    overflow: hidden;
    float: left;
    margin: 33px 2% 33px 0;
}
.pronr_n ul li{
	width: 100%;
    overflow: hidden;
    margin: 30px 0;
}
.pronr_n ul li .proimg_n,.pronr_n ul li h5,.tjpro ul li .proimg_n,.tjpro ul li h5,.pronr_n ul li h4{
	width:100%;
    overflow: hidden;
}
.pronr_n ul li h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	line-height:40px;
	color:#333;
	margin-bottom:30px;
}
.pronr_n ul li h4{
	height:48px;
	line-height:48px;
	background:#e4e4e4;
	display:flex;
	align-items:center;
	padding:0 15px;
	-webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	cursor: pointer;
	font-size:20px;
	font-weight: 600;
	margin-top:20px;
}
.pronr_n ul li h4:hover,.pronr_n ul li.active h4{
	background:#444;
	color:#fff;
}
.pronr_n ul li h4 i{
	display:block;
	width:19px;
	height:19px;
	background:url(../images/icon22.png) no-repeat center;
	margin-right:20px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr_n ul li h4:hover i{
	background:url(../images/iconh22.png) no-repeat center;
}
.pronr_n ul li.active h4 i{
	background:url(../images/icon23.png) no-repeat center;
}
.pronr_n .protext_n{
	width:100%;
	overflow:hidden;
	background:url(../images/cdbg.jpg) no-repeat top center;
	background-size:cover;
	height:0;
	opacity:0;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-bottom:20px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.pronr_n ul li.active .protext_n{
	height:auto;
	padding:30px;
	opacity:1;
}
.tjpro ul li .proimg_n{
	height:304px;
	position:relative;
}
.pronr_n ul li .proimg_n img{
	width:100%;
	height:auto;
}
.tjpro ul li .proimg_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;
}
.pronr_n ul li .proimg_n:hover img{
	transform:scale(1.05);
}
.tjpro ul li:hover .proimg_n img{
	-webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.tjpro ul li .protext_n{
	width: 100%;
	height:100px;
    overflow: hidden;
	background:#fff;
	display:flex;
	align-items:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.tjpro ul li:hover .protext_n{
	background:#054f90;
}
.tjpro ul li .protext_n h5{
	font-size:20px;
	line-height:30px;
	color:#282828;
	text-align:center;
	font-weight:normal;
}
.tjpro ul li:hover .protext_n h5{
	color:#fff;
}
.tjpro ul li:nth-child(3n){
	margin-right:0;
}

.nprolf{
	width:54%;
	overflow:hidden;
	text-align:center;
}
.nprolf img{
	width:100%;
	height:auto;
}
.nprort{
	width:41%;
	padding-top:22px;
}
.nprort h1{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#3a3a3a;
	line-height:50px;
	font-weight:normal;
	margin:0;
	border-bottom:solid 1px #dedede;
	padding-bottom:18px;
}
.nprort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#3a3a3a;
	line-height:30px;
	margin-top:30px;
	margin-bottom:20px;
}
.npro_jj,.npro_jj p{
	width:100%;
	overflow:hidden;
}
.npro_jj{
	margin-top:56px;
}
.npro_jj p{
	margin-top:20px;
	line-height:30px;
	font-size:16px;
	color:#3a3a3a;
	display:flex;
	align-items:center;
	flex-wrap: wrap;
}
.npro_jj p i{
	margin-right:12px;
}
.npro_jj p a{
	font-size:16px;
	color:#3a3a3a;
}
.nproinfo{
	font-size:16px;
	color:#666;
	line-height:30px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
    font-size: 40px;
    line-height: 50px;
    margin-top:90px;
    color: #3a3a3a;
	border-bottom:solid 1px #dedede;
	padding-bottom:28px;
}
.nprofbnr {
    overflow: hidden;
    font-size: 16px;
	color:#969696;
    line-height: 30px;
    margin-top: 30px;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#969696;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table,.pronr_n .protext_n table{
	width:100%;
	}
.nprofbnr table tr,.nprofbnr table td,.pronr_n .protext_n table tr,.pronr_n .protext_n table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
.pronr_n .protext_n table,.pronr_n .protext_n table tr,.pronr_n .protext_n table td{
	border:none;
}
.pronr_n .protext_n table tr{
	padding:0;
	display:flex;
	justify-content:space-between;
}
.pronr_n .protext_n table td{
	width:49%;
	border-bottom:solid 1px #e4e4e4;
	padding:10px 0;
	color:#fff;
}
.nprofbnr video{
	width:60%;
	height:auto;
}
.message_pro{
	padding:0;
	margin-top:50px;
}
.message_pro .message_n{
	padding:0;	
	border-left:none;
}
.message_pro .message_n .tjbtn{
	padding:0;
}
.yh{
    max-width:990px;
    overflow: hidden;
    margin:auto;
    background:url(../images/yh.jpg) no-repeat top center;
    background-size:cover;
    padding:60px;
}
.yh,.yh p{
    color:#fff;
}
/*产品展示结束*/
	
/* case_n
-------------------------------------------------------------- */
.case_n{
	margin-top:60px;
	margin-bottom:60px;
}
.casenr_n,.casenr_n ul,.casenr_n ul li{
	width:100%;
	overflow:hidden;
}
.casenr_n ul li{
	background:#fff;
	margin-bottom:40px;
}
.casenr_n ul li .caseimg_n{
	width:34%;
	overflow:hidden;
	height:328px;
	position:relative;
}
.casenr_n ul li .caseimg_n img{
	width:100%;
	height:auto;
}
.casenr_n ul li .caseimg_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;
}
.casenr_n ul li:hover .caseimg_n img{
	-webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.casenr_n ul li .casert_n{
	width:66%;
	overflow:hidden;
	padding:46px 70px 0 70px;
}
.casenr_n ul li .casert_n h5,.casenr_n ul li .casert_n p{
	width:100%;
	overflow:hidden;
}
.casenr_n ul li .casert_n h5{
	font-size:30px;
	color:#3a3a3a;
	line-height:40px;
	font-weight:normal;
	margin-bottom:14px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.casenr_n ul li .casert_n p{
	font-size:16px;
	color:#9c9c9c;
	line-height:30px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
}
.casenr_n ul li .casert_n .casemore_n{
	width:145px;
	height:40px;
	background:#054f90;
	border-radius:20px;
	font-size:16px;
	color:#fff;
	line-height:40px;
	text-align:center;
	float:right;
	margin-top:28px;
}
.casenr_n ul li .casert_n .casemore_n span{
	font-size:16px;
	color:#fff;
	margin-left:16px;
}
.casenr_n h1{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#3a3a3a;
	line-height:50px;
	font-weight:normal;
	border-bottom:solid 1px #dedede;
	padding-bottom:28px;
}
/* video_n
-------------------------------------------------------------- */
.video_n{
	margin-top:60px;
	margin-bottom:60px;
}
.videonr_n,.videonr_n ul{
	width:100%;
	overflow:hidden;
}
.videonr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.videonr_n ul li{
	width:32%;
	overflow:hidden;
	margin:15px 2% 15px 0;
}
.videonr_n ul li:nth-child(3n){
	margin-right:0;
}
.videonr_n ul li .videoimg img{
	max-width:100%;
	height:auto;
}
.videonr_n ul li .videoimg{
	width:100%;
	height:264px;
	overflow:hidden;
	text-align:center;
	position:relative;
}
.videonr_n ul li .videoimg video{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width:100%;
	height:auto;
}
.videonr_n ul li p{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	line-height:30px;
	margin-top:5px;
}
/* nnews
-------------------------------------------------------------- */
.news_n{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
	}
.newsnr_n,.newsnr_n ul,.news_n dl{
	width:100%;
	overflow:hidden;
}
.news_n dl{
	background:#fff;
	box-shadow:7px 0px 50px rgba(0,0,0,0.07);
}
.news_n dl dt,.news_n dl dd{
	width:50%;
	overflow:hidden;
	float:left;
}
.news_n dl dt{
	height:480px;
	position:relative;
}
.news_n dl dt 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;
}
.news_n dl:hover dt img{
	-webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.news_n dl dd{
	padding:56px 60px 0 50px;
}
.news_n dl dd .newsdate_n,.news_n dl dd h5,.news_n dl dd p{
	width:100%;
	overflow:hidden;
}
.news_n dl dd .newsdate_n{
	display:flex;
	justify-content:space-between;
	border-bottom:solid 1px #d5d6d9;
	padding-bottom:6px;
}
.news_n dl dd .newsdate_n .newsday_n{
	font-size:50px;
	font-family:Arial;
	color:#2c3441;
	font-weight:bold;
}
.news_n dl dd .newsdate_n .newsyear_n p{
	font-size:18px;
	font-family:Arial;
	color:#2c3441;
	text-align:right;
}
.news_n dl dd h5{
	font-size:26px;
	color:#2c3441;
	line-height:36px;
	font-weight:normal;
	margin-top:40px;
	margin-bottom:16px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.news_n dl dd p{
	font-size:16px;
	color:#979a9e;
	line-height:30px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.news_n dl dd .newsmore_n{
	width:156px;
	height:50px;
	border:solid 1px #054f90;
	text-align:center;
	line-height:50px;
	font-size:16px;
	color:#054f90;
	margin-top:47px;
}
.news_n dl dd .newsmore_n span{
	font-size:16px;
	color:#054f90;
	margin-left:40px;
}
.newsnr_n ul{
	display:flex;
	flex-wrap:wrap;
	margin-top:48px;
}
.newsnr_n ul li{
	width:49.5%;
	height:215px;
	overflow:hidden;
	background:#fff;
	float:left;
	padding:58px 64px 0 38px;
	margin-top:40px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.newsnr_n ul li:hover{
	background:#054f90;
}
.newsnr_n ul li:nth-child(2n){
	margin-left:1%;
	}
.newsnr_n ul li .newsdate2_n{
	width:15%;
	overflow:hidden;
}
.newsnr_n ul li .newsdate2_n span{
	display:block;
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#2c3441;
	line-height:45px;
	font-weight:bold;
	font-family:Arial;
}
.newsnr_n ul li .newsdate2_n p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#2c3441;
	font-family:Arial;
}
.newsnr_n ul li:hover .newsdate2_n span,.newsnr_n ul li:hover .newsdate2_n p{
	color:#fff;
}
.newsnr_n ul li .newsrt_n{
	width:85%;
	overflow:hidden;
	border-left:solid 1px #d5d6d9;
	padding-left:45px;
}
.newsnr_n ul li .newsrt_n h5,.newsnr_n ul li .newsrt_n p{
	width:100%;
	overflow:hidden;
}
.newsnr_n ul li .newsrt_n h5{
	font-size:19px;
	color:#2c3441;
	line-height:30px;
	font-weight:normal;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsnr_n ul li .newsrt_n p{
	font-size:15px;
	color:#2c3441;
	font-family:Arial;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr_n ul li:hover .newsrt_n h5,.newsnr_n ul li:hover .newsrt_n p{
	color:#fff;
}

.news_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 28px;
	line-height:38px;
    color: #262626;
	font-weight:normal;
    text-align: center;
	border-bottom:solid 1px #d9d9d9;
	padding-bottom:26px;
	}
.news_n .fbtime{
	width: 100%;
    overflow: hidden;
	margin-top:20px;
	text-align:center;
	font-size:16px;
	line-height:30px;
	}
.news_n .nnewsdatelf{
	width: 70%;
    overflow: hidden;
	line-height:30px;
	font-size:16px;
	color:#333;
	}
.news_n .nnewsdatert{
	width: 30%;
    overflow: hidden;
	text-align:right;
	font-size:16px;
	color:#333;
	line-height:30px;
	}
.news_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.news_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}
.news_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* zsjm_n
-------------------------------------------------------------- */
.zsjm_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.zsjm_n dl{
	width:23%;
	overflow:hidden;
	background:#fff;
	float:left;
	margin:20px 1%;
	padding-bottom:20px;
	}
.zsjm_n dl dt,.zsjm_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.zsjm_n dl dt img{
	max-width:100%;
	height:auto;
	}
.zsjm_n dl dd{
	line-height:30px;
	font-size:16px;
	}
	
/* contact_n
-------------------------------------------------------------- */
.contact_n{
	width:100%;
	overflow:hidden;
	background:#f7f7f7;
	padding-top:60px;
	}
.contactnr_n .contactimg{
	width: 47%;
    height: 673px;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.contactnr_n .contactimg img{
	max-width:100%;
	height:100%;
	object-fit:cover;
}
.contact_n h3,.message_n h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	line-height:55px;
	color:#1d1d1d;
	font-weight:normal;
}
.contactcont_n{
	width:100%;
	background:#fff;
	padding:65px 53% 54px 75px;
	margin-top:125px;
	position:relative;
}
.contactcont_n h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#054f90;
	line-height:40px;
}
.contactlist_n,.contactlist_n ul,.contactlist_n ul li{
	width:100%;
	overflow:hidden;
}
.contactlist_n{
	padding-top:28px;
	border-top:solid 1px #e5e5e5;
	margin-top:22px;
}
.contactlist_n ul li{
	display:flex;
	margin-bottom:34px;
}
.contactlist_n ul li i{
	margin-right:20px;
}
.contactlist_n ul li i img{
	max-width:100%;
	height:auto;
}
.contactlist_n ul li dl{
	overflow:hidden;
}
.contactlist_n ul li dl dt,.contactlist_n ul li dl dd{
	width:100%;
	overflow:hidden;
	font-weight:normal;
}
.contactlist_n ul li dl dt{
	font-size:18px;
	color:#5f6a78;
}
.contactlist_n ul li dl dd,.contactlist_n ul li dl dd a{
	font-size:16px;
	color:#202324;
}
.contactlist_n{
	width:100%;
	overflow:hidden;
}
.lxfs_n{
	width:100%;
	overflow:hidden;
	background:url(../images/lxfsbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:130px;
	padding-bottom:184px;
	margin-top:60px;
}
.lxfs_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.lxfs_n ul li{
	width:49%;
	height:324px;
	overflow:hidden;
	background:#fff;
	margin:13px 0;
	padding:58px 0 0 76px;
}
.lxfs_n ul li h5{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#000;
	line-height:45px;
	font-weight:normal;
}
.lxfs_n ul li span{
	display:block;
	width:46px;
	height:2px;
	background:#104d8b;
	margin:24px 0 38px 0;
}
.lxfs_n ul li p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	line-height:30px;
	color:#8d8d8d;
	margin-top:10px;
}
.lxfs_n ul li p a{
	font-size:20px;
	color:#8d8d8d;
}
.message_n{
	margin-top:100px;
	margin-bottom:100px;
}
.messagenr_n{
	width:100%;
	overflow:hidden;
	margin-top:45px;
}
.messagenr_n dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:20px;
	}
.messagenr_n dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	font-weight:normal;
	}
.messagenr_n dl dd{
	width:100%;
	overflow:hidden;
	}
.messagenr_n dl dd input{
	width:100%;
	overflow:hidden;
	font-size:15px;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding:0 20px 0 55px;
	color:#a3a3a3;
	}
.messagenr_n dl dd textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	color:#a3a3a3;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding:18px 20px 18px 55px;
	background:#fff url(../images/icon18.png) no-repeat 24px 21px;
	}
.messagenr_n dl:last-child{
	width:100%;
	}
.messagenr_n dl:nth-child(2n+1){
	margin-right:1%;
	}
.messagenr_n dl:nth-child(2n){
	margin-left:1%;
	}
.messagenr_n dl:nth-child(5){
	width:100%;
	}
.messagenr_n dl:first-child dd input{
	background:#fff url(../images/icon14.png) no-repeat 24px center;
}
.messagenr_n dl:nth-child(2) dd input{
	background:#fff url(../images/icon15.png) no-repeat 24px center;
}
.messagenr_n dl:nth-child(3) dd input{
	background:#fff url(../images/icon16.png) no-repeat 24px center;
}
.messagenr_n dl:nth-child(4) dd input{
	background:#fff url(../images/icon17.png) no-repeat 24px center;
}
.messagenr_n .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:20px;
}
.messagenr_n .tjbtn button {
    width: 100%;
    height: 60px;
    background: #054f90;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:20px;
	color:#343434;
	}
.btn1 .intxt{
	width:200px;
	height:40px;
	line-height:40px;
	overflow:hidden;
	font-size:16px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}


/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;margin-top:40px;font-size:16px;color:#1e1e1e;text-align:center; overflow:hidden}
.pages ul{display:inline-block;margin:0 auto;padding:0}
.pages ul a{
	display:block;
	width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
	border: 1px solid #dadada;
	float: left;
	margin:5px 8px;
	font-size:16px;
	color:#1e1e1e;
	}
.pages ul a:hover,.pages ul a.page-num-current{ 
	background:#054f90;
	border-color:#054f90;
	color:#fff;
}
.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:#005bac;
}

#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
	.header .nav,.icon1,.icon2,.side,.logojs,.tel,.side,.search{
		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: #054f90;
	  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: #054f90;
	  -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: #054f90;
	  -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:115px;
			  top:10px;
			  z-index:9999;
	}

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

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


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

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

	.toggle.active span:nth-child(3) {
	  -webkit-transform: rotate(45deg) translate(-7px, -7px);
		  -ms-transform: rotate(45deg) translate(-7px, -7px);
			  transform: rotate(45deg) translate(-7px, -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: 1768px) and (max-width: 1768px) {
	
}

@media(max-width:1768px) {
	.header .navbar_nav li{
		padding: 0 23px;
	}
	.pro .probg{
		height:870px;
	}
	.historynr_n .swiper-button-prev{
		left:-80px;
	}
	.historynr_n .swiper-button-next{
		right:-80px;
	}
}
@media(max-width:1680px) {
	.header .navbar_nav li{
		padding: 0 19px;
	}
	.topsearch {
        margin-left:10px;
    }
	.pro .probg{
		height:850px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
	}
	.topsearch{
		margin-left:15px;
	}
	.header .navbar_nav li{
		padding: 0 12px;
	}
	.header .navbar_nav li > a{
		font-size:17px;
	}
	.pro .probg{
		height:830px;
	}
	.zwwlrt ul li .zwwljs{
		padding: 0 20px;
	}
	.tit p{
		font-size:46px;
		line-height:56px;
	}
	.zwwllf{
		width: 30.5%;
	}
	.prolist h5 {
		font-size: 26px;
		line-height: 36px;
	}
	.ntit h3{
		font-size:46px;
		line-height:56px;
	}
	.ntit p{
		font-size:26px;
		line-height:36px;
	}
	.aboutnr_n{
		/*height:270px;*/
	}
	.historynr_n .swiper-button-prev{
		left:-60px;
	}
	.historynr_n .swiper-button-next{
		right:-60px;
	}
	.mySwiper2 .historyjs_n h5{
		font-size:32px;
		line-height:42px;
	}
	.zwwlnr_n ul li .zwwltext_n p{
		font-size:15px;
		line-height:25px;
	}
	.tjpro ul li .proimg_n{
		height:290px;
	}
	.news_n dl dd h5{
		font-size:24px;
		line-height:34px;
	}
	.newsnr_n ul li{
		padding: 58px 50px 0 38px;
	}
	.newsnr_n ul li .newsrt_n{
		padding-left:40px;
	}
	.nprort h1,.casenr_n h1,.nprofbtit{
		font-size:36px;
		line-height:46px;
	}
	.casenr_n ul li .casert_n{
		padding: 46px 60px 0 60px;
	}
	.videonr_n ul li .videoimg{
		height:252px;
	}
	.card-img-150{
		height:213px;
	}
	.ywfw_n dl dt {
		font-size: 34px;
		line-height: 44px;
	}
}
@media(max-width:1440px) {
	.header .navbar_nav li{
		padding: 0 8px;
	}
	.topsearch{
		margin-left:10px;
	}
	.tit p{
		font-size:42px;
		line-height:52px;
	}
	.tit h3,.tit h3 a{
		font-size:36px;
		line-height:46px;
	}
	.zwwlnr_n ul li .zwwltext_n{
		padding: 0 20px;
	}
	.zwwlnr_n ul li .zwwltext_n p {
        font-size: 14px;
        line-height: 24px;
    }
	.pro .probg {
        height: 780px;
    }
	.newsnr ul li{
		padding: 38px 30px 0 30px;
	}
	.newsmenu ul li{
		margin-left: 70px;
	}
	.mySwiper2 .historyjs_n h5{
		font-size:30px;
		line-height:40px;
	}
	.tjpro ul li .proimg_n{
		height:261px;
	}
	.newsnr_n ul li{
		padding: 58px 38px 0 38px;
	}
	.newsnr_n ul li .newsrt_n{
		padding-left:35px;
	}
	.news_n h1{
		font-size: 26px;
		line-height: 36px;
	}
	.nprort h1,.casenr_n h1,.nprofbtit{
		font-size:32px;
		line-height:42px;
	}
	.qywhrt_n{
		padding-left:60px;
	}
	.qywh_ggy span,.qywhrt_n dl dt{
		font-size:28px;
		line-height:38px;
	}
	.menu_n{
		width:64%;
	}
	.menu_n ul li{
		width:20%;
	}
	.contactcont_n{
		padding: 65px 53% 54px 60px;
	}
	.contactcont_n h5{
		font-size:26px;
		line-height:36px;
	}
	.contact_n h3{
		font-size:36px;
		line-height:46px;
	}
	.videonr_n ul li .videoimg{
		height:227px;
	}
	.card-img-150{
		height:190px;
	}
	.lxfs_n ul li h5{
		font-size:32px;
		line-height:42px;
	}
	.lxfs_n ul li{
		padding: 58px 0 0 50px;
	}
	.footernr .footerrt {
		width:63%;
	}
	.footerrt ul li h4,.footerrt ul li h4 a{
		font-size:16px;
	}
	.footerrt ul li p,.footerrt ul li p a{
		font-size:14px;
	}
}
@media(max-width:1360px) {
	.header .navbar_nav li > a{
		font-size:16px;
	}
	.logo img{
		height:55px;
	}
	.language a i {
		margin-left: 8px;
	}
	.language a > img {
		margin-right:5px;
	}
	.pro .probg {
        height: 750px;
    }
	.aboutrt .more {
		margin-top: 50px;
	}
	.newsnr ul li h5{
		font-size:18px;
	}
	.ntit h3{
		font-size:42px;
		line-height:52px;
	}
	.ntit p{
		font-size:22px;
		line-height:32px;
	}
	.tjpro ul li .proimg_n{
		height:247px;
	}
	.newsnr_n ul li .newsdate2_n span{
		font-size:45px;
	}
	.nprort h1,.casenr_n h1,.nprofbtit{
		font-size:28px;
		line-height:38px;
	}
	.videonr_n ul li .videoimg{
		height:214px;
	}
	.card-img-150{
		height:179px;
	}
	.lxfs_n ul li h5 {
        font-size: 30px;
        line-height: 40px;
    }
}
@media(max-width:1300px) {
	.logo img {
        height: 50px;
    }
	.videonr_n ul li .videoimg{
		height:205px;
	}
	.footernr .footerlf {
		width: 34%;
	}
	.footernr .footerrt{
		width: 66%;
	}
}
@media(max-width:1280px) {
	.header .navbar_nav li > a {
        font-size: 15px;
    }
	.logo img {
        height: 45px;
    }
	.tit p{
		font-size:38px;
		line-height:48px;
	}
	.tit h3, .tit h3 a {
        font-size: 32px;
        line-height: 42px;
    }
	.pro .probg {
        height: 720px;
    }
	.aboutnr,.aboutrt .more{
		margin-top:40px;
	}
	.prolist h5 {
		font-size: 24px;
		line-height: 34px;
		margin-top:20px;
	}
	.zwwlrt ul li .zwwljs {
        padding: 0 15px;
    }
	.newsnr ul li {
        padding: 38px 20px 0 20px;
    }
	.newsmenu ul li{
		margin-left:50px;
	}
	.historynr_n .swiper-button-prev{
		left:-40px;
	}
	.historynr_n .swiper-button-next{
		right:-40px;
	}
	.zwwlnr_n ul li .zwwltext_n .zwwlnum_n{
		font-size:45px;
		line-height:45px;
	}
	.zwwlnr_n ul li{
		padding-top:210px;
	}
	.tjpro ul li .proimg_n{
		height:232px;
	}
	.pronr_n ul li .protext_n h5, .tjpro ul li .protext_n h5{
		font-size:18px;
	}
	.news_n dl dd {
		padding: 56px 40px 0 40px;
	}
	.news_n dl dd h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.news_n h1{
		font-size: 24px;
		line-height: 34px;
	}
	.nprort h1,.casenr_n h1,.nprofbtit{
		font-size:26px;
		line-height:36px;
	}
	.npro_jj {
		margin-top: 40px;
	}
	.casenr_n ul li .casert_n{
		padding: 46px 50px 0 50px;
	}
	.casenr_n ul li .casert_n h5{
		font-size:26px;
		line-height:36px;
	}
	.ywfw_n dl dt {
		font-size: 32px;
		line-height: 42px;
	}
	.lxfs_n ul li h5 {
        font-size:28px;
        line-height:38px;
    }
	.lxfs_n ul li {
        padding: 58px 0 0 40px;
    }
	.contactcont_n{
		padding: 65px 53% 54px 50px;
	}
	.contactnr_n .contactimg {
		width: 50%;
	}
	.contactcont_n h5{
		font-size:24px;
		line-height:34px;
	}
	.videonr_n ul li .videoimg{
		height:202px;
	}
	.card-img-150{
		height:167px;
	}
}
@media(max-width:1200px) {
	.header .navbar_nav li > a {
        font-size: 14px;
    }
	.language a {
		font-size: 15px;
	}
	.newsnr_n ul li {
        padding: 58px 30px 0 30px;
    }
	.newsnr_n ul li .newsdate2_n span {
        font-size: 40px;
    }
	.newsnr_n ul li .newsdate2_n p{
		font-size:14px;
	}
	.newsnr_n ul li .newsrt_n {
        padding-left: 30px;
    }
	.footerrt ul li h4, .footerrt ul li h4 a {
        font-size: 15px;
    }
	.footerrt ul li p, .footerrt ul li p a {
        font-size: 13px;
    }
}
@media(max-width:1152px){
	.header .navbar_nav li {
        padding: 0 6px;
    }
	.tit p {
        font-size: 34px;
        line-height: 44px;
    }
	.pro .probg {
        height: 680px;
    }
	.tjpro ul li .proimg_n{
		height:209px;
	}
	.menu_n ul li a {
		font-size: 15px;
	}
	.qywh_ggy span, .qywhrt_n dl dt {
        font-size: 24px;
        line-height: 34px;
    }
	.qywhrt_n dl dd{
		font-size:16px;
	}
	.zwwlnr_n ul li .zwwltext_n {
        padding: 0 15px;
    }
	.zwwlnr_n ul li .zwwltext_n p {
        font-size: 13px;
        line-height: 23px;
    }
	.contactcont_n {
        padding: 65px 53% 54px 40px;
    }
	.videonr_n ul li .videoimg{
		height:181px;
	}
	.lxfs_n ul li h5 {
        font-size: 24px;
        line-height: 34px;
    }
	.footernr .footerlf {
        width:28%;
    }
	.footernr .footerrt {
        width:71%;
    }
}
@media(max-width:1100px) {
	.header .navbar_nav li {
        padding: 0 5px;
    }
	.logo img {
        height: 35px;
    }
}
@media(max-width:1080px) {
	.tit p {
        font-size: 32px;
        line-height: 42px;
    }
}
@media(max-width:1024px) {
	.pro .probg {
        height: 640px;
    }
	.tjpro ul li .proimg_n{
		height:186px;
	}
	.newsnr_n ul li {
        padding: 58px 20px 0 20px;
    }
	.videonr_n ul li .videoimg{
		height:161px;
	}
}

@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.logo img{
		height:40px;
	}
	.language{
		height:60px;
		line-height:60px;
	}
	.language a > img {
		margin-right:5px;
	}
	.language a i{
		margin-left:5px;
	}
	.language .languagenr{
		top:45px;
	}
	.search_box{
		top:50px;
	}
	.about{
		padding-top:60px;
		padding-bottom:60px;
	}
	.about .aboutlf,.about .aboutrt{
		width:100%;
	}
	.about .aboutlf{
		display:none;
	}
	.zwwl{
		padding-top:60px;
		padding-bottom:60px;
	}
	.zwwllf,.zwwlrt{
		width:100%;
	}
	.zwwlrt,.zwwllf .more,.zwwlnr{
		margin-top:40px;
	}
	.zwwlrt ul li{
		height:560px;
	}
	.ntit h3{
		font-size:38px;
		line-height:48px;
	}
	.ntit p{
		font-size:20px;
		line-height:30px;
	}
	.menu_n,.positionnr .positionrt{
		width:100%;
	}
	.menu_n ul li {
        width:33.33333333333333333333%;
		height:50px;
		justify-content:center;
    }
	.positionnr .positionrt{
		padding: 15px 0;
	}
	.about_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.aboutlf_n{
		width:100%;
	}
	.about_n .aboutimg_n{
		width:88%;
		position:inherit;
		top:0;
		margin:30px auto 0;
	}
	.aboutnr_n {
        height: auto;
    }
	.zwwlnr_n ul li{
		height:580px;
	}
	.mySwiper2 .historyjs_n{
		width:80%;
	}
	.historynr_n .swiper-button-prev{
		left:0;
	}
	.historynr_n .swiper-button-next{
		right:0;
	}
	.historynr_n .swiper-button-prev, .historynr_n .swiper-button-next{
		width:60px;
		height:60px;
	}
	.mySwiper2 .historyjs_n h5{
		font-size:26px;
		line-height:36px;
	}
	.mySwiper2 .year{
		font-size:200px;
		line-height:200px;
	}
	.qywh_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.qywhlf_n,.qywhrt_n{
		width:100%;
	}
	.qywhrt_n{
		padding-left:0;
		border-left:none;
		margin-top:0;
	}
	.qywh_ggy{
		margin-top: 50px;
	}
	.qywhnr_n p{
		margin-top:20px;
	}
	.qywhrt_n dl{
		margin-top:40px;
	}
	.gscy_n{
		padding-top:60px;
	}
	.gscy_n .ntit{
		width:100%;
		position:inherit;
		left:0;
		top:0;
		margin-bottom:40px;
		padding:0 6%;
	}
	.zwwl_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.zwwltit_n .ntit,.zwwltitrt_n{
		width:100%;
	}
	.zwwlnr_n ul li{
		width:49%;
        padding-top: 260px;
	}
	.news_n dl dd {
        padding: 56px 30px 0 30px;
    }
	.nprolf,.nprort{
		width:100%;
	}
	.casenr_n ul li .casert_n{
		padding: 46px 40px 0 40px;
	}
	.footer{
		padding:60px 0 0 0;
	}
	.footernr .footerlf,.footernr .footerrt{
		width:100%;
	}
	.footernr .footerrt{
		margin-top:30px;
	}
	.footerrt ul li h4 a {
        font-size: 16px;
    }
	.footerrt ul li h4{
		margin-bottom:10px;
	}
	.botlogo{
		margin-bottom:30px;
	}
	.bot {
		padding:15px 0;
		margin-top:40px;
	}
	.footerrt ul li p{
		display:none;
	}
}
@media(max-width:992px) {
	.tjpro ul li .proimg_n{
		height:180px;
	}
}
@media(max-width:991px) {
	.banner .swiper-pagination{
		bottom:40px;
	}
	.tit p {
        font-size: 30px;
        line-height: 40px;
    }
	.tit h3, .tit h3 a {
        font-size: 30px;
        line-height: 40px;
    }
	.pro .probg{
		display:none;
	}
	.pro {
		padding-top:60px;
		padding-bottom:60px;
	}
	.prolist h5 {
        font-size: 22px;
        line-height: 32px;
        margin-top:15px;
    }
	.prolist .proicon{
		width:60px;
		height:60px;
	}
	.pro .protit {
		width: 88%;
	}
	.yh{
        padding:50px 40px;
    }
	.case{
		padding-top:60px;
	}
	.casenr{
		width:100%;
		height:auto;
		padding:50px;
	}
	.casenr .more {
		margin-top:40px;
	}
	.zwwlrt ul li{
		height:546px;
	}
	.news{
		padding-top:60px;
		padding-bottom:60px;
	}
	.newsnr ul li{
		width:100%;
		margin:15px 0;
		height:auto;
		padding:30px 20px;
	}
	.newsnr{
		margin-top: 30px;
	}
	.newsnr ul li .newsicon{
		margin-top: 30px;
	}
	.newsnr_n ul li{
		width:100%;
	}
	.newsnr_n ul{
		margin-top:0;
	}
	.news_n dl dt,.news_n dl dd{
		width:100%;
	}
	.news_n dl dt{
		height:320px;
	}
	.news_n dl dd{
		padding:30px;
	}
	.news_n h1{
		font-size: 22px;
		line-height: 32px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.ywfw_n dl dt {
		font-size: 28px;
		line-height: 38px;
	}
	.ywfw_n dl{
		padding:30px;
	}
	.nprort h1,.casenr_n h1{
		font-size:24px;
		line-height:34px;
	}
	.tjpro ul li,.videonr_n ul li{
		width:49%;
	}
	.tjpro ul li:nth-child(2n),.videonr_n ul li:nth-child(2n){
		margin-right:0;
	}
	.tjpro ul li:nth-child(2n+1),.videonr_n ul li:nth-child(2n+1){
		margin-right:2%;
	}
	.tjpro ul li .proimg_n {
        height:275px;
    }
	.tjpro ul li .protext_n{
		height:80px;
	}
	.pronr_n ul li, .tjpro ul li {
		margin: 20px 2% 20px 0;
	}
	.nprofbtit{
		margin-top:50px;
	}
	.npro_jj {
        margin-top: 20px;
    }
	.contactnr_n .contactimg{
		display:none;
	}
	.contactcont_n {
        padding: 40px 30px;
    }
	.contactcont_n{
		margin-top:40px;
	}
	.contact_n h3, .message_n h3,.honor_n h3,.tdfc_n h3{
		font-size:32px;
		line-height:42px;
	}
	.message_n {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.messagenr_n{
		margin-top:30px;
	}
	.videonr_n ul li .videoimg{
		height:239px;
	}
	.lxfs_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.lxfs_n ul li h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.lxfs_n ul li{
		width:100%;
		height:auto;
		padding:40px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.bot {
		padding: 30px 0;
	}
}
@media(max-width:912px) {
	.tjpro ul li .proimg_n {
        height:253px;
    }
}
@media(max-width:860px) {
	.zwwlrt ul li{
		height:473px;
	}
	.zwwlrt ul li .zwwljs{
		bottom:30px;
	}
	.ntit h3{
		font-size:34px;
		line-height:44px;
	}
	.ntit p{
		font-size:18px;
		line-height:28px;
	}
	.tjpro ul li .proimg_n {
        height:239px;
    }
	.videonr_n ul li .videoimg{
		height:207px;
	}
}
@media(max-width:820px) {
	.zwwlrt ul li{
		height:451px;
	}
	.tjpro ul li .proimg_n {
        height:228px;
    }
	.videonr_n ul li .videoimg{
		height:198px;
	}
}
@media(max-width:768px) {
	.prolist .proicon {
        width:50px;
        height:50px;
    }
	.zwwlrt ul li{
		height:423px;
	}
	.newsmenu ul li{
		margin-left:30px;
	}
	.mySwiper2 .year {
        font-size: 150px;
        line-height: 150px;
    }
	.mySwiper2 .historyjs_n{
		margin: -44px auto 0;
	}
	.mySwiper .swiper-slide .year{
		font-size:22px;
		line-height:32px;
	}
	.menu_n ul li {
		width: 50%;
	}
	.historynr_n .swiper-button-prev, .historynr_n .swiper-button-next {
        width: 50px;
        height: 50px;
    }
	.news_n dl dd h5 {
        font-size: 20px;
        line-height: 30px;
    }
	.tjpro ul li .proimg_n {
        height:213px;
    }
	.contact_n h3{
		font-size:28px;
		line-height:38px;
	}
	.contactcont_n h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.videonr_n ul li .videoimg{
		height:185px;
	}
	.footerrt ul li{
		width:33.3333333333333333%;
	}
}
@media(max-width:767px) {
	.pro .swiper-container{
		width:88%;
	}
	.zwwlrt ul li{
		width:100%;
		height:auto;
		margin:10px 0;
	}
	.casenr_n ul li .caseimg_n,.casenr_n ul li .casert_n{
		width:100%;
	}
	.casenr_n ul li .casert_n {
        padding: 30px 20px;
    }
	.casenr_n ul li .casert_n h5 {
        font-size: 24px;
        line-height: 34px;
    }
	.newsmenu{
		width:100%;
	}
	.newsmenu ul{
		justify-content:left;
	}
	.newsmenu ul li{
		margin-left:0;
		margin-right:30px;
		padding-bottom:10px;
	}
}
@media(max-width:640px) {
	.banner .swiper-pagination{
		bottom:20px;
	}
	.shubiao{
		display:none;
	}
	.swiper-pagination-bullet{
		width:18px;
	}
	.swiper-pagination-bullet-active{
		width:28px;
	}
	.tit p {
        font-size:25px;
        line-height:35px;
    }
	.tit h3, .tit h3 a {
        font-size:26px;
        line-height:36px;
    }
	.protitrt .swiper-button-next {
		margin-right: 20px;
	}
	.prolist h5 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 10px;
    }
	.casenr{
		padding:40px 30px;
	}
	.yh{
        padding:40px 30px;
    }
	.ntit h3 {
        font-size: 30px;
        line-height: 40px;
    }
	.mySwiper2 .year {
        font-size: 100px;
        line-height: 100px;
    }
	.mySwiper2 .historyjs_n{
		margin: -30px auto 0;
        width: 70%;
	}
	.mySwiper2 .historyjs_n h5 {
        font-size: 24px;
        line-height: 34px;
    }
	.history_n{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.mySwiper{
		margin-top:40px;
	}
	.qywhrt_n dl{
		padding-left:50px;
	}
	.qywhrt_n dl{
		background-size: 40px !important;
		background-position: left 6px !important;
	}
	.zwwlnr_n ul li{
		width:100%;
	}
	.zwwlnr_n ul li:nth-child(2n+1) {
		margin-top:0;
	}
	.zwwlnr_n ul li:nth-child(2n+1){
		margin:10px 0;
	}
	.zwwlnr_n ul li{
		margin:10px 0;
		padding-top:0;
		height:auto;
		padding-bottom:30px;
	}
	.zwwlnr_n ul li .zwwlimg_n{
		position:inherit;
	}
	.tjpro ul li .proimg_n {
        height:178px;
    }
	.pronr_n ul li .protext_n h5, .tjpro ul li .protext_n h5 {
        font-size: 16px;
		line-height:26px;
    }
	.tjpro ul li .protext_n {
        height: 60px;
    }
	.pronr_n ul li, .tjpro ul li {
		margin: 15px 2% 15px 0;
	}
	.nprofbnr video{
		width:100%;
	}
	.newsnr_n ul li {
        padding: 30px 20px;
		height:auto;
    }
	.newsnr_n ul li .newsrt_n {
        padding-left:0;
		border-left:none;
    }
	.newsnr_n ul li .newsdate2_n,.newsnr_n ul li .newsrt_n{
		width:100%;
	}
	.news_n dl dt {
        height:280px;
    }
	.njob h3{
		font-size:30px;
		line-height:40px;
	}
	.sideMenu ul li.active .joblist{
		padding:30px 20px;
	}
	.messagenr_n dl{
		width:100%;
	}
	.messagenr_n dl:nth-child(2n) {
		margin-left:0;
	}
	.messagenr_n dl:nth-child(2n+1) {
		margin-right:0;
	}
	.messagenr_n dl dd textarea{
		height:200px;
	}
	.contactcont_n {
        padding: 40px 20px;
    }
	.contactlist_n ul li i{
		width:40px;
		margin-right:10px;
	}
	.btn1 .intxt {
		width: 125px;
	}
	.videonr_n ul li{
		width:100%;
		margin-right:0 !important;
	}
	.videonr_n ul li .videoimg{
		height:auto;
	}
	.lxfs_n ul li{
        padding: 30px;
    }
	.lxfs_n ul li p,.lxfs_n ul li p a{
		font-size:18px;
	}
	.footerrt ul li h4::after{
		width:75%;
	}
	.card-body h5{
		font-size:14px;
	}
}
@media(max-width:540px) {
	.tjpro ul li .proimg_n {
        height:150px;
    }
	.news_n dl dt {
        height:220px;
    }
	.news_n dl dd {
        padding: 30px 20px;
    }
	.casenr_n ul li .caseimg_n{
		height:300px;
	}
	.card-img-150{
		height:139px;
	}
}
@media(max-width:500px) {
	.menu_n ul li {
        width:50%;
    }
	.mySwiper2 .historyjs_n h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.mySwiper2 .historyjs_n p{
		font-size:16px;
	}
	.tjpro ul li .proimg_n {
        height:139px;
    }
	.casenr_n ul li .caseimg_n{
		height:280px;
	}
	.contactlist_n ul li i {
		width: 12%;
	}
	.contactlist_n ul li dl {
		width: 88%;
	}
	.footerrt ul li {
        width:50%;
    }
}
@media(max-width:430px) {
	.language a > img{
		display:none;
	}
	.toggle{
		right:80px;
	}
	.logo img {
        height: 35px;
    }
	.language .languagenr {
		width: 60px;
	}
	.tit p {
        font-size:20px;
        line-height:30px;
    }
	.tit h3, .tit h3 a {
        font-size:24px;
        line-height:34px;
    }
	.casenr{
		padding:40px 20px;
	}
	.newstit .tit,.newsmenu{
		width:100%;
	}
	.newsmenu ul li{
		padding-bottom:20px;
	}
	.tjpro ul li .proimg_n {
        height:119px;
    }
}
@media(max-width:425px) {
	.mySwiper2 .year {
        font-size: 70px;
        line-height: 70px;
    }
	.mySwiper2 .historyjs_n {
        margin: -20px auto 0;
    }
	.menu_n ul li {
        width:100%;
    }
	.historynr_n .swiper-button-prev, .historynr_n .swiper-button-next {
        width: 40px;
        height: 40px;
    }
	.tjpro ul li .proimg_n {
        height:118px;
    }
	.ntit h3 {
        font-size:26px;
        line-height:36px;
    }
	.news_n dl dt {
        height:200px;
    }
	.casenr_n ul li .caseimg_n{
		height:240px;
	}
	.ywfw_n dl {
        padding: 30px 20px;
    }
	.contactcont_n h5 {
        font-size: 20px;
        line-height: 30px;
    }
	.contactlist_n ul li{
		flex-wrap:wrap;
	}
	.contactlist_n ul li dl {
        width: 100%;
		margin-top:10px;
    }
	.card-img-150{
		height:106px;
	}
	.lxfs_n ul li {
        padding: 30px 20px;
    }
	.lxfs_n ul li p,.lxfs_n ul li p a{
        font-size: 16px;
    }
	.contactlist_n ul li i{
		width:auto;
	}
	.contactlist_n ul li i img{
		height:40px;
	}
}
@media(max-width:414px) {
	.tjpro ul li .proimg_n {
        height:115px;
    }
}
@media(max-width:412px) {
	.tjpro ul li .proimg_n {
        height:114px;
    }
}
@media(max-width:390px) {
	.tjpro ul li .proimg_n {
        height:108px;
    }
}
@media(max-width:375px){
	.newsmenu ul{
		flex-wrap:wrap;
	}
	.newsmenu ul li{
		width:100%;
		margin-top:10px;
		text-align:center;
	}
	.mySwiper2 .year {
        font-size: 60px;
        line-height: 60px;
    }
	.mySwiper2 .historyjs_n {
        margin: -17px auto 0;
    }
	.menu_n ul li a {
		font-size: 15px;
	}
	.historynr_n .swiper-button-prev, .historynr_n .swiper-button-next {
        width: 35px;
        height: 35px;
    }
	.tjpro ul li .proimg_n {
        height:104px;
    }
	.casenr_n ul li .caseimg_n{
		height:210px;
	}
	.card-img-150{
		height:92px;
	}
	.yh{
        padding:40px 20px;
    }
	.footerrt ul li h4 a {
        font-size:14px;
    }
}
@media(max-width:360px) {
	.tjpro ul li .proimg_n {
        height:100px;
    }
}
@media(max-width:344px) {
	.tjpro ul li .proimg_n {
        height:95px;
    }
}
@media(max-width:320px) {
	.logo img {
        height: 32px;
    }
	.tjpro ul li .proimg_n {
        height:89px;
    }
	.casenr_n ul li .caseimg_n{
		height:180px;
	}
}