@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myThreeFont;
	src: url('../font/BarlowCondensed-SemiBold_mianfeiziti.ttf'),
		 url('../font/BarlowCondensed-SemiBold_mianfeiziti.eot'); /* IE9 */
}

/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */
.header{
	width:100%;
	height:100px;
	background:#fff;
	position:fixed;
	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;
}
.language{
	height:100%;
	font-size:16px;
	color:#212123;
	text-align:center;
	line-height:100px;
	position:relative;
}
.language a{
	font-size:16px;
	color:#212123;
}
.language a > img{
	margin-right:14px;
}
.language a i{
	margin-left:20px;
}
.language .languagenr{
	width:100px;
    display: none;
    position: absolute;
    right: 0;
    top: 100px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.language .languagenr p{
	width:100%;
	padding:0;
	background:#fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
	border-bottom:solid 1px #f1f1f1;
}
.language .languagenr p a {
	width:100%;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-size: 14px;
	display:block;
}
.language .languagenr p:hover{
	background:#005bac;
}
.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;
	margin-right:76px;
}
.header .navbar_nav li{
	float:left;
	padding: 0 45px;
	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: #2f2f2f;
	font-size: 16px;
	line-height:100px;
	position:relative;
}
.header .navbar_nav li a:after{
	content:"";
	width:0;
	height:2px;
	background:#005bac;
	position:absolute;
	left:0;
	bottom:0;
	border-radius:50%;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	z-index:99;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}
.header .navbar_nav li:hover a:after,.header .navbar_nav li.active a:after{
	width:100%;
}
.header .navbar_nav li:hover a,.header .navbar_nav li.active a{
	font-weight:bold;
	color:#005bac;
}
.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;
	top:0;
	padding-top:100px;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 120%;
    left: -10%;
	z-index:-1;
	border-top:solid 3px #005bac;
	border-radius:0 0 10px 10px;
	-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{
	font-size: 15px;
	color: #2b2b2b;
	font-weight:normal;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	background: #fff;
}
.header .navbar_nav li.dropdown .dropdown_menu a:last-child{
	margin-bottom:20px;
}
.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: #fff;
	background: #005bac;
}
.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:1640px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1640px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	position:relative;
	margin-top:100px;
	}
.scrollnews{
	width:49.5%;
	height:165px;
	overflow:hidden;
	padding:0 0 0 74px;
	background:#005bac;
	position:absolute;
	right:0;
	bottom:-22px;
	line-height:32px;
	font-size:16px;
	color:#fff;
	z-index:99;
}
.scrollnews ul{ overflow:hidden;}
.scrollnews ul li{width:100%; height:165px; overflow:hidden;  -moz-transition:all 0.4s;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;} 
.scrollnews ul li a{width:75%;overflow:hidden;display:block; text-align:left; float:left;font-size:16px;color:#fff;}
.scrollnews ul li span{width:25%;overflow:hidden; display:block; float:left;font-size:16px;color:#fff;text-align:right;}
.scrollnews ul li:hover .spanT{ color:#e0222c;}
.scrollnews_nr{
	width:249px;
	overflow:hidden;
	position:absolute;
	right:5.2%;
	bottom:38px;
	z-index:99;
	}
.scrollnews_nr p,.scrollnews_nr .year{
	width:100%;
	overflow:hidden;
}
.scrollnews_nr img{
	max-width:100%;
	height:auto;
	}
.scrollnews_nr .year{
	font-size:52px;
	color:#fff;
	font-weight:bold;
	font-family:Arial;
	line-height:52px;
	margin-top:24px;
}
.tnewslf{
	width:15%;
	overflow:hidden;
	font-size:25px;
	color:#fff;
	font-weight:bold;
	line-height:25px;
	}
.tnewsmore{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.4);
	background:url(../images/icon2.png) no-repeat 60px center;
	margin-top:10px;
	}
.tnewsrt{
	width:54%;
	overflow:hidden;
	font-size:20px;
	line-height:30px;
	color:#fff;
	font-family:Arial;
	padding-left:24px;
	border-left:solid 1px #fff;
	}
.tnewsicon{
	width:100%;
	overflow:hidden;
	margin-top:42px;
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.banner .img{
	width:100%;
	overflow:hidden;
	position:relative;
}
.banner .img .banner1-1{
	width:30.5%;
	overflow:hidden;
	position:absolute;
	left:11.6%;
	top:25%;
	z-index:99;
	}
.banner .img .banner1-1 img{
	max-width:100%;
	height:auto;
	}
.banner .swiper-container .bannernr1{
	width:28%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:12%;
}
.banner .swiper-container .bannernr2{
	width:35%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:25%;
}
.banner .swiper-container .bannernr3{
	width:48%;
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-24%;
	bottom:28%;
	text-align:center;
}
.banner .swiper-container .banimg{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .banimg img{
	max-width:100%;
	height:auto;
}
.banner .swiper-container p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-family:Arial;
	line-height:25px;
	margin-top:54px;
}
.banner .banmore{
	width:100%;
	overflow:hidden;
	margin-top:104px;
}
.banner .swiper-container .bannernr3 .banmore{
	margin:90px auto 0;
}
.banner .swiper-container .bannernr3 .banmore a{
	margin:auto;
	text-align:left;
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.banner .swiper-button{
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:50px;
	z-index:99;
	}
.banner .swiper-button div{
	width:60px;
	height:60px;
	overflow:hidden;
	border:solid 1px #fff;
	float:left;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.banner .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
}
.banner .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	border-left:none;
}
.banner .swiper-button .swiper-button-prev:hover{
	background:#fff url(../images/prevh.png) no-repeat center;
}
.banner .swiper-button .swiper-button-next:hover{
	background:#fff url(../images/nexth.png) no-repeat center;
}
/*shubiao*/
.banner .down{
	width:66px;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#fff;
	position:absolute;
	left:50%;
	margin-left:-33px;
	bottom:16px;
	z-index:99; 
}
.banner .down span{
	display:block;
	width:1px;
	height:96px;
	background:#fff;
	margin:auto;
	}
/*shubiao*/
.shubiao{
	position:absolute;
	left:50%;
	margin-left:-15px;
	bottom:18px;
	z-index:99;
}
.shubiao span{
	width:1px;
	height:116px;
	background:#fff;
	position:absolute;
	left:27.5px;
	bottom:100px;
}
.mouse {
  position: relative;
  width: 22px;
  height: 36px;
  border-radius: 30px;
  border: 2px solid #fff;
  margin:0 auto 0;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 3px;
  height: 8px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.shubiao p{
	overflow:hidden;
	text-align:center;
	color:#fff;
	margin-top:2px;
}
.banner .down p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	letter-spacing:2px;
	line-height:30px;
}
.banner .swiper-slide img{
		width:100%;
		height:auto;
		min-height:100%;
		transition:1s linear 2s;
		}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
.boxlist .swiper-container,.boxlist2 .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.boxlist .swiper-container-vertical>.swiper-wrapper,.boxlist2 .swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.boxlist .swiper-wrapper,.boxlist2 .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.boxlist .swiper-container-android .swiper-slide,.boxlist .mt-tabpage-cont__wrap .swiper-wrapper,
.boxlist2 .swiper-container-android .swiper-slide,.boxlist2 .mt-tabpage-cont__wrap .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.boxlist .swiper-container-multirow>.swiper-wrapper,.boxlist2 .swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.boxlist .swiper-container-free-mode>.swiper-wrapper,.boxlist2 .swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.boxlist .swiper-slide,.boxlist2 .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.boxlist .swiper-slide-invisible-blank,.boxlist2 .swiper-slide-invisible-blank {
	visibility: hidden
}

.boxlist .swiper-container-autoheight,.boxlist .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide,
.boxlist2 .swiper-container-autoheight,.boxlist2 .mt-tabpage-cont__wrap .swiper-container-autoheight .swiper-slide {
	height: auto
}

.boxlist .swiper-container-autoheight .swiper-wrapper,.boxlist2 .swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}
.boxlist .swiper-button div{
	width:52px;
	height:52px;
	position:absolute;
	top:50%;
	margin-top:-26px;
	outline:none;
	border:solid 4px #d5d5d5;
	border-radius:50%;
	z-index:99;
	}
.boxlist .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	right:210px;
	}
.boxlist .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	right:144px;
	}
.boxlist .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	}
.boxlist .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	}
.boxlist .swiper-button div:hover{
	border:solid 4px #b21e23;
}
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}

.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom:0;
	right: 88px;
	height:40px;
	line-height: 40px;
	color:#b1b1b1;
	font-size:16px;
	top:40px;
}
.swiper-pagination-fraction span{
	color:#fff;
	line-height:20px;
	font-size:18px;
	font-weight:bold;
	font-family:Arial;
	float:left;
	position:relative;
}

.swiper-pagination-fraction span:before{
	content:"0";
	}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width:10px;
	height:10px;
	background:#fff;
	display: inline-block;
	margin:0 7px;
	outline:none;
	border-radius:50%;
	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:28px;
	border-radius:5px;
}

.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;
	-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:7%;
	bottom:50px;
	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:#e62129;
}
.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 .titen{
	width:100%;
	font-size:69px;
	color:#005bac;
	line-height:69px;
	font-family: Arial;
	font-weight:bold;
}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#2d2d2e;
	line-height:45px;
	font-weight:normal;
	}
.tit h3 a{
	font-size:35px;
	color:#2d2d2e;
	}
.more{
	overflow:hidden;
	}
.more a{
	width:196px;
	height:50px;
	line-height:50px;
	border:solid 1px #005bac;
	font-size:16px;
	color:#005bac;
	font-weight:bold;
	display:block;
	text-align:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	position:relative;
	}
