@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myOneFont;
	src: url('../font/BarlowCondensed-SemiBold_mianfeiziti.ttf'),
		 url('../font/BarlowCondensed-SemiBold_mianfeiziti.eot'); /* IE9 */
}

/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Microsoft YaHei","Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */
.header{
	width:100%;
	height:80px;
	background:#fff;
	position:fixed;
	z-index: 999;
	top:0;
	left:0;
	padding:0 1%;
	}
.header.on{
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}
.header .mask{
    position: absolute;
    width: 100vw;
    height: 22vw;
    z-index:-1;
    left: 0;
    top: 0;
    background-color: #fff;
    transform-origin: 0 0;
    transform: scaleY(.001);
    pointer-events: none;
    transition: transform .5s cubic-bezier(.25,.74,.22,.99);
}
.header:hover .mask {
    pointer-events: auto;
    transform: scaleY(1)
}
.logo{
	height:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
}
.logo img{
	max-width:100%;
	height:auto;
}
.search-btn{
	display:flex;
	height:100%;
	align-items:center;
	cursor: pointer;
	position:relative;
	margin-left:30px;
}
.search-btn::after{
	content:"";
	width:1px;
	height:14px;
	background:#fff;
	position:absolute;
	right:0;
	top:50%;
	margin-top:-7px;
}
.search-alert {
    position: fixed;
    z-index: 100;
    background-color: #222222;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
	z-index:9990;
}
.search-alert .close {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 38px;
    right: 2.6%;
	color:#fff;
    cursor: pointer;
	opacity:0.8;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
	z-index:9992;
}
.search-alert .cent-form {
    position: absolute;
    width: 94.8%;
    left: 2.6%;
    top: 50%;
    height: 124px;
    margin-top: -63px;
    border-bottom: 1px solid #515151;
}
.search-alert .cent-form .tex {
    border: none;
    font-size: 60px;
    height: 124px;
    line-height: 124px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #555;
    background: none;
    padding-right: 80px;
}
.search-alert .cent-form .sub-butn {
    border: none;
    height: 100px;
    margin-top: 24px;
    font-size: 24px;
    line-height: 100px;
    color: #555;
    text-align: right;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    text-align: center;
}
.toptel{
	overflow:hidden;
	height:100%;
	display:flex;
	align-items:center;
}
.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:92px;
}
.header .navbar_nav li{
	float:left;
	padding:0 53px;
	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: #252525;
	font-size: 16px;
	line-height:80px;
	position:relative;
}
.header .navbar_nav li:hover > a,.header .navbar_nav li.active > a{
	color:#db2222;
	font-weight:bold;
}
.header .navbar_nav li > a::after{
	content:"";
	width:0;
	height:2px;
	background:#db2222;
	border-radius:50%;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}
.header .navbar_nav > li:hover a::after,.header .navbar_nav li.active a::after{
	width:100%;
}
.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:80px;
	width:100%;
    left:0;
	z-index:9;
	-webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);

  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	display:block;
	width:100%;
	overflow:hidden;
	color: #252525;
	padding: 5px;
	line-height:25px;
	text-align: center;
	margin:5px 0;
}
.header:hover .navbar_nav li.dropdown .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 .dropdown_menu a:hover{
	color: #e70013;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}

#navToggle{
	display: none;
}

.cont{
	width:1600px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1600px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	position:relative;
	margin-top:80px;
	}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.banner .img{
	width:100%;
	overflow:hidden;
	position:relative;
}
.banner .swiper-slide-active .img{
	visibility: visible; 
	-webkit-animation:scale-bg 4.5s linear forwards;
	animation:scale-bg 4.5s linear forwards;
}
.banner .bannertext{
	overflow:hidden;
	position:absolute;
	left:8.3%;
	top:26.1%;
	z-index:99;
	}
.banner .bannertext h4,.banner .bannertext p{
	width:100%;
	overflow:hidden;
}
.banner .bannertext h4{
	font-size:58px;
	color:#fff;
	line-height:68px;
	font-weight:normal;
}
.banner .bannertext h4:last-of-type{
	margin-bottom:30px;
}
.banner .bannertext p{
	font-size:20px;
	color:#fff;
	line-height:30px;
}
.banner .bannertext .more{
	margin-top:77px;
}
.banner .bannertext .more a{
	background:none;
	border:solid 1px #fff;
}
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}

@keyframes textAnimation {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  40%, 70% ,100%{
    transform: scale(1);
    opacity: 1;
  }
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.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-next.swiper-button-disabled,.banner .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}


.banner .swiper-button-prev.swiper-button-black,.banner .swiper-container-rtl .swiper-button-next.swiper-button-black {
	background:url("../images/prev.png") no-repeat center;
	opacity:0.5;
}
.banner .swiper-button-prev:hover{
	opacity:1;
	}

.banner .swiper-button-next.swiper-button-black,.banner .swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background:url("../images/next.png") no-repeat center;
	opacity:0.5;
}
.banner .swiper-button-next:hover{
	opacity:1;
	}
/*shubiao*/
.shubiao{
	position:absolute;
	left:50%;
	margin-left:-11px;
	bottom:25px;
	z-index:99;
}
.mouse {
  position: relative;
  width: 26px;
  height: 46px;
  border-radius: 30px;
  border: 3px solid #fff;
  margin:0 auto 0;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 3px;
  height: 8px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.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:#b1b1b1;
	line-height:40px;
	font-size:16px;
}

.swiper-pagination-fraction .swiper-pagination-current{
	color:#e62830;
	font-size:26px;
	font-weight:bold;
}
.swiper-pagination-fraction span:before{
	content:"0";
	}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet{
	width:24px;
	height:24px;
	border:none;
	display: inline-block;
	margin-right:26px;
	outline:none;
	border-radius:50%;
	position:relative;
}
.swiper-pagination-bullet::after{
	content:"";
	width:12px;
	height:12px;
	background:#fff;
	border-radius:50%;
	position:absolute;
	left:4px;
	top:4px;
}

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{
	border:solid 2px #db2222;
}
.swiper-pagination-bullet-active::after{
	background:#db2222;
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top,.2s -webkit-transform;
	transition: .2s top,.2s -webkit-transform;
	-o-transition: .2s transform,.2s top;
	transition: .2s transform,.2s top;
	transition: .2s transform,.2s top,.2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left,.2s -webkit-transform;
	transition: .2s left,.2s -webkit-transform;
	-o-transition: .2s transform,.2s left;
	transition: .2s transform,.2s left;
	transition: .2s transform,.2s left,.2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right,.2s -webkit-transform;
	transition: .2s right,.2s -webkit-transform;
	-o-transition: .2s transform,.2s right;
	transition: .2s transform,.2s right;
	transition: .2s transform,.2s right,.2s -webkit-transform
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255,255,255,.25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}

.swiper-pagination-lock {
	display: none
}



.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	animation: swiper-preloader-spin 1s steps(12,end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}

/*banner*/

.banner .swiper-pagination {
	overflow:hidden;
	text-align:center;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	position:absolute;
	left:8.3%;
	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;
}
/* tit

-------------------------------------------------------------- */
.tit h3{
	width:100%;
	font-size:35px;
	color:#252525;
	line-height:45px;
	font-weight:normal;
	margin-top:4px;
	}
.tit h3 a{
	font-size:35px;
	color:#252525;
	}
.tit p{
	width:100%;
	font-size:80px;
	color:#163789;
	line-height:80px;
	font-family:Arial;
	font-weight:900;
	}
.more{
	overflow:hidden;
}
.more a{
	width:196px;
	height:58px;
	background:#163789;
	padding-left:42px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	font-size:18px;
	color:#fff;
	position:relative;
	}
.more a i{
	display:block;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-right:55px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.more a:hover i{
	margin-right:45px;
}

/* promenu
-------------------------------------------------------------- */
.promenu,.promenu ul{
	width:100%;
}
.promenu ul li{
	width:20%;
	height:110px;
	float:left;
}
.promenu ul li a::after{
	content:"";
	width:0;
	height:0;
	border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid #163789;
	position:absolute;
	left:50%;
	margin-left:-7px;
	bottom:-12px;
	z-index:9;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.promenu ul li a:hover::after,.promenu ul li.active a::after{
	opacity:1;
}
.promenu ul li a{
	width:100%;
	height:100%;
	display:block;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	position:relative;
}
.promenu ul li a span{
	display:block;
	width:100%;
	text-align:center;
	line-height:30px;
	font-size:18px;
	color:#2b2b2b;
}
.promenu ul li a:hover,.promenu ul li.active a{
	background:#163789;
}
.promenu ul li a:hover span,.promenu ul li.active a span{
	color:#fff;
}
.pro{
	width:100%;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:52px;
	padding-bottom:72px;
	position:relative;
}
.pronr{
	position:relative;
}
.proen{
	width:100%;
	overflow:hidden;
	text-align:center;
	position:absolute;
	left:0;
	top:30%;
	z-index:0;
}
.proen img{
	max-width:100%;
	height:auto;
}
.procont{
	width:100%;
	overflow:hidden;
	height:0;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.procont.active{
	height:auto;
	opacity:1;
}
.prolist{
	width:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:wrap;
}
.prolist .prolf{
	width:43%;
	overflow:hidden;
}
.prolist .prolf h5{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#223055;
	line-height:60px;
	font-weight:normal;
}
.prolist .prolf p{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#223055;
	line-height:32px;
	font-family:Arial;
}
.prolist .prolf hr{
	width:100%;
	border:none;
	border-bottom:solid 1px #9ba3b5;
	margin-top:38px;
}
.prolist .prort{
	width:46%;
	overflow:hidden;
	position:relative;
}
.prolist .prort .circle1{
	width:100%;
	overflow:hidden;
}
.prolist .prort img{
	max-width:100%;
	height:auto;
}
.prolist .prort .circle1 img{
	-webkit-transform: rotate(360deg);
	animation: rotation 1s linear infinite;
	-moz-animation: rotation 1s linear infinite;
	-webkit-animation: rotation 20s linear infinite;
	-o-animation: rotation 1s linear infinite;
}
.prolist .prort .circle2 {
    width: 93.2%;
    height: 93.2%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 3.4%;
    top: 3.4%;
}
.prolist .prort .circle2 img{
	max-width:100%;
	height:auto;
	-webkit-transform: rotate(360deg);
	animation: rotation2 1s linear infinite;
	-moz-animation: rotation2 1s linear infinite;
	-webkit-animation: rotation2 20s linear infinite;
	-o-animation: rotation2 1s linear infinite;
}
.prolist .prort .proimg{
	width:77%;
	height:77%;
	overflow:hidden;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	left:50%;
	margin-left:-38.5%;
	top:50%;
	margin-top:-38.5%;
	z-index:9;
}
.prolist .prort .proimg img{
	border-radius:50%;
}
.pronr .tit{
	position:absolute;
	left:0;
	top:11%;
	z-index:990;
}
.pronr .swiper-button{
	position:absolute;
	left:0;
	bottom:20%;
	display:flex;
	z-index:990;
}
.pronr .swiper-button div{
	width:56px;
	height:56px;
	border:solid 2px #fff;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr .swiper-button div:hover{
	border-color:#163789;
}
.pronr .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
}
.pronr .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh.png) no-repeat center;
}
.pronr .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	margin-left:10px;
}
.pronr .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth.png) no-repeat center;
}
.promore{
	width:30.6%;
	height:135px;
	background:#fff;
	padding-left:8.3%;
	position:absolute;
	left:0;
	bottom:0;
	display:flex;
	z-index:990;
}
.promore a{
	width:100%;
	font-size:18px;
	color:#252525;
	display:flex;
	align-items:center;
}
.promore a i{
	margin-left:14px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.promore a:hover i{
	margin-left:20px;
}
.promore a hr{
	width:148px;
	border:none;
	border-bottom:solid 1px #d3d3d3;
	margin-left:50px;
}

@-moz-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-o-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotation2{
from {-webkit-transform: rotate(360deg);}
to {-webkit-transform: rotate(0deg);}
}
@-o-keyframes rotation2{
from {-webkit-transform: rotate(360deg);}
to {-webkit-transform: rotate(0deg);}
}
@keyframes rotation2{
from {-webkit-transform: rotate(360deg);}
to {-webkit-transform: rotate(0deg);}
}
@-webkit-keyframes rotation2{
from {-webkit-transform: rotate(360deg);}
to {-webkit-transform: rotate(0deg);}
}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:#fafafa;
	position:relative;
	padding-top:104px;
	}
