@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myOneFont;
	src: url('../font/BarlowCondensed-SemiBold_mianfeiziti.ttf'),
		 url('../font/BarlowCondensed-SemiBold_mianfeiziti.eot'); /* IE9 */
}

/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #d5d5d5; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */
.header{
	width:100%;
	height:80px;
	position:absolute;
	z-index: 999;
	top:0;
	padding:0 1%;
	}
.top{
	width:100%;
	overflow:hidden;
	line-height:40px;
	border-bottom:solid 1px rgba(255,255,255,0.25);
	font-size:13px;
	color:#fff;
	text-align:right;
	}
.top a{
	font-size:13px;
	color:#fff;
	}
.logo{
	height:100%;
	overflow:hidden;
	display:flex;
	align-items:center;
}
.logo img{
	max-width:100%;
	height:auto;
}
.search_box{
	width:278px;
	overflow:hidden;
	border-bottom:solid 1px #14212c;
	padding-bottom:26px;
	position:relative;
	}
.search_box input{
	width:100%;
	line-height:32px;
	padding-left:30px;
	background:none;
	font-size:22px;
	color:#14212c;
	text-align:right;
	}
.search_box button{
	width:20px;
	height:20px;
	line-height:20px;
	background:none;
	position:absolute;
	left:0;
	top:6px;
	}
.search_box button img{
	max-width:100%;
	height:auto;
}
.search_box input::placeholder{
    color: #14212c; /* 或者使用其他颜色代码 */
}
 
.search_box input::-webkit-input-placeholder{
    color: #14212c; /* 或者使用其他颜色代码 */
}
.search_box input::-moz-placeholder{ /* Firefox 19+ */
    color: #14212c; /* 或者使用其他颜色代码 */
}
.search_box input:-ms-input-placeholder{ /* IE 10+ */
    color: #14212c; /* 或者使用其他颜色代码 */
}
.language{
	height:100%;
	padding-left:76px;
	position:relative;
}
.language::after{
	content:"";
	width:1px;
	height:26px;
	background:#a4a8ac;
	position:absolute;
	left:0;
	top:50%;
	margin-top:-13px;
}
.language a{
	display:block;
	height:100%;
	display:flex;
	align-items:center;
	font-size:16px;
	color:#fff;
}
.language a span{
	color:#fff;
	font-size:16px;
	margin:0 14px 0 22px;
}
.language .languagenr{
	width:100px;
	height:0;
	opacity:0;
	background:#fff;
    position: absolute;
    right: 0;
    top:80px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.language:hover .languagenr{
	height:auto;
	opacity:1;
}
.language .languagenr p{
	width:100%;
	padding:0;
    line-height:30px;
    text-align: center;
	border-top:solid 1px #ccc;
}
.language .languagenr p a {
	width:100%;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-size:15px;
	display:block;
}
.language .languagenr p:hover a{
	color:#d1151e;
}
.small{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1); 
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}


/* nav
-------------------------------------------------------------- */
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	display: block;
}
.header .navbar_nav li{
	float:left;
	padding:0 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: #fff;
	font-size:18px;
	line-height:80px;
	position:relative;
}
.header .navbar_nav li:hover > a,.header .navbar_nav li.active > a{
	color:#d1151e;
	font-weight:bold;
}
.header .navbar_nav li > a::after{
	content:"";
	width:0;
	height:2px;
	background:#d1151e;
	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;
	background:#fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    left: 0;
	z-index:-1;
	-webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);

  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	display:block;
	width:100%;
	overflow:hidden;
	font-size: 16px;
	color: #252525;
	padding: 5px;
	line-height:30px;
	text-align: center;
	border-top:solid 1px #e2e2e2;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	opacity: 1;
  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #666;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #e70013;
}
.header .navbar_nav li.dropdown .dropdown_menu a:after{
	display:none;
}

#navToggle{
	display: none;
}

.cont{
	width:1670px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1670px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	position:relative;
	}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
.banner .img{
	width:100%;
	overflow:hidden;
	position:relative;
}
.banner .swiper-slide-active .img{
	visibility: visible; 
	-webkit-animation:scale-bg 4s linear forwards;
	animation:scale-bg 4s linear forwards;
}
.banner .bannertext{
	width:51%;
	overflow:hidden;
	position:absolute;
	left:6.5%;
	bottom:62px;
	z-index:99;
	}
.banner .bannertext .banimg{
	width:100%;
	overflow:hidden;
	margin-bottom:65px;
}
.banner .bannertext .banimg img{
	max-width:100%;
	height:auto;
	}
@-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;
  }
}
.banner .swiper-container .banimg{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .banimg img{
	max-width:100%;
	height:auto;
}
.banner .swiper-container p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-family:Arial;
	line-height:25px;
	margin-top:54px;
}
.banner .banmore{
	width:100%;
	overflow:hidden;
	margin-top:104px;
}
.banner .swiper-container .bannernr3 .banmore{
	margin:90px auto 0;
}
.banner .swiper-container .bannernr3 .banmore a{
	margin:auto;
	text-align:left;
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}
.banner .swiper-button-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 > 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:34px;
	height:6px;
	background:#fff;
	display: inline-block;
	margin-left:16px;
	outline:none;
	border-radius:3px;
	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{
	width:60px;
	background:#d1151e;
}
.swiper-pagination-bullet-active::after{
	background:#d1151e;
}

.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;
	right:6.5%;
	bottom:98px;
	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:52px;
	color:#282828;
	line-height:62px;
	font-weight:normal;
	}
.tit h3 a{
	font-size:52px;
	color:#282828;
	}
.tit p{
	width:100%;
	font-size:80px;
	color:#163789;
	line-height:80px;
	font-family:Arial;
	font-weight:900;
	}
.more{
	overflow:hidden;
}
.more a{
	display:block;
	width:180px;
	height:56px;
	font-size:16px;
	color:#fff;
	line-height:56px;
	border:solid 2px #d1151e;
	border-radius:28px;
	text-align:center;
	font-weight:bold;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	}
.more a span{
	font-size:16px;
	color:#fff;
	font-weight:bold;
	margin-left:12px;
}
.more a:hover{
	background:#d1151e;
	color:#fff;
}
.more a:hover span{
	color:#fff;
}

/* promenu
-------------------------------------------------------------- */
.promenu,.promenu ul{
	width:100%;
	overflow:hidden;
}
.promenu ul li{
	width:100%;
	height:80px;
	border-bottom:solid 1px #dfdfdf;
	display:flex;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.promenu ul li:last-child{
	border-bottom:none;
}
.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:#282828;
}
.promenu ul li a i img{
	max-width:100%;
	height:auto;
}
.promenu ul li:hover,.promenu ul li.active{
	border-color:#d1151e;
}
.promenu ul li a:hover span,.promenu ul li.active a span{
	color:#d1151e;
}
.pro{
	width:100%;
	overflow:hidden;
	padding-top:146px;
	padding-bottom:198px;
	position:relative;
}
.pronr{
	position:relative;
	z-index:9;
}
.prolf{
	width:82%;
	overflow:hidden;
}
.prort{
	width:16%;
	overflow:hidden;
}
.promore{
	width:100%;
	overflow:hidden;
	padding-bottom:2px;
	margin-top:206px;
}
.promore a{
	font-size:16px;
	color:#282828;
	border-bottom:solid 2px #313131;
}
.proen{
	width:100%;
	overflow:hidden;
	text-align:center;
	position:absolute;
	left:0;
	bottom:0;
	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 .pronrlf{
	width:27%;
	overflow:hidden;
}
.prolist .pronrlf h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#282828;
	line-height:40px;
	font-weight:normal;
	margin-bottom:14px;
}
.prolist .projs,.prolist .projs p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#969696;
}
.prolist .pronrlf hr{
	width:100%;
	border:none;
	border-bottom:solid 1px #9ba3b5;
	margin-top:38px;
}
.prolist .proimg{
	width:73%;
	overflow:hidden;
	text-align:center;
}
.prolist .proimg img{
	max-width:100%;
	height:auto;
}
.prolist .proimg:hover img{
	transform:scale(1.02);
}
.pronr .swiper-button{
	position:absolute;
	left:0;
	bottom:35%;
	display:flex;
	z-index:990;
}
.pronr .swiper-button div{
	width:66px;
	height:66px;
	background:#75849b;
	border-radius:7px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr .swiper-button .swiper-button-prev{
	background:#75849b url(../images/prev.png) no-repeat center;
}
.pronr .swiper-button .swiper-button-next{
	background:#75849b url(../images/next.png) no-repeat center;
	margin-left:10px;
}
.pronr .swiper-button div:hover{
	background-color:#d1151e;
}

/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
	padding-top:194px;
	padding-bottom:142px;
	}