.more a span{
	font-size:16px;
	color:#005bac;
	margin-left:26px;
}
.more a:hover{
	background:#005bac;
	color:#fff;
}
.more a:hover span{
	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);
	}
}
/* tjpro
-------------------------------------------------------------- */
.tjpro{
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e8e8e9;
	padding:27px 0;
	margin-top:28px;
	}
.tjpro .tjprolf{
	font-size:16px;
	color:#212123;
	line-height:38px;
	padding:0;
	}
.tjpro .tjprolf a{
	font-size:16px;
	color:#212123;
}
.tjpro .tjprolf a::after{
	content:"、";
	font-size:16px;
	color:#212123;
}
.tjpro .tjprolf a:last-child::after{
	display:none;
}
.tjpro .tjprolf a:hover{
	color: #005bac;
}
.tjpro .tjprolf img{
	margin-right:33px;
	}
.tjpro .tjprolf span{
	font-size:16px;
	color:#2c6eb7;
	font-weight:bold;
	}
.tjpro .tjprort{
	overflow:hidden;
	padding:0;
	}
.tjprort .search_box{
	overflow:hidden;
	width:80%;
	height:50px;
	border:solid 2px #e2e3e5;
	border-radius:25px;
	position:relative;
	}
.tjprort .search_box input{
	width:100%;
	overflow:hidden;
	float:left;
	line-height:50px;
	padding-left:28px;
}
.tjprort .search_box button{
	width:24px;
	height:100%;
	overflow:hidden;
	background:none;
	position:absolute;
	right:25px;
	top:0;
	z-index:99;
}
.tjprort .search_box button img{
	max-width:100%;
	height:auto;
}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background-size:cover;
	padding-bottom:94px;
	padding-top:114px;
	position:relative;
	}
.about .aboutbg{
	width:22%;
	overflow:hidden;
	position:absolute;
	left:0;
	top:26px;
}
.about .aboutbg img,.aboutimg img{
	max-width:100%;
	height:auto;
}
.aboutimg{
	width:71%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	bottom:0;
}
.about .aboutlf{
	padding:0 58px 0 0;
	}
.aboutnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#989898;
	line-height:30px;
	margin-top:44px;
	text-align: justify;
}
.about .more{
	margin-top:78px;
}
/* aboutlist
-------------------------------------------------------------- */
.aboutlist{
	width:100%;
	overflow:hidden;
	margin-top:104px;
}
.aboutlist ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
}
.aboutlist ul li{
	width:24.4%;
	height:252px;
	overflow:hidden;
	background:#fff;
	border-radius:10px;
	padding:0;
	position:relative;
	border-radius:10px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li i{
	display:block;
	width:65px;
	height:65px;
	border-radius:50%;
	position:absolute;
	right:30px;
	top:25px;
}
.aboutlist ul li:first-child i,.aboutlist ul li:nth-child(2) i{
	background:#005bac url(../images/icon6.png) no-repeat center;
}
.aboutlist ul li:hover:first-child i,.aboutlist ul li:hover:nth-child(2) i{
	background:#fff url(../images/iconh6.png) no-repeat center;
}
.aboutlist ul li:nth-child(3) i,.aboutlist ul li:nth-child(4) i{
	background:#005bac url(../images/icon7.png) no-repeat center;
}
.aboutlist ul li:hover:nth-child(3) i,.aboutlist ul li:hover:nth-child(4) i{
	background:#fff url(../images/iconh7.png) no-repeat center;
}
.aboutlist ul li dl{
	width:100%;
	overflow:hidden;
	position:absolute;
	padding:0 0 22px 32px;
	left:0;
	bottom:0;
}
.aboutlist ul li dl dt,.aboutlist ul li dl dd{
	width:100%;
	overflow:hidden;
}
.aboutlist ul li dl dt{
	font-size:16px;
	color:#000;
	}
.aboutlist ul li dl dd{
	font-size:16px;
	color:#000;
	line-height:30px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li dl dt .counter{
	color:#000;
	font-size:69px;
	font-family: Arial;
	line-height:60px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li dl dt font{
	font-size:69px;
	color:#000;
	font-family:Arial;
	}
.aboutlist ul li:hover{
	background:#005bac url(../images/d.jpg) no-repeat 98% 90%;
}
.aboutlist ul li:hover dl dt .counter,.aboutlist ul li:hover dl dd,.about_n .aboutlist ul li:hover dl dt,.about_n .aboutlist ul li:hover dl dd,.aboutlist ul li:hover dl dt font{
	color:#fff;
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:124px;
	padding-bottom:104px;
}
.protit .tit,.protit .promenu{
	padding:0;
	}
.protit .promenu{
	padding-top:55px;
	}
.promenu ul li{
	overflow:hidden;
	line-height:30px;
	padding-bottom:5px;
	margin-left:76px;
	position:relative;
	}
.promenu ul li:first-child{
	margin-left:0;
	}
.promenu ul li a{
	font-size:16px;
	color:#000;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.promenu ul li::after{
	content:"";
	width:0px;
	height:2px;
	background:#005bac;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.promenu ul li:hover::after{
	width:100%;
	}
.promenu ul li:hover a{
	color:#005bac;
	font-weight:bold;
	font-size:18px;
	}
.pronr,.prolist{
	width:100%;
	overflow:hidden;
	}
.prolist{
	padding-top:45px;
}
.pronr{
	margin-top:105px;
}
.procont{
	background:#e7e8ea;
	padding:0 20px 68px 20px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.procont .proimg{
	width:49%;
	overflow:hidden;
	margin-top:-45px;
}
.procont .proimg img{
	width:100%;
	height:auto;
}
.procont .proms{
	width:51%;
	overflow:hidden;
	padding-left:40px;
	padding-top:62px;
	padding-right:20px;
}
.procont .proms h5{
	width:100%;
	overflow:hidden;
	font-size:23px;
	color:#2d2d2e;
	line-height:33px;
	font-weight:normal;
	margin-bottom:10px;
}
.procont .proms hr{
	width:50px;
	border:none;
	border-bottom:solid 2px #005bac;
}
.procont .proms p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#7a7a7b;
	margin-top:20px;
}
.prolist .procont .proicon{
	width:44px;
	height:44px;
	border:solid 2px #d0d0d0;
	background:url(../images/icon17.png) no-repeat center;
	margin-top:44px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolist:hover .procont{
	background:#005bac;
}
.prolist:hover .procont .proicon{
	border-color:#fff;
	background:url(../images/icon18.png) no-repeat center;
}
.prolist:hover .procont .proms h5,.prolist:hover .procont .proms p{
	color:#fff;
}
.prolist:hover .procont .proms hr{
	border-color:#fff;
}
.pronr .swiper-pagination{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:76px;
}
.pronr .swiper-pagination .swiper-pagination-bullet{
	width:26px;
	height:26px;
	border-radius:50%;
	background:none;
	position:relative;
}
.pronr .swiper-pagination .swiper-pagination-bullet::after{
	content:"";
	width:8px;
	height:8px;
	background:#005bac;
	border-radius:50%;
	position:absolute;
	left:8px;
	top:8px;
}
.pronr .swiper-pagination .swiper-pagination-bullet-active{
	border:solid 1px #005bac;
}
/* yyly
-------------------------------------------------------------- */
.yyly{
	width:100%;
	overflow:hidden;
	position:relative;
	}
.yyly .tit{
	width:100%;
	text-align:center;
	position:absolute;
	left:0;
	top:106px;
	z-index:99;
	}
.yyly .tit .titen{
	color:#fff;
}
.yyly .tit p,.yyly .tit h3,.yyly .tit h3 a{
	color:#fff;
	}
.yyly ul li{
	position:relative;
	}
.yyly ul li:first-child{
	background:url(../images/hyyyimg1.jpg) no-repeat top right;
	background-size:cover;
	}
.yyly ul li:nth-child(2){
	background:url(../images/hyyyimg2.jpg) no-repeat top right;
	background-size:cover;
	}
.yyly ul li:nth-child(3){
	background:url(../images/hyyyimg3.jpg) no-repeat top right;
	background-size:cover;
	}
.yyly ul li:nth-child(4){
	background:url(../images/hyyyimg4.jpg) no-repeat top right;
	background-size:cover;
	}
.yyly ul li .yylybg{
	width:100%;
	height:0;
	background:rgba(0,91,172,0.6);
	position:absolute;
	left:0;
	top:0;
	z-index:0;
	}
.yyly ul li.active .yylybg{
	height:100%;
	}
.cloud-product-ul li .normal-inner,.cloud-product-ul li .yylyicon,.cloud-product-ul li .normal-inner h4{
	width:100%;
	overflow:hidden;
	}
.cloud-product-ul li .normal-inner{
	position:absolute;
	z-index:99;
	top:378px;
	}
.cloud-product-ul li h4{
	font-size:25px;
	color:#fff;
	line-height:35px;
	text-align:center;
	margin-top:20px;
	}
.cloud-product-ul li .yylyicon{
	text-align:center;
	}
.cloud-product-ul li .normal-inner .yylyicon img{
	max-width:100%;
	height:auto;
	}
.cloud-product-ul li .normal-inner span{
	display:block;
	width:30px;
	height:2px;
	background:#fff;
	margin:88px auto 0;
	}
.active-inner-item {
	width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}
.cloud-product-ul li.active {
    z-index: 9;
    width: 34%;
}
.cloud-product-ul li.active .active-inner-item{
	display:block;
	}
.cloud-product-ul li.active .normal-inner{
	display:none;
	}
.cloud-product-wrapper {
	margin: 0 auto;
	width: 1200px
}
.cloud-product {
	position: relative;
	z-index: 9;
}
.cloud-product-title {
	height: 32px;
	text-align: center;
	line-height: 32px;
	font-size: 32px;
	color: #333
}
.color-blue {
	color: #009fd9
}
.cloud-product-explain {
	margin-top: 26px;
	margin-bottom: 82px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	font-size: 16px;
	color: #999
}
.cloud-product-ul {
	width: 100%;
	margin:0;
	height:100%;
}
.cloud-product-ul li {
	height:100%;
	height:960px;
	position: relative;
	background:#fff;
	width: 22%;
	float: left;
	-webkit-transition: width .15s linear;
	-o-transition: width .15s linear;
	-moz-transition: width .15s linear;
	transition: width .15s linear
}
.cloud-product-ul li .ourslicon{
	width:100%;
	overflow:hidden;
	}
.cloud-product-ul li .ourslicon img{
	max-width:100%;
	height:auto;
	}
.cloud-product-ul li .promore{
	width:100%;
	overflow:hidden;
	margin-top:64px;
	}
.cloud-product-ul li .promore a{
	width:200px;
	height:50px;
	overflow:hidden;
	text-align:center;
	line-height:50px;
	font-size:16px;
	color:#fff;
	display:block;
	border:solid 1px #fff;
	border-radius:25px;
	margin:auto;
	}
.cloud-product-ul li .promore a span{
	font-size:16px;
	color:#fff;
	margin-left:28px;
}
.active-inner-item{
	width:100%;
	height:100%;
	overflow:hidden;
	}
.active-inner-item .oursl_nr{
	width:100%;
	overflow:hidden;
	position:absolute;
	left:0;
	top:378px;
	z-index:10;
	}
.active-inner-item .oursl_nr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:41px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.active-inner-item .oursl_nr .num{
	font-size:200px;
	font-family:Arial;
	color:rgba(255,255,255,0.2);
	line-height:150px;
	position:absolute;
	right:0;
	bottom:0;
	font-weight:bold;
	z-index:0;
	}
.cloud-product-single-top {
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #f2f2f2
}
.cloud-product-name {
	font-size: 18px;
	color: #333;
	font-weight: 700
}
.cloud-product-single-bottom {
	width: 100%;
	height: 340px
}
/* case
-------------------------------------------------------------- */
.case{
	width:100%;
	overflow:hidden;
	background:url(../images/casebg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:90px;
	padding-bottom:134px;
	}
.casetit .tit,.casetit .casemenu{
	overflow:hidden;
	padding:0;
	}
.casetit .tit .titen,.casetit .tit h3,.casetit .tit h3 a{
	color:#fff;
	}
.casetit .tit .titen{
	line-height:79px;
	}
.casetit .casemenu{
	padding-top:52px;
	}
.casetit .casemenu ul,.promenu ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content: flex-end;
	}
.casetit .casemenu ul li{
	overflow:hidden;
	line-height:30px;
	margin-left:76px;
	padding-bottom: 5px;
	position:relative;
	}
.casetit .casemenu ul li a{
	font-size:18px;
	color:#fff;
	}
.casetit .casemenu ul li::after{
	content:"";
	width:0px;
	height:2px;
	background:#005bac;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.casetit .casemenu ul li:hover::after{
	width:100%;
	}
.casetit .casemenu ul li:hover a{
	color:#005bac;
	font-weight:bold;
	}
.casenr,.caselist{
	width:100%;
	overflow:hidden;
	}
.casenr{
	margin-top:40px;
	}
.caselist{
	position:relative;
	padding-bottom:46px;
	}
.caselist .caseimg{
	width:100%;
	overflow:hidden;
	text-align:center;
	position:relative;
	}
.caselist .caseimg::before{
	content:"";
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.4);
	position:absolute;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.caselist .caseimg img{
	width:100%;
	height:auto;
	}
.caselist .casebot{
	width:87%;
	overflow:hidden;
	background:rgba(255,255,255,0.9);
	position:absolute;
	left:6.5%;
	bottom:0;
	z-index:99;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	opacity:0;
	}
.caselist .casebot .casebotlf{
	width:80%;
	overflow:hidden;
	padding:40px;
	}
.caselist .casebot .casebotlf h5{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#115aa2;
	line-height:35px;
	font-weight:normal;
	margin-bottom:8px;
	}
.caselist .casebot .casebotlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#000;
	line-height:26px;
	}
.caselist .casebot .casebotlf p span{
	font-size:16px;
	color:#000;
	position:relative;
	}
.caselist .casebot .casebotlf p span::after{
	content:"";
	width:195px;
	height:1px;
	background:#c9c9c9;
	position:absolute;
	right:-218px;
	top:50%;
	margin-top:-0.5px;
	}
.caselist .casebot i{
	position:absolute;
	right:54px;
	top:50%;
	margin-top:-18.5px;
	z-index:100;
	}
.casenr .swiper-pagination {
	position: relative;
}
.casenr .swiper-slide-active .caselist .casebot{
	opacity:1;
	}
.casenr .swiper-slide-active .caselist .caseimg::before{
	opacity:0;
	}
/* hzhb
-------------------------------------------------------------- */
.hzhb{
	text-align:center;
	position:relative;
	margin-bottom:66px;
	}
.hzhb img{
	max-width:100%;
	height:auto;
	}
.hzhbnr{
	width:100%;
	overflow:hidden;
	position:absolute;
	left:0;
	bottom:0;
	z-index:9;
	}
.hzhbnr .more{
	margin-top:42px;
	}
.hzhbnr .more a{
	margin:auto;
	}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:url(../images/newsbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:108px;
	padding-bottom:190px;
}
.news .newstit{
	width:100%;
	overflow:hidden;
	}
.newstit .tit,.newstit .newsmenu{
	overflow:hidden;
	padding:0;
	}
.newstit .newsmenu{
	padding-top:66px;
	}
.newstit .newsmenu ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content: flex-end;
	}
.newstit .newsmenu ul li{
	line-height:30px;
	margin-left:108px;
	padding-bottom:18px;
	position:relative;
	}
.newstit .newsmenu ul li:first-child{
	margin-left:0;
	}
.newstit .newsmenu ul li a{
	font-size:18px;
	color:#2d2d2e;
	display:block;
	}
.newstit .newsmenu ul li::after{
	content:"";
	width:0px;
	height:2px;
	background:#005bac;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.newstit .newsmenu ul li:hover::after{
	width:100%;
	}
.newstit .newsmenu ul li:hover a{
	font-weight:bold;
	color:#005bac;
	}
.newsnr{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	}
.newsnr .newslf{
	width:49%;
	overflow:hidden;
	background:#eaf2ff;
	}
.newsnr .newslf .news1{
	width:100%;
	height:350px;
	overflow:hidden;
	position:relative;
	}
.newsnr .newslf .news1 img{
	width:100%;
	height:100%;
	object-fit:cover;
	}
.newsnr .newslf .news1 .newsbt1{
	width:100%;
	overflow:hidden;
	padding:0 48px;
	position:absolute;
	left:0;
	bottom:20px;
	font-size:18px;
	color:#fff;
	line-height:30px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newsnr .newslf .news1 .newsbt1 i{
	float:right;
	}
.newsnr .newslf .news1 .newsbt1 i img{
	width:auto;
	}
.newsnr .newslf ul{
	width:100%;
	overflow:hidden;
	padding:0 48px 44px 48px;
	}
.newsnr .newslf ul li{
	width:100%;
	overflow:hidden;
	line-height:30px;
	border-bottom:solid 1px #d1d8e5;
	padding-bottom:30px;
	margin-top:34px;
	}
.newsnr .newslf ul li a{
	display:block;
	width:75%;
	overflow:hidden;
	font-size:20px;
	color:#2d2d2e;
	float:left;
	white-space:nowrap;
	text-overflow:ellipsis;
	}
.newsnr .newslf ul li span{
	display:block;
	width:25%;
	overflow:hidden;
	float:right;
	text-align:right;
	}
.newsnr .newslf ul li a:hover,.newsnr .newsrt ul li:hover .newslilf h5{
	color:#0b62af;
}
.newsnr .newsrt{
	width:45%;
	overflow:hidden;
	}
.newsnr .newsrt ul,.newsnr .newsrt ul li{
	width:100%;
	overflow:hidden;
	}
.newsnr .newsrt ul li{
	border-bottom:solid 1px #bfbfbf;
	padding-bottom:52px;
	margin-top:50px;
	}
.newsnr .newsrt ul li:last-child{
	border-bottom:none;
	}
.newsnr .newsrt ul li .newslilf{
	width:70%;
	overflow:hidden;
	}
.newsnr .newsrt ul li .newslirt{
	width:30%;
	overflow:hidden;
	padding-top:16px;
	}
.newsnr .newsrt ul li .newslilf h5{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#2d2d2e;
	line-height:30px;
	font-weight:normal;
	margin-bottom:14px;
	white-space:nowrap;
	text-overflow:ellipsis;
	}
.newsnr .newsrt ul li .newslilf p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#7c7f82;
	line-height:25px;
	font-weight:normal;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	}
.newsnr .newsrt ul li .newslirt span{
	display:block;
	width:100%;
	overflow:hidden;
	font-size:52px;
	color:#0b62af;
	line-height:52px;
	font-weight:bold;
	font-family:Arial;
	text-align:right;
	}
.newsnr .newsrt ul li .newslirt p{
	width:100%;
	overflow:hidden;
	color:#0b62af;
	font-family:Arial;
	text-align:right;
	}
/* message
-------------------------------------------------------------- */
::-webkit-input-placeholder {
  color: #a3a3a3;
}
:-moz-placeholder {
  color: #a3a3a3;
}
::-moz-placeholder{
color: #a3a3a3;
}
:-ms-input-placeholder {
  color: #a3a3a3;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:50px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding:0 10px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding:18px 10px;
	}
.nmessagenr dl:last-child{
	width:100%;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #e50012;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:6px;
	color:#343434;
	}
.btn1 .intxt{
	width:60px;
	height:32px;
	overflow:hidden;
	font-size:15px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}
/* contact
-------------------------------------------------------------- */
.contact{
	width:100%;
	overflow:hidden;
	background:url(../images/footerbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:160px;
	padding-bottom:188px;
	}
.contactlf{
	overflow:hidden;
	padding:0;
	}
.contacten{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#333333;
	line-height:50px;
	text-transform:uppercase;
	font-family:Arial;
	margin-top:20px;
	margin-bottom:74px;
	}
.contactlf dl,.contactlf dl dt,.contactlf dl dd{
	width:100%;
	overflow:hidden;
	}
.contactlf dl dt,.contactlf dl dd{
	font-size:16px;
	color:#333;
	line-height:30px;
	font-weight:normal;
	}
.contactlf dl{
	margin-top:30px;
	}

/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.5);
	margin-top:68px;
	}
.link a{
	font-size:16px;
	color:rgba(255,255,255,0.5);
	margin-right:10px;
	}
.link img{
	margin-right:14px;
	}
/* footer
-------------------------------------------------------------- */
.footer {
	background:url(../images/footerbg.jpg) no-repeat top center;
	background-size:cover;
	padding:168px 0 0 0;
}
.footer .botmessage{
	height:196px;
	position:absolute;
	left:50%;
	margin-left:-820px;
	top:-98px;
	padding:43px 76px 0 76px;
	background:url(../images/messagebg.png) no-repeat top center;
}
.footer .botmessage .botmessagelf{
	width:32%;
	overflow:hidden;
}
.footer .botmessage .botmessagelf p{
	width:100%;
	overflow:hidden;
	font-size:28px;
	color:#fff;
	line-height:38px;
}
.footer .botmessage .botmessagert{
	width:68%;
	overflow:hidden;
}
.footer .botmessage .botmessagert ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	margin-top:25px;
	flex-wrap: wrap;
}
.footer .botmessage .botmessagert ul li{
	width:22.5%;
	overflow:hidden;
}
.footer .botmessage .botmessagert ul li input,.footer .botmessage .botmessagert ul li textarea{
	width:100%;
	height:48px;
	line-height:48px;
	background:#fff;
	border-radius:5px;
	padding:0 10px 0 40px;
}
.footer .botmessage .botmessagert ul li:nth-child(3){
	width:30%;
}
.footer .botmessage .botmessagert ul li:nth-child(4){
	width:10%;
	overflow:hidden;
}
.footer .botmessage .botmessagert ul li:last-child{
	width:12%;
	overflow:hidden;
}
.footer .botmessage .botmessagert ul li:first-child input{
	background:#fff url(../images/icon8.png) no-repeat 10px center;
}
.footer .botmessage .botmessagert ul li:nth-child(2) input{
	background:#fff url(../images/icon9.png) no-repeat 10px center;
}
.footer .botmessage .botmessagert ul li:nth-child(3) textarea{
	background:#fff url(../images/icon10.png) no-repeat 10px center;
}
.footer .botmessage .botmessagert ul li:nth-child(4) input{
	padding:0 5px;
	height:30px;
}
.footer .botmessage .botmessagert ul li:nth-child(4) img{
	height:30px;
}
.footer .botmessage .botmessagert ul li button{
	width:100%;
	overflow:hidden;
	height:48px;
	line-height:48px;
	background:#28a7e1;
	font-size:16px;
	color:#fff;
	border-radius:5px;
}
.botlogo{
	width:100%;
	overflow: hidden;
	margin-bottom:32px;
	}