.aboutnr{
	width:42%;
	overflow:hidden;
	position:relative;
	z-index:9;
}
.aboutms{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#1b1b1b;
	line-height:30px;
	text-align:justify;
}
.aboutms p{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#1b1b1b;
	line-height:30px;
	margin-top:35px;
}
.aboutnr .more{
	margin-top:72px;
}
.about .aboutimg{
	width:68%;
	overflow:hidden;
	text-align:right;
	position:absolute;
	right:0;
	bottom:0;
	z-index:0;
}
.about .aboutimg img{
	width:100%;
	height:100%;
	object-fit:cover;
}
/* aboutlist
-------------------------------------------------------------- */
.aboutlist{
	width:100%;
	height:235px;
	overflow:hidden;
	background:#fff;
	position:relative;
	z-index:9;
	margin-top:136px;
}
.aboutlist ul{
	width:100%;
	height:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.aboutlist ul li{
	width:25%;
	height:100%;
	overflow:hidden;
	padding:0 45px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.aboutlist ul li:hover{
	background:#163789;
}
.aboutlist ul li .icon {
    width: 100%;
    overflow: hidden;
	margin-top:30px;
}
.aboutlist ul li .icon .iconimgh,.aboutlist ul li:hover .icon .iconimg{
	display:none;
}
.aboutlist ul li:hover .icon .iconimgh{
	display:block;
}
.aboutlist ul li dl{
    overflow: hidden;
    margin-top:36px;
	float:right;
}
.aboutlist ul li dl dt,.aboutlist ul li dl dd{
	max-width:100%;
	overflow:hidden;
}
.aboutlist ul li dl dt{
	font-size:18px;
	color:#000;
	font-weight:normal;
}
.aboutlist ul li dl dt .timer{
	font-size:68px;
	color:#252525;
	line-height:68px;
	font-weight:900;
	margin-right:8px;
}
.aboutlist ul li dl dd{
	font-size:18px;
	color:#252525;
	line-height:28px;
}
.aboutlist ul li:hover dl dt,.aboutlist ul li:hover dl dd,.aboutlist ul li:hover dl dt .timer{
	color:#fff;
}
/* yyly
-------------------------------------------------------------- */
.yyly{
	width:100%;
	overflow:hidden;
	position:relative;
}
.yyly .tit{
	width:100%;
	text-align:center;
	position:absolute;
	left:0;
	top:118px;
	z-index:990;
}
.yyly .tit h3,.yyly .tit h3 a,.yyly .tit p{
	color:#fff;
}
.cloud-product-ul li.active {
    z-index: 9;
    width:41.5%;
}
.cloud-product-ul li > img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.cloud-product {
	position: relative;
	z-index: 9;
}
.cloud-product-ul {
	width: 100%;
	margin:0;
	height:960px;
}
.cloud-product-ul li {
	overflow:hidden;
	height:100%;
	position: relative;
	background:#fff;
	width: 19.5%;
	float: left;
	-webkit-transition: width .3s linear;
	-o-transition: width .3s linear;
	-moz-transition: width .3s linear;
	transition: width .3s linear
}
.cloud-product-ul li .ywlynr{
	width: 100%;
	overflow:hidden;
	position:absolute;
	bottom:82px;
	left:0;
	z-index:9;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.cloud-product-ul li.active .ywlynr{
	padding:0 95px;
}
.cloud-product-ul li .ywlynr .ywlyicon{
	width: 100%;
	overflow:hidden;
	margin-bottom:48px;
	text-align:center;
}
.cloud-product-ul li .ywlynr .ywlyicon img{
	max-width:100%;
	height:auto;
}
.cloud-product-ul li .ywlyms{
	display:none;
}
.cloud-product-ul li.active .ywlyms{
	display:block;
}
.cloud-product-ul li h5{
	width: 100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	font-weight:normal;
	line-height:40px;
	text-align:center;
}
.cloud-product-ul li .ywlyms{
	margin-top:22px;
	text-align:center;
}
.cloud-product-ul li .ywlyms,.cloud-product-ul li .ywlyms p{
	width: 100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.cloud-product-ul li .yylybg{
	width:100%;
	height:54%;
	background: -webkit-linear-gradient(bottom, #163789,rgba(22,55,137,0));
    background: -o-linear-gradient(top, #163789,rgba(22,55,137,0));
    background: -moz-linear-gradient(top, #163789,rgba(22,55,137,0));
    background: linear-gradient(to top, #163789,rgba(22,55,137,0));
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.cloud-product-ul li.active .yylybg{
	height:100%;
	background:rgba(22,55,137,0.4);
}
/* news
-------------------------------------------------------------- */
.pkgl{
	width:100%;
	overflow:hidden;
	height:960px;
	background:url(../images/pkglbg.jpg) no-repeat top center;
	background-size:cover;
}
.pkglnr{
	height:100%;
	position:relative;
}
.pkglcont{
	width:48.1%;
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-24.05%;
	top:10%;
}
.pkglcont img{
	width:100%;
	height:auto;
	-webkit-transform: rotate(360deg);
	animation: rotation 1s linear infinite;
	-moz-animation: rotation 1s linear infinite;
	-webkit-animation: rotation 20s linear infinite;
	-o-animation: rotation 1s linear infinite;
}
.pkglcont .pkglms{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	display: flex;
    align-items: center;
	z-index:9;
}
.pkglmsnr,.pkgllist,.pkgllist h5,.pkgllist p{
	width:100%;
	overflow:hidden;
}
.pkgllist{
	padding:0 130px;
	height:0;
	opacity:0;
}
.pkgllist.active{
	height:auto;
	opacity:1;
}
.pkgllist h5{
	font-size:30px;
	color:#fff;
	font-weight:normal;
	line-height:40px;
	text-align:center;
	margin-bottom:26px;
}
.pkgllist p{
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
}
.pkgl .pkgllf{
	width:27.5%;
	overflow:hidden;
	padding-top:130px;
}
.pkgl .pkgllf .tit h3,.pkgl .pkgllf .tit h3 a,.pkgl .pkgllf .tit p{
	color:#fff;
}
.pkgl .pkgllf ul,.pkgl .pkgllf ul li{
	width:100%;
	overflow:hidden;
}
.pkgl .pkgllf ul{
	margin-top:82px;
}
.pkgl .pkgllf ul li{
	font-size:16px;
	color:#fff;
	line-height:30px;
	display:flex;
	align-items:center;
	margin-top:24px;
}
.pkgl .pkgllf ul li a{
	font-size:16px;
	color:#fff;
}
.pkgl .pkgllf ul li span{
	display:block;
	width:24px;
	height:1px;
	background:#fff;
	margin-right:14px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pkgl .pkgllf ul li:hover span,.pkgl .pkgllf ul li.active span{
	width:76px;
}
.pkgl .pkgllf ul li:hover,.pkgl .pkgllf ul li.active{
	font-weight:bold;
}
.pkglcont .more a{
	background:none;
	border:solid 1px #fff;
	margin:auto;
}
.pkglcont .more{
	margin-top:128px;
}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	padding-top:95px;
	padding-bottom:194px;
}
.news .newstit{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items:flex-end;
	margin-bottom:60px;
	}
.newsmenu{
	overflow:hidden;
}
.newsmenu ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:flex-end;
}
.newsmenu ul li{
	margin-left:8px;
}
.newsmenu ul li a{
	width: 196px;
    height: 58px;
    border:solid 1px #163789;
    padding-left: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color:#163789;
    position: relative;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsmenu ul li a i{
	display:block;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-right:55px;
}
.newsmenu ul li a:hover{
	background:#163789;
	color:#fff;
}
.newsnr{
	width:100%;
	}
.newsnr .newslf{
	width:26%;
	overflow:hidden;
	box-shadow:0 0 32px rgba(13,13,18,0.1);
}
.newsnr .newslf .newsimg{
	width:100%;
	overflow:hidden;
	height:293px;
	position:relative;
}
.newsnr .newslf .newsimg img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	height:100%;
	object-fit:cover;
}
.newsnr .newslf:hover .newsimg img{
	transform:translate(-50%, -50%) scale(1.03);
	}
.newsnr .newslf .newslfbot,.newsnr .newslf .newslfbot .newsdate,.newsnr .newsin .newsdate{
	width:100%;
	overflow:hidden;
}
.newsnr .newslf .newslfbot{
	height:210px;
	padding:35px 38px 0 38px;
}
.newsnr .newslf .newslfbot .newsdate,.newsnr .newsin .newsdate{
	display:flex;
	justify-content:space-between;
}
.newsdatelf{
	font-size:16px;
	color:#e60012;
	line-height:30px;
}
.newsdatert{
	font-size:16px;
	color:#bebebe;
	font-family:Arial;
	line-height:30px;
}
.newsnr .newslf .newslfbot h5{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#2b2b2b;
	line-height:30px;
	margin-top:20px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr .newsin{
	width:26%;
	height:503px;
	overflow:hidden;
	background:#163789;
	margin-left:2%;
	padding:76px 36px 0 36px;
}
.newsnr .newsin h5{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	line-height:30px;
	margin-top:28px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr .newsin p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.6);
	margin-top:30px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
}
.newsnr .newsin .more{
	margin-top:76px;
}
.newsnr .newsin .more a{
	border:solid 1px #fff;
}
.newsnr .newsin .newsdatelf{
	color:#fff;
}
.newsnr .newsin .newsdatert{
	color:rgba(255,255,255,0.4);
}
.newsnr .newsrt{
	width:44%;
	overflow:hidden;
}
.newsnr .newsrt ul,.newsnr .newsrt ul li{
	width:100%;
	overflow:hidden;
}
.newsnr .newsrt ul li{
	margin-bottom:38.5px;
}
.newsnr .newsrt ul li:last-child{
	margin-bottom:0;
}
.newsnr .newsrt ul li .newsimg2{
	width:33%;
	overflow:hidden;
	position:relative;
	height:142px;
}
.newsnr .newsrt ul li .newsimg2 img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	height:100%;
	object-fit:cover;
}
.newsnr .newsrt ul li:hover .newsimg2 img{
	transform:translate(-50%, -50%) scale(1.03);
	}
.newsnr .newsrt ul li .newsms{
	width:65%;
	overflow:hidden;
}
.newsnr .newsrt ul li .newsms h5,.newsnr .newsrt ul li .newsms p,.newsnr .newsrt ul li .newsms .icon{
	width:100%;
	overflow:hidden;
}
.newsnr .newsrt ul li .newsms h5{
	font-size:20px;
	color:#252525;
	line-height:30px;
	margin-bottom:10px;
	margin-top:5px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsnr .newsrt ul li .newsms p{
	font-size:16px;
	color:#959595;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr .newsrt ul li .newsms .icon{
	margin-top:20px;
}
.newsnr .newsrt ul li .newsms .icon img{
	max-width:100%;
	height:auto;
}

/* message
-------------------------------------------------------------- */
.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;
}


/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#ececec;
	padding:96px 0 0 0;
	position:relative;
}
.botline{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.botline img{
	width:100%;
	height:auto;
}
.footernr .footerlf{
	width:35%;
	overflow:hidden;
	}
.botlogo{
	width:100%;
	overflow:hidden;
	margin-bottom:124px;
}
.botlogo img{
	max-width:100%;
	height:auto;
}
.botlogo h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	font-weight: normal;
	line-height:40px;
	}
.footernr .footerlf .bottel{
	width:100%;
	overflow:hidden;
}
.footernr .footerlf .bottel p{
	width:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
	font-size:16px;
	color:#616161;
	line-height:30px;
	margin-top:15px;
	padding-left:36px;
}
.footernr .footerlf .bottel p a{
	font-size:16px;
	color:#616161;
}
.footernr .footerlf .bottel p:first-child{
	background:url(../images/icon12.png) no-repeat left 5px;
}
.footernr .footerlf .bottel p:nth-child(2){
	background:url(../images/icon13.png) no-repeat left 7.5px;
}
.footernr .footerlf .bottel p:nth-child(3){
	background:url(../images/icon14.png) no-repeat left 1.5px;
}
.footernr .footerlf .bottel .bottelnr .bottelphone{
	line-height:40px;
}
.footernr .footerlf .bottel .bottelnr .bottelphone,.footernr .footerlf .bottel .bottelnr .bottelphone a{
	font-size:35px;
	color:#d5d7dc;
	font-weight:bold;
}
.footernr .footerrt{
	width:62.5%;
	overflow:hidden;
	}
.footerrt ul{
	width:100%;
	overflow:hidden;
	display: flex;
    justify-content: space-between;
}
.footerrt ul li{
	overflow:hidden;
}
.footerrt ul li h4{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#252525;
	line-height:30px;
	margin-bottom:19px;
}
.footerrt ul li h4 a{
	font-size:16px;
	color:#252525;
}
.footerrt ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#616161;
	line-height:30px;
	margin-top:9px;
	}
.footerrt ul li p a{
	font-size:16px;
	color:#616161;
	}
.footerrt ul li p a:hover{
	color:#db2222;
}
.botewm{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:flex-end;
	margin-top:18px;
}
.botewm dl{
	overflow:hidden;
	margin-left:35px;
}
.botewm dl dt,.botewm dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.botewm dl dt img{
	max-width:100%;
	height:auto;
}
.botewm dl dd{
	font-size:15px;
	color:#252525;
	line-height:30px;
}
.bot{
	width:100%;
	overflow:hidden;
	line-height:30px;
	padding:22px 0;
	position:relative;
	margin-top:82px;
	border-top:solid 1px #dadada;
	}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	font-size:16px;
	color:#252525;
}
.bot .botrt{
	text-align:right;
}
.bot a{
	font-size:16px;
	color:#252525;
	}
.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;
}
.searchlist,.searchlist ul{
	width:100%;
	overflow:hidden;
}
.searchlist ul li{
	border-bottom:solid 1px #c9c4c7;
	padding-bottom:42px;
	margin-top:38px;
}
.searchlist ul li .searchin{
	width:100%;
	overflow:hidden;
	background:url(../images/icon23.png) no-repeat right top;
	padding: 0 60px 0 0;
	transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.searchlist ul li:hover .searchin{
	background:url(../images/iconh23.png) no-repeat right top;
}
.searchlist ul li .searchin h5{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#2d2d2d;
	line-height:34px;
	transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.searchlist ul li .searchin p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#b9b9b9;
	margin-top:4px;
}
.searchlist ul li a{
	display:block;
}
.searchlist ul li:hover .searchin h5{
    color:#db2222; 
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:500px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	margin-top:80px;
}
@media only screen and (min-width: 1921px) and (max-width: 2560px) {
	.banner_n{
		height:667px;
	}
}
@media(max-width:1768px) {
	.banner_n{
		height:460px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:438px;
	}
}
@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;
	}
}
@media(max-width:425px) {
	.banner_n{
		height:111px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
	border-bottom:solid 1px #e5e5e5;
}
.positionnr .positionrt{
	height:80px;
	overflow:hidden;
	font-size: 16px;
	color: #2c3441;
	line-height: 26px;
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.positionnr .positionrt p{
	overflow: hidden;
	font-size: 16px;
	color: #2c3441;
	line-height:26px;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #2c3441;
}
.position a:hover {
	color: #163789;
}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	overflow:hidden;
}
.menu_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
}
.menu_n ul li{
	overflow:hidden;
	float:left;
	margin-right:100px;
	font-size:16px;
	color:#2c3441;
	height:80px;
	line-height:26px;
	text-align:center;
	display:flex;
	align-items:center;
	position:relative;
}
.menu_n ul li:last-child{
	margin-right:0;
}
.menu_n ul li::after{
	content:"";
	width:0;
	height:1px;
	background:#163789;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.menu_n ul li:hover::after,.menu_n ul li.active::after{
	width:100%;
}
.menu_n ul li a{
	font-size:16px;
	color:#2c3441;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#163789;
}

/* ntit
-------------------------------------------------------------- */
.ntit{
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow: hidden;
	color: #252525;
    font-size:50px;
    line-height:60px;
	font-weight:normal;
	}
.ntit p {
    width: 100%;
    overflow: hidden;
    font-family:Arial;
    color:#252525;
    font-size:20px;
	font-weight:bold;
	line-height:30px;
}
/* nabout
-------------------------------------------------------------- */
.about_n{
	width:100%;
	overflow:hidden;
	padding-top:82px;
	height:730px;
	position:relative;
	}
.about_n .aboutlf_n{
	width:42%;
	overflow:hidden;
	padding-top:42px;
}
.aboutlf_n .aboutms_n,.aboutlf_n .aboutms_n p{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#1b1b1b;
	line-height:30px;
}
.aboutlf_n .aboutms_n p{
	margin-top:35px;
}
.aboutlf_n .aboutms_n{
	border-top:solid 1px #e6e6e6;
	padding-top:20px;
	margin-top:48px;
}
.about_n .aboutimg_n{
	width:49.4%;
	overflow:hidden;
	position:absolute;
	right:0;
	top:82px;
	border-radius:68px 0 0 0;
}
.about_n .aboutimg_n img{
	width:100%;
	height:auto;
}
.about_n .aboutimg_n:hover img{
	transform:scale(1.02);
}
.qywh_n{
	width:100%;
	overflow:hidden;
	background:url(../images/qywhbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:72px;
	padding-bottom:256px;
}
.qywh_n .ntit h3,.qywh_n .ntit p{
	color:#fff;
}
.qywh_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-top:120px;
}
.qywh_n ul li{
	width:26%;
	overflow:hidden;
}
.qywh_n ul li .icon,.qywh_n ul li h5,.qywh_n ul li p{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.qywh_n ul li .icon img{
	max-width:100%;
	height:auto;
}
.qywh_n ul li h5{
	font-size:30px;
	color:#fff;
	line-height:40px;
	font-weight:normal;
	margin-top:40px;
}
.qywh_n ul li p{
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:30px;
}
.zzjg_n{
	width:100%;
	overflow:hidden;
	background:url(../images/zzjgbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:88px;
	padding-bottom:118px;
}
.zzjgnr_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:64px;
}
.zzjgnr_n img{
	max-width:100%;
	height:auto;
}
/* honor_n
-------------------------------------------------------------- */
.honor_n{
	margin-top:60px;
	margin-bottom:60px;
}
.honornr_n,.honornr_n ul{
	width:100%;
	overflow:hidden;
}
.honornr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.honornr_n ul li{
	width:22%;
	overflow:hidden;
	margin:20px 3% 20px 0;
}
.honornr_n ul li:nth-child(4n){
	margin-right:0;
}
.honornr_n ul li img{
	width:100%;
	height:auto;
}
.honornr_n ul li:hover img{
	transform:scale(1.01);
}
/* sb_n
-------------------------------------------------------------- */
.sb_n{
	margin-top:60px;
	margin-bottom:60px;
}
.sbnr_n{
	width:100%;
	overflow:hidden;
	display:flex;
	flex-wrap:wrap;
}
.sbnr_n dl{
	width:32%;
	overflow:hidden;
	margin:30px 2% 30px 0;
}
.sbnr_n dl:nth-child(3n){
	margin-right:0;
}
.sbnr_n dl dt,.sbnr_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.sbnr_n dl dt{
	position:relative;
	height:384px;
}
.sbnr_n dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sbnr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.03);
}
.sbnr_n dl dd{
	height:80px;
	background:#f2f5f9;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.sbnr_n dl dd p{
	font-size:16px;
	color:#2e2e2e;
	line-height:30px;
}
.sbnr_n dl:hover dd{
	background:#20408e;
}
.sbnr_n dl:hover dd p{
	color:#fff;
}
.sblist_n{
	width:100%;
    overflow:auto;
}
.sblist_n table{
	width:100%;
    overflow: hidden;
    white-space: nowrap;
}
.sblist_n table thead,.sblist_n table .thead tr{
	width:100%;
	overflow:hidden;
}
.sblist_n table,.sblist_n table tr,.sblist_n table td{
	border:none;
}
.sblist_n table th,.sblist_n table td{
	line-height:30px;
	text-align:center;
	padding:0 10px;
}
.sblist_n table th{
	height:66px;
	background:#20408e;
	font-size:16px;
	color:#fff;
}
.sblist_n table tr th,.sblist_n table tr td{
	border-right:solid 1px #fff;
}
.sblist_n table tr th:last-child,.sblist_n table tr td:last-child{
	border-right:none;
}
.sblist_n table td{
	height:66px;
	font-size:16px;
	color:#222222;
}
.sblist_n table tbody tr:nth-child(2n+1){
	background:#f0f2f8;
}
.sblist_n table tbody tr:nth-child(2n){
	background:#e0e5f0;
}
/* npro
-------------------------------------------------------------- */
.pro_n{
	padding-top:70px;
	padding-bottom:70px;
	}
.prolf_n{
	width:20%;
	overflow:hidden;
}
.prort_n{
    width: 74.4%;
    overflow: hidden;
}
.prolf_n ul,.prolf_n ul li{
	width:100%;
}
.prolf_n ul{
	border-top:solid 1px #e5e5e5;
	margin-top:20px;
	padding-top:30px;
}
.prolf_n ul li{
	height:60px;
	line-height:30px;
	display:flex;
	align-items:center;
	position:relative;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolf_n ul li::before{
	content:"";
	width:12px;
	height:12px;
	background:#1b3b8b;
	position:absolute;
	left:0;
	top:24px;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolf_n ul li:hover::before{
	opacity:1;
}
.prolf_n ul li a{
	font-size: 16px;
    color: #2b2b2b;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolf_n ul li:hover{
	padding-left:20px;
}
.prolf_n ul li:hover a,.prolf_n ul li.active a{
	color:#1b3b8b;
}
.pronr_n,.pronr_n ul{
	width:100%;
	overflow:hidden;
	}
.pronr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.pronr_n ul li{
	width: 30.4%;
    overflow: hidden;
    float: left;
    margin: 0 4.4% 50px 0;
}
.pronr_n ul li:nth-child(3n){
	margin-right:0;
}
.pronr_n ul li .proimg_n,.pronr_n ul li .probot_n,.pronr_n ul li .probot_n h5,.pronr_n ul li .probot_n p{
	width:100%;
	overflow:hidden;
}
.pronr_n ul li .proimg_n{
	position:relative;
	height:361px;
}
.pronr_n ul li .proimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pronr_n ul li:hover .proimg_n img{
	transform:translate(-50%, -50%) scale(1.03);
}
.pronr_n ul li .proimg_n .probg_n{
	width:100%;
	height:0;
	background:rgba(27,59,139,0.6) url(../images/icon19.png) no-repeat center;
	position:absolute;
	left:0;
	top:0;
	z-index:9;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr_n ul li:hover .proimg_n .probg_n{
	height:100%;
}
.pronr_n ul li .probot_n{
	margin-top:20px;
}
.pronr_n ul li .probot_n h5{
	font-size:16px;
	color:#252525;
	line-height:30px;
	text-overflow:ellipsis;
	white-space:nowrap;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr_n ul li .probot_n p{
	font-size:16px;
	color:#1b3b8b;
	line-height:30px;
}
.pronr_n ul li:hover .probot_n h5{
	color:#1b3b8b;
}
.pro_n .prolist_n dl{
	width:31.333333333333333%;
	overflow:hidden;
	margin:0 1% 40px 1%;
	float:left;
}
.prolist_n dl dt,.prolist_n dl dd{
	width:100%;
	overflow:hidden;
}
.prolist_n dl dt{
	position:relative;
	height:373px;
	border-radius:10px;
}
.prolist_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.prolist_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.prolist_n dl dd{
	font-size:16px;
	color:#333;
	line-height:30px;
	text-align:center;
	padding:10px 0;
	text-overflow: ellipsis;
	white-space:nowrap;
}
.prolist_n dl:hover dd{
	color:#00478d;
}
.proinfo_n,.propic_n{
	width:100%;
	overflow:hidden;
}
.proinfo_n .propic_n{
	width:43%;
	overflow:hidden;
}
.proinfo_n .proinfonr_n{
	width:51.5%;
	overflow:hidden;
	padding-top:42px;
}
.propic_n img{
	max-width:100%;
	height:auto;
}
.proinfonr_n h1{
	width:100%;
	overflow:hidden;
	font-size:34px;
	color:#223055;
	line-height:44px;
	font-weight:normal;
}
.proinfonr_n .proinfolei_n{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#252525;
	line-height:30px;
	margin-top:26px;
	padding-top:22px;
	border-top:solid 1px #e5e5e5;
}
.nprofbnr {
	width:100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top:50px;
}
.nprofbnr h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#223055;
	font-weight:normal;
	line-height:40px;
	padding-bottom:24px;
	border-bottom:solid 1px #e5e5e5;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
.message{
	margin-top:50px;
}
.message,.message h3{
	width:100%;
	overflow:hidden;
}
.message h3,.tjpro h3{
	font-size:30px;
	color:#223055;
	font-weight:normal;
	line-height:40px;
	border-bottom:solid 1px #e5e5e5;
	padding-bottom:24px;
}
.messagenr{
	width:100%;
	overflow:hidden;
	background:#f6f7f8;
	padding:22px 55px 80px 55px;
	margin-top:45px;
}
.messagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:20px;
	}
.messagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#223055;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	font-weight:normal;
	}
.messagenr dl dt span{
	font-size:18px;
	color:#ff0000;
}
.messagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.messagenr dl dd input{
	width:100%;
	overflow:hidden;
	font-size:15px;
	line-height:50px;
	padding:0 20px;
	color:#333;
	border-radius:5px;
	}
.messagenr dl dd textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	font-size:15px;
	color:#333;
	line-height:30px;
	border-radius:5px;
	padding:18px 20px;
	background:#fff url(../images/icon18.png) no-repeat 24px 21px;
	}
.messagenr dl:last-child{
	width:100%;
	}
.messagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.messagenr dl:nth-child(2n){
	margin-left:1%;
	}
.messagenr dl:nth-child(5){
	width:100%;
	}
.messagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:20px;
}
.messagenr .tjbtn button {
    width: 100%;
    height:48px;
    background: #163789;
    color: #fff;
	text-align:center;
	font-size:16px;
	border-radius:5px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:20px;
	color:#343434;
	}
.btn1 .intxt{
	width:200px;
	height:40px;
	line-height:40px;
	overflow:hidden;
	font-size:16px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}
.messagenr input::placeholder,
.messagenr textarea::placeholder,
.btn1 input::placeholder{
    color: #bdc8da; /* 或者使用其他颜色代码 */
}
 
.messagenr input::-webkit-input-placeholder,
.btn1 input::-webkit-input-placeholder{
    color: #bdc8da; /* 或者使用其他颜色代码 */
}
.messagenr input::-moz-placeholder,
.btn1 input::-moz-placeholder{ /* Firefox 19+ */
    color: #bdc8da; /* 或者使用其他颜色代码 */
}
.messagenr input:-ms-input-placeholder,
.btn1 input::-ms-placeholder{ /* IE 10+ */
    color: #bdc8da; /* 或者使用其他颜色代码 */
}
.tjpro{
	width:100%;
	overflow:hidden;
	margin-top:78px;
}
.tjpronr{
	margin-top:36px;
}
/*产品展示结束*/
	
/* erp_n
-------------------------------------------------------------- */
.erp_n{
	margin-top:60px;
	margin-bottom:60px;
}
.erpjs_n{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#1b1b1b;
	line-height:30px;
	margin-top:28px;
}
.erp_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	margin-top:47px;
}
.erp_n ul li{
	overflow:hidden;
}
.erp_n ul li:first-child{
	width:53.5%;
}
.erp_n ul li:last-child{
	width:43.5%;
}
.erp_n ul li img,.gylc_n img,.gylcimg_n img{
	max-width:100%;
	height:auto;
}
.erp_n ul li:hover img{
	transform:scale(1.01);
}
.erpgs_n{
	padding-top:30px;
}
.erpgs_n,.erpgsnr_n,.erpgsnr_n ul{
	width:100%;
	overflow:hidden;
}
.erpgsnr_n{
	background:#f0f3f6;
	padding:100px 0;
	margin-top:44px;
}
.erpgsnr_n ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.erpgsnr_n ul li{
	width:31.5%;
	height:190px;
	overflow:hidden;
	background:#fff;
	border-radius:10px;
	padding:40px 50px 0 50px;
	margin:10px 0;
}
.erpgsnr_n ul li h5{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#252525;
	line-height:32px;
}
.erpgsnr_n ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#959595;
	margin-top:7px;
}
.pdm_n ul li:first-child{
	width:45.6%;
}
.pdm_n ul li:last-child{
	width:51.6%;
}
.pdmnr_n{
	background:#163789;
}
/* gylc_n
-------------------------------------------------------------- */
.gylc_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:84px;
}
.gylcnr_n{
	padding-top:60px;
	margin-bottom:150px;
}
.gylcimg_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:46px;
}
/* bzlc_n
-------------------------------------------------------------- */
.bzlc_n{
	margin-top:78px;
	margin-bottom:150px;
}
.bzlclf_n{
	width:41%;
	overflow:hidden;
	padding-top:50px;
}
.bzlcnr_n{
	margin-top:60px;
}
.bzlcnr_n,.bzlcnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#252525;
	line-height:30px;
}
.bzlcimg_n{
	width:50%;
	overflow:hidden;
	text-align:right;
}
.bzlcimg_n img{
	max-width:100%;
	height:auto;
}
/* nnews
-------------------------------------------------------------- */
.newsbg_n{
	background:#f7f7f7;
}
.news_n{
	margin-top:86px;
	margin-bottom:120px;
	}