.aboutnr{
	position:relative;
}
.aboutlf{
	width:32.3%;
	overflow:hidden;
	position:relative;
	z-index:7;
}
.aboutlf .tit h3{
	color:#fff;
}
.aboutnr .aboutrt{
	width:29.3%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	position:absolute;
	right:0;
	bottom:0;
}
.aboutnr .more{
	margin-top:60px;
}
.about .aboutlogo{
	width:40%;
	overflow:hidden;
	text-align:center;
	position:absolute;
	left:50%;
	margin-left:-20%;
	top:29%;
	z-index:0;
}
.about .aboutlogo img{
	max-width:100%;
	height:auto;
}
/* aboutlist
-------------------------------------------------------------- */
.aboutlist{
	width:100%;
	overflow:hidden;
	margin-top:244px;
}
.aboutlist ul{
	width:100%;
	height:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.aboutlist ul li{
	overflow:hidden;
}
.aboutlist ul li dl{
    overflow: hidden;
}
.aboutlist ul li dl dt,.aboutlist ul li dl dd{
	max-width:100%;
	overflow:hidden;
}
.aboutlist ul li dl dt{
	font-size:16px;
	color:#fff;
	font-weight:normal;
}
.aboutlist ul li dl dt .timer{
	font-size:58px;
	color:#d1151e;
	line-height:58px;
	font-family:Arial;
	margin-right:7px;
}
.aboutlist ul li dl dt font{
	font-size:32px;
	color:#fff;
	line-height:32px;
}
.aboutlist ul li dl dd{
	font-size:16px;
	color:#fff;
	line-height:26px;
}
/* yyly
-------------------------------------------------------------- */
.yyly{
	width:100%;
	height:960px;
	overflow:hidden;
	background:url(../images/yyly1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
}
.yyly .tit{
	position:absolute;
	left:6.5%;
	top:120px;
	z-index:990;
}
.yyly .tit h3,.yyly .tit h3 a{
	color:#fff;
}
.yyly ul{
    width:100%;
	height:100%;
}
.yyly ul li{
    width:20%;
	height:100%;
	overflow:hidden;
	float:left;
	position:relative;
}
.yyly ul li::after{
	content:"";
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	opacity:0;
	z-index:1;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
	background: -webkit-linear-gradient(bottom, #d1151e, rgba(209,21,30,0));
    background: -o-linear-gradient(top, #d1151e, rgba(209,21,30,0));
    background: -moz-linear-gradient(top, #d1151e, rgba(209,21,30,0));
    background: linear-gradient(to top, #d1151e, rgba(209,21,30,0));
}
.yyly ul li:hover::after{
	height:100%;
	opacity:1;
}
.yyly ul li .yylynr{
	width:100%;
	overflow:hidden;
	position:absolute;
	left:0;
	bottom:180px;
	padding:0 36px;
	z-index:9;
}
.yyly ul li:hover .yylynr{
	bottom:74px;
}
.yyly ul li .icon,.yyly ul li h5,.yyly ul li p{
	width:100%;
	overflow:hidden;
}
.yyly ul li .icon img{
	max-width:100%;
	height:auto;
}
.yyly ul li .icon,.yyly ul li h5{
	text-align:center;
}
.yyly ul li h5{
	font-size:25px;
	color:#fff;
	line-height:35px;
	font-weight:normal;
	margin-top:36px;
	height:105px;
}
.yyly ul li p{
	font-size:16px;
	color:#fff;
	height:0;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.yyly ul li .yylynr .more a{
	margin:0 auto 0;
	height:0;
	opacity:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.yyly ul li:hover h5{
	height:auto;
}
.yyly ul li:hover p{
	margin-top:18px;
	height:auto;
	opacity:1;
}
.yyly ul li:hover .yylynr .more a{
	margin:50px auto 0;
	height:auto;
	opacity:1;
	border-color:#fff;
	background:none;
}

/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:url(../images/newsbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:156px;
	padding-bottom:82px;
	position:relative;
}
.newsnr{
	position:relative;
	z-index:9;
}
.newsmenu,.newsmenu ul,.newsmenu ul li{
	width:100%;
	overflow:hidden;
}
.newsmenu{
	margin-top:100px;
}
.newsmenu ul li{
	position:relative;
	margin-top:18px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsmenu ul li:hover{
	padding-left:58px;
}
.newsmenu ul li a{
	font-size:26px;
	color:#282828;
}
.newsmenu ul li:hover a{
	color:#d1151e;
}
.newsmenu ul li::before{
	content:"";
	width:0;
	height:2px;
	background:#d1151e;
	position:absolute;
	left:0;
	top:50%;
	margin-top:-1px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsmenu ul li:hover::before{
	width:44px;
}
.newsnr .newslf{
	width:28%;
	overflow:hidden;
}
.newslf .more{
	margin-top:54px;
}
.newslf .more a{
	background:none;
	border:solid 1px #a9a9a9;
	color:#313131;
}
.newsnr .newsrt{
	width:72%;
	overflow:hidden;
	padding-top:16px;
}
.newsrt .swiper-container::after{
	content:"";
	width:100%;
	height:1px;
	background:#ccced6;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.newslist,.newslist .newsimg,.newslist .newsdate,.newslist h5,.newslist p{
	width:100%;
	overflow:hidden;
}
.newslist{
	padding-bottom:78px;
	position:relative;
}
.newslist::after{
	content:"";
	width:0;
	height:3px;
	background:#d1151e;
	position:absolute;
	left:0;
	bottom:0;
	z-index:2;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newslist:hover::after{
	width:100%;
}
.newslist .newsdate{
	font-size:16px;
	color:#282828;
	margin-top:34px;
}
.newslist h5{
	font-size:26px;
	color:#282828;
	line-height:36px;
	font-weight:normal;
	height:72px;
	margin-top:15px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newslist p{
	height:50px;
	font-size:15px;
	color:#757575;
	margin-top:24px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsmore{
	font-size:16px;
	color:#282828;
	line-height:30px;
	display:flex;
	margin-top:36px;
}
.newsmore i{
	display:block;
	width:28px;
	height:28px;
	margin-left:15px;
	border-radius:50%;
	background:#75849b url(../images/icon7.png) no-repeat center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newslist .newsimg{
	height:326px;
	border-radius:10px;
	background:#fff;
}
.newslist .newsimg img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.newslist:hover .newsimg img{
	transform:scale(1.02);
}
.newslist:hover h5{
	color:#d1151e;
}
.newsnr .newslf .swiper-button{
	width:100%;
	overflow:hidden;
	margin-top:248px;
}
.newsnr .newslf .swiper-button div{
	width:66px;
	height:66px;
	display:inline-block;
	border-radius:7px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsnr .newslf .swiper-button .swiper-button-prev{
	background:#75849b url(../images/prev.png) no-repeat center;
}
.newsnr .newslf .swiper-button .swiper-button-next{
	background:#75849b url(../images/next.png) no-repeat center;
	margin-left:5px;
}
.newsnr .newslf .swiper-button div:hover{
	background-color:#d1151e;
}
.newslist:hover .newsmore i,.newsnr_n ul li:hover .newsmore i{
	background-color:#d1151e;
}
/* yylymap
-------------------------------------------------------------- */
.yylymap{
	width:100%;
	height:960px;
	overflow:hidden;
	background:url(../images/pcmap.jpg) no-repeat top center;
	padding-top:254px;
	position:relative;
}
.yylymapnr{
	padding:0;
}
.yylymapnr h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#fff;
	line-height:45px;
	text-transform:uppercase;
}
.yylymapjs{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	line-height:30px;
	margin-top:65px;
}
.bjleft{
	width:33%;
	overflow:hidden;
	padding:0;
	}
.bjleft .tit,.bjleft .tit a,.bjleft .tit h3{
	color:#fff;
	}
.bjleft .tit{
	margin-bottom:34px;
	}
.bjleft .line_i{
	width:100%;
	height:1px;
	background:rgba(255,255,255,0.4);
	position:relative;
	}
.bjleft .line_i::before{
	content:"";
	width:120px;
	height:1px;
	background:#fff;
	position:absolute;
	left:0;
	top:0;
	}
.bjleft .bjjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:65px;
	}
.bjleft .bjbot{
	width:100%;
	overflow:hidden;
	font-size:39px;
	color:#fff;
	margin-top:112px;
	}
.bjleft .bjbot span{
	font-size:110px;
	color:#fff;
	font-weight:bold;
	margin-left:26px;
	}
.bjleft .bjbot i{
	font-size:70px;
	color:#fff;
	font-style:normal;
	font-weight:normal;
	}
.plusDiv{
	width: 170px;
	height: 170px;
	border:dashed 2px rgba(255,255,255,0.1);
	position:absolute;
	left:50%;
	margin-left:535px;
	top: 404px;
	outline: none;
	background-color: rgba(214, 21, 24, 0.15);
	border-radius: 100%;
	transform-origin: 0 0;
	display: block;
	z-index:1;
	display:flex;
	align-items:center;
	justify-content:center;
	}
.plusDiv::before{
	content: "";
	-webkit-border-radius: 100%;
	border-radius: 100%;
	height: 36px;
	width: 36px;
	background:#fff;
	border:solid 2px #d61518;
	position: absolute;
}
.plusDiv::after{
	content: "";
	-webkit-border-radius: 100%;
	border-radius: 100%;
	height: 200%;
	width: 200%;
	position: absolute;
	background-color: rgba(214, 21, 24, 0.08);
	border:dashed 2px rgba(255,255,255,0.1);
	animation: pulsate 1s ease-out;
	animation-iteration-count: infinite; /*无穷反复*/
	animation-delay: 1.1s;
}
.plusDiv span{
	display:block;
	width:16px;
	height:16px;
	border-radius:50%;
	background:#d61518;
	position:relative;
	z-index:99;
}
.plusDiv2{
	background:rgba(255,255,255,0.3);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	position:absolute;
	left:50%;
    animation: pulse 2s infinite;
	z-index:1;
}
.plusDiv2{
	width:30px;
	height:30px;
	top:640px;
	margin-left:684px;
}
.plusDiv2 span{
	display:block;
	width:8px;
	height:8px;
	background:#fff;
	border-radius:50%;
}
.plusDiv3{
	top:702px;
	margin-left:664px;
}
.plusDiv4{
	width:56px;
	height:56px;
	top:405px;
	margin-left:336px;
}
.plusDiv4 span{
	width:16px;
	height:16px;
}
.plusDiv5{
	width:46px;
	height:46px;
	top:598px;
	margin-left:270px;
}
.plusDiv5 span{
	width:14px;
	height:14px;
}
.plusDiv6{
	top:255px;
	margin-left:60px;
}
.plusDiv7{
	width:65px;
	height:65px;
	top:375px;
	margin-left:-170px;
}
.plusDiv7 span{
	width:18px;
	height:18px;
}
.plusDiv8{
	width:46px;
	height:46px;
	top:666px;
	margin-left:-20px;
}
.plusDiv8 span{
	width:14px;
	height:14px;
}
.wapmap{
	width:100%;
	overflow:hidden;
	display:none;
}
.wapmap img{
	width:100%;
	height:auto;
}
@keyframes pulsate {
	 0% {
	 transform: scale(0.1, 0.1);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
	 50% {
	 opacity: 1;
	 filter: none;
	}
	 100% {
	 transform: scale(1.2, 1.2);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
}
@keyframes pulse {
	0% { transform: scale(0.9); }
	50% { transform: scale(1.2); }
	100% { transform: scale(0.9); }
}
/* jjfa
-------------------------------------------------------------- */
.jjfa{
	width:100%;
	overflow:hidden;
	background:url(../images/jjfabg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:275px;
	padding-bottom:128px;
}
.jjfa h3{
	width:100%;
	overflow:hidden;
	font-size:68px;
	line-height:78px;
	color:#fff;
	text-align:center;
	font-weight:normal;
	margin-bottom:200px;
}
.jjfa .more a{
	margin:auto;
}
.message{
	width:100%;
	overflow:hidden;
	margin-top:128px;
}
.message ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.message ul li{
	width:20%;
	overflow:hidden;
}
.message ul li:nth-child(3){
	width:34%;
	overflow:hidden;
}
.message ul li:nth-child(4){
	width:10%;
	overflow:hidden;
}
.message ul li:nth-child(5){
	width:12.5%;
	overflow:hidden;
}
.message ul li input,.message ul li textarea{
	width:100%;
	height:62px;
	overflow:hidden;
	line-height:62px;
	border-radius:31px;
	font-size:16px;
	color:#242a33;
	padding-left:56px;
	padding-right:20px;
	background:#f2f2f2;
}
.message ul li:nth-child(4) input{
	width:100%;
	padding:0 5px;
}
.message ul li img{
	max-width:100%;
	height:auto;
}
.message ul li:first-child input{
	background:#f2f2f2 url(../images/icon8.png) no-repeat 25px center;
}
.message ul li:nth-child(2) input{
	background:#f2f2f2 url(../images/icon9.png) no-repeat 25px center;
}
.message ul li:nth-child(3) textarea{
	background:#f2f2f2 url(../images/icon10.png) no-repeat 25px center;
}
.message ul li button{
	width:100%;
	height:62px;
	overflow:hidden;
	line-height:62px;
	background:#d1151e;
	border-radius:32px;
	font-size:16px;
	color:#fff;
}
/* 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:#e1e1e1;
	padding:76px 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:94px;
}
.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;
	margin-top:50px;
}
.footernr .footerlf .bottel span{
	width:100%;
	overflow:hidden;
	display:block;
	font-size:36px;
	color:#d1151e;
	line-height:46px;
	font-weight:bold;
}
.footernr .footerlf .bottel span a{
	font-size:36px;
	color:#d1151e;
}
.footernr .footerlf .bottel p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#14212c;
	line-height:30px;
}
.footernr .footerlf .bottel p a{
	font-size:16px;
	color:#14212c;
}
.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:55%;
	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:20px;
	color:#14212c;
	font-weight:normal;
	line-height:30px;
	margin-bottom:33px;
}
.footerrt ul li h4 a{
	font-size:20px;
	color:#14212c;
}
.footerrt ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#858b92;
	line-height:30px;
	margin-top:15px;
	}
.footerrt ul li p a{
	font-size:16px;
	color:#858b92;
	}
.footerrt ul li p a:hover{
	color:#d1151e;
}
.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:47px 0;
	position:relative;
	margin-top:64px;
	border-top:solid 1px #c8cbcd;
	}
.bot .botlf,.bot .botrt{
	padding:0;
	overflow:hidden;
	font-size:16px;
	color:#14212c;
}
.bot .botrt{
	text-align:right;
}
.bot a{
	font-size:16px;
	color:#14212c;
	}
.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/icon39.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/iconh39.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:hover .searchin h5{
    color:#e62830; 
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:660px;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
}
@media only screen and (min-width: 1921px) and (max-width: 2560px) {
	.banner_n{
		height:880px;
	}
}
@media(max-width:1768px) {
	.banner_n{
		height:608px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:578px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:495px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:468px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:440px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:396px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:352px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:341px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:264px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:220px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:186px;
	}
}
@media(max-width:425px) {
	.banner_n{
		height:146px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
	border-bottom:solid 1px #cfcfcf;
}
.positionnr .positionrt{
	font-size:16px;
	color:#282828;
	line-height:30px;
	padding:25px 0 25px 40px;
	background:url(../images/icon22.png) no-repeat left 30px;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #282828;
}
.position a:hover {
	color: #163789;
}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	overflow:hidden;
}
.menu_n ul{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	overflow:hidden;
	float:left;
	margin-right:74px;
	font-size:16px;
	color:#2c3441;
	line-height:80px;
	position:relative;
}
.menu_n ul li::after{
	content:"";
	width:0;
	height:2px;
	background:#d1151e;
	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:#282828;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#d1151e;
}


/* 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;
}
/* about_n
-------------------------------------------------------------- */
.about_n{
	margin-top:108px;
	margin-bottom:60px;
	}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
	margin-top:44px;
	}
.aboutlf_n{
	width:54.5%;
	overflow:hidden;
	font-size:16px;
	color:#282828;
	line-height:30px;
}
.aboutlf_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#282828;
	line-height:30px;
}
.aboutrt_n{
	width:29%;
	overflow:hidden;
}
.aboutlist_n,.aboutlist_n ul{
	width:100%;
	overflow:hidden;
}
.aboutlist_n ul li{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	border-bottom:solid 1px #cccccc;
	padding-bottom:20px;
	margin-bottom:24px;
}
.aboutlist_n ul li .aboutnum,.aboutlist_n ul li p{
	width:100%;
	overflow:hidden;
}
.aboutlist_n ul li .aboutnum{
	font-size:16px;
	color:#242424;
}
.aboutlist_n ul li .aboutnum .timer{
	font-size:58px;
	color:#d1151e;
	font-family:Arial;
	line-height:58px;
	margin-right:6px;
}
.aboutlist_n ul li p{
	font-size:16px;
	color:#242424;
}
.aboutlist_n ul li .aboutnum font{
	font-size:32px;
	color:#282828;
}
.aboutimg{
	margin-bottom:100px;
}
.aboutpic{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.aboutpic img{
	max-width:100%;
	height:auto;
}
/* honor_n
-------------------------------------------------------------- */
.honorbg{
	background:#f7f7f7;
}
.honor_n{
	margin-top:60px;
	margin-bottom:60px;
}
.honornr_n,.honornr_n ul{
	width:100%;
	overflow:hidden;
}
.honornr_n ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.honornr_n ul li{
	width:30%;
	overflow:hidden;
	text-align:center;
	background:#fff;
	border-radius:10px;
	margin:20px 5% 20px 0;
	height:500px;
	position:relative;
}
.honornr_n ul li:nth-child(3n){
	margin-right:0;
}
.honornr_n ul li img{
	max-width:100%;
	height:auto;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.honornr_n ul li:hover img{
	transform:translate(-50%, -50%) scale(1.02);
}
/* 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:16%;
	overflow:hidden;
}
.promenu_n{
	width:100%;
	overflow:hidden;
}
.prort_n{
    width: 77.8%;
    overflow: hidden;
}
.prolf_n ul,.prolf_n ul li{
	width:100%;
}
.prolf_n ul{
	margin-top:46px;
}
.prolf_n ul li{
	height:80px;
	line-height:30px;
	display:flex;
	align-items:center;
	border-bottom:solid 1px #d8d8d8;
	position:relative;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolf_n ul li a{
	width:100%;
	font-size:18px;
	color:#282828;
	display:flex;
	align-items:center;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolf_n ul li a i{
	display:block;
	width:30%;
	overflow:hidden;
}
.prolf_n ul li a i img{
	max-width:100%;
	height:auto;
}
.prolf_n ul li span{
	display:block;
	width:68%;
	overflow:hidden;
	font-size:18px;
	color:#282828;
	margin-left:2%;
}
.prolf_n ul li:hover a span,.prolf_n ul li.active a span{
	color:#d1151e;
}
.pronr_n,.pronr_n ul{
	width:100%;
	overflow:hidden;
	}
.pronr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.pronr_n ul li{
	width:32%;
    overflow: hidden;
    float: left;
    margin: 0 2% 50px 0;
}
.pronr_n ul li:nth-child(3n){
	margin-right:0;
}
.pronr_n ul li .proimg_n,.pronr_n ul li h5{
	width:100%;
	overflow:hidden;
}
.pronr_n ul li .proimg_n{
	position:relative;
	background:#fff;
	height:312px;
	border-radius:10px;
}
.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(209,21,30,0.8) url(../images/icon23.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 h5{
	font-size:16px;
	color:#252525;
	line-height:30px;
	text-align:center;
	margin-top:18px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pronr_n ul li:hover h5{
	color:#d1151e;
}
.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:50%;
	overflow:hidden;
	background:#fff;
}
.proinfo_n .proinfonr_n{
	width:44%;
	overflow:hidden;
	padding-top:42px;
}
.propic_n img{
	width:100%;
	height:auto;
}
.proinfonr_n h1{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#d1151e;
	line-height:45px;
	font-weight:normal;
	border-bottom:solid 1px #d5d5d5;
	padding-bottom:28px;
	margin-bottom:27px;
}
.proinfonr_n .proinfolei_n{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#252525;
	line-height:30px;
}
.proinfonr_n .proinfojs_n,.proinfonr_n .proinfojs_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#282828;
	line-height:30px;
}
.nprofbnr {
	width:100%;
    overflow: hidden;
    font-size: 16px;
	color:#282828;
    line-height: 30px;
    margin-top:50px;
}
.nprofbnr h5{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#282828;
	line-height:45px;
	font-weight:normal;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#282828;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	background:#fff;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:10px;
	font-size:16px;
	color:#282828;
}

/*产品展示结束*/
	
/* 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;
}
/* news_n
-------------------------------------------------------------- */
.news_n{
	margin-top:80px;
	margin-bottom:80px;
	}
.newsnr_n,.newsnr_n ul{
	width:100%;
}
.newsnr_n ul{
	display:flex;
	flex-wrap:wrap;
}
.newsnr_n ul li{
	width:31.4%;
	overflow:hidden;
	margin:40px 2.9% 40px 0;
	}
.newsnr_n ul li:nth-child(3n){
	margin-right:0;
}
.newsnr_n ul li .newsimg_n{
	width:100%;
	overflow:hidden;
	height:310px;
	border-radius:10px;
	position:relative;
}
.newsnr_n ul li .newsimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.newsnr_n ul li .newsimg_n .newsbg_n{
	width:100%;
	height:0;
	background:rgba(209,21,30,0.8) url(../images/icon23.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;
}
.newsnr_n ul li:hover .newsimg_n .newsbg_n{
	height:100%;
}
.newsnr_n ul li:hover .newsimg_n img{
	transform:translate(-50%, -50%) scale(1.02);
}
.newsnr_n ul li .newsdate_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#282828;
	line-height:30px;
	font-family:Arial;
	margin-top:30px;
}
.newsnr_n ul li h5{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#282828;
	line-height:36px;
	font-weight:normal;
	margin-top:10px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsinfo_n{
	width:73%;
	overflow:hidden;
	margin:auto;
}
.newsinfo_n h1{
	width:100%;
    overflow:hidden;
    font-size:45px;
	line-height:60px;
    color:#282828;
	font-weight:normal;
	}
.newsinfo_n .fbtime{
	width: 100%;
    overflow: hidden;
	display:flex;
	font-size:18px;
	color:#aaaaaa;
	line-height:30px;
	margin-top:43px;
	border-bottom:solid 1px #cfcfcf;
	padding-bottom:44px;
	}
.newsinfo_n .fbtime span{
	font-size:18px;
	color:#282828;
	margin-left:30px;
}
.newsinfo_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 55px;
    font-size: 16px;
    line-height: 30px;
    color: #282828;
}
.newsinfo_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #282828;
}
.newsinfo_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
.news_bk{
	width: 100%;
    overflow: hidden;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	border-top:solid 4px #d1151e;
	padding-top:26px;
	margin-top:50px;
}
.news_bk .news_bknr{
	width:43%;
	overflow:hidden;
}
.news_bk .news_bknr,.news_bk .news_bknr a{
	font-size:18px;
	color:#282828;
	line-height:30px;
}
.news_bk .news_bknr a:hover{
	color:#d1151e;
}
.news_bk .news_bknr:last-of-type{
	text-align:right;
}
.fhlist{
	width:12%;
	text-align:center;
}
.fhlist,.fhlist a{
	font-size:18px;
	color:#d1151e;
	line-height:30px;
}
/* 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
-------------------------------------------------------------- */
.contact_n{
	margin-top:108px;
	margin-bottom:130px;
	}
.contact_n ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-top:45px;
}
.contact_n ul li{
	width:49%;
	height:255px;
	overflow:hidden;
	background:#fff;
	border-radius:20px;
	padding:45px 105px 0 105px;
	margin: 15px 0;
}
.contacttit_n{
	font-size:20px;
	color:#282828;
	line-height:30px;
	border-bottom:solid 1px #d3d3d3;
	padding-bottom:20px;
}
.contacttit_n i{
	margin-right:20px;
}
.contactnr_n{
	font-size:30px;
	color:#282828;
	line-height:40px;
	margin-top:26px;
}
.contactnr_n a{
	font-size:30px;
	color:#282828;
	font-family:Arial;
}
.message_n{
	width:100%;
	overflow:hidden;
	background:url(../images/messagebg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:102px;
	padding-bottom:180px;
}
.message_n h3{
	color:#fff;
}
.messagenr_n{
	width:100%;
	overflow:hidden;
	margin-top:44px;
}
.messagenr_n dl{
	width:33%;
	overflow:hidden;
	float:left;
	margin-top:20px;
	margin-right:0.5%;
	}
.messagenr_n dl:nth-child(3n){
	margin-right:0;
}
.messagenr_n dl dt{
	width:100%;
	overflow:hidden;
	color:#fff;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	font-weight:normal;
	}
.messagenr_n dl dd{
	width:100%;
	overflow:hidden;
	}
.messagenr_n dl dd input{
	width:100%;
	overflow:hidden;
	font-size:15px;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding:0 20px 0 55px;
	color:#a3a3a3;
	}
.messagenr_n dl dd textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	color:#a3a3a3;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding:18px 20px 18px 55px;
	background:#fff url(../images/icon38.png) no-repeat 24px 21px;
	}
.messagenr_n dl:last-child{
	width:100%;
	}
.messagenr_n dl:nth-child(4){
	width:100%;
	}
.messagenr_n dl:first-child dd input{
	background:#fff url(../images/icon35.png) no-repeat 24px center;
}
.messagenr_n dl:nth-child(2) dd input{
	background:#fff url(../images/icon36.png) no-repeat 24px center;
}
.messagenr_n dl:nth-child(3) dd input{
	background:#fff url(../images/icon37.png) no-repeat 24px center;
}
.messagenr_n .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:40px;
	text-align:center;
}
.messagenr_n .tjbtn button {
    width:246px;
    height:66px;
	border:solid 2px #fff;
	background:none;
    color: #fff;
	text-align:center;
	font-size:16px;
	line-height:66px;
	margin:auto;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:20px;
	color:#fff;
	}
.btn1 .intxt{
	width:140px;
	height:40px;
	overflow:hidden;
	font-size:15px;
	color: #333;
	padding-left: 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}
.message_pro{
	width:100%;
	overflow:hidden;
	margin-top:30px;
}
.message_pro .messagenr_n{
	margin-top:30px;
}
.message_pro .messagenr_n dl dt,.message_pro .messagenr_n .btn1{
	color:#282828;
}
.message_pro .messagenr_n .tjbtn button{
	border-color:#282828;
	color:#282828;
}
/* map
-------------------------------------------------------------- */
.map{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.map img{
	width:100%;
	height:auto;
}
/* jssl_n
-------------------------------------------------------------- */
.jssl_n{
	margin-top:60px;
	margin-bottom:60px;
}
.jssllist_n,.jsslcont_n{
	width:100%;
	overflow:hidden;
}
.jssllist_n{
	margin:50px 0;
}
.jssllist_n .jsslimg_n{
	width:48%;
	overflow:hidden;
	border-radius:0 200px 0 0;
}
.jssllist_n .jsslimg_n img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.jssllist_n .jsslcont_n{
	width:52%;
	overflow:hidden;
	padding-top:50px;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	padding-left:200px;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	padding-right:200px;
}
.jssllist_n:nth-child(2n+1) .jsslimg_n{
	float:left;
}
.jssllist_n:nth-child(2n+1) .jsslcont_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslimg_n{
	float:right;
}
.jssllist_n:nth-child(2n) .jsslcont_n{
	float:left;
}
.jsslen{
	width:100%;
	overflow:hidden;
	font-size: 50px;
    color: #333333;
    line-height: 55px;
    font-family: Arial;
    margin-top: 20px;
	margin-bottom:100px;
}
.jsslcont_n h4,.jsslcont_n p{
	width:100%;
	overflow:hidden;
}
.jsslcont_n h4{
	font-size: 45px;
    color: #333;
    line-height: 55px;
    font-weight: normal;
    margin-bottom: 16px;
	margin-bottom:60px;
}
.jsslcont_n p{
    line-height: 30px;
    font-size: 16px;
    color: #333;
}

/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;margin:0 auto;padding:0}
.pages ul a{
	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:#d1151e;
	color:#fff;
	border-color:#d1151e;
	}
.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,.language::after,.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: #e62129;
	  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: #e62129;
	  -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: #e62129;
	  -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:90px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 2px;
	  margin: 4px 5px;
	  width: 30px;
	  display: block;
	  background: #fff;
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.showHeader .toggle span,.hover .toggle span{
		background: #000;
	}
	.toggle.active span{
		background: #fff;
	}

	.toggle span:nth-child(2) {
	  width: 25px;
	  margin-left:0;
	}


	.toggle.active span:nth-child(1) {
	  -webkit-transform: rotate(-45deg) translate(-7px, 6px);
		  -ms-transform: rotate(-45deg) translate(-7px, 6px);
			  transform: rotate(-45deg) translate(-7px, 6px);
	}

	.toggle.active span:nth-child(2) {
	  opacity: 0;
	}

	.toggle.active span:nth-child(3) {
	  -webkit-transform: rotate(45deg) translate(-7px, -7px);
		  -ms-transform: rotate(45deg) translate(-7px, -7px);
			  transform: rotate(45deg) translate(-7px, -7px);
	}


	#toggleMenu .content {
	  position: relative;
	  z-index: 10;
	  text-align: center;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	  -webkit-transition-delay: 1s;
		   -o-transition-delay: 1s;
			  transition-delay: 1s;
	}

	#toggleMenu .content h2 {
	  position: relative;
	  color: #fff;
	  font-size: 4rem;
	  text-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu .content h2 span {
	  font-size: 0.2em;
	  font-weight: 300;
	  letter-spacing: 5px;
	  padding: 0 10px;
	  text-transform: uppercase;
	  background: #fff;
	  color: #111;
	  text-shadow: 0 5px 5px rgba(0,0,0,0);
	  -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
			  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu.active .content {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-200px);
		  -ms-transform: translateX(-200px);
			  transform: translateX(-200px);
	  -webkit-transition-delay: 0s;
		   -o-transition-delay: 0s;
			  transition-delay: 0s;
	}

	#toggleMenu .sci {
	  position: absolute;
	  bottom: 40px;
	  right: 100px;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  z-index: 100;
	}

	#toggleMenu .sci li {
	  list-style: none;
	  margin: 5px;
	  padding: 0 6px;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu.active .sci li {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateY(100px);
		  -ms-transform: translateY(100px);
			  transform: translateY(100px);
	}

	#toggleMenu .sci li a {
	  color: #111;
	  background: #fff;
	  text-decoration: none;
	  display: inline-block;
	  letter-spacing: 2px;
	  font-weight: 500;
	  font-size: 12px;
	  padding: 2px 5px;
	  text-transform: uppercase;
	}

	#toggleMenu .sci li a:hover {
	  background: #111;
	  color: #fff;
	}

	#toggleMenu .sci li:nth-child(1) {
	  -webkit-transition-delay: 0.2s;
		   -o-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}

	#toggleMenu .sci li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu .sci li:nth-child(3) {
	  -webkit-transition-delay: 0.4s;
		   -o-transition-delay: 0.4s;
			  transition-delay: 0.4s;
	}

}

@media only screen and (min-width: 1768px) and (max-width: 1768px) {
	
}

@media(max-width:1768px) {
	.cont,.cont1{
		width:83.4%;
	}
	.tit h3,.tit h3 a{
		font-size:45px;
		line-height:55px;
	}
	.jjfa h3{
		font-size:60px;
		line-height:70px;
	}
	.newslist .newsimg{
		height:305px;
	}
	.yyly ul li .yylynr{
		padding:0 20px;
	}
	.yyly ul li h5{
		font-size:22px;
		line-height:32px;
		height:96px;
	}
	.proinfonr_n h1{
		font-size:32px;
		line-height:42px;
	}
	.proinfo_n .proinfonr_n{
		width:46%;
	}
	.prolf_n{
		width:20%;
	}
	.pronr_n ul li .proimg_n{
		height:275px;
	}
	.newsinfo_n h1{
		font-size:36px;
		line-height:46px;
	}
	.newsinfo_n{
		width:80%;
	}
	.honornr_n ul li{
		height:442px;
	}
	.nprofbnr h5{
		font-size:32px;
		line-height:42px;
	}
	.newsnr_n ul li .newsimg_n{
		height:273px;
	}
	.newsnr_n ul li h5{
		font-size:24px;
		line-height:34px;
	}
	.contactnr_n{
		font-size:26px;
		line-height:36px;
	}
	.contact_n ul li{
		padding:45px 80px 0 80px;
	}
}
@media(max-width:1680px) {
	.aboutlist ul li dl dt .timer{
		font-size:50px;
		line-height:50px;
	}
	.newslist h5{
		font-size:24px;
	}
	.jjfa h3{
		font-size:50px;
		line-height:60px;
	}
	.newslist .newsimg{
		height:289px;
	}
	.aboutlf_n{
		width:60%;
	}
	.pronr_n ul li .proimg_n{
		height:261px;
	}
	.newsinfo_n h1{
		font-size:32px;
		line-height:42px;
	}
	.honornr_n ul li{
		height:420px;
	}
	.proinfo_n .proinfonr_n{
		padding-top:30px;
	}
	.nprofbnr h5{
		font-size:30px;
		line-height:40px;
	}
	.prolf_n ul li span{
		margin-left:6px;
	}
	.newsnr_n ul li .newsimg_n{
		height:260px;
	}
}
@media(max-width:1600px) {
	.language{
		padding-left:55px;
	}
	.newslist .newsimg{
		height:275px;
	}
	.yyly ul li h5{
		font-size:20px;
		line-height:30px;
		height:90px;
	}
	.proinfo_n .proinfonr_n{
        padding-top: 20px;
    }
	.pronr_n ul li .proimg_n{
		height:249px;
	}
	.proinfonr_n h1 {
        font-size:30px;
        line-height:40px;
		padding-bottom:20px;
		margin-bottom:20px;
    }
	.honornr_n ul li{
		height:400px;
	}
	.prolf_n ul li a,.prolf_n ul li span{
		font-size:16px;
	}
	.newsnr_n ul li .newsimg_n{
		height:247px;
	}
	.contact_n ul li {
        padding:45px 60px 0 60px;
    }
}
@media(max-width:1440px) {
	.banner .swiper-pagination{
		bottom:70px;
	}
	.tit h3,.tit h3 a{
		font-size:40px;
		line-height:50px;
	}
	.promenu ul li a span{
		font-size:16px;
		line-height:26px;
	}
	.aboutlist ul li dl dt .timer{
		font-size:45px;
		line-height:45px;
		margin-right:5px;
	}
	.newslist .newsimg{
		height:247px;
	}
	.yyly ul li .yylynr{
		padding:0 30px;
	}
	.yyly ul li h5{
		font-size:18px;
		line-height:28px;
		height:112px;
	}
	.newsmenu ul li a{
		font-size:24px;
	}
	.bjleft .bjbot span {
		font-size: 100px;
	}
	.bjleft .bjbot i{
		font-size: 60px;
	}
	.jjfa h3{
        font-size:45px;
        line-height:55px;
    }
	.prolist .pronrlf h5{
		font-size:26px;
		line-height:36px;
	}
	.pro{
		padding-top:100px;
	}
	.menu_n ul li{
		margin-right:50px;
	}
	.pronr_n ul li .proimg_n{
		height:224px;
	}
	.newsinfo_n h1{
		font-size:28px;
		line-height:38px;
	}
	.honornr_n ul li{
		height:360px;
	}
	.nprofbnr h5{
		font-size:26px;
		line-height:36px;
	}
	.newsnr_n ul li .newsimg_n{
		height:223px;
	}
	.newsnr_n ul li h5{
		font-size:22px;
		line-height:32px;
	}
	.newsnr_n ul li .newsdate_n{
		margin-top:20px;
	}
	.contact_n ul li{
        padding: 45px 50px 0 50px;
    }
	.contactnr_n{
        font-size: 24px;
        line-height: 34px;
    }
}
@media(max-width:1360px) {
	.header .navbar_nav li{
		padding:0 45px;
	}
	.language{
        padding-left:40px;
    }
	.pronr .swiper-button{
		bottom:32%;
	}
	.yyly ul li .yylynr{
		padding:0 20px;
	}
	.newslist .newsimg{
		height:232px;
	}
	.yylymap{
		height:680px;
		background-size:1360px;
		padding-top:130px;
	}
	.bjleft .tit{
		margin-bottom:20px;
	}
	.bjleft .bjjs{
		margin-top:20px;
	}
	.bjleft .bjbot{
		margin-top:40px;
	}
	.plusDiv {
		margin-left: 355px;
		top: 260px;
	}
	.plusDiv2 {
		top: 448px;
		margin-left: 480px;
	}
	.plusDiv3 {
		top: 492px;
		margin-left: 465px;
	}
	.plusDiv4 {
		top: 280px;
		margin-left: 228px;
	}
	.plusDiv5 {
		top: 420px;
		margin-left: 180px;
	}
	.plusDiv6 {
		top: 175px;
		margin-left: 40px;
	}
	.plusDiv7 {
		top: 255px;
		margin-left: -130px;
	}
	.plusDiv8 {
		top: 466px;
		margin-left: -20px;
	}
	.prolf_n ul li a i img{
		width:60px;
	}
	.proinfo_n .proinfonr_n{
        padding-top:0;
    }
	.pronr_n ul li .proimg_n{
		height:211px;
	}
	.proinfonr_n h1{
		font-size: 26px;
		line-height: 36px;
	}
	.honornr_n ul li{
		height:340px;
	}
	.newsnr_n ul li .newsimg_n{
		height:210px;
	}
	.contactnr_n{
        font-size:22px;
        line-height:32px;
    }
}
@media(max-width:1280px){
	.banner .swiper-pagination{
		bottom:50px;
	}
	.tit h3,.tit h3 a{
        font-size: 35px;
        line-height: 45px;
    }
	.header .navbar_nav li {
        padding: 0 40px;
    }
	.pronr .swiper-button{
		bottom:30%;
	}
	.aboutlist ul li dl dt .timer{
		font-size:40px;
		line-height:40px;
	}
	.aboutlist ul li dl dt{
		font-size:15px;
	}
	.aboutlist ul li dl dd{
		font-size:15px;
		line-height:25px;
	}
	.aboutlist ul li dl dt font{
		font-size:28px;
		line-height:28px;
	}
	.newslist .newsimg{
		height:218px;
	}
	.newslist h5{
		font-size:22px;
	}
	.bjleft .bjbot span {
		font-size: 90px;
	}
	.bjleft .bjbot i{
		font-size: 50px;
	}
	.promenu ul li{
		height:70px;
	}
	.promenu ul li a span{
		font-size:14px;
		line-height:24px;
	}
	.prolf_n ul li a i img{
		width:50px;
	}
	.prolist .pronrlf h5 {
        font-size:24px;
        line-height:34px;
    }
	.honornr_n ul li{
		height:320px;
	}
	.pronr_n ul li .proimg_n{
		height:199px;
	}
	.aboutlist_n ul li .aboutnum .timer{
		font-size:50px;
		line-height:50px;
	}
	.nprofbnr h5{
		font-size:24px;
		line-height:34px;
	}
	.yyly ul li .icon img{
		width:130px;
	}
	.newsnr_n ul li .newsimg_n{
		height:198px;
	}
	.newsnr_n ul li h5{
		font-size:20px;
		line-height:30px;
	}
}
@media(max-width:1200px) {
	.tit h3,.tit h3 a{
        font-size: 32px;
        line-height: 42px;
    }
	.newsmenu ul li a{
        font-size:22px;
    }
}
@media(max-width:1152px) {
	.language a span{
		margin: 0 10px;
	}
	.language{
        padding-left:30px;
    }
	.header .navbar_nav li {
        padding:0 35px;
    }
	.tit h3,.tit h3 a{
        font-size:30px;
        line-height:40px;
    }
	.newslist .newsimg{
		height:195px;
	}
	.bjleft .bjbot span {
		font-size:80px;
	}
	.yyly ul li .yylynr .more a{
		width:130px;
		line-height:50px;
	}
	.pronr_n ul li .proimg_n{
		height:179px;
	}
	.honornr_n ul li{
		height:288px;
	}
	.newsnr_n ul li .newsimg_n{
		height:178px;
	}
	.contact_n ul li {
        padding:45px 40px 0 40px;
    }
}
@media(max-width:1024px){
	.newslist .newsimg{
		height:173px;
	}
	.pronr_n ul li .proimg_n{
		height:159px;
	}
	.honornr_n ul li{
		height:256px;
	}
	.newsnr_n ul li .newsimg_n{
		height:158px;
	}
}

@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.language {
        padding-left:0;
    }
	.language a span {
        margin:0 6px;
    }
	.language .languagenr{
		top:50px;
	}
	.logo img{
		height:30px;
	}
	.about{
		padding-top:80px;
		padding-bottom:80px;
	}
	.aboutlf,.aboutnr .aboutrt{
		width:100%;
	}
	.about .aboutlogo{
		position:inherit;
		top:0;
	}
	.aboutnr .more,.aboutlist{
		margin-top:40px;
	}
	.aboutnr .aboutrt{
		position:inherit;
		margin-top:40px;
		margin-bottom:40px;
	}
	.aboutlf_n,.aboutrt_n{
		width:100%;
	}
	.aboutrt_n{
		margin-top:40px;
	}
	.about_n {
		margin-top:60px;
	}
	.aboutimg {
		padding-top:0;
		margin-bottom:60px;
	}
	.bjleft{
		width:100%;
	}
	.pro {
        padding-top:60px;
		padding-bottom:60px;
    }
	.prolf{
		width:100%;
	}
	.prort{
		display:none;
	}
	.news{
		padding-top:80px;
		padding-bottom:80px;
	}
	.newsnr .newslf,.newsnr .newsrt{
		width:100%;
	}
	.newsnr .newsrt{
		padding-top:40px;
	}
	.newsmenu,.newsnr .newslf .swiper-button{
		margin-top:40px;
	}
	.yylymap{
		height:auto;
		background: -webkit-linear-gradient(left, #1f2233, #293144,#10101c);
		background: -o-linear-gradient(right, #1f2233, #293144,#10101c);
		background: -moz-linear-gradient(right, #1f2233, #293144,#10101c);
		background: linear-gradient(to right, #1f2233, #293144,#10101c);
		padding-top:60px;
	}
	.wapmap{
		display:block;
	}
	.plusDiv,.plusDiv2{
		display:none;
	}
	.yylymapnr h3 {
		font-size: 35px;
	}
	.yylymapjs{
		margin-top:30px;
		font-size: 22px;
		line-height: 32px;
	}
	.yylymapnr{
		padding-bottom:50px;
	}
	.prolf_n ul li a i{
		width:auto;
	}
	.prolf_n ul li{
		height:60px;
	}
	.pronr_n ul li .proimg_n{
        height:204px;
    }
	.prolf_n,.prort_n{
		width:100%;
	}
	.prort_n{
		margin-top:40px;
	}
	.positionnr .positionrt{
		padding:25px 0 25px 30px;
	}
	.pro_n {
		padding-top:60px;
		padding-bottom:60px;
	}
	.menu_n,.positionnr .positionrt{
		width:100%;
	}
	.positionnr .positionrt {
        padding:10px 0 10px 30px;
		background-position: left 15px;
    }
	.menu_n ul li {
        margin-right:30px;
		line-height:50px;
    }
	.footernr .footerlf,.footernr .footerrt{
		width:100%;
	}
	.footernr .footerrt{
		margin-top:30px;
	}
	.footertop {
		margin-bottom: 40px;
	}
	.footernr ul li h4{
		margin-bottom:10px;
	}
	.footernr ul li p{
		display:none;
	}
	.bot {
		margin-top: 0;
	}
}
@media(max-width:991px) {
	.banner .swiper-pagination {
        bottom:30px;
    }
	.banner .more a{
		width: 140px;
		height: 46px;
		font-size: 16px;
		line-height: 46px;
	}
	.tit h3, .tit h3 a {
        font-size:26px;
        line-height:36px;
    }
	.prolist .pronrlf h5 {
        font-size: 20px;
        line-height: 30px;
    }
	.yyly ul li .yylynr .more a {
        width:120px;
        line-height:40px;
    }
	.news {
        padding-top:60px;
        padding-bottom:60px;
    }
	.newslist {
		padding-bottom:40px;
	}
	.yyly ul li{
		width:33.3333333333333333333%;
		height:50%;
	}
	.yyly .tit{
		top:30px;
	}
	.yyly ul li:hover .yylynr .more a {
		margin:20px auto 0;
	}
	.yyly ul li h5{
		font-size:16px;
		line-height:26px;
		height:104px;
	}
	.yyly ul li p{
		font-size:15px;
		line-height:25px;
	}
	.yyly ul li h5,.yyly ul li:hover p{
		margin-top:10px;
	}
	.yyly ul li .yylynr,.yyly ul li:hover .yylynr{
		bottom:30px;
	}
	.yyly ul li .icon img {
        width:70px;
    }
	.newslist h5{
        font-size:20px;
    }
	.jjfa{
		padding-top:80px;
		padding-bottom:80px;
	}
	.jjfa h3{
        font-size:40px;
        line-height:50px;
		margin-bottom:60px;
    }
	.pages ul a {
		width:36px;
		height:36px;
		line-height:36px;
	}
	.message{
		margin-top:80px;
	}
	.message ul li{
		width:100%;
		margin:10px 0;
	}
	.message ul li:nth-child(3),.message ul li:nth-child(4),.message ul li:nth-child(5){
		width:100%;
	}
	.btn1{
		margin-top:0;
	}
	.proinfo_n .propic_n,.proinfo_n .proinfonr_n{
		width:100%;
	}
	.proinfo_n .proinfonr_n{
		margin-top:40px;
	}
	.pronr_n ul li{
		width:49%;
		margin:0 2% 40px 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:303px;
    }
	.pronr_n ul li h5{
		font-size:15px;
	}
	.newsinfo_n {
        width:100%;
    }
	.newsinfo_n .fbtime{
		margin-top:30px;
		padding-bottom:30px;
	}
	.newsinfo_n .fbnr{
		margin-top:30px;
	}
	.newsinfo_n h1,.proinfonr_n h1{
        font-size:24px;
        line-height:34px;
    }
	.news_bk .news_bknr,.fhlist{
		width:100%;
	}
	.fhlist{
		margin:10px 0;
	}
	.news_bk .news_bknr:last-of-type {
		text-align:left;
	}
	.honornr_n ul li{
		height:247px;
	}
	.nprofbnr table{
		white-space:nowrap;
	}
	.news_n {
		margin-top:60px;
		margin-bottom:60px;
	}
	.newsnr_n ul li{
		width:49%;
		margin: 30px 2% 30px 0;
	}
	.newsnr_n ul li:nth-child(3n){
		margin-right:2%;
	}
	.newsnr_n ul li:nth-child(2n){
		margin-right:0;
	}
	.message_n{
		padding-top:80px;
		padding-bottom:80px;
		margin-top:40px;
	}
	.messagenr_n dl{
		width:100%;
	}
	.messagenr_n dl dd textarea{
		height:200px;
	}
	.messagenr_n .tjbtn button {
		width:180px;
		height:60px;
		line-height:60px;
	}
	.contact_n{
		margin-top:60px;
		margin-bottom:60px;
	}
	.contact_n ul li{
		width:100%;
		height:auto;
		margin:10px 0;
		padding:30px;
	}
	.contacttit_n i{
		margin-right:15px;
	}
	.footernr .footerlf .bottel{
		margin-top:30px;
	}
	.footernr .footerlf .bottel,.footernr .footerlf .bottel a{
		font-size:40px;
		line-height:40px;
	}
	.footer{
		padding-top:60px;
	}
	.footertop_rt {
		text-align: left;
		margin-top:30px;
	}
	.botewm {
		margin-top: 30px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.bot {
		padding: 30px 0;
	}
	.botlogo{
		margin-bottom:40px;
	}
}
@media(max-width:860px){
	.pronr_n ul li .proimg_n{
        height:172px;
    }
	.pronr_n ul li .proimg_n{
        height:263px;
    }
	.honornr_n ul li{
		height:215px;
	}
}
@media(max-width:768px) {
	.yyly ul li h5 {
        font-size:14px;
        line-height:24px;
        height:96px;
    }
	.yyly ul li p {
        font-size:12px;
        line-height:22px;
    }
	.yyly ul li .yylynr, .yyly ul li:hover .yylynr{
        bottom: 30px;
    }
	.yyly ul li h5,.yyly ul li:hover p{
        margin-top:10px;
    }
	.jjfa h3 {
        font-size:35px;
        line-height:45px;
    }
	.bjleft .bjbot{
		font-size:30px;
	}
	.bjleft .bjbot span{
		margin-left:15px;
		font-size: 60px;
	}
	.bjleft .bjbot i {
		font-size: 30px;
	}
	.newsnr .newslf .swiper-button div {
		width:45px;
		height:45px;
	}
	.pronr_n ul li .proimg_n{
        height:235px;
    }
	.pronr_n ul li h5{
		font-size:14px;
	}
	.honornr_n ul li{
		height:192px;
	}
	.footernr .footerlf .bottel span,.footernr .footerlf .bottel span a{
		font-size: 32px;
		line-height: 42px;
	}
}
@media(max-width:767px){
	.prolist .pronrlf,.prolist .proimg{
		width:100%;
	}
	.prolist .proimg{
		margin-top:30px;
	}
	.promore{
		margin-top:30px;
	}
	.prolf{
		margin-top:30px;
	}
	.pronr .swiper-button{
		width:100%;
		position:inherit;
		bottom:0;
		margin-top:20px;
	}
	.pronr .swiper-button div{
		width:46px;
		height:46px;
	}
	.nprofbnr p{
		font-size:14px;
	}
	.honornr_n ul li {
		width:49%;
		margin:10px 2% 10px 0;
		height:313px;
	}
	.honornr_n ul li:nth-child(3n) {
		margin-right:2%;
	}
	.honornr_n ul li:nth-child(2n) {
		margin-right:0;
	}
}
@media(max-width:640px) {
	.search_box{
		width:100%;
	}
	.search_box input{
		font-size:18px;
		line-height:28px;
	}
	.logo img {
        height:24px;
    }
	.swiper-pagination-bullet,.swiper-pagination-bullet-active{
		width:20px;
	}
	.swiper-pagination-bullet{
		margin-left:10px;
	}
	.banner .swiper-pagination {
        bottom:20px;
    }
	.banner .swiper-slide .img > img {
		width:110%;
		margin-left:-5%;
	}
	.banner .bannertext .banimg{
		margin-bottom:40px;
	}
	.banner .bannertext {
		width:61%;
	}
	.banner .more a {
        width: 120px;
        height: 40px;
        font-size: 15px;
        line-height: 40px;
    }
	.more a{
		width:140px;
		height:50px;
		line-height:50px;
	}
	.pronr .swiper-button div {
        width:40px;
        height:40px;
    }
	.yyly .tit {
        top:20px;
    }
	.yyly ul li .yylynr{
        padding:0 10px;
    }
	.yyly ul li p {
        font-size: 13px;
        line-height: 23px;
    }
	.yyly ul li .yylynr .more a{
        width: 120px;
        line-height: 40px;
		font-size:15px;
    }
	.yyly{
		height:1500px;
	}
	.yyly ul li {
        width: 50%;
        height: 33.3333333333333333333%;
    }
	.yyly ul li .yylynr .more a {
        width: 110px;
        line-height:40px;
        font-size:14px;
    }
	.yyly ul li:hover .yylynr .more a{
		margin-top:10px;
	}
	.jjfa h3 {
        font-size:30px;
        line-height:40px;
    }
	.newslist h5{
		height:auto;
	}
	.newsmenu ul li a {
        font-size:20px;
    }
	.newslist .newsimg,.newslist .newsimg img{
        height:auto;
    }
	.bjleft .bjbot {
		font-size: 20px;
	}
	.bjleft .bjbot span {
		margin-left: 10px;
		font-size: 40px;
	}
	.bjleft .bjbot i {
		font-size: 20px;
	}
	.aboutlist_n ul li .aboutnum .timer{
        font-size: 40px;
        line-height: 40px;
    }
	.pronr_n ul li .proimg_n{
        height:196px;
    }
	.prolf_n ul {
		margin-top:40px;
	}
	.honornr_n ul li{
		height:261px;
	}
	.newsnr_n ul li{
		width:100%;
		margin:20px 0;
	}
	.newsmore{
		margin-top:20px;
	}
	.newsnr_n ul li:nth-child(3n){
        margin-right:0;
    }
	.contactnr_n a{
		font-size:26px;
	}
	.botlogo img{
		height:40px;
	}
	.footerrt ul li h4,.footerrt ul li h4 a{
		font-size:18px;
	}
	.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 .banimg {
        margin-bottom:30px;
    }
	.pronr_n ul li .proimg_n{
        height:165px;
    }
	.honornr_n ul li{
		height:220px;
	}
	.footerrt ul{
		flex-wrap:wrap;
		justify-content:left;
	}
	.footerrt ul li{
		width:33.333333333333333333333%;
		text-align:center;
	}
}
@media(max-width:425px) {
	.banner .bannertext{
		bottom:30px;
	}
	.banner .bannertext .banimg {
        margin-bottom:20px;
    }
	.banner .more a {
        width: 100px;
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }
	.jjfa h3 {
        font-size:26px;
        line-height:36px;
    }
	.aboutlist ul li dl dt .timer {
        font-size:35px;
        line-height:35px;
    }
	.menu_n ul li {
        margin-right:0;
        width:50%;
        text-align: center;
    }
	.pronr_n ul li .proimg_n{
        height:130px;
    }
	.honornr_n ul li{
		height:173px;
	}
	.contact_n ul li{
        padding:30px 20px;
    }
	.contactnr_n a {
        font-size: 22px;
    }
	.footernr .footerlf .bottel span,.footernr .footerlf .bottel span a{
        font-size: 28px;
        line-height: 38px;
    }
}
@media(max-width:375px) {
	.banner .bannertext .banimg{
        margin-bottom:10px;
    }
	.banner .bannertext {
        bottom:25px;
    }
	.jjfa h3 {
        font-size:24px;
        line-height:34px;
    }
	.aboutlist ul li dl dt .timer {
        font-size:30px;
        line-height:30px;
    }
	.aboutlist ul li dl dt {
        font-size:14px;
    }
	.aboutlist ul li dl dd {
        font-size:14px;
        line-height:24px;
    }
	.pronr_n ul li .proimg_n{
        height:115px;
    }
	.honornr_n ul li{
		height:153px;
	}
	.contactnr_n a {
        font-size: 20px;
    }
	.footerrt ul li h4, .footerrt ul li h4 a {
        font-size: 16px;
    }
	.footernr .footerlf .bottel span,.footernr .footerlf .bottel span a{
        font-size:24px;
        line-height:34px;
    }
}
@media(max-width:320px) {
	.pronr_n ul li .proimg_n{
        height:98px;
    }
	.honornr_n ul li{
		height:130px;
	}
}