.botlogo img{
	max-width: 100%;
	height:auto;
	}
.footernr .footerlf{
	width:36%;
	overflow:hidden;
	}
.footernr .footerlf .bottelbt{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	line-height:30px;
	}
.footernr .footerlf .bottel{
	width:100%;
	overflow:hidden;
	font-size:56px;
	color:#fff;
	line-height:56px;
	font-family:Arial;
	font-weight:bold;
	margin-bottom:14px;
}
.footernr .footerlf .bottel a{
	font-size:56px;
	color:#fff;
}
.footernr .footerlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
}
.footernr .footerlf p a{
	font-size:16px;
	color:#fff;
}
.botewm{
	width:100%;
	overflow:hidden;
	margin-top:56px;
}
.botewm img{
	max-width:100%;
	height:auto;
}
.footernr .footerrt{
	width:64%;
	overflow:hidden;
	}
.footernr .footerrt dl{
	overflow:hidden;
	float:right;
	}
.footernr .footerrt dl dt,.footernr .footerrt dl dd{
	overflow:hidden;
	text-align:center;
	}
.footernr .footerrt dl dt img{
	max-width:100%;
	height:auto;
	}
.footernr .footerrt dl dd{
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
	margin-top:10px;
	}
.footernr ul{
	width:100%;
	overflow:hidden;
}
.footernr ul li{
	width:14.2857%;
	overflow:hidden;
	float:left;
}
.footernr ul li h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	line-height:30px;
	margin-bottom:18px;
	position:relative;
	font-weight:normal;
}
.footernr ul li h4 a{
	font-size:18px;
	color:#fff;
}
.footernr ul li p{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.56);
	line-height:30px;
	font-size:16px;
	margin-top:8px;
	}
.footernr ul li p a{
	color:rgba(255,255,255,0.56);
	font-size:16px;
	}
.footernr ul li:nth-child(3) p{
	background:none;
	padding-left:0;
	}
.footernr ul li p a:hover{
	color:#fff;
}
.footernr ul li dl{
	overflow:hidden;
	float:right;
	margin-top:13px;
}
.footernr ul li dl dt,.footernr ul li dl dd{
	overflow:hidden;
}
.footernr ul li dl dt img{
	max-width:100%;
	height:auto;
}
.footernr ul li dl dd{
	text-align:center;
	line-height:30px;
	color:#ffffff;
}
.bot{
	width:100%;
	overflow:hidden;
	line-height:30px;
	padding:24px 0 30px 0;
	border-top:solid 1px #595f6b;
	position:relative;
	margin-top:25px;
	}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	font-size:16px;
	color:#fff;
}
.bot .botlf{
	padding-top:38px;
	}
.bot .botrt{
	text-align:right;
}
.botlf p,.bot a{
	font-size:16px;
	color:#fff;
	}
.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:260px;
	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;
}
/* side
-------------------------------------------------------------- */
.side {
    position: fixed;
    right:20px;
	top:50%;
    margin-top: -124px;
    z-index: 999;
}
.side ul li {
    width:56px;
	height:56px;
    position: relative;
    cursor: pointer;
	background:rgba(255,255,255,0.3);
	border-radius:50%;
	margin:14px 0;
	box-shadow:0px 3px 7px rgba(65,75,87,0.1);
	-webkit-box-shadow:0px 3px 7px rgba(65,75,87,0.1);
	-moz-box-shadow:0px 3px 7px rgba(65,75,87,0.1);
}
.side ul li:hover{
	background:#005bac;
}
.side ul li .sideimg{
	width:100%;
	height:100%;
	overflow:hidden;
}
.side ul li .ewm-box {
    position: absolute;
    z-index: 99;
    padding: 5px;
    background: #fff;
    width: 150px;
	overflow:hidden;
	text-align:center;
	font-size:16px;
    right: calc(100% + 5px);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
    -webkit-box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
    box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
}
.side ul .sidetel .sideimg{
	background:url(../images/icon23.png) no-repeat center;
}
.side ul .sidezx .sideimg{
	background:url(../images/icon22.png) no-repeat center;
}
.side ul .sidetop .sideimg{
	background:url(../images/icon24.png) no-repeat center;
}
.side ul li p{
	width:100%;
	overflow:hidden;
	font-size:13px;
	color:#333333;
	text-align:center;
	margin-top:2px;
}
.side ul li .sideimg img,.side ul li .ewm-box img{
	max-width:100%;
	height:auto;
}
.side ul li.sidezx:hover .ewm-box{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:500px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	margin-top:100px;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:667px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:438px;
	}
}
@media(max-width:1600px) {
	.banner_n{
		height:417px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:375px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:354px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:333px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:300px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:267px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:258px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:200px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:167px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:141px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
}
.positionnr .positionrt{
	font-size: 16px;
	color: #343434;
	line-height: 30px;
	padding: 10px 0 10px 30px;
	background: url(../images/icon21.png) no-repeat left 14px;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #343434;
}
.position a:hover {
	color: #004b96;
}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	margin-top:30px;
}
.menu_n ul{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	overflow:hidden;
	float:left;
	margin-right:25px;
	font-size:16px;
	color:#333;
	line-height:30px;
	border-bottom: solid 1px #d5d5d5;
}
.menu_n ul li a{
	font-size:16px;
	color:#333;
}
/* nmenu
-------------------------------------------------------------- */
.nmenu {
	overflow: hidden;
}
.nmenu ul {
	width:100%;
	overflow: hidden;
}
.nmenu ul li {
	overflow: hidden;
	float: left;
	line-height: 50px;
	text-align: center;
	border-bottom:solid 2px rgba(150,150,150,0.8);
	margin-right:25px;
}
.nmenu ul li a {
	font-size: 16px;
	color: #343434;
	display: block;
}
.nmenu ul li:hover,.nmenu ul li.active{
	border-bottom:solid 2px #004b96;
}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#004b96;
}