.newstop{
	width:100%;
	overflow:hidden;
	box-shadow:7px 0px 50px rgba(0,0,0,0.07);
}
.newstop .newtoplf{
	overflow:hidden;
	padding:0;
	height:528px;
	position:relative;
}
.newstop .newtoprt{
	padding:53px 66px 0 66px;
}
.newstop .newtoplf img{
	width:100%;
	height:100%;
	object-fit:cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.newstop .newtoplf:hover img{
	transform:translate(-50%, -50%) scale(1.03);
}
.newsdate_n{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	border-bottom:solid 1px #d5d6d9;
	padding-bottom:7px;
}
.newsdate_n .day{
	font-size:50px;
	color:#2c3441;
	font-weight:bold;
	font-family:Arial;
	line-height:60px;
}
.newstop .newtoprt h5{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#2c3441;
	line-height:32px;
	font-weight:normal;
	margin-top:46px;
	margin-bottom:18px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newstop .newtoprt p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#979a9e;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
}
.newsdate_n .year p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#2c3441;
	text-align:right;
	font-family:Arial;
}
.newstop .newtoprt .more{
	margin-top:54px;
}
.newsnr_n,.newsnr_n ul{
	width:100%;
}
.newsnr_n{
	margin-top:63px;
}
.newsnr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.newsnr_n ul li{
	width:49.5%;
	overflow:hidden;
	height:215px;
	background:#fff;
	margin:15px 1% 15px 0;
	box-shadow:0px 0px 29px rgba(0,0,0,0.08);
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.newsnr_n ul li a{
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	}
.newsnr_n ul li:nth-child(2n){
	margin-right:0;
	}
.newsnr_n ul li .date2{
	width:18.8%;
	overflow:hidden;
	text-align:center;
}
.newsnr_n ul li .date2 .day2{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#2c3441;
	font-weight:bold;
	font-family:Arial;
	line-height:50px;
}
.newsnr_n ul li .date2 p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#2c3441;
}
.newsnr_n ul li .newsms_n{
	width:81.2%;
	overflow:hidden;
	padding:0 45px;
	border-left:solid 1px #d5d6d9;
}
.newsnr_n ul li .newsms_n h5,.newsnr_n ul li .newsms_n p{
	width:100%;
	overflow:hidden;
}
.newsnr_n ul li .newsms_n h5{
	font-size:19px;
	color:#2c3441;
	line-height:30px;
	font-weight:normal;
	margin-bottom:20px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsnr_n ul li .newsms_n p{
	font-size:15px;
	color:#82858a;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsnr_n ul li:hover{
	background:#163789;
}
.newsnr_n ul li:hover .date2 .day2,.newsnr_n ul li:hover .date2 p,.newsnr_n ul li:hover .newsms_n h5,.newsnr_n ul li:hover .newsms_n p{
	color:#fff;
}
.newsnr_n ul li:hover .newsms_n{
	border-color:#fff;
}
.newsinfo_n{
	margin-top:60px;
	margin-bottom:60px;
}
.newslf_n{
	width:72%;
    overflow: hidden;
}
.newslfbg_n{
	width:100%;
    overflow: hidden;
	background:#fff;
}
.newslf_n .newstit_n{
	width:100%;
    overflow: hidden;
	border-left:solid 8px #163789;
	padding-left:52px;
	border-bottom:solid 1px #e9eaec;
	padding-top:30px;
	padding-bottom:20px;
	padding-right:55px;
}
.newsrt_n{
	width:26%;
    overflow: hidden;
	background:#fff;
	padding-bottom:65px;
}
.newsrt_n h3{
	width:100%;
    overflow: hidden;
	font-size:22px;
	color:#2c3441;
	font-weight:normal;
	line-height:32px;
	padding:16px 0 16px 25px;
	border-left:solid 2px #163789;
	border-bottom:solid 1px #e9eaec;
}
.newsrt_n ul,.newsrt_n ul li{
	width:100%;
	overflow: hidden;
}
.newsrt_n ul{
	padding:0 35px;
}
.newsrt_n ul li{
	margin-top:40px;
	border-bottom:solid 1px #e9eaec;
	padding-bottom:27px;
}
.newsrt_n ul li h5{
	font-size:18px;
	color:#2c3441;
	line-height:30px;
	font-weight:normal;
	margin-bottom:15px;
}
.newsrt_n ul li p{
	font-size:16px;
	color:#bebfc2;
	line-height:30px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsrt_n ul li p span{
	font-size:16px;
	color:#bebfc2;
	margin-left:26px;
}
.newsrt_n ul li:hover p,.newsrt_n ul li:hover p span{
	color:#163789;
}
.newstit_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 26px;
	line-height:36px;
    color: #2c3441;
	font-weight:normal;
	padding-bottom:4px;
	}
.newstit_n .fbtime{
	width: 100%;
    overflow: hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	}
.fbtimelf,.fbtimert{
	overflow:hidden;
	font-size:16px;
	color:#2c3441;
	line-height:30px;
}
.newslf_n .fbnr {
    width: 100%;
    overflow: hidden;
	padding:0 60px 60px 60px;
    margin-top: 55px;
    font-size: 16px;
    line-height: 30px;
    color: #6a6e75;
}
.newslf_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #6a6e75;
}
.newslf_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* gjzc_n
-------------------------------------------------------------- */
.gjzc_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.gjzcnr_n,.gjzcnr_n ul,.gjzcnr_n ul li,.gjzcnr_n ul li .gjzclf_n h5,.gjzcnr_n ul li .gjzclf_n p{
	width:100%;
	overflow:hidden;
	}
.gjzcnr_n ul li{
	display:flex;
	justify-content:space-between;
	border-bottom:solid 1px #e2e2e2;
	padding:35px 0;
	margin-top:18px;
}
.gjzcnr_n ul li:first-child{
	padding-top:0;
}
.gjzcnr_n ul li .gjzclf_n{
	width:75%;
	overflow:hidden;
}
.gjzcnr_n ul li .gjzclf_n h5{
	font-size:28px;
	color:#191516;
	line-height:38px;
	font-weight:normal;
	margin-bottom:16px;
	position:relative;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.gjzcnr_n ul li:hover .gjzclf_n h5{
	padding-left:20px;
}
.gjzcnr_n ul li .gjzclf_n h5::before{
	content:"";
	width:4px;
	height:26px;
	background:#e62830;
	position:absolute;
	left:0;
	top:6px;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.gjzcnr_n ul li:hover .gjzclf_n h5::before{
	opacity:1;
}
.gjzcnr_n ul li .gjzclf_n p{
	font-size:16px;
	color:#8e8d8f;
	line-height:30px;
}
.gjzcnr_n ul li:hover .gjzclf_n h5{
	color:#e62830;
}
.gjzcnr_n ul li i img{
	max-width:100%;
	height:auto;
}
.gjzcnr_n ul li i .iconh,.gjzcnr_n ul li:hover i .icon{
	display:none;
}
.gjzcnr_n ul li:hover i .iconh{
	display:block;
}

/* zyyw_n
-------------------------------------------------------------- */
.zyywbg{
	background:#fafafa;
}
.zyyw_n{
	width:100%;
	overflow:hidden;
	margin-top:80px;
	margin-bottom:60px;
}
.zyywnr_n,.zyywnr_n ul{
	width:100%;
}
.zyywnr_n ul li{
	width:100%;
	overflow:hidden;
	background:#fff;
	box-shadow:0px 0px 10px rgba(0,0,0,0.02);
	height:323px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:75px 0;
	position:relative;
}
.zyywnr_n ul li:first-child{
	margin-top:0;
}
.zyywnr_n ul li .num{
	position:absolute;
	left:25px;
	font-size:280px;
	color:#f5f5f5;
	line-height:280px;
	font-family:Arial;
	font-weight:bold;
	z-index:0;
}
.zyywnr_n ul li .zyywtext_n{
	width:52%;
	overflow:hidden;
	padding-left:90px;
	position:relative;
	z-index:9;
}
.zyywnr_n ul li h5,.zyywnr_n ul li p{
	width:100%;
	overflow:hidden;
}
.zyywnr_n ul li h5{
	font-size:35px;
	color:#191516;
	line-height:45px;
	font-weight:normal;
	margin-bottom:26px;
}
.zyywnr_n ul li p{
	font-size:20px;
	color:#717171;
	line-height:30px;
}
.zyywnr_n ul li .zyywimg_n{
	width:34.4%;
	overflow:hidden;
	position:relative;
}
.zyywnr_n ul li .zyywimg_n::before{
	content:"";
	width:0;
	height:0;
	border-left:216px solid #fff;
	border-right:216px solid transparent;
	border-bottom:323px solid transparent;
	position:absolute;
	left:0;
	top:0;
	z-index:9;
}
.zyywnr_n ul li .zyywimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.zyywnr_n ul li .zyywimg_n:hover img{
	transform:scale(1.02);
}
/* gf_n
-------------------------------------------------------------- */
.gf_n{
	margin-top:60px;
	margin-bottom:60px;
}
.gf_n h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#191516;
	font-weight:normal;
	line-height:45px;
}
.gfnr_n,.gfnr_n p{
	width:100%;
	overflow:hidden;
}
.gfnr_n{
	margin-top:25px;
	margin-bottom:54px;
}
.gfnr_n p{
	font-size:16px;
	color:#717171;
	line-height:30px;
}
.gf_n h5{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#191516;
	font-weight:normal;
	line-height:36px;
}
.gf_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-top:18px;
}
.gf_n ul li{
	width:23.25%;
	height:88px;
	overflow:hidden;
	background:#f1f1f1;
	font-size:18px;
	color:#717171;
	line-height:30px;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
}
.gfys_n{
	width:100%;
	overflow:hidden;
	background:url(../images/gfbg.jpg) no-repeat top center;
	background-size:cover;
	padding:178px 0;
}
.gfys_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.gfys_n ul li{
	width:30.75%;
	height:446px;
	overflow:hidden;
	border:solid 2px #fff;
	display:flex;
	align-items:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.gfys_n ul li:hover{
	border-color:#ee2221;
	background:rgba(255,255,255,0.9);
}
.gfys_n ul li .gfystext_n{
	width:100%;
	overflow:hidden;
	padding:0 18%;
}
.gfys_n ul li h5,.gfys_n ul li p{
	width:100%;
	overflow:hidden;
	text-align:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.gfys_n ul li h5{
	font-size:26px;
	color:#fff;
	line-height:36px;
	font-weight:normal;
	margin-bottom:38px;
}
.gfys_n ul li p{
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.gfys_n ul li:hover h5{
	color:#ee2221;
}
.gfys_n ul li:hover p{
	color:#383838;
}
/* tzms_n
-------------------------------------------------------------- */
.tzms_n{
	margin-top:126px;
	margin-bottom:110px;
}
.tzms_n h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	line-height:45px;
	color:#191516;
	font-weight:normal;
}
.tzms_n ul,.tzms_n ul li{
	width:100%;
	overflow:hidden;
}
.tzms_n ul{
	margin-top:15px;
}
.tzms_n ul li{
	font-size:18px;
	color:#191516;
	line-height:30px;
	background:#fff;
	padding:24px 46px;
	margin:30px 0;
}
/* sbaz_n
-------------------------------------------------------------- */
.sbaz_n{
	margin-top:90px;
	margin-bottom:90px;
}
.sbaz_n h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#191516;
	line-height:45px;
	font-weight:normal;
}
.sbaznr_n,.sbaznr_n p{
	width:100%;
	overflow:hidden;
}
.sbaznr_n{
	margin-top:28px;
}
.sbaznr_n p{
	font-size:16px;
	color:#717171;
	line-height:30px;
}
.sbaznr_n img{
	max-width:100%;
	height:auto;
}
/* project
-------------------------------------------------------------- */
.project{
	margin-top:60px;
	margin-bottom:60px;
}
.projectnr{
	width:100%;
	overflow:hidden;
}
.yjs_table{
	width:100%;
	overflow:auto;
}
.yjs_table table{
    width: 100%;
    white-space: nowrap;
}
.yjs_table table thead,.yjs_table table .thead tr{
	width:100%;
	overflow:hidden;
}
.yjs_table table,.yjs_table table tr,.yjs_table table td{
	border:none;
}
.yjs_table table th,.yjs_table table td{
	line-height:30px;
	text-align:center;
	padding:0 10px;
}
.yjs_table table th{
	height:66px;
	background:#e62830;
	font-size:18px;
	color:#fff;
}
.yjs_table table tbody tr{
	border-bottom:solid 1px #e2e2e2;
}
.yjs_table table td{
	height:80px;
	font-size:16px;
	color:#494646;
}
.yjs_casemore{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:center;
	margin-top:25px;
}
.yjs_casemore dl{
	cursor:pointer;
}
.yjs_casemore dl dt{
	font-size:16px;
	color:#2c3441;
	font-weight:normal;
	line-height:30px;
}
.yjs_casemore dl dt,.yjs_casemore dl dd{
	text-align:center;
}
/* contact_n
-------------------------------------------------------------- */
.contactbg{
	background:#f7f7f7;
}
.contact_n{
	width:100%;
	overflow:hidden;
	background:url(../images/contactbg.jpg) no-repeat left 245px;
	padding-top:76px;
	padding-bottom:140px;
	}
.contactlf_n{
	width:29%;
	overflow:hidden;
}
.contactlf_n span{
	display:block;
	width:1px;
	height:148px;
	background:#c3c5c9;
	margin-top:60px;
}
.contactewm_n{
	width:100%;
	overflow:hidden;
	display:flex;
	margin-top:85px;
}
.contactewm_n dl{
	overflow:hidden;
	margin-right:35px;
}
.contactewm_n dl dt,.contactewm_n dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.contactewm_n dl dt img{
	max-width:100%;
	height:auto;
}
.contactewm_n dl dd{
	font-size:15px;
	color:#252525;
	line-height:30px;
}
.contactrt_n{
	width:69%;
	overflow:hidden;
	background:#f9f9f9;
	box-shadow:0 0 30px rgba(0,0,0,0.06);
	padding:58px 80px 88px 80px;
	border-radius:30px;
}
.contactrt_n h4{
	width:100%;
	overflow:hidden;
	font-size:36px;
	color:#163789;
	line-height:46px;
	font-weight:normal;
	border-bottom:solid 1px #c3c5c9;
	padding-bottom:18px;
}
.contactnr_n{
	width:100%;
	overflow:hidden;
}
.contactnr_n dl{
	width:49%;
	overflow:hidden;
	margin-top:36px;
	float:left;
}
.contactnr_n dl:nth-child(2n+1){
	margin-right:1%;
}
.contactnr_n dl:nth-child(2n){
	margin-left:1%;
}
.contactnr_n dl:nth-child(3){
	clear:both;
}
.contactnr_n dl dt{
	width:9%;
	overflow:hidden;
	float:left;
	padding-top:16px;
}
.contactnr_n dl dt img{
	max-width:100%;
	height:auto;
}
.contactnr_n dl dd{
	width:91%;
	overflow:hidden;
	float:left;
}
.contactnr_n dl dd h6{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#252525;
	line-height:30px;
	font-weight:normal;
}
.contactnr_n dl dd p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#a5a5a5;
	font-family:Arial;
	line-height:30px;
}
.contactnr_n dl dd p a{
	font-size:18px;
	color:#a5a5a5;
}
.message_n{
	width:100%;
	overflow:hidden;
	background:none;
	padding:0;
}