/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow: hidden;
	color: #111111;
    font-size: 35px;
    line-height: 45px;
	}
.ntit p {
    width: 100%;
    overflow: hidden;
    font-family: myThreeFont;
    color: #111111;
    font-size: 22px;
    text-transform: uppercase;
}
/* nabout
-------------------------------------------------------------- */
.about_n{
	margin-top:60px;
	margin-bottom:158px;
	}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-top:50px;
	}
.aboutnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	}
.about_n .aboutlist ul li{
	background: #f4f4f4;
}
.about_n .aboutlist ul li:hover{
	background:#005bac url(../images/d.jpg) no-repeat 98% 90%;
}
.aboutimg_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:50px;
	}
.aboutimg_n img{
	width:100%;
	height:auto;
	}
/* history
-------------------------------------------------------------- */
.history{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	margin-bottom:80px;
}
.DevelopmentHistory .swiper_box {
  margin-left: 5.2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.DevelopmentHistory .swiper_box .banner2 {
  margin-top:50px;
  margin-bottom: 50px;
}
.DevelopmentHistory .swiper_box .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide {
    padding-left: 0.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom:50px;
    cursor: pointer;
}
.DevelopmentHistory .swiper_box .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item {
  padding-left: 30px;
  min-height:200px;
  position: relative;
  top: 0;
  transition: .33s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .year {
  font-size: 30px;
  line-height:40px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr {
  line-height: 30px;
  font-size:16px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  	overflow: hidden;
	padding-right: 10px;
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 2px;
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 2px;
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	background: rgba(7, 49, 144, 1);
}

.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.1);
}


.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item .fzlcnr p {
      line-height: 30px;
    font-size: 16px;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.09rem;
  width: 4px;
  height: 4px;
  border: 2px solid #025eb6;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.DevelopmentHistory .swiper_box .banner2 .swiper-slide .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  height: 100%;
  width: 1px;
  background: #ddd;
}

.DevelopmentHistory .swiper_box .banner2 .active .item .year {
  color: #025eb6;
}
.DevelopmentHistory .swiper_box .banner2 .active .item .fzlcnr {
  color: #000;
}
.DevelopmentHistory .swiper_box .banner2 .active .item::before {
  top: 0.15rem;
  background: #025eb6;
}
.DevelopmentHistory .swiper_box .banner2 .active .item::after {
  top: 0.4rem;
}



.DevelopmentHistory .box {
  margin-top: 40px;
}
.DevelopmentHistory .box .banner1 {
  width: 94%;
}
.DevelopmentHistory .box .banner1 .swiper-slide {
  cursor: pointer;
}
.DevelopmentHistory .box .banner1 .swiper-slide p {
  font-size: 23px;
  color: #999;
  text-align: center;
  cursor: pointer;
}
.DevelopmentHistory .box .banner1 .active p {
  color: #025eb6;
}
.DevelopmentHistory .box .button{
  width: 13px;
    height: 24px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.DevelopmentHistory .box .prev{
	background: url(../images/prev2.png) no-repeat center;
}
.DevelopmentHistory .box .next{
	background: url(../images/next2.png) no-repeat center;
}
.DevelopmentHistory .box .button i:hover {
  color: #025eb6;
}
.DevelopmentHistory .img_box {
  margin-left: 10.4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  margin-top: -2rem;
}
.DevelopmentHistory .img_box .img_list {
  position: relative;
  left: 0;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
}
.DevelopmentHistory .img_box .img_list > img {
  height: 1.85rem;
  position: relative;
  left: 0;
}
.DevelopmentHistory .img_box .img_list .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../images/tu2.png") no-repeat;
  background-position: -800px 50%;
  -webkit-transition: 0.6s ease-in;
  -o-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
  background-size: auto 100%;
  -webkit-mask-image: url("../images/tu3.png");
  -webkit-mask-size: auto 100%;
}
.w1520 {
    padding-left: 5.2%;
    padding-right: 5.2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.flexBetween {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
/* nhzhb
-------------------------------------------------------------- */
.nhzhb{
	margin-top:60px;
	margin-bottom:158px;
	}
.nhzhbnr,.nhzhbnr ul{
	width:100%;
	overflow:hidden;
	}
.nhzhbnr ul li{
	width:23%;
	overflow:hidden;
	text-align:center;
	margin:20px 1%;
	float:left;
	border: solid 5px #ececec;
	position:relative;
	height:131px;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nhzhbnr ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
	height:auto;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.nhzhbnr ul li:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.nhzhbnr ul li:hover{
	border:solid 5px #005bac;
}
/* case_n
-------------------------------------------------------------- */
.case_n{
	margin-top:60px;
	margin-bottom:158px;
}
.casenr_n{
	width:100%;
	overflow:hidden;
}
.casenr_n dl{
	overflow:hidden;
	padding:0 10px;
	margin:20px 0;
}
.casenr_n dl dt,.casenr_n dl dd{
	width:100%;
	overflow:hidden;
}
.casenr_n dl dt{
	height:233px;
	position:relative;
}
.casenr_n dl dt img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.casenr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.casenr_n dl dd{
	text-align:center;
	line-height:30px;
	margin-top:5px;
	color:#333;
	font-size:16px;
}

/* pro_n
-------------------------------------------------------------- */
.pro_n{
	padding-top:60px;
	padding-bottom:158px;
	}
.pro_n .prolf_n{
	width:25%;
	overflow:hidden;
	}
.pro_n .prolf_n h4{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:20px;
	color:#fff;
	padding:15px 0;
	text-align:center;
	background:#005bac;
}
.pro_n .prort_n{
	width:72%;
	overflow:hidden;
}
.pro_n .prolf_n ul,.pro_n .prolf_n ul li{
	width:100%;
	overflow:hidden;
	}
.pro_n .prolf_n ul li{
	line-height:30px;
	background: #f5f5f5 url(../images/icon20.png) no-repeat 98% center;
	border-top: 1px solid #ebebeb;
	padding:10px 15px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.pro_n .prolf_n ul li a{
	font-size:16px;
	display:block;
	}
.pro_n .prolf_n ul li:hover,.pro_n .prolf_n ul li.active{
	background:#005bac url(../images/iconh20.png) no-repeat 98% center;
}
.pro_n .prolf_n ul li:hover a,.pro_n .prolf_n ul li.active a{
	color:#fff;
}
.pro_n .prort_n dl{
	width:31.333333333333333%;
	overflow:hidden;
	padding:10px;
	background: rgba(242, 242, 242, 1);
	margin:0 1% 40px 1%;
	float:left;
	position:relative;
}
.pro_n .prort_n dl:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: #005bac;
    transition: all .5s ease
}

.pro_n .prort_n dl:hover:after {
    height: 100%
}
.prort_n dl dt,.prort_n dl dd{
	width:100%;
	overflow:hidden;
	position:relative;
	z-index:9;
}
.prort_n dl dt{
	height:349px;
}
.prort_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.prort_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.prort_n dl dd{
	font-size:16px;
	color:#333;
	line-height:30px;
	text-align:center;
	padding:10px 0;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.prort_n dl:hover dd{
	color:#fff;
}
.nprolf{
	width:50%;
}
.nprolf img{
	max-width:100%;
	width:100%;
	border:1px solid #ddd;
	padding:3px;
}
.nprort{
	width:45%;
}
.nprort h1{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	border-bottom:solid 1px #ddd;
	padding-bottom:28px;
}
.nprort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-top:26px;
	margin-bottom:40px;
}
.nprort .npro_infolei span{
	font-size:20px;
	color:#333;
}
.nproinfo{
	font-size:16px;
	color:#666;
	line-height:30px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    background: #f0f0f0;
    margin-top: 40px;
    padding: 0 20px;
    color: #000;
}
.nprofbnr {
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	white-space: nowrap;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}

/*产品展示结束*/
	

/* news_n
-------------------------------------------------------------- */
.news_n{
	margin-top:60px;
	margin-bottom:158px;
	}
.newsnr_n,.newsnr_n ul,.newsnr_n ul li{
	width:100%;
}
.newsnr_n ul li{
	overflow:hidden;
	background:#f2f2f2;
	margin:50px 0;
	}
.newsnr_n ul li .newslf_n{
	width:28%;
	overflow:hidden;
	position:relative;
	height:300px;
}
.newsnr_n ul li .newslf_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;
}
.newsnr_n ul li:hover .newslf_n img{
	transform:translate(-50%, -50%) scale(1.1);
}
.newsnr_n ul li .newsrt_n{
	width:72%;
	overflow:hidden;
	padding:5%;
}
.newsms_n{
	width:72%;
	overflow:hidden;
	padding:0 20px 0 0;
	}
.newsms_n h4,.newsms_n p{
	width:100%;
	overflow:hidden;
	}
.newsms_n h4{
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-bottom:10px;
	}
.newsdate_n{
	width:28%;
	overflow:hidden;
	}
.newsdate_n .day,.newsdate_n .year{
	width:100%;
	overflow:hidden;
	font-weight:bold;
	text-align:right;
	}
.newsdate_n .day{
	font-size:56px;
	line-height:66px;
	}
.newsdate_n .year{
	font-size:16px;
	}
.newsnr_n ul li:hover {
    box-shadow: 0 23px 90px -5px rgb(29 56 72 / 17%);
    background: #fff;
    background-color: #fff
}
.newsnr_n ul li:hover .newsms_n h4,.newsnr_n ul li:hover .newsdate_n .day,.newsnr_n ul li:hover .newsdate_n .year{
	color:#005bac;
}
.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{
	margin-top:60px;
	margin-bottom:60px;
	}
.contactnr_n{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.contact_n .contactlf_n{
	width:35%;
	overflow:hidden;
	}
.contact_n .contactrt_n{
	width:65%;
	overflow:hidden;
}
.contact_n .contactlf_n .hello{
	width:100%;
	overflow:hidden;
	font-size:90px;
	color:#000;
	line-height:90px;
	text-transform:uppercase;
	}
.hello .hellonr{
	overflow:hidden;
	float:left;
	}
.hello .helloicon{
	overflow:hidden;
	float:left;
	}
.hello .helloicon img{
	max-width:100%;
	height:auto;
	}
.contact_n .contactlf_n p{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#000;
	line-height:34px;
	}
.contact_n .contactrt_n h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#000;
	line-height:40px;
	}
.contact_n .contactrt_n p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	line-height:30px;
	}
.contactlist_n{
	width:100%;
	overflow:hidden;
	margin-top:15px;
	}
.contactlist_n dl{
	overflow:hidden;
	padding:0 10px 0 0;
	margin:10px 0;
	}
.contactlist_n dl:nth-child(4){
	clear:both;
}
.contactlist_n dl dt,.contactlist_n dl dd{
	width:100%;
	overflow:hidden;
	}
.contactlist_n dl dt{
	font-size:18px;
	line-height:30px;
	color:#005bac;
	}
.contactlist_n dl dd{
	font-size:16px;
	line-height:30px;
	margin-top:4px;
	}
.contactlist_n dl dd a{
	font-size:16px;
}
.map_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.map_n img{
	width:100%;
	height:auto;
	}
/* jssl_n
-------------------------------------------------------------- */
.jssl_n{
	margin-top:60px;
	margin-bottom:60px;
}
.jssllist_n,.jsslcont_n{
	width:100%;
	overflow:hidden;
}
.jssllist_n{
	margin:50px 0;
}
.jssllist_n .jsslimg_n{
	width:48%;
	overflow:hidden;
	border-radius:0 200px 0 0;
}
.jssllist_n .jsslimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.jssllist_n .jsslcont_n{
	width:52%;
	overflow:hidden;
	padding-top:50px;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	padding-left:200px;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	padding-right:200px;
}
.jssllist_n:nth-child(2n+1) .jsslimg_n{
	float:left;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslimg_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	float:left;
}
.jsslen{
	width:100%;
	overflow:hidden;
	font-size: 50px;
    color: #333333;
    line-height: 55px;
    font-family: Arial;
    margin-top: 20px;
	margin-bottom:100px;
}
.jsslcont_n h4,.jsslcont_n p{
	width:100%;
	overflow:hidden;
}
.jsslcont_n h4{
	font-size: 45px;
    color: #333;
    line-height: 55px;
    font-weight: normal;
    margin-bottom: 16px;
	margin-bottom:60px;
}
.jsslcont_n p{
    line-height: 30px;
    font-size: 16px;
    color: #333;
}

/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp2{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color:#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: #005bac;
	  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: #005bac;
	  -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: #005bac;
	  -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:80px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 2px;
	  margin: 4px 5px;
	  width: 30px;
	  display: block;
	  background: #005bac;
	  -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) {
	.casenr_n dl dt{
		height:220px;
	}
	.prort_n dl dt {
		height: 330px;
	}
}
@media only screen and (min-width: 1680px) and (max-width: 1767px) {
	.casenr_n dl dt{
		height:209px;
	}
	.prort_n dl dt {
		height: 313px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1679px) {
	.casenr_n dl dt{
		height:198px;
	}
	.prort_n dl dt {
		height: 297px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.nhzhbnr ul li{
		height:117px;
	}
	.casenr_n dl dt{
		height:177px;
	}
	.prort_n dl dt {
		height: 265px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.nhzhbnr ul li{
		height:111px;
	}
	.casenr_n dl dt{
		height:167px;
	}
	.prort_n dl dt {
		height: 249px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.nhzhbnr ul li{
		height:105px;
	}
	.casenr_n dl dt{
		height:156px;
	}
	.prort_n dl dt {
		height: 234px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.nhzhbnr ul li{
		height:95px;
	}
	.casenr_n dl dt{
		height:139px;
	}
	.prort_n dl dt {
		height: 208px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.nhzhbnr ul li{
		height:85px;
	}
	.casenr_n dl dt{
		height:122px;
	}
	.prort_n dl dt {
		height: 183px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.nhzhbnr ul li{
		height:83px;
	}
	.casenr_n dl dt{
		height:118px;
	}
	.prort_n dl dt {
		height: 176px;
	}
}
@media only screen and (min-width: 912px) and (max-width: 991px) {
	.nhzhbnr ul li{
		height:102px;
	}
	.casenr_n dl dt{
		height:148px;
	}
	.prort_n dl dt {
		height: 231px;
	}
}
@media only screen and (min-width: 820px) and (max-width: 911px) {
	.nhzhbnr ul li{
		height:92px;
	}
	.casenr_n dl dt{
		height:132px;
	}
	.prort_n dl dt {
		height: 206px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 819px) {
	.nhzhbnr ul li{
		height:87px;
	}
	.casenr_n dl dt{
		height:122px;
	}
	.prort_n dl dt {
		height: 191px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.nhzhbnr ul li{
		height:109px;
	}
	.casenr_n dl dt{
		height:156px;
	}
	.prort_n dl dt {
		height: 250px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.nhzhbnr ul li{
		height:93px;
	}
	.casenr_n dl dt{
		height:130px;
	}
	.prort_n dl dt {
		height: 208px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.nhzhbnr ul li{
		height:74px;
	}
	.casenr_n dl dt{
		height:100px;
	}
	.prort_n dl dt {
		height: 159px;
	}
}
@media only screen and (min-width: 414px) and (max-width: 424px) {
	.nhzhbnr ul li{
		height:73px;
	}
	.casenr_n dl dt{
		height:103px;
	}
	.prort_n dl dt {
		height: 154px;
	}
}
@media only screen and (min-width: 393px) and (max-width: 413px) {
	.nhzhbnr ul li{
		height:69px;
	}
	.casenr_n dl dt{
		height:97px;
	}
	.prort_n dl dt {
		height: 145px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 392px) {
	.nhzhbnr ul li{
		height:66px;
	}
	.casenr_n dl dt{
		height:92px;
	}
	.prort_n dl dt {
		height: 138px;
	}
}
@media only screen and (min-width: 360px) and (max-width: 374px) {
	.nhzhbnr ul li{
		height:64px;
	}
	.casenr_n dl dt{
		height:88px;
	}
	.prort_n dl dt {
		height: 142px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
	.nhzhbnr ul li{
		height:57px;
	}
	.casenr_n dl dt{
		height:78px;
	}
	.prort_n dl dt {
		height: 115px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.nhzhbnr ul li{
		height:51px;
	}
	.casenr_n dl dt{
		height:67px;
	}
	.prort_n dl dt {
		height: 98px;
	}
}

@media(max-width:1768px) {
	.cont,.cont1{
		width:88%;
	}
	.newsnr_n ul li .newsrt_n {
		padding: 3%;
	}
	.tjprort .search_box{
		width:84%;
	}
	.nprort h1{
		font-size:26px;
		line-height:36px;
	}
	.footer .botmessage{
		margin-left:-44%;
	}
	.footer .botmessage .botmessagert ul li:nth-child(4) {
		width: 11%;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size:50px;
		line-height:50px;
	}
}
@media(max-width:1680px) {
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size:60px;
	}
	.promenu ul li{
		margin-left: 50px;
	}
}
@media(max-width:1600px) {
	.header .nav{
		margin-right:60px;
	}
	.header .navbar_nav li {
		padding: 0 40px;
	}
	.procont .proms {
		padding-left: 20px;
		padding-top: 40px;
		padding-right: 0;
	}
	.scrollnews {
		padding: 0 0 0 50px;
	}
	.scrollnews_nr {
		width: 220px;
		right: 4%;
	}
	.tnewslf{
		font-size:22px;
	}
	.newsnr_n ul li .newslf_n{
		height:280px;
	}
	.footer .botmessage{
		padding: 43px 50px 0 50px;
	}
}
@media(max-width:1440px) {
	.header .nav {
		margin-right: 40px;
	}
	.header .navbar_nav li {
		padding: 0 35px;
	}
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size: 50px;
		line-height:50px;
	}
	.aboutlist {
		margin-top: 80px;
	}
	.scrollnews {
		padding: 0 0 0 40px;
	}
	.tnewsrt{
		padding-left:15px;
		font-size:18px;
	}
	.scrollnews_nr {
		width: 200px;
	}
	.caselist .casebot .casebotlf {
		padding: 40px 30px;
	}
	.caselist .casebot i{
		right:30px;
	}
	.promenu ul li {
		margin-left: 40px;
	}
	.prolist .procont .proicon{
		margin-top:20px;
	}
	.tit .titen{
		font-size: 60px;
		line-height: 60px;
	}
	.newstit .newsmenu ul li {
		margin-left: 80px;
	}
	.about .more,.aboutlist{
		margin-top: 50px;
	}
	.cloud-product-ul li h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.newsnr_n ul li .newslf_n{
		
		height:260px;
	}
	.contact_n .contactlf_n .hello{
		font-size:80px;
		line-height:80px;
	}
	.footer .botmessage .botmessagelf {
		width: 30%;
	}
	.footer .botmessage .botmessagert {
		width: 70%;
	}
	.footer .botmessage .botmessagelf p{
		font-size:24px;
	}
}
@media(max-width:1360px) {
	.header .navbar_nav li {
		padding: 0 30px;
	}
	.aboutlist ul li {
		height: 230px;
	}
	.promenu ul li {
		margin-left: 30px;
	}
	.procont .proms {
		padding-top: 30px;
	}
	.procont .proms h5{
		font-size:20px;
		line-height:30px;
	}
	.cloud-product-ul li h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.newsnr_n ul li .newslf_n {
		height: 240px;
	}
	.footer .botmessage {
		padding: 43px 40px 0 40px;
	}
	.footer .botmessage .botmessagelf p {
		font-size: 22px;
	}
}
@media(max-width:1280px) {
	.header .nav {
		margin-right: 20px;
	}
	.header .navbar_nav li {
		padding: 0 26px;
	}
	.about .aboutlf {
		padding: 0 30px 0 0;
	}
	.newstit .newsmenu ul li {
		margin-left: 60px;
	}
	.scrollnews {
		padding: 0 0 0 30px;
	}
	.tnewslf {
		font-size: 20px;
	}
	.tjpro .tjprolf img {
		margin-right: 10px;
	}
	.tit .titen {
		font-size: 55px;
		line-height: 55px;
	}
	.tit h3,.tit h3 a{
		font-size: 30px;
		line-height:40px;
	}
	.caselist .casebot .casebotlf p span::after {
		width: 140px;
		right: -155px;
	}
	.caselist .casebot .casebotlf {
		padding: 40px 20px;
	}
	.caselist .casebot i {
		right: 20px;
	}
	.procont .proms {
		padding-top: 20px;
	}
	.procont .proms h5 {
		font-size: 18px;
	}
	.procont .proms p{
		font-size:14px;
	}
	.cloud-product-ul li .normal-inner .yylyicon img,.cloud-product-ul li .yylyicon img{
		width:100px;
	}
	.newsnr .newslf ul {
		padding: 0 30px 44px 30px;
	}
	.news_n h1{
		font-size:24px;
		line-height:34px;
	}
	.newsnr_n ul li .newslf_n {
		height: 220px;
	}
	.nprort h1{
		font-size:24px;
		line-height:34px;
	}
	.nprort .npro_infolei,.nprort .npro_infolei span{
		font-size:18px;
	}
	.contact_n .contactlf_n .hello{
		font-size:70px;
		line-height:70px;
	}
	.card-img-150 {
		height: 200px;
	}
	.card-body h5 a, .card-body h5 span{
		font-size:15px;
	}
	.card-body h5{
		margin-top:5px;
	}
	.footer .botmessage .botmessagelf {
		width: 27%;
	}
	.footer .botmessage .botmessagert {
		width: 73%;
	}
	.footer .botmessage .botmessagelf p {
		font-size: 20px;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size: 45px;
		line-height: 45px;
	}
}
@media(max-width:1200px) {
	.promenu ul li {
		margin-left: 20px;
	}
}
@media(max-width:1152px) {
	.header .nav {
		margin-right: 10px;
	}
	.header .navbar_nav li {
		padding: 0 20px;
	}
	.aboutlist ul li dl {
		padding: 0 0 22px 25px;
	}
	.scrollnews_nr {
		width: 180px;
		right: 3%;
	}
	.tnewslf {
		width: 17%;
	}
	.promenu ul li a {
		font-size: 15px;
	}
	.cloud-product-ul li .normal-inner .yylyicon img,.cloud-product-ul li .yylyicon img{
		width: 90px;
	}
	.cloud-product-ul li h4 {
		font-size: 18px;
	}
	.cloud-product-ul li .promore a {
		width: 160px;
	}
	.cloud-product-ul li .promore a span {
		margin-left: 20px;
	}
	.footer .botmessage {
		padding: 43px 20px 0 20px;
	}
	.footer .botmessage .botmessagelf p {
		font-size: 18px;
	}
	.footer .botmessage .botmessagelf {
		width: 25%;
	}
	.footer .botmessage .botmessagert {
		width: 75%;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size: 40px;
		line-height: 40px;
	}
}
@media(max-width:1100px) {
	.header .navbar_nav li {
		padding: 0 18px;
	}
	.footer .botmessage .botmessagelf p {
		font-size: 15px;
	}
	.footer .botmessage .botmessagelf {
		width: 22%;
	}
	.footer .botmessage .botmessagert {
		width: 78%;
	}
	.footer .botmessage {
		padding: 43px 10px 0 10px;
	}
}
@media(max-width:1024px) {
	.header .navbar_nav li {
		padding: 0 15px;
	}
	.promenu ul li {
		margin-left: 12px;
	}
}

@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.logo img{
		height:45px;
	}
	.language{
		line-height:60px;
	}
	.language a > img {
		margin-right:5px;
	}
	.language a i {
		margin-left:5px;
	}
	.language .languagenr{
		top:60px;
	}
	.banner,.banner_n{
		margin-top:60px;
	}
	.scrollnews,.scrollnews_nr{
		display:none;
	}
	.tjpro{
		margin-top:0;
	}
	.tjpro .tjprolf{
		display:none;
	}
	.tjpro .tjprort,.tjprort .search_box{
		width:100%;
	}
	.about .aboutlf {
		padding: 0;
	}
	.news{
		padding-top:60px;
		padding-bottom:60px;
	}
	.newsnr {
		margin-top: 40px;
	}
	.newsnr .newslf,.newsnr .newsrt{
		width:100%;
	}
	.newsnr .newsrt{
		margin-top:20px;
	}
	.newsnr .newsrt ul li {
		padding-bottom: 20px;
		margin-top: 20px;
	}
	.newsnr .newslf ul li {
		padding-bottom:20px;
		margin-top:20px;
	}
	.newsnr .newslf ul li a,.newsnr .newsrt ul li .newslilf h5{
		font-size:18px;
	}
	.newsnr .newslf .news1 .newsbt1{
		padding:0 30px;
	}
	.news_n,.nhzhb,.case_n,.about_n{
		margin-bottom:60px;
	}
	.pro_n{
		padding-bottom:60px;
	}
	.positionnr .positionrt,.nmenu{
		width:100%;
	}
	.footernr .footerlf,.footernr .footerrt{
		width:100%;
	}
	.footernr .footerrt{
		margin-top:20px;
	}
	.footernr ul li p{
		display:none;
	}
	.footernr ul li h4{
		margin-bottom:10px;
	}
	.link {
		margin-top: 30px;
	}
	.footer .botmessage{
		height:auto;
		position:inherit;
		top:0;
		background:none;
		padding:0;
	}
	.footer .botmessage .botmessagelf p {
		font-size: 18px;
		line-height:30px;
	}
	.footer{
		padding: 40px 0 0 0;
	}
	.footer .botmessage .botmessagelf,.footer .botmessage .botmessagert{
		width:100%;
	}
	.footer .botmessage .botmessagert{
		margin-bottom:30px;
	}
}
@media(max-width:991px) {
	.banner .swiper-pagination{
		bottom:20px;
	}
	.tit .titen {
		font-size: 50px;
		line-height: 50px;
	}
	.casetit .tit .titen {
		line-height: 60px;
	}
	.about {
		padding-top: 80px;
		padding-bottom:80px;
	}
	.aboutnr,.about .more{
		margin-top: 30px;
	}
	.aboutlist {
		margin-top: 50px;
	}
	.aboutlist ul{
		display:inherit;
	}
	.aboutlist ul li{
		width:49%;
		float:left;
		margin:10px 2% 10px 0;
	}
	.aboutlist ul li:nth-child(2n){
		margin-right:0;
	}
	.cloud-product-ul li .normal-inner .yylyicon img, .cloud-product-ul li .yylyicon img {
		width: 70px;
	}
	.cloud-product-ul li h4 {
		font-size: 16px;
	}
	.case {
		padding-top:60px;
		padding-bottom:60px;
	}
	.hzhbnr .more {
		margin-top: 20px;
	}
	.news{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.newstit .newsmenu ul li{
		padding-bottom:10px;
	}
	.newsnr {
		margin-top: 30px;
	}
	.newstit .newsmenu {
		padding-top: 40px;
	}
	.newstit .newsmenu ul{
		justify-content:left;
	}
	.pro{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.protit .promenu {
		padding-top: 30px;
	}
	.promenu ul{
		justify-content:left;
		display:inherit;
	}
	.promenu ul li{
		margin-left:0;
		width:33.333333333333333%;
		float:left;
		text-align:center;
	}
	.pronr {
		margin-top: 40px;
	}
	.pronr .swiper-pagination{
		margin-top:30px;
	}
	.nprort .npro_infolei, .nprort .npro_infolei span {
		font-size: 17px;
	}
	.news_n h1{
		font-size:22px;
		line-height:32px;
	}
	.newsdate_n .day {
		font-size: 40px;
		line-height: 50px;
	}
	.newsnr_n ul li .newslf_n {
		height: 180px;
	}
	.news-exp2 a{
		width:100%;
		white-space: normal;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.nprort h1 {
		font-size: 22px;
		line-height: 32px;
	}
	.nhzhbnr ul li {
		width: 31.33333333333333333%;
	}
	.pro_n .prolf_n,.pro_n .prort_n{
		width:100%;
	}
	.pro_n .prort_n{
		margin-top:40px;
	}
	.contact_n .contactlf_n,.contact_n .contactrt_n{
		width:100%;
	}
	.contact_n .contactrt_n{
		margin-top:30px;
	}
	.contact_n .contactrt_n h4{
		font-size:26px;
		line-height:36px;
	}
	.contact_n .contactlf_n .hello {
		font-size: 60px;
		line-height: 60px;
	}
	.footer .botmessage .botmessagert ul li{
		width:100% !important;
		margin-bottom:15px;
	}
	.bot .botlf {
		padding-top:0;
	}
	.bot .botrt dl{
		float:left;
		margin-top:20px;
	}
}
@media(max-width:768px) {
	.yyly .tit{
		top:30px;
	}
	.cloud-product-ul li,.cloud-product-ul li.active{
		width:50%;
	}
	.cloud-product-ul li{
		height:480px;
	}
	.active-inner-item .oursl_nr,.cloud-product-ul li .normal-inner{
		top:220px;
	}
	.cloud-product-ul li h4{
		margin-top:10px;
	}
	.cloud-product-ul li .promore {
		margin-top: 20px;
	}
	.cloud-product-ul li .promore a {
		width: 130px;
		height: 35px;
		line-height: 35px;
		font-size:14px;
	}
	.cloud-product-ul li .promore a span {
		margin-left: 15px;
	}
	.cloud-product-ul li .normal-inner .yylyicon img, .cloud-product-ul li .yylyicon img {
		width: 60px;
	}
	.cloud-product-ul li .normal-inner span{
		margin: 30px auto 0;
	}
	.newsnr .newslf ul li a, .newsnr .newsrt ul li .newslilf h5,.newsnr .newslf .news1 .newsbt1{
		font-size: 16px;
	}
}
@media(max-width:767px) {
	.hzhb{
		padding-top:200px;
		margin-bottom:0;
	}
	.hzhbnr{
		bottom: inherit;
		top: 20px;
	}
	.more a {
		width: 130px;
		height: 40px;
		line-height: 40px;
	}
	.more a span {
		font-size: 16px;
		margin-left: 15px;
	}
	.pronr .swiper-pagination .swiper-pagination-bullet {
		width: 20px;
		height: 20px;
		margin:0 5px;
	}
	.pronr .swiper-pagination .swiper-pagination-bullet::after{
		left:5px;
		top:5px;
	}
	.nprolf,.nprort{
		width:100%;
	}
	.nprort{
		margin-top:30px;
	}
	.nprort .npro_infolei{
		margin-bottom: 0;
	}
	.newsnr_n ul li .newslf_n,.newsnr_n ul li .newsrt_n{
		width:100%;
	}
	.pro_n .prort_n dl {
		width:48%;
	}
	.nhzhbnr ul li {
		width:48%;
		margin: 10px 1%;
	}
	.footernr ul li {
		width: 25%;
		text-align: center;
	}
}
@media(max-width:640px) {
	.banner .swiper-slide .img img {
		width: 112%;
		margin-left: -6%;
	}
	.banner .swiper-pagination {
		bottom: 10px;
		left: 1%;
	}
	.tit .titen {
		font-size: 45px;
	}
	.casetit .tit .titen {
		line-height: 55px;
	}
	.tit h3,.tit h3 a{
		font-size: 26px;
		line-height:36px;
	}
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size: 45px;
		line-height: 45px;
	}
	.caselist .casebot .casebotlf p span::after{
		display:none;
	}
	.caselist .casebot i img{
		width:25px;
	}
	.caselist .casebot .casebotlf{
		width:88%;
	}
	.caselist .casebot .casebotlf {
		padding:20px;
	}
	.caselist .casebot .casebotlf h5{
		font-size: 22px;
		line-height: 32px;
	}
	.caselist .casebot{
		width: 90%;
		left: 5%;
	}
	.caselist {
		padding-bottom: 56px;
	}
	.aboutlist ul li:hover {
		background-size: 120px;
	}
	.aboutlist ul li {
		height: 180px;
	}
	.cloud-product-ul li {
		height: 400px;
	}
	.active-inner-item .oursl_nr, .cloud-product-ul li .normal-inner {
		top: 190px;
	}
	.cloud-product-ul li .promore a {
		width: 110px;
	}
	.cloud-product-ul li .promore a span {
		margin-left: 10px;
	}
	.about {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.newsnr .newslf .news1 {
		height: 280px;
	}
	.procont .proimg{
		width:100%;
		margin-top:0;
	}
	.prolist {
		padding-top:0;
	}
	.procont{
		padding: 20px 20px 40px 20px;
	}
	.procont .proms{
		padding-left:0;
	}
	.promenu ul li{
		padding-bottom:0;
	}
	.prort_n dl dd{
		font-size:14px;
	}
	.casenr_n dl dd{
		font-size:14px;
	}
	.newsnr .newslf .news1 .newsbt1 {
		padding: 0 20px;
	}
	.newsnr .newslf .news1 .newsbt1 i img{
		width:25px;
	}
	.newsnr .newslf ul {
		padding: 0 20px 30px 20px;
	}
	.newsnr .newsrt ul li .newslilf,.newsnr .newsrt ul li .newslirt{
		width:100%;
	}
	.newsnr .newsrt ul li .newslirt span,.newsnr .newsrt ul li .newslirt p{
		text-align:left;
	}
	.newsnr .newsrt ul li .newslirt span{
		font-size:36px;
		line-height:36px;
	}
	.newstit .newsmenu ul{
		display:inherit;
	}
	.newstit .newsmenu ul li {
		width:33.33333333333333333%;
		float:left;
		margin-left: 0;
		text-align:center;
	}
	.newsms_n,.newsdate_n,.procont .proms{
		width:100%;
	}
	.newsms_n{
		padding:0;
	}
	.newsdate_n .day {
		font-size: 30px;
		line-height: 40px;
	}
	.newsdate_n .day, .newsdate_n .year{
		text-align:left;
	}
	.newsms_n h4{
		font-size:18px;
	}
	.casenr_n dl{
		margin: 10px 0;
	}
	.contact_n .contactrt_n h4{
		font-size:22px;
		line-height:32px;
	}
	.contact_n .contactlf_n .hello {
		font-size: 50px;
		line-height: 50px;
	}
	.card-img-150 {
		height: 180px;
	}
	.card-body h5 a, .card-body h5 span {
		font-size: 14px;
	}
	.searchnr {
		padding: 0 5px;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size: 35px;
		line-height: 35px;
	}
}
@media(max-width:540px) {
	.aboutlist ul li {
		height: 150px;
	}
	.aboutlist ul li i {
		width: 50px;
		height: 50px;
		right: 10px;
		top: 10px;
	}
	.newsnr .newslf .news1 {
		height: 240px;
	}
}
@media(max-width:500px) {
	.aboutlist ul li i {
		right: 15px;
		top: 15px;
	}
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size: 40px;
		line-height: 40px;
	}
	.aboutlist ul li dl dd {
		font-size: 15px;
	}
	.aboutlist ul li dl {
		padding: 0 0 22px 20px;
	}
	.promenu ul li{
		width:50%;
	}
}
@media(max-width:425px) {
	.tit h3, .tit h3 a {
		font-size: 22px;
		line-height: 32px;
	}
	.tit .titen {
		font-size: 36px;
	}
	.pro_n .prort_n dl{
		padding:5px;
	}
	.casetit .tit .titen {
		line-height: 46px;
	}
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size: 35px;
		line-height: 35px;
	}
	.aboutlist ul li dl dd {
		font-size: 14px;
		line-height:25px;
	}
	.aboutlist ul li dl {
		padding: 0 0 22px 10px;
	}
	.caselist .casebot .casebotlf {
		padding: 15px 20px;
	}
	.caselist .casebot .casebotlf h5{
		margin-bottom:5px;
	}
	.newsnr .newslf .news1 {
		height: 200px;
	}
	.newsnr .newslf .news1 .newsbt1{
		bottom:10px;
	}
	.cloud-product-ul li {
		height: 350px;
	}
	.active-inner-item .oursl_nr, .cloud-product-ul li .normal-inner {
		top: 160px;
	}
	.card-img-150 {
		height: 130px;
	}
	.footernr ul li h4,.footernr ul li h4 a {
		font-size: 16px;
	}
}
@media(max-width:424px) {
	.casenr_n dl {
		padding: 0 5px;
	}
}
@media(max-width:375px) {
	.tit .titen {
		font-size: 32px;
	}
	.casetit .tit .titen {
		line-height: 42px;
	}
	.aboutlist ul li dl dt .counter,.aboutlist ul li dl dt font{
		font-size: 32px;
		line-height: 32px;
	}
	.aboutlist ul li dl dd {
		font-size: 13px;
	}
	.cloud-product-ul li h4 {
		font-size: 15px;
	}
	.aboutlist ul li:hover {
		background-size: 100px;
	}
	.aboutlist ul li {
		height: 110px;
	}
	.aboutlist ul li i{
		width:40px;
		height:40px;
		background-size:20px !important;
	}
	.aboutlist ul li dl {
		padding: 0 0 10px 10px;
	}
	.aboutlist ul li i {
		right: 10px;
		top: 10px;
	}
	.yyly .tit {
		top: 20px;
	}
	.cloud-product-ul li .normal-inner .yylyicon img, .cloud-product-ul li .yylyicon img {
		width: 50px;
	}
	.cloud-product-ul li {
		height: 310px;
	}
	.cloud-product-ul li .promore {
		margin-top: 10px;
	}
	.active-inner-item .oursl_nr, .cloud-product-ul li .normal-inner {
		top: 150px;
	}
	.card-img-150 {
		height: 120px;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size: 32px;
		line-height: 32px;
	}
}
@media(max-width:375px) {
	.newsnr .newslf .news1 {
		height: 180px;
	}
}
@media(max-width:320px) {
	.footernr ul li h4,.footernr ul li h4 a {
		font-size: 14px;
	}
	
}
@media(max-width:319px){
	.promenu ul li a {
		font-size: 14px;
	}
	.newstit .newsmenu ul li a {
		font-size: 16px;
	}
	.newsnr .newslf .news1 .newsbt1 {
		padding: 0 10px;
	}
	.newsnr .newslf ul {
		padding: 0 10px 30px 10px;
	}
}