/* 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{
	width:46px;
	height:46px;
	line-height:46px;
	text-align:center;
	color:#555;
	display:block;
	border: 1px solid #dbdbdc;
	border-radius:50%;
	float: left;
	margin:5px;
	font-size:16px;
	color:#1e1e1e;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.pages ul a:hover,.pages ul a.page-num-current{ 
	background:#163789;
	color:#fff;
	border-color:#163789;
	}
.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;
}
.news-exp{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-top:15px;
}
.news-exp div{
	width:49.5%;
	overflow:hidden;
	background:#fff;
	font-size:16px;
	color:#2c3441;
	padding:13px 24px;
	display:flex;
	align-items:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.news-exp div:last-child{
	justify-content:flex-end;
}
.news-exp div span,.news-exp div a{
	font-size:16px;
	color:#2c3441;
}
.news-exp div hr{
	width:1px;
	height:18px;
	border:none;
	border-left:solid 1px #2c3441;
	margin:0 25px;
}
.news-exp div:hover{
	background:#163789;
}
.news-exp div:hover span, .news-exp div:hover a{
	color:#fff;
}
.news-exp div:hover hr{
	border-color:#fff;
}
#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
	.header .nav,.header .mask,.side{
		display:none
	}

	/**/
	#toggleMenu {
	  position: absolute;
	  width: 100%;
	  min-height: 0;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  overflow: hidden;
	  top:0;
	  left:0;
	  z-index:-1;
	  opacity:0;
	}
	#toggleMenu.active{
		min-height:100vh;
	}
	#toggleMenu.active{
		z-index:999;
	  opacity:1;
	}
	#toggleMenu nav {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  padding: 40px 100px;
	  z-index: 100;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
			  justify-content: space-between;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}

	#toggleMenu nav .logo {
	  position: relative;
	  font-size: 2em;
	  color: #fff;
	  text-transform: uppercase;
	  font-weight: 700;
	  z-index: 15;
	  text-decoration: none;
	  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu nav .full-width-menu {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100vh;
	  width: 100%;
	  overflow-y: auto;
	  visibility: hidden;
	  opacity: 0;
	  background: #1b3b8b;
	  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: #1b3b8b;
	  -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: #1b3b8b;
	  -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:70px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 2px;
	  margin: 4px 5px;
	  width: 30px;
	  display: block;
	  background:#1b3b8b;
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.showHeader .toggle span,.hover .toggle span{
		background: #000;
	}
	.toggle.active span{
		background: #fff;
	}

	.toggle span:nth-child(2) {
	  width: 25px;
	  margin-left:0;
	}


	.toggle.active span:nth-child(1) {
	  -webkit-transform: rotate(-45deg) translate(-7px, 6px);
		  -ms-transform: rotate(-45deg) translate(-7px, 6px);
			  transform: rotate(-45deg) translate(-7px, 6px);
	}

	.toggle.active span:nth-child(2) {
	  opacity: 0;
	}

	.toggle.active span:nth-child(3) {
	  -webkit-transform: rotate(45deg) translate(-7px, -7px);
		  -ms-transform: rotate(45deg) translate(-7px, -7px);
			  transform: rotate(45deg) translate(-7px, -7px);
	}


	#toggleMenu .content {
	  position: relative;
	  z-index: 10;
	  text-align: center;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	  -webkit-transition-delay: 1s;
		   -o-transition-delay: 1s;
			  transition-delay: 1s;
	}

	#toggleMenu .content h2 {
	  position: relative;
	  color: #fff;
	  font-size: 4rem;
	  text-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu .content h2 span {
	  font-size: 0.2em;
	  font-weight: 300;
	  letter-spacing: 5px;
	  padding: 0 10px;
	  text-transform: uppercase;
	  background: #fff;
	  color: #111;
	  text-shadow: 0 5px 5px rgba(0,0,0,0);
	  -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
			  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu.active .content {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-200px);
		  -ms-transform: translateX(-200px);
			  transform: translateX(-200px);
	  -webkit-transition-delay: 0s;
		   -o-transition-delay: 0s;
			  transition-delay: 0s;
	}

	#toggleMenu .sci {
	  position: absolute;
	  bottom: 40px;
	  right: 100px;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  z-index: 100;
	}

	#toggleMenu .sci li {
	  list-style: none;
	  margin: 5px;
	  padding: 0 6px;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu.active .sci li {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateY(100px);
		  -ms-transform: translateY(100px);
			  transform: translateY(100px);
	}

	#toggleMenu .sci li a {
	  color: #111;
	  background: #fff;
	  text-decoration: none;
	  display: inline-block;
	  letter-spacing: 2px;
	  font-weight: 500;
	  font-size: 12px;
	  padding: 2px 5px;
	  text-transform: uppercase;
	}

	#toggleMenu .sci li a:hover {
	  background: #111;
	  color: #fff;
	}

	#toggleMenu .sci li:nth-child(1) {
	  -webkit-transition-delay: 0.2s;
		   -o-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}

	#toggleMenu .sci li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu .sci li:nth-child(3) {
	  -webkit-transition-delay: 0.4s;
		   -o-transition-delay: 0.4s;
			  transition-delay: 0.4s;
	}

}

@media only screen and (min-width: 1768px) and (max-width: 1768px) {
	
}

@media(max-width:1768px) {
	.promore{
		padding-left:4.5%;
	}
}
@media(max-width:1680px) {
	.cont,.cont1{
		width:88%;
	}
	.header .nav{
		margin-right:80px;
	}
	.header .navbar_nav li{
		padding:0 45px;
	}
	.banner .bannertext,.banner .swiper-pagination{
		left:6%;
	}
	.banner .bannertext h4{
		font-size:50px;
		line-height:60px;
	}
	.banner .bannertext p{
		font-size:18px;
		line-height:28px;
	}
	.promore {
        padding-left:6%;
    }
	.prolist .prolf h5{
		font-size:45px;
		line-height:55px;
	}
	.prolist .prolf p{
		font-size:20px;
		line-height:30px;
	}
	.aboutnr {
		width:45%;
	}
	.pkgl{
		height:920px;
	}
	.prolist .prolf {
		width:45%;
	}
	.ntit h3{
		font-size:45px;
		line-height:55px;
	}
	.menu_n ul li{
		margin-right:80px;
	}
	.aboutlf_n .aboutms_n {
		padding-top:40px;
		margin-top:40px;
	}
	.qywh_n ul li {
		width:28%;
	}
	.prolf_n {
		width:23%;
	}
	.pronr_n ul li .proimg_n{
		height:334px;
	}
	.proinfonr_n h1{
		font-size:30px;
		line-height:40px;
	}
	.nprofbnr h5{
		font-size:26px;
		line-height:36px;
	}
	.newstop .newtoprt {
		padding:50px 60px 0 60px;
	}
	.newsnr_n ul li .newsms_n{
		padding:0 40px;
	}
	.newstop .newtoplf{
		height:500px;
	}
	.contactrt_n{
		padding:58px 70px 80px 70px;
	}
	.contactrt_n h4{
		font-size:34px;
		line-height:44px;
	}
	.contactewm_n dl{
		margin-right:25px;
	}
	.sbnr_n dl dt{
		height:355px;
	}
	.aboutms p{
		margin-top:25px;
	}
	.aboutlist{
		margin-top:100px;
	}
	.aboutnr .more {
		margin-top:60px;
	}
}
@media(max-width:1600px) {
	.header .nav{
		margin-right:60px;
	}
	.header .navbar_nav li{
		padding:0 42px;
	}
	.header .mask{
		height:24vw;
	}
	.prolist .prolf h5{
		font-size:40px;
		line-height:50px;
	}
	.prolist .prolf p{
		font-size:18px;
		line-height:28px;
	}
	.menu_n ul li{
		margin-right:60px;
	}
	.erpgsnr_n ul li{
		padding: 40px 40px 0 40px;
	}
	.pronr_n ul li .proimg_n{
		height:318px;
	}
	.newstop .newtoplf {
        height:476px;
    }
	.newstop .newtoprt {
		padding:50px 50px 0 50px;
	}
	.pkgl{
		height:900px;
	}
	.contactewm_n dl dd{
		font-size:14px;
		line-height:25px;
	}
	.sbnr_n dl dt{
		height:338px;
	}
}
@media(max-width:1440px) {
	.header .nav{
		margin-right:40px;
	}
	.header .navbar_nav li{
		padding:0 36px;
	}
	.header .mask{
		height:26vw;
	}
	.banner .bannertext h4{
		font-size:45px;
		line-height:55px;
	}
	.banner .bannertext p{
		font-size:16px;
		line-height:26px;
	}
	.tit p{
		font-size:70px;
		line-height:70px;
	}
	.prolist .prolf h5{
		font-size:35px;
		line-height:45px;
	}
	.prolist .prolf p{
		font-size:16px;
		line-height:26px;
	}
	.about{
		padding-top:80px;
	}
	.aboutlist{
        margin-top:80px;
    }
	.aboutlist ul li dl dt .timer{
		font-size:60px;
		line-height:60px;
	}
	.aboutms p{
        margin-top:15px;
    }
	.cloud-product-ul li h5{
		font-size:26px;
		line-height:36px;
	}
	.cloud-product-ul li.active .ywlynr {
		padding:0 80px;
	}
	.newsnr .newslf .newslfbot{
		padding:35px 28px 0 28px;
	}
	.newsnr .newsin{
		padding:76px 30px 0 30px;
	}
	.newsnr .newsrt ul li .newsms h5,.newsnr .newsin h5,.newsnr .newslf .newslfbot h5{
		font-size:18px;
	}
	.pkglcont .more {
		margin-top:100px;
	}
	.pkgl{
		height:800px;
	}
	.menu_n ul li{
		margin-right:40px;
	}
	.about_n .aboutlf_n{
		padding-top:0;
	}
	.qywh_n ul li h5{
		font-size:26px;
		line-height:36px;
	}
	.erpgsnr_n ul li{
		padding:30px 30px 0 30px;
	}
	.pronr_n ul li .proimg_n{
		height:286px;
	}
	.proinfonr_n h1{
		font-size:26px;
		line-height:36px;
	}
	.nprofbnr h5{
		font-size:24px;
		line-height:34px;
	}
	.messagenr{
		padding:22px 50px 80px 50px;
	}
	.newsnr_n ul li .newsms_n{
		padding:0 30px;
	}
	.newstop .newtoplf{
		height:428px;
	}
	.newstop .newtoprt h5,.newstop .newtoprt .more {
		margin-top:40px;
	}
	.newstit_n h1{
		font-size: 24px;
		line-height: 34px;
	}
	.contactrt_n{
		padding:50px 60px 60px 60px;
	}
	.contactrt_n h4{
		font-size:30px;
		line-height:40px;
	}
	.contactnr_n dl dt{
		width:11%;
	}
	.contactnr_n dl dd{
		width:89%;
	}
	.contactewm_n dl{
        margin-right:15px;
    }
	.sbnr_n dl dt{
		height:304px;
	}
}
@media(max-width:1360px) {
	.header .nav{
		margin-right:30px;
	}
	.header .navbar_nav li{
		padding:0 33px;
	}
	.header .mask{
		height:30vw;
	}
	.banner .bannertext h4{
		font-size:40px;
		line-height:50px;
	}
	.banner .bannertext p{
		font-size:14px;
		line-height:24px;
	}
	.prolist .prolf h5{
		font-size:30px;
		line-height:40px;
	}
	.prolist .prolf p{
		font-size:14px;
		line-height:24px;
	}
	.aboutnr{
        width:48%;
    }
	.pkgllist {
		padding:0 100px;
	}
	.pkglcont .more {
        margin-top:80px;
    }
	.pkgl{
		height:760px;
	}
	.pronr_n ul li .proimg_n{
		height:270px;
	}
	.newsrt_n ul {
		padding:0 30px;
	}
	.contactewm_n dl {
        margin-right:10px;
    }
	.sbnr_n dl dt{
		height:287px;
	}
	.cloud-product-ul li.active .ywlynr {
		padding:0 60px;
	}
}
@media(max-width:1300px) {
	.aboutlf_n .aboutms_n {
        padding-top:30px;
        margin-top:30px;
    }
}
@media(max-width:1280px) {
	.header .nav{
		margin-right:20px;
	}
	.header .navbar_nav li{
		padding:0 30px;
	}
	.header .mask{
		height:34vw;
	}
	.banner .bannertext .more {
		margin-top:50px;
	}
	.promore a hr{
		margin-left:30px;
	}
	.pronr .tit{
		top:8%;
	}
	.prolist .prolf hr{
		margin-top:20px;
	}
	.tit p{
		font-size:60px;
		line-height:60px;
	}
	.prolist .prolf h5{
		font-size:25px;
		line-height:35px;
	}
	.aboutlist ul li dl dt .timer {
        font-size:50px;
        line-height:50px;
    }
	.cloud-product-ul li h5{
		font-size:24px;
		line-height:34px;
	}
	.cloud-product-ul li.active .ywlynr {
		padding:0 50px;
	}
	.newsnr .newslf .newslfbot{
		padding:35px 20px 0 20px;
	}
	.newsnr .newsin{
		padding:76px 20px 0 20px;
	}
	.pkgllist {
		padding:0 80px;
	}
	.pkglcont .more {
        margin-top:60px;
    }
	.pkgllist h5{
		font-size:26px;
		line-height:36px;
	}
	.pkgllist p{
		font-size:15px;
		line-height:25px;
	}
	.pkgl{
		height:720px;
	}
	.ntit h3 {
        font-size: 40px;
        line-height: 50px;
    }
	.ntit p{
		font-size:18px;
		line-height:28px;
	}
	.qywh_n ul li{
        width:30%;
    }
	.more a{
		width:186px;
	}
	.erpgsnr_n ul li h5{
		font-size:20px;
		line-height:30px;
	}
	.erpgsnr_n ul li {
        padding:30px 20px 0 20px;
    }
	.pronr_n ul li .proimg_n{
		height:254px;
	}
	.proinfonr_n h1{
		font-size:24px;
		line-height:34px;
	}
	.nprofbnr h5{
		font-size:22px;
		line-height:32px;
	}
	.messagenr{
		padding:22px 40px 60px 40px;
	}
	.newsdate_n .day {
        font-size: 40px;
        line-height: 50px;
    }
	.newstop .newtoprt {
		padding:40px 40px 0 40px;
	}
	.newstop .newtoprt h5{
		font-size:20px;
		line-height:30px;
		margin-top:40px;
	}
	.newstop .newtoprt .more{
		margin-top:40px;
	}
	.newsnr_n ul li .date2 .day2{
		font-size:40px;
		line-height:40px;
	}
	.newstop .newtoplf{
		height:426px;
	}
	.contactrt_n{
		padding:50px 40px 60px 40px;
	}
	.sbnr_n dl dt{
		height:270px;
	}
}
@media(max-width:1200px) {
	.header .navbar_nav li{
		padding:0 25px;
	}
	.header .mask{
		height:38vw;
	}
}
@media(max-width:1152px) {
	.header .navbar_nav li{
		padding:0 20px;
	}
	.header .mask{
		height:42vw;
	}
	.banner .bannertext h4:last-of-type {
		margin-bottom:20px;
	}
	.banner .bannertext .more {
        margin-top:40px;
    }
	.banner .swiper-pagination{
		bottom:30px;
	}
	.promore a hr {
		width:100px;
	}
	.bzlclf_n{
		padding-top:40px;
	}
	.bzlcnr_n {
		margin-top:40px;
	}
	.pronr_n ul li .proimg_n{
		height:229px;
	}
	.newstop .newtoplf{
		height:383px;
	}
	.newstop .newtoprt h5,.newstop .newtoprt .more{
		margin-top:30px;
	}
	.newstop .newtoprt h5{
		margin-bottom:10px;
	}
	.newstop .newtoprt {
        padding:30px 40px 0 40px;
    }
	.pkgllist {
        padding:0 60px;
    }
	.pkglcont .more {
        margin-top:40px;
    }
	.contactrt_n {
        padding: 50px 30px 60px 30px;
    }
	.sbnr_n dl dt{
		height:243px;
	}
	.footernr .footerlf{
		width:32%;
	}
	.footernr .footerrt{
		width:65.5%;
	}
}
@media(max-width:1080px) {
	.header .nav{
		margin-right:10px;
	}
	.header .navbar_nav li{
		padding:0 18px;
	}
}

@media(max-width:1024px) {
	.erpgsnr_n ul li {
        padding: 20px 20px 0 20px;
    }
	.pronr_n ul li .proimg_n{
		height:203px;
	}
	.sbnr_n dl dt{
		height:216px;
	}
}
@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.search-btn{
		margin-left:10px;
	}
	.logo img{
		height:30px;
	}
	.banner,.banner_n{
		margin-top:60px;
	}
	.promenu,.promore{
		display:none;
	}
	.prolf_n ul{
		padding-top: 20px;
	}
	.pronr .swiper-button{
		bottom:0;
	}
	.news{
		padding-top:60px;
		padding-bottom:60px;
	}
	.newsnr .newslf,.newsnr .newsin,.newsnr .newsrt{
		width:100%;
	}
	.newsnr .newsin,.newsnr .newsrt{
		margin-top:30px;
	}
	.newsnr .newsin{
		margin-left:0;
	}
	.newsnr .newslf .newslfbot{
		height:auto;
		padding:30px;
	}
	.newsnr .newsin{
		height:auto;
        padding:40px 20px;
    }
	.newsnr .newsin h5,.newsnr .newsin p{
		margin-top:20px;
	}
	.newsnr .newsin .more {
		margin-top:30px;
	}
	.menu_n,.positionnr .positionrt{
		width:100%;
	}
	.positionnr .positionrt{
		min-height:60px;
		height:auto;
		justify-content:left;
	}
	.menu_n ul{
		flex-wrap:wrap;
	}
	.menu_n ul li{
		width:24.25%;
		height:50px;
		margin-right:0;
		justify-content:center;
		margin:0 2px 0 0;
	}
	.menu_n ul li:nth-child(4n){
		margin-right:0;
	}
	.about_n{
		height:auto;
		padding-top:60px;
	}
	.about_n .aboutlf_n,.about_n .aboutimg_n{
		width:100%;
	}
	.about_n .aboutimg_n{
		position:inherit;
		top:0;
		margin-top:40px;
	}
	.prolf_n,.prort_n{
		width:100%;
	}
	.prort_n{
		margin-top:30px;
	}
	.pronr_n ul li {
		width:31.33333333333333333333%;
		margin:0 3% 40px 0;
	}
	.pronr_n ul li .proimg_n{
        height:282px;
    }
	.contactlf_n,.contactrt_n{
		width:100%;
	}
	.contactrt_n{
		margin-top:30px;
	}
	.contactlf_n span{
		display:none;
	}
	.contactewm_n{
		margin-top:40px;
	}
	.contact_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.footer{
		padding:50px 0 0 0;
	}
	.footernr .footerlf,.footernr .footerrt{
		width:100%;
	}
	.footernr .footerrt{
		margin-top:30px;
	}
	.botlogo{
		margin-bottom:20px;
	}
	.footerrt ul li p{
		display:none;
	}
	.footerrt ul li h4{
		margin-bottom:10px;
	}
	.bot{
		margin-top:30px;
	}
}
@media(max-width:991px) {
	.banner .bannertext{
		top:16%;
	}
	.banner .swiper-pagination {
        bottom: 15px;
    }
	.banner .bannertext h4{
		font-size:35px;
		line-height:45px;
	}
	.banner .bannertext p{
		font-size:12px;
		line-height:22px;
	}
	.swiper-pagination-bullet{
		margin-right:15px;
	}
	.shubiao{
		bottom:15px;
	}
	.mouse{
		width: 20px;
		height: 34px;
	}
	.tit p {
        font-size:50px;
        line-height:50px;
    }
	.pro{
		padding-bottom:52px;
	}
	.pronr .tit {
		position:inherit;
        top:0;
    }
	.about{
        padding-top:60px;
    }
	.aboutlist{
		margin-top:60px;
	}
	.aboutnr {
        width:100%;
    }
	.aboutnr .more {
        margin-top:30px;
    }
	.aboutlist ul li dl dt .timer {
        font-size:40px;
        line-height:40px;
    }
	.aboutlist ul li dl dt,.aboutlist ul li dl dd{
		font-size:16px;
	}
	.aboutlist ul li dl dt .timer{
		margin-right:5px;
	}
	.aboutlist ul li{
		padding:0 10px;
	}
	.about .aboutimg{
		display:none;
	}
	.yyly .tit{
		top:20px;
	}
	.cloud-product-ul li,.cloud-product-ul li.active{
		width:50%;
		height:50%;
	}
	.cloud-product-ul li.active .ywlynr{
        padding:0 30px;
    }
	.cloud-product-ul li .ywlynr .ywlyicon{
		margin-bottom:20px;
	}
	.cloud-product-ul li .ywlyms{
		margin-top:20px;
	}
	.cloud-product-ul li:nth-child(1) .ywlynr,.cloud-product-ul li:nth-child(2) .ywlynr{
		bottom:30px;
	}
	.cloud-product-ul li .ywlynr .ywlyicon img{
		width:90px;
	}
	.newsmenu ul li a,.more a{
		width:150px;
		height:48px;
		padding-left:20px;
	}
	.newsmenu ul li a i,.more a i{
		margin-right:30px;
	}
	.more a:hover i {
		margin-right:25px;
	}
	.pkgl{
        height:auto;
		padding-bottom:60px;
    }
	.pkgl .pkgllf,.pkglcont{
		width:100%;
	}
	.pkgl .pkgllf{
		padding-top:60px;
	}
	.pkgl .pkgllf ul {
		margin-top:40px;
	}
	.pkgl .pkgllf ul li{
		margin-top:10px;
	}
	.pkglcont{
		position:inherit;
		left:0;
		margin-left:0;
		top:0;
		margin-top:30px;
	}
	.ntit h3 {
        font-size:35px;
        line-height:45px;
    }
	.ntit p{
		font-size:16px;
		line-height:26px;
	}
	.qywh_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.qywh_n ul li h5 {
        font-size:24px;
        line-height:34px;
    }
	.qywh_n ul{
		flex-wrap:wrap;
		margin-top:50px;
	}
	.qywh_n ul li {
        width:47%;
		margin:10px 0;
    }
	.qywh_n ul li .icon img{
		width:80px;
	}
	.qywh_n ul li h5,.qywh_n ul li p{
		margin-top:20px;
	}
	.zzjg_n{
		padding-top:60px;
		padding-bottom:60px;
	}
	.zzjgnr_n{
		margin-top:40px;
	}
	.erpgsnr_n{
		padding:60px 0;
	}
	.erpgsnr_n ul li{
		width:100%;
		height:auto;
		padding:20px;
	}
	.gylcnr_n {
		padding-top:0;
		margin-bottom:60px;
	}
	.bzlclf_n,.bzlcimg_n{
		width:100%;
	}
	.bzlclf_n{
		padding-top:0;
		margin-bottom:30px;
	}
	.bzlcimg_n{
		text-align:left;
	}
	.bzlc_n {
		margin-top:60px;
		margin-bottom:60px;
	}
	.pronr_n ul li .proimg_n{
        height:273px;
    }
	.proinfonr_n h1{
		font-size:22px;
		line-height:32px;
	}
	.proinfo_n .propic_n,.proinfo_n .proinfonr_n{
		width:100%;
	}
	.nprofbnr h5{
		font-size:20px;
		line-height:30px;
	}
	.news_n {
		margin-top:60px;
		margin-bottom:60px;
	}
	.newstop .newtoprt {
        padding:30px;
    }
	.newstop .newtoprt h5{
		margin-top:20px;
	}
	.newstop .newtoprt .more {
		margin-top:30px;
	}
	.newsnr_n {
		margin-top:40px;
	}
	.newsnr_n ul li .newsms_n {
        padding:0 20px;
    }
	.newsnr_n ul li{
		width:100%;
		height:auto;
		padding:20px 0;
	}
	.newslf_n,.newsrt_n{
		width:100%;
	}
	.newsrt_n{
		margin-top:30px;
	}
	.newslf_n .newstit_n{
		padding:20px 30px;
	}
	.newslf_n .fbnr{
		padding:30px;
		margin-top:10px;
	}
	.news-exp div{
		width:100%;
	}
	.news-exp div:last-child {
		justify-content:left;
	}
	.newstit_n h1 {
        font-size:22px;
        line-height:32px;
    }
	.sbnr_n dl dt{
		height:209px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.bot {
		padding: 30px 0;
	}
}
@media(max-width:860px) {
	.pronr_n ul li .proimg_n{
        height:237px;
    }
	.sbnr_n dl dt{
		height:181px;
	}
}
@media(max-width:768px) {
	.banner .bannertext h4{
		font-size:30px;
		line-height:40px;
	}
	.banner .bannertext p{
		font-size:10px;
		line-height:20px;
	}
	.banner .bannertext h4:last-of-type {
        margin-bottom:10px;
    }
	.banner .bannertext .more {
        margin-top:30px;
    }
	.tit p {
        font-size:40px;
        line-height:40px;
    }
	.tit h3,.tit h3 a{
		font-size:30px;
		line-height:40px;
	}
	.aboutlist ul li dl dt .timer {
        font-size:35px;
        line-height:35px;
    }
	.ntit h3 {
        font-size:30px;
        line-height:40px;
    }
	.ntit p{
		font-size:14px;
		line-height:24px;
	}
	.honornr_n ul li{
		width:48%;
		margin:10px 2% 10px 0;
	}
	.honornr_n ul li:nth-child(4n){
		margin-right:2%;
	}
	.honornr_n ul li:nth-child(2n){
		margin-right:0;
	}
	.erp_n ul{
		flex-wrap:wrap;
	}
	.erp_n ul li{
		width:100% !important;
		margin:10px 0;
	}
	.pronr_n ul li .proimg_n{
        height:211px;
    }
	.newstop .newtoplf {
        height: 350px;
    }
	.contactrt_n h4 {
        font-size:26px;
        line-height:36px;
    }
	.sbnr_n dl dt{
		height:162px;
	}
}
@media(max-width:767px) {
	.prolist .prolf,.prolist .prort{
		width:100%;
		margin-top:30px;
	}
	.pronr .swiper-button{
		position:inherit;
		margin-top:20px;
	}
	.newsmenu{
		width:100%;
		margin-top:30px;
	}
	.newsmenu ul{
		justify-content:left;
	}
	.pronr_n ul li{
        width:49%;
        margin:0 2% 30px 0;
    }
	.pronr_n ul li:nth-child(3n){
		margin-right:2%;
	}
	.pronr_n ul li:nth-child(2n){
		margin-right:0;
	}
	.pronr_n ul li .proimg_n{
        height:330px;
    }
	.sbnr_n dl{
		width:49%;
		margin:20px 2% 20px 0;
	}
	.sbnr_n dl:nth-child(3n) {
		margin-right:2%;
	}
	.sbnr_n dl:nth-child(2n) {
		margin-right:0;
	}
	.sbnr_n dl dt{
        height:248px;
    }
}
@media(max-width:640px) {
	.shubiao{
		display:none;
	}
	.banner .swiper-slide .img img{
		width:120%;
		margin-left:-10%;
	}
	.banner .swiper-pagination {
        bottom:10px;
    }
	.banner .bannertext h4 {
        font-size:25px;
        line-height:35px;
    }
	.banner .bannertext .more a{
		width:120px;
		font-size:16px;
		padding-left:10px;
		height:40px;
	}
	.banner .bannertext .more a i{
		margin-right:10px;
	}
	.swiper-pagination-bullet{
		width:20px;
		height:20px;
	}
	.swiper-pagination-bullet::after{
		width:10px;
		height:10px;
		left:3px;
		top:3px;
	}
	.aboutlist{
		height:auto;
	}
	.aboutlist ul li{
		width:50%;
		padding:20px;
	}
	.aboutlist ul li .icon{
		margin-top:0;
	}
	.aboutlist ul li dl{
		margin-top:10px;
	}
	.newsmenu ul li{
		width:31.33333333333333333333%;
		margin:0 1%;
	}
	.newsmenu ul li a{
		width:100%;
	}
	.newsmenu ul li a i{
        margin-right:20px;
    }
	.cloud-product-ul li .ywlynr .ywlyicon img{
        width:80px;
    }
	.cloud-product-ul li.active .ywlynr {
        padding:0 20px;
    }
	.cloud-product-ul li h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.cloud-product-ul li .ywlyms, .cloud-product-ul li .ywlyms p{
		font-size:14px;
		line-height:25px;
	}
	.cloud-product-ul li .ywlynr .ywlyicon {
        margin-bottom:10px;
    }
	.cloud-product-ul li .ywlyms {
        margin-top:10px;
    }
	.pkgllist h5 {
        font-size: 24px;
        line-height: 34px;
    }
	.menu_n ul li{
		width:48%;
	}
	.menu_n ul li:nth-child(3n){
		margin-right:2%;
	}
	.menu_n ul li:nth-child(2n){
		margin-right:0;
	}
	.pronr_n ul li .proimg_n{
        height:275px;
    }
	.newsnr_n ul li .date2 .day2 {
        font-size:35px;
        line-height:35px;
    }
	.newstop .newtoplf {
        height:300px;
    }
	.newslf_n .newstit_n,.newslf_n .fbnr{
        padding:20px;
    }
	.newsrt_n ul{
        padding:0 20px;
    }
	.newsrt_n h3{
		padding:16px 20px;
	}
	.newsrt_n{
		padding-bottom:40px;
	}
	.newsrt_n ul li {
		margin-top:20px;
		padding-bottom:20px;
	}
	.messagenr{
		padding:22px 30px 60px 30px;
	}
	.contactnr_n dl{
		width:100%;
		margin-top:30px;
	}
	.contactnr_n dl:nth-child(2n+1),.messagenr dl:nth-child(2n+1){
		margin-right:0;
	}
	.contactnr_n dl:nth-child(2n),.messagenr dl:nth-child(2n){
		margin-left:0;
	}
	.contactrt_n{
        padding: 40px 20px;
    }
	.contactrt_n h4 {
        font-size: 24px;
        line-height: 34px;
    }
	.messagenr dl{
		width:100%;
	}
	.messagenr dl dd textarea{
		height:180px;
	}
	.btn1 .intxt{
		width:120px;
	}
	.sbnr_n dl dt{
        height:207px;
    }
	.botewm dl{
		margin-left:20px;
	}
	.searchlist ul li .searchin h5{
		font-size:22px;
		line-height:32px;
	}
	.searchlist ul li .searchin p{
		font-size:16px;
	}
	.searchlist ul li .searchin,.searchlist ul li:hover .searchin{
		background-size:20px;
	}
	.searchlist ul li{
		padding-bottom: 20px;
		margin-top: 20px;
	}
	.searchlist ul li .searchin{
		padding:0 40px 0 0;
	}
}
@media(max-width:540px) {
	.banner .bannertext h4 {
        font-size: 20px;
        line-height: 30px;
    }
	.banner .bannertext .more {
        margin-top:20px;
    }
	.newsmenu ul li a{
		padding-left:10px;
	}
	.newsmenu ul li a i{
        margin-right:10px;
    }
	.pkgllist h5{
		margin-bottom:10px;
	}
	.pkglcont .more {
        margin-top:20px;
    }
	.pkgllist h5 {
        font-size: 22px;
        line-height: 32px;
    }
	.pkgllist p {
        font-size: 14px;
        line-height: 24px;
    }
	.pronr_n ul li .proimg_n{
        height:232px;
    }
	.newstop .newtoplf {
        height:280px;
    }
	.sbnr_n dl dt{
        height:174px;
    }
}
@media(max-width:500px) {
	.qywh_n ul li {
        width:100%;
    }
}
@media(max-width:430px) {
	.banner .bannertext .more {
        margin-top:10px;
    }
	.banner .bannertext {
        top:10%;
    }
	.banner .bannertext .more a {
        width:100px;
        font-size:14px;
        height:35px;
    }
	.messagenr{
		padding:22px 20px 60px 20px;
	}
}
@media(max-width:425px) {
	.banner .bannertext h4 {
        font-size: 18px;
        line-height: 28px;
    }
	.banner .bannertext p {
        font-size: 8px;
        line-height: 18px;
    }
	.banner .bannertext h4:last-of-type {
        margin-bottom:5px;
    }
	.banner .bannertext .more a {
        width: 90px;
        font-size: 12px;
        height: 30px;
    }
	.banner .swiper-pagination {
        bottom:5px;
    }
	.tit p {
        font-size:35px;
        line-height:35px;
    }
	.tit h3,.tit h3 a{
		font-size:26px;
		line-height:36px;
	}
	.aboutlist ul li dl dt .timer{
        font-size:30px;
        line-height:30px;
    }
	.aboutlist ul li dl dt, .aboutlist ul li dl dd {
        font-size:14px;
    }
	.pkgllist {
        padding: 0 40px;
    }
	.pkglmsnr .more a {
        width: 120px;
		height:40px;
        padding-left:10px;
		font-size:16px;
    }
	.pkglmsnr .more a i{
        margin-right:10px;
    }
	.newsmenu ul li{
        width:48%;
    }
	.newsmenu ul li:last-child{
        display:none;
    }
	.newsnr .newslf .newsimg{
		height:240px;
	}
	.newsnr .newsrt ul li .newsimg2,.newsnr .newsrt ul li .newsms{
		width:100%;
	}
	.newsnr .newsrt ul li .newsms{
		margin-top:10px;
	}
	.cloud-product-ul li.active .ywlynr {
        padding:0 10px;
    }
	.menu_n ul li:nth-child(3n){
		margin-right:0;
	}
	.pronr_n ul li .proimg_n{
        height:183px;
    }
	.pronr_n ul li .probot_n h5{
		font-size:14px;
		line-height:25px;
	}
	.newstop .newtoplf {
        height:253px;
    }
	.newstop .newtoprt {
        padding:30px 20px;
    }
	.contactrt_n h4 {
        font-size: 22px;
        line-height: 32px;
    }
	.contactnr_n dl dt{
		width:12%;
	}
	.contactnr_n dl dd{
		width:88%;
	}
	.sbnr_n dl dt{
        height:137px;
    }
	.botewm dl{
		margin-left:10px;
	}
	.botewm dl dd{
		font-size:14px;
		line-height:25px;
	}
	.footerrt ul{
		flex-wrap:wrap;
	}
	.footerrt ul li{
		width:33.333333333333333333%;
		text-align:center;
	}
	.footerrt ul{
		justify-content:left;
	}
}
@media(max-width:424px){
	.newsnr_n ul li .date2{
		width:100%;
		text-align:left;
	}
	.newsnr_n ul li .newsms_n{
		width:100%;
		border-left:none;
		padding:0;
		margin-top:5px;
	}
	.newsnr_n ul li{
		padding:20px;
		height:auto;
	}
	.newsnr_n ul li .newsms_n h5{
		margin-bottom:10px;
	}
}
@media(max-width:375px) {
	.banner .bannertext {
        top:8%;
    }
	.pronr_n ul li .proimg_n{
        height:161px;
    }
	.sbnr_n dl dt{
        height:121px;
    }
	.newstop .newtoplf {
        height:223px;
    }
	.newsnr .newslf .newsimg{
		height:220px;
	}
	.pkgllist {
        padding: 0 30px;
    }
	.pkgllist h5{
        font-size: 20px;
        line-height: 30px;
    }
	.pkgllist p {
        font-size: 12px;
        line-height: 22px;
    }
	.pkglcont .more {
        margin-top:10px;
    }
	.botewm dl dd{
		font-size:12px;
		line-height:22px;
	}
}
@media(max-width:320px) {
	.banner .bannertext h4 {
        font-size: 17px;
        line-height: 27px;
    }
	.pronr_n ul li .proimg_n{
        height:137px;
    }
	.sbnr_n dl dt{
        height:103px;
    }
	.newstop .newtoplf {
        height:190px;
    }
}