﻿@charset "utf-8";



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

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

@font-face
{
	font-family: myTwoFont;
	src: url('../../index.html'),
		 url('../../index.html'); /* IE9 */
}

/* 全局样式

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

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

p{line-height:25px;}

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

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



*{margin:0;padding:0;}

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

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

.body{background:#fff;}

.nbody{background:#efefef;}

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



img{border:0px;}

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

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

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Microsoft YaHei","Arial";

	}

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



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

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

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

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

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

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

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



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

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



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



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

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

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

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

	}

/* top

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

.header{
	width:100%;
	height:100px;
	position: absolute;
	z-index: 998;
	top:0;
	padding:0 1%;
	background: rgba(0, 0, 0, .3);
	}
.logo{
	overflow:hidden;
	padding:20.5px 0;
}
.toptel{
	width:100px;
	height:100%;
	background:#024d9e url(../images/icon2.png) no-repeat center;
}
.language{
	width:104px;
	height:34px;
	font-size:16px;
	font-family:Arial;
	text-align:center;
	line-height:34px;
	position:relative;
	background:#fff;
	margin-top:33px;
	border-radius:20px;
	margin-right:16px;
}
.language a{
	font-size:16px;
}
.language a i{
	margin-left:10px;
}
.language .languagenr{
	width:100px;
    display: none;
    position: absolute;
    right: 0;
    top: 34px;
}
.language .languagenr p{
	width:100%;
	padding:0;
	background: rgba(25,71,186,0.8);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin:1px 0 0 0;
	border-radius:5px;
}
.language .languagenr p a {
	width:100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
	display:block;
}
.language .languagenr p:hover{
	background:#1947ba;
}
.small{
	background:rgba(0,0,0,0.5);
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3); 
}
.search{
	padding-top:33.5px;
	position:relative;
	cursor:pointer;
}	
.search_box{
	width:200px;
	position: absolute;
	top:80px;
	right:10px;
	background-color:#e6e6e6;
	padding:10px; 
	z-index:99;
	display:none;
	}
.search_box input{
	width:80%;
	height: 30px;
	line-height: 30px;
	padding-left: 10px;
	float:left;
	}
.search_box button{
	width:20%;
	height: 30px;
	line-height: 30px;
	text-align:center;
	float:left;
	}
.search_box button img{
	max-width:100%;
	height:auto;
}
/* nav
-------------------------------------------------------------- */
.menu, .menu ul {

  list-style: none;

  padding: 0;

}



.menu > li {

  position: relative;

  display: inline-block;

  outline: 0;

}



.submenu {

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 0;

  overflow: hidden;

  /* IE8 needs this */

  overflow: hidden\0/ !important;

  max-height: 0;

  /* A .submenu should be only revealed when hovering the .menu */

  pointer-events: none;

}



.menu > li:hover .submenu, .menu > li:focus .submenu {

  pointer-events: auto;

  z-index: 10;

  max-height: 2000px;

  -webkit-transition: none;

     -moz-transition: none;

}



/* Default

 ================================================================= */

.submenu li {

  opacity: 0;



  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;

     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;

      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;

       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;

          transition: opacity .4s,         transform .6s, max-height .6s;

}



.menu > li:hover .submenu li, .menu > li:focus .submenu li {

  opacity: 1;



  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;

}

.nav{
	text-align:right;
	margin-right:168px;
}
.nav > ul{

	display:inline-block;
	margin:0;
	}

.nav span{

	display:block !important;

	width:100%;

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


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

.nav .menu > li a{
	color:#fff;
	font-size:17px;
	display:block;
	padding:0 40px;
	line-height:100px;
	}

.nav .menu > li:hover a,.nav .menu > li.active a{
	font-weight:bold;
}


.nav .menu > li .submenu{

	width:200px;
	left:50%;
	margin-left:-100px;

	}

.nav .menu > li .submenu li{

	width:100%;
	line-height:30px;
	padding:5px 0;
	background:rgba(25,71,186,0.8);
	text-align:center;
	margin-top:1px;

}

.nav .menu > li .submenu li a{

	display:block;
	color:#fff;
	background:none;
	font-size:14px;
	padding:0;
	line-height:30px;
}

.nav .menu > li .submenu li:hover{

	background:#1947ba;

}

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

/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	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 .img .banner1-1,.banner .img .banner2-1,.banner .img .banner3-1{
	overflow:hidden;
	position:absolute;
	left:11.6%;
	top:44.2%;
	z-index:99;
}
.banner .img .banner1-1{
	width:27%;
	}
.banner .img .banner2-1{
	width:27.4%;
	}
.banner .img .banner3-1{
	width:24%;
	}
.banner .img{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .bannernr1{
	width:28%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:12%;
}
.banner .swiper-container .bannernr2{
	width:35%;
	overflow:hidden;
	position:absolute;
	left:11.5%;
	bottom:25%;
}
.banner .swiper-container .bannernr3{
	width:48%;
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-24%;
	bottom:28%;
	text-align:center;
}
.banner .swiper-container .banimg{
	width:100%;
	overflow:hidden;
}
.banner .swiper-container .banimg img{
	max-width:100%;
	height:auto;
}
.banner .swiper-container p{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-family:Arial;
	line-height:25px;
	margin-top:54px;
}
.banner .banmore{
	width:100%;
	overflow:hidden;
	margin-top:104px;
}
.banner .swiper-container .bannernr3 .banmore{
	margin:90px auto 0;
}
.banner .swiper-container .bannernr3 .banmore a{
	margin:auto;
	text-align:left;
}
.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

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

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

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}
.banner .swiper-slide .img img{
	width:100%;
	height:auto;
}
.banner .img .bannerimg img{
	width:auto;
	max-width:100%;
	height:auto;
	}
.banner .bannermore{
	width:170px;
	height:60px;
	background:#fff;
	line-height:60px;
	padding-left: 34px;
	border-radius: 30px 30px 0 30px;
    position: relative;
	margin-top:105px;
}
.banner .bannermore a{
	display:block;
	color:#1947ba;
	font-size:16px;
}
.banner .bannermore a:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #1947ba;
    border-radius: 50%;
    position: absolute;
    right: 28px;
    top: 25px;
}
.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
}

.banner .swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

/*shubiao*/
.shubiao{
	padding-top:20px;
	position:absolute;
	left:50%;
	margin-left:-15px;
	bottom:40px;
	z-index:99;
}
.shubiao span{
	width:1px;
	height:116px;
	background:#fff;
	position:absolute;
	left:27.5px;
	bottom:100px;
}
.mouse {
  position: relative;
  width: 20px;
  height: 35px;
  border-radius: 30px;
  border: 2px solid #fff;
  margin:auto;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 3.5px;
  height: 8px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.shubiao p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	line-height:30px;
	margin-top:5px;
}

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

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
.banner_more{
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	position:absolute;
	left:18%;
	bottom:124px;
	z-index:99;
}

.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{
	overflow:hidden;
	position:absolute;
	bottom:55px;
	z-index:100;
	right:11.5%;
	}
.banner .swiper-button .swiper-button-prev,.banner .swiper-button .swiper-button-next{
	width:13px;
	height:20px;
	outline:none;
	float:left;
	border-radius:50%;
	margin-top:10px;
	}
.banner .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
	}
.banner .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	}
.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination {
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	float:left;
	margin:0 20px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
	float:left;
	width:40px;
	height:3px;
	background:#fff;
	display:block;
	color:rgba(255,255,255,0.3);
	margin:0 5px;
	font-size:22px;
	font-family:Arial;
	line-height:30px;
	position:relative;
	}
.banner .swiper-pagination .swiper-pagination-bullet-active{
	width:70px;
	background:#ca0f16;
}

.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:rgba(255,255,255,0.2);
	line-height:40px;
	font-size:16px;
	float:left;
	font-size:31px;
	font-family:Arial;
}
.swiper-pagination-fraction span:first-child{
	margin-right:10px;
}
.swiper-pagination-fraction span:first-child:after{
	content:" / ";
}
.swiper-pagination-fraction span:before{
	content:"0 ";
}
.swiper-pagination-fraction .swiper-pagination-current{
	color:#fff;
	font-size:31px;
	font-family:Arial;
}

.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)
}

.zsjmnr .swiper-pagination-bullet {
	width: 144px;
	height: 2px;
	display: inline-block;
	background: #fff;
	margin:10px 0;
	outline:none;
}

.zsjmnr  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
}

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

.zsjmnr  .swiper-pagination-bullet-active {
	background: #b50b1e;
}

.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 {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.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*/

/* tit

-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#adadad;
	line-height:30px;
	font-family:Arial;
}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#424242;
	line-height:60px;
	margin-bottom:7px;
	font-weight:normal;
	}
.tit h3 a{
	font-size:50px;
	color:#424242;
	}
.bg{
	background:#f7f7f7;
	}
/* more
-------------------------------------------------------------- */
.more{
	width:210px;
	height:60px;
	line-height:60px;
	background:#fff url(../images/icon4.png) no-repeat 88% center;
	padding-left:46px;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.more a{
	display:block;
	font-size:16px;
	color:#1a1a1a;
	}
.more:hover{
	background:#024d9e url(http://www.xingyouelc.com/skin/images/iconh4.png) no-repeat 92% center;
	}
.more:hover a{
	color:#fff;
	}

/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat top center;
	background-size:cover;
	padding-bottom:116px;
	padding-top:210px;
	position:relative;
	background-attachment: fixed;
	}
.about:before{
	content:"";
	width:100%;
	height:906px;
	background:#005299;
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	}
.about .aboutlf{
	overflow:hidden;
	padding:0 180px 0 0;
	position:relative;
	z-index:9;
	}
.about .abouten{
	width:100%;
	overflow:hidden;
	}
.about .abouten p{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.03);
	font-size:187px;
	font-weight:bold;
	font-family:Arial;
	line-height:160px;
	text-transform:uppercase;
	}
.aboutlf h4{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#fff;
	line-height:60px;
	font-weight:normal;
	margin-bottom:14px;
	}
.aboutlf h4 a{
	font-size:50px;
	color:#fff;
}
.aboutlf .abouten{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	font-family:Arial;
	}
.aboutlf .aboutjs{
	width:100%;
	overflow:hidden;
	font-size:18px;
	line-height:32px;
	color:#fff;
	margin-top:40px;
	}
.aboutmenu{
	margin-bottom:40px;
}
.aboutmenu,.aboutmenu ul{
	width:100%;
	overflow:hidden;
}
.aboutmenu ul li{
	overflow:hidden;
	float:left;
	line-height:30px;
	margin-right:18px;
	position:relative;
}
.aboutmenu ul li:after{
	content:"";
	position:absolute;
	width:100%;
	height:3px;
	background:#1947ba;
	left:0;
	bottom:7px;
	z-index:-1;
}
.aboutmenu ul li:last-child:after{
	display:none;
}
.aboutmenu ul li:last-child:hover:after{
	display:block;
}
.aboutmenu ul li a{
	font-size:18px;
	color:#fff;
}
.aboutmore{
	width:100%;
	overflow:hidden;
	margin-top:348px;
}
.aboutmore a{
	display:block;
	width:170px;
	height:60px;
	line-height:60px;
	font-size:16px;
	color:#1947ba;
	background:#fff;
	padding-left:34px;
	border-radius:30px 30px 0 30px;
	position:relative;
}
.aboutmore a:after{
	content:"";
	width:10px;
	height:10px;
	background:#1947ba;
	border-radius:50%;
	position:absolute;
	right:28px;
	top:25px;
}
.cjsbmore{
	width:100%;
	overflow:hidden;
	margin-top:348px;
}
.cjsbmore a,.hzhbmore a{
	display:block;
	width:170px;
	height:60px;
	line-height:60px;
	font-size:16px;
	color:#fff;
	background:#1947ba;
	padding-left:34px;
	border-radius:30px 30px 0 30px;
	position:relative;
}
.cjsbmore a:after,.hzhbmore a:after{
	content:"";
	width:10px;
	height:10px;
	background:#fff;
	border-radius:50%;
	position:absolute;
	right:28px;
	top:25px;
}
.hzhbmore a{
	float:right;
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:url(http://www.xingyouelc.com/skin/images/probg.jpg) no-repeat left center;
	padding-top:120px;
	padding-bottom:138px;
	position:relative;
	}
.pro .proen{
	width:47%;
	overflow:hidden;
	position:absolute;
	left:0;
	top:440px;
	z-index:-1;
}
.pro .proen img{
	max-width:100%;
	height:auto;
}
.pro .pronr{
	position:relative;
	}
.pro .pronr .swiper-button{
	overflow:hidden;
	position:absolute;
	left:0;
	top:234px;
	z-index:99;
}
.pro .pronr .swiper-button div{
	width:38px;
	height:38px;
	overflow:hidden;
	border-radius:50%;
	float:left;
	border:solid 3px #101010;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.pro .pronr .swiper-button .swiper-button-prev{
	margin-right:18px;
	background:url(../images/prev2.png) no-repeat center;
}
.pro .pronr .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
}
.pro .pronr .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
}
.pro .pronr .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
}
.pro .pronr .swiper-button div:hover{
	border:solid 3px #1947ba;
}
.pronr .prolf,.pronr .prort{
	padding:0;
	overflow:hidden;
	}
.prort .prolist{
	width:100%;
	height:570px;
	overflow:hidden;
	background:#f0f0f1;
	border-top:solid 5px #1947ba;
	border-radius:0 0 0 100px;
	position:relative;
}
.mySwiper2 .swiper-slide .prolist .pronum{
	overflow:hidden;
	position:absolute;
	font-size:594px;
	color:#fff;
	font-family:Arial;
	left:176px;
	top:48px;
	z-index:0;
	line-height:480px;
}
.prort .prolist .prolistlf{
	width:38%;
	overflow:hidden;
	padding-left:40px;
	padding-top:344px;
	position:relative;
	z-index:9;
}
.prort .prolist .prolistlf h4{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#424242;
	line-height:35px;
}
.prort .prolist .prolistlf h5{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#424242;
	line-height:36px;
	margin-top:16px;
}
.prort .prolist .prolistlf p{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:16px;
	color:#a7a7a8;
}
.prort .prolist .proimg{
	width:100%;
	overflow:hidden;
	text-align:center;
	padding-top:0px;
	position:relative;
	z-index:9;
}
.prort .prolist .proimg img{
	max-width:100%;
	height:auto;
}
.probt{
	overflow:hidden;
	text-align:center;
}
.probt span{
	overflow:hidden;
	font-size:18px;
	color:#9f9f9f;
	line-height:30px;
	cursor:pointer;
	position:relative;
}
.mySwiper{
	margin-top:62px;
}
.mySwiper .swiper-slide-thumb-active .probt span:after{
	content:"";
	width:100%;
	height:5px;
	background:#1947ba;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
}
.mySwiper .swiper-slide-thumb-active .probt span{
	font-size:20px;
	color:#424242;
	font-weight:bold;
}
.pronr .prolf .projs{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#9a9a9a;
	line-height:30px;
	margin-top:50px;
	}
.pronr .prort ul li img{
	max-width:100%;
	height:auto;
}
.pronr .prolf .promore{
	width:100%;
	overflow:hidden;
	margin-top:452px;
	}
.pronr .prolf .promore a{
	width:170px;
	height:60px;
	line-height:60px;
	font-size:16px;
	display:block;
	padding-left:34px;
	background:#1947ba;
	color:#fff;
	border-radius:30px 30px 0 30px;
	position:relative;
	}
.pronr .prolf .promore a:after{
	content:"";
	width:10px;
	height:10px;
	background:#fff;
	position:absolute;
	right:28px;
	top:25px;
	border-radius:50%;
	}
/* honor
-------------------------------------------------------------- */
.honor{
	width:100%;
	overflow:hidden;
}
.honor .honorlf,.honor .honorrt{
	overflow:hidden;
	height:1000px;
}
.honor .honorlf{
	padding:172px 0 0 12%;
	background:url(../images/honorbg1.jpg) no-repeat top center;
	background-size:cover;
}
.honor .honorlf h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#fff;
	line-height:55px;
	font-weight:normal;
}
.honor .honorlf h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	line-height:40px;
	font-weight:normal;
	margin-top:14px;
}
.honor .honorlf p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	line-height:30px;
	margin-top:94px;
}
.honor .honorrt{
	padding:146px 12% 0 0;
	background:url(../images/honorbg2.jpg) no-repeat top center;
	background-size:cover;
}
.honor .honorrt h3{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#424242;
	line-height:55px;
	font-weight:normal;
}
.honor .honorrt h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#424242;
	line-height:40px;
	font-weight:normal;
	margin-top:14px;
}
.honor .honorrt p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#424242;
	line-height:30px;
	margin-top:72px;
}
.honor .honorrt h3,.honor .honorrt h4,.honor .honorrt p{
	padding-left:92px;
}
.honorimg{
	width:100%;
	overflow:hidden;
	margin-top:114px;
}
.honorimg img{
	max-width:100%;
	height:auto;
}
.honorlist{
	width:80%;
	margin-top:132px;
	position:relative;
}
.honorlist .mySwiper3{
	width:100%;
	overflow:hidden;
}
.honorlist .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 100%;

    }
.honorlist .swiper-slide img {
	width:100%;
	display: block;
}

.honorlist .swiper-slide p {
	line-height: 98px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
	margin: 0;
}

.honorlist .swiper-pagination {
	width: 100%;
	bottom: -85px;
}

.honorlist .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #030000;
	width: 10px;
	height: 10px;
	opacity: .6;
}

.honorlist .swiper-pagination-bullets .swiper-pagination-bullet-active {
	width: 34px;
	display: inline-block;
	height: 10px;
	border-radius: 10px;
	transition: width .4s cubic-bezier(.4, 0, .2, 1);
	background-image: linear-gradient(80deg, #0989c5, #995cb6);
	opacity: 1;
}
.honorpic{
	width:100%;
	overflow:hidden;
	/*transition-duration: 0ms;
    transform: translate3d(0px, 0px, -200px) rotateX(0deg) rotateY(60deg) scale(1);
    z-index: -1;*/
}
.honorpic img{
	max-width:100%;
	height:auto;
}
.honorlist .swiper-button{
	overflow:hidden;
}
.honorlist .swiper-button-prev,.honorlist .swiper-button-next{
	width:37px;
	height:37px;
	overflow:hidden;
	position:absolute;
	top:50%;
	margin-top:-18.5px;
	z-index:99;
	opacity:0.3;
}
.honorlist .swiper-button-prev{
	background:url(../images/prev4.png) no-repeat center;
	left:-64px;
}
.honorlist .swiper-button-next{
	background:url(../images/next4.png) no-repeat center;
	right:-64px;
}
.honorlist .swiper-button-prev:hover,.honorlist .swiper-button-next:hover{
	opacity:1;
}
/* cjsb
-------------------------------------------------------------- */
.cjsb{
	width:100%;
	overflow:hidden;
	padding-left:11.6%;
	padding-top:126px;
	padding-bottom:150px;
	}
.cjsbnr{
	width:100%;
	overflow:hidden;
	margin-top:26px;
	}
.cjsbnr .cjsblf{
	width:20%;
	overflow:hidden;
	padding-top:68px;
	}
.cjsbnr .cjsblf ul,.cjsbnr .cjsblf ul li{
	width:100%;
	overflow:hidden;
	}
.cjsbnr .cjsbrt{
	width:80%;
	overflow:hidden;
	position:relative;
	}
.cjsbnr .cjsbrt .swiper-container{
	width:150%;
}
.cjsbnr .cjsblf ul li{
	line-height:32px;
	position:relative;
	margin-top:25px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.cjsbnr .cjsblf ul li:before{
	content:"";
	width:50px;
	height:1px;
	background:#1947ba;
	position:absolute;
	left:0;
	top:15.5px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	opacity:0;
}
.cjsbnr .cjsblf ul li:hover,.cjsbnr .cjsblf ul li.active{
	padding-left:68px;
}
.cjsbnr .cjsblf ul li:hover:before,.cjsbnr .cjsblf ul li.active:before{
	opacity:1;
}
.cjsbnr .cjsblf ul li a{
	font-size:22px;
	color:#424242;
	}
.cjsbnr .cjsblf ul li:hover a,.cjsbnr .cjsblf ul li.active a{
	font-size:25px;
	color:#1947ba;
}
.cjsbnr .cjsblf .cjsbmore{
	margin-top:206px;
}
.cjsblist{
	width:100%;
	overflow:hidden;
	padding-left:48px;
}
.cjsbrt .swiper-slide .cjsbimg{
	width:100%;
	overflow:hidden;
	float:right;
}
.cjsbnr .cjsbrt .swiper-container .swiper-slide-active .cjsbimg{
	border-radius:100px 0 0 0;
}
.cjsbrtcont{
	width:100%;
	overflow:hidden;
	visibility:hidden;
	height:0;
}
.cjsbrtcont.active {
    visibility: visible;
    height: auto;
}
.cjsbimg img{
	width:100%;
	height:auto;
}
.cjsbtit{
	width:426px;
	height:284px;
	background:rgba(25,71,186,0.8);
	border-radius:20px;
	position:absolute;
	left:0;
	bottom:35px;
	padding:48px 40px 0 40px;
	z-index:99;
	visibility:hidden;
}
.cjsbtit h4{
	width:100%;
	overflow:hidden;
	font-size:36px;
	color:#fff;
	line-height:46px;
	font-weight:normal;
	border-bottom:solid 1px #fff;
	padding-bottom:30px;
}
.cjsbrtcont .swiper-slide-active .cjsbtit{
	visibility:visible;
}
.cjsbnr .cjsbrt .swiper-button{
	overflow:hidden;
	position:absolute;
	left:370px;
	bottom:35px;
	z-index:100;
}
.cjsbnr .cjsbrt .swiper-button div{
	width:56px;
	height:56px;
	overflow:hidden;
	float:left;
}
.cjsbnr .cjsbrt .swiper-button .swiper-button-prev{
	background:#b52d2d url(../images/prev3.png) no-repeat center;
}
.cjsbnr .cjsbrt .swiper-button .swiper-button-next{
	background:#1947ba url(../images/next3.png) no-repeat center;
}
/* sb
-------------------------------------------------------------- */
.sb{
	width:100%;
	height:1012px;
	overflow:hidden;
	background:url(../images/cncbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:245px;
	padding-bottom:260px;
	background-attachment: fixed;
}
.sbnr{
	position:relative;
	height:100%;
}
.sbnr h3{
	width:100%;
	overflow:hidden;
	font-size:50px;
	color:#fff;
	line-height:60px;
	font-weight: normal;
}
.sbcont{
	width:100%;
	overflow:hidden;
	visibility:hidden;
	height:0;
}
.sbcont.active{
	visibility:visible;
	height:auto;
}
.sblist,.sblist ul{
	width:100%;
	overflow:hidden;
}
.sblist{
	position:absolute;
	left:0;
	bottom:0;
}
.sblist ul li{
	width:200px;
	height:280px;
	border:solid 1px rgba(255,255,255,0.4);
	border-radius:15px;
	padding:27px 30px;
	margin-right:18px;
	float:left;
	cursor:pointer;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.sblist ul li h4{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#fff;
	line-height:35px;
	font-weight:normal;
}
.sblist ul li .sbicon{
	width:100%;
	overflow:hidden;
	margin-top:150px;
	opacity:0.3;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.sblist ul li .sbicon img{
	max-width:100%;
	height:auto;
}
.sblist ul li:hover,.sblist ul li.active{
	background:rgba(255,255,255,0.3);
}
.sblist ul li:hover .sbicon,.sblist ul li.active .sbicon{
	opacity:1;
}
/* sbqd
-------------------------------------------------------------- */
.sbqd{
	margin-top:60px;
	margin-bottom:60px;
}
.sbqdnr{
	width:100%;
	overflow:hidden;
}
.sbqdnr table{
	width:100%;
	overflow:hidden;
	border-collapse: collapse;
    border-spacing: 0;
}
.sbqdnr table tr,.sbqdnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
.sbqdnr table td p,.sbqdnr table td span{
	font-size:16px !important;
	line-height:30px;
}
/* yj
-------------------------------------------------------------- */
.yj{
	width:100%;
	overflow:hidden;
	background:url(http://www.xingyouelc.com/skin/images/yjbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:145px;
	padding-bottom:136px;
	}
.yj .tit h3,.yj .tit h3 a,.yj .tit p{
	color:#fff;
	}
.yj .tit h3:before{
	background:#fff;
	}
.yjnr ul{
	margin-top:71px;
	}
.yjnr ul,.yjnr ul li{
	width:100%;
	overflow:hidden;
	}
.yjnr ul li{
	font-size:17px;
	color:#fff;
	padding-left:26px;
	line-height:30px;
	position:relative;
	margin-top:15px;
	}
.yjnr ul li:before{
	content:"";
	width:10px;
	height:10px;
	background:#b8976b;
	border-radius:50%;
	position:absolute;
	left:0;
	top:10px;
	}
.yjmore{
	width:100%;
	overflow:hidden;
	margin-top:150px;
	}
.yjmore a{
	display:block;
	font-size:16px;
	color:#273e71;
	width:220px;
	height:60px;
	line-height:60px;
	padding-left:44px;
	background:#fff url(../images/icon1.png) no-repeat 87% center;
	}

/* sdly
-------------------------------------------------------------- */
.sdly{
	width:100%;
	overflow:hidden;
	background:#f2f2f2 url(http://www.xingyouelc.com/skin/images/ysbg.jpg) no-repeat center 64px;
	background-size:cover;
	margin-top:120px;
	padding-bottom:186px;
	}
.sdlynr{
	position:relative;
	}
.sdlynr .sdlyimgin{
	overflow:hidden;
	position:absolute;
	left:50%;
	margin-left:-526.5px;
	top:28px;
	z-index:99;
	}
.sdlynr .sdlyimgin img{
	max-width:100%;
	height:auto;
	}
.sdlymore{
	width:100%;
	overflow:hidden;
	position: relative;
    z-index: 100;
	}
.sdlymore a{
	width:160px;
	height:50px;
	display:block;
	font-size:16px;
	color:#2c2c2c;
	font-weight:bold;
	text-align:center;
	line-height:50px;
	border:solid 1px #2c2c2c;
	margin:78px auto 0;
	}
.sdlylist{
	width:100%;
	overflow:hidden;
	margin-top:119px;
	}
.sdly_cont{
	overflow:hidden;
	background:#fff;
	margin-top:55px;
	}
.sdlyimg{
	overflow:hidden;
	}
.sdlybt{
	width:56px;
	overflow:hidden;
	font-size:18px;
	color:#2c2c2c;
	padding:50px 20px 0 20px;
	line-height:20px;
	}
/* shlist
-------------------------------------------------------------- */
.shlist{
	margin-top:230px;
	}
.shlist,.shlist ul{
	width:100%;
	overflow:hidden;
	}
.shlist ul li{
	width:23.5%;
	height:408px;
	overflow:hidden;
	background:rgba(0,82,153,0.8);
	float:left;
	margin-right:2%;
	border:solid 1px #1f78c3;
	padding:82px 50px 0 50px;
	position:relative;
	}
.shlist ul li:after{
	content:"";
	width: 0;
	height: 0;
	border-style:solid;
	border-width:0 25px 25px 0;
	border-color:transparent transparent #d00c12 transparent;
	position:absolute;
	left:0;
	bottom:0;
	z-index:9;
	}
.shlist ul li:last-child{
	margin-right:0;
	}
.shlist ul li .shicon,.shlist ul li h4,.shlist ul li p{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.shlist ul li .shicon img{
	max-width:100%;
	height:auto;
	}
.shlist ul li span{
	display:block;
	width:25px;
	height:5px;
	background:#d00c12;
	margin:22px auto 0;
	}
.shlist ul li h4{
	font-size:30px;
	color:#fff;
	line-height:40px;
	margin-top:24px;
	}
.shlist ul li p{
	font-size:16px;
	color:#fff;
	margin-top:10px;
	}

/* newsmenu
-------------------------------------------------------------- */
.newsmenu{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:36px;
	margin-bottom:48px;
	}
.newsmenu ul{
	overflow:hidden;
	display:inline-block;
	}
.newsmenu ul li{
	overflow:hidden;
	float:left;
	width:160px;
	height:50px;
	text-align:center;
	line-height:50px;
	border:solid 1px #2c2c2c;
	margin:10px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newsmenu ul li a{
	font-size:16px;
	color:#2c2c2c;
	}
.newsmenu ul li:hover{
	background:#005299;
	border:solid 1px #005299;
	}
.newsmenu ul li:hover a{
	color:#fff;
	}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:url(../images/newsbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:156px;
	padding-bottom:230px;
	}
.news .newstit{
	margin-bottom:45px;
	}
.newstit .newstitlf,.newstit .newstitrt{
	overflow:hidden;
	padding:0;
	}
.newstit .newstitrt{
	text-align:right;
}
.newstit .newstitrt ul{
	overflow:hidden;
	display:inline-block;
}
.newstit .newstitrt ul li{
	overflow:hidden;
	float:left;
	font-size:16px;
	color:#3c3c3c;
	line-height:30px;
	margin-left:74px;
}
.newstit .newstitrt ul li:first-child{
	margin-left:0;
}
.newstit .newstitrt ul li a{
	font-size:16px;
	color:#3c3c3c;
}
.newstit .newstitrt ul li a:hover{
	color:#1947ba;
}
.aboutrt{
	overflow:hidden;
	padding:0;
}
.aboutenimg{
	width:64%;
	overflow:hidden;
	text-align:right;
	float:right;
	margin-top:347px;
}
.aboutenimg img{
	max-width:100%;
	height:auto;
}
.newslist{
	width:100%;
	overflow:hidden;
	padding-left:11.6%;
}
.newslist .swiper-container{
	width:130%;
	}
.newscont{
	width:100%;
	overflow:hidden;
}
.newscont .newsbg{
	width:95%;
	height:348px;
	background:#fff;
	border-radius:15px;
	float:right;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.newsbg .newsimg{
	overflow:hidden;
	padding:0;
	border-radius:15px;
	margin-left:-5%;
	margin-top:40px;
	height:283px;
	position:relative;
	}
.newsbg .newsimg img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.newsbg .newsimg:hover img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.newsbg .newsrt{
	overflow:hidden;
	padding:58px 35px 0 25px;
	}
.newsbg .newsrt .newsdate{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	color:#1947ba;
	line-height:30px;
	}
.newsbg .newsrt h4{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#252525;
	line-height:32px;
	font-weight:normal;
	margin-top:6px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newsbg .newsrt p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#3c3c3c;
	margin-top:20px;
	}
.newsbg .newsrt .newsmore{
	width:100%;
	height:16px;
	background:url(../images/icon8.png) no-repeat left center;
	margin-top:42px;
	}
.newscont:hover .newsbg{
	background:#1947ba;
	}
.newscont:hover .newsbg .newsrt .newsdate,.newscont:hover .newsbg .newsrt h4,.newscont:hover .newsbg .newsrt p{
	color:#fff;
	}
.newscont:hover .newsbg .newsrt .newsmore{
	background:url(../images/iconh8.png) no-repeat left center;
	}
.newslist .swiper-button{
	width:100%;
	overflow:hidden;
	padding-left:35px;
	margin-top:58px;
	}
.newslist .swiper-button div{
	width:38px;
	height:38px;
	border-radius:50%;
	overflow:hidden;
	border:solid 2px #000;
	float:left;
	}
.newslist .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
	}
.newslist .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	}
.newslist .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
	margin-left:18px;
	}
.newslist .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	}
.newslist .swiper-button div:hover{
	border:solid 2px #1947ba;
	}
/* hzhb
-------------------------------------------------------------- */
.hzhb{
	width:100%;
	overflow:hidden;
	padding-top: 90px;
    padding-bottom: 90px;
}
.hzhb .hzhbnr ul{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.hzhb .hzhbnr ul li{
	width:23%;
	overflow:hidden;
	margin:20px 1%;
	float:left;
	position:relative;
	height:126px;
	border:solid 5px #ececec;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.hzhb .hzhbnr ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.hzhb .hzhbnr ul li:hover{
	border:solid 5px #1947ba;
}
.hzhb .hzhbnr ul li:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
/* nhzhb
-------------------------------------------------------------- */
.nhzhb{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhzhbnr,.nhzhbnr ul{
	width:100%;
	overflow:hidden;
	}
.nhzhbnr ul li{
	width:23%;
	overflow:hidden;
	margin:20px 1%;
	float:left;
	border: solid 5px #ececec;
	position:relative;
	height:126px;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.nhzhbnr ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.nhzhbnr ul li:hover img{
	transform:translate(-50%, -50%) scale(1.05);
	}
.nhzhbnr ul li img{
	max-width:100%;
	height:auto;
	}
.nhzhbnr ul li:hover{
	border:solid 5px #13489d;
}
/* link
-------------------------------------------------------------- */
.link{
	width:90%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.6);
	line-height:30px;
	}
.linknr span{
	font-size:22px;
	color:#000;
	font-weight:bold;
	border-bottom:solid 4px #273e71;
	padding-bottom:3px;
	display:block;
	float:left;
	margin-right:44px;
	}
.link a{
	font-size:16px;
	color:rgba(255,255,255,0.6);
	margin-right:20px;
	}
.link a:hover{
	color:#fff;
	}
.footertop{
	width:100%;
	overflow:hidden;
	margin-bottom:62px;
	}
.botlogo{
	width:10%;
	overflow:hidden;
	}	
.botlogo img{
	max-width:100%;
	height:auto;
	}	
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	background:#f2f2f2;
	padding-top:72px;
	position:relative;
	border-top:solid 1px #dadada;
	padding-bottom:66px;
}
.footer .footerlf{
	width:84%;
	overflow:hidden;
}
.footer .footerlf ul{
	width:100%;
	overflow:hidden;
}
.footer .footerlf ul li{
	width:20%;
	overflow:hidden;
	float:left;
}
.footer .footerlf ul li h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	line-height:30px;
	color:#000;
	margin-bottom:24px;
	font-weight:normal;
}
.footer .footerlf ul li h4 a{
	font-size:18px;
	color:#000;
}
.footer .footerlf ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:10px;
}
.footer .footerlf ul li p a{
	font-size:16px;
	}
.footer .footerlf ul li a:hover{
	color:#1947ba;
}
.footer .footerrt{
	width:16%;
	overflow:hidden;
}
.footer .footerrt dl{
	overflow:hidden;
	margin-top:7px;
	float:right;
}
.footer .footerrt dl dt,.footer .footerrt dl dd{
	overflow:hidden;
}
.footer .footerrt dl dt{
	text-align:center;
	}
.footer .footerrt dl dt img{
	max-width:100%;
	height:auto;
}
.footer .footerrt dl dd{
	text-align:center;
	line-height:30px;
	color:#c1c3c0;
}
.footer .footerrt h4{
	text-align:right;
	}
.bot{
	width:100%;
	overflow:hidden;
	background:#000;
	padding-top:30px;
	padding-bottom:25px;
	}
.bot a{
	color:rgba(255,255,255,0.6);
}
.bot .botlf,.bot .botrt{
	overflow:hidden;
	padding:0;
	color: rgba(255,255,255,0.6);
	}
.bot .botlf p{
	color: rgba(255,255,255,0.6);
	line-height:28px;
}
.bot .botrt{
	text-align:right;
	}
.bot a:hover{
	color:#fff;
	}
.botsearch{
	width:100%;
	overflow:hidden;
}
.botsearch input{
	width:220px;
	height:48px;
	line-height:48px;
	background:#fff;
	border-radius:5px;
	padding-right:42px;
	padding-left:10px;
	position:relative;
	color:#333;
}
.botsearch button{
	position:absolute;
	right:16px;
	top:13.5px;
	z-index:99;
}
.boticon{
	width:100%;
	overflow:hidden;
	margin-top:15px;
}
/* searchnr
-------------------------------------------------------------- */
.search_n{
	margin-top:60px;
	margin-bottom:60px;
}
.searchnr{
	overflow:hidden;
	margin-bottom:15px;
}
.searchnr .card,.card-img-150,.card-body,.card-title,.card-text{
	width:100%;
	overflow:hidden;
}
.card-img-150{
	height:253px;
	border: 1px solid #ebebeb;
	position:relative;
}
.card-img-150 img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.card-img-150:hover img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.searchlist{
	width:100%;
	overflow:hidden;
}
.my-4{
	width: 100%;
    overflow: hidden;
    text-align: center;
}
.search_n .btn-info{
	background:#064b8a;
	border:solid 1px #064b8a;
}
.card-body h5{
	width:100%;
	overflow:hidden;
	line-height:30px;
	color:#000;
	font-size:16px;
	margin-top:10px;
	text-align:center;
}
.card-body h5 a,.card-body h5 span{
	color:#000 !important;
	font-size:16px;
}
.card-body p{
	width:100%;
	overflow:hidden;
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:600px;
	overflow:hidden;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	position:relative;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:800px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:525px;
	}
}
@media(max-width:1600px) {
	.banner_n{
		height:500px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:450px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:425px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:400px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:360px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:320px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:310px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:240px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:200px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:169px;
	}
}
.banner_n img{ 
	width:100%;
	height:auto;
}
.ibbe {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 88px;
	line-height: 88px;
	background: rgba(0, 0, 0, .5);
}

.ibeleft {
	float: left;
	width: 28%;
	box-sizing: border-box;
	padding: 0 1% 0 5%;
}

.ibltxt {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}
.ibltxt a{
	color: #fff;
}

.iberight {
	float: left;
	width: 72%;
	background: #1947ba;
	box-sizing: border-box;
	padding: 0 30px;
}

.ibrlink {
	padding: 0 40px;
	color: rgba(255, 255, 255, .6);
	font-size: 18px;
}

.ibrlink:hover,
.ibrlink.active {
	color: #fff;
}
.ibdown {
	position: absolute;
	left: 50%;
	bottom: 18%;
	transform: translateX(-50%);
}

.ibdown i {
	display: block;
	color: #fff;
	font-size: 20px;
	animation: trans1 1s infinite alternate;
}

@keyframes trans1 {
	from {
		transform: translateY(15px);
	}
	to {
		transform: translateY(0);
	}
}
.wapmenu{
	width:100%;
	overflow:hidden;
	background: #1947ba;
	display:none;
}
.wapmenu .ibbe{
	position:inherit;
}
.wapmenu .ibeleft{
	padding:0 2%;
}
/* position
-------------------------------------------------------------- */
.position {
	width: 100%;
	overflow: hidden;
	border-bottom: solid 1px #e6e6e6;
}
.positionnr .positionrt {
	text-align: right;
	font-size: 16px;
	color: #343434;
	line-height: 30px;
	padding: 10px 0 10px 41px;
	background: url(../images/icon10.png) no-repeat left center;
}
.positionnr .positionrt a {
	font-size: 16px;
	color: #343434;
}
.position a:hover {
	color: #0765a7;
}
.nmenu {
	width:100%;
	overflow: hidden;
	text-align:center;
	margin-bottom:30px;
}
.nmenu ul {
	overflow: hidden;
	display:inline-block;
}
.nmenu ul li {
	overflow: hidden;
	float: left;
	line-height: 50px;
	text-align: center;
}
.nmenu ul li a {
	padding:0 44px;
	font-size: 16px;
	color: #262626;
	display: block;
}
.nmenu ul li:hover,.nmenu ul li.active{
	background:#1947ba;
}
.nmenu ul li:hover a,.nmenu ul li.active a{
	color:#fff;
}

/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#1947ba;
	line-height:45px;
	}
.ntit p{
	width:100%;
	overflow:hidden;
	font-size: 22px;
    color: #b21e23;
	line-height:32px;
	font-weight:bold;
	}
.margin{
	padding-top:60px;
	margin-bottom:60px;
	}
/* menu_n
-------------------------------------------------------------- */
.menu_n{
	width:18%;
	overflow:hidden;
	margin-top:30px;
	text-align:center;
	padding-top:286px;
}
.menu_n ul,.menu_n ul li{
	width:100%;
	overflow:hidden;
}
.menu_n ul li{
	text-align:center;
	line-height:30px;
	margin:20px 0;
	position:relative;
}
.menu_n ul li:after{
	content:"";
	width:30px;
	height:1px;
	background:#b50b1e;
	position:absolute;
	right:70px;
	top:14.5px;
	opacity:0;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.menu_n ul li a{
	font-size:22px;
	color:#565656;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#b21e23;
}
.menu_n ul li:hover:after{
	opacity:1;
	}
.menu_n ul li:hover a{
	color:#fff;
	}
/* about
-------------------------------------------------------------- */
.about_n{
	width:100%;
	position:relative;
	padding-bottom:180px;
	margin-top:60px;
	}
.about_n .aboutimg_n{
	width:50%;
	overflow:hidden;
	position:absolute;
	right:0;
	top:0;
	z-index:0;
	border-radius:80px 0 0 0;
	}
.about_n .aboutimg_n img{
	width:100%;
	height:auto;
	}
.aboutcont_n{
	width:44%;
	overflow:hidden;
	padding-top: 20px;
	}
.aboutcont_n h3 {
    width: 100%;
    overflow: hidden;
    font-size: 36px;
    color: #424242;
    line-height: 46px;
    font-weight: normal;
}
.abouttit_n{
	width:100%;
	overflow:hidden;
	font-size: 45px;
    color: #414141;
    line-height: 55px;
	font-weight:bold;
	margin-bottom:7px;
	}
.abouttit_n a{
	font-size: 45px;
    color: #414141;
	}
.abouttit_n span{
	font-size: 45px;
	color:#61ab98;
	}
.aboutjs_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#747474;
	margin-top:32px;
	}
.aboutjs_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#747474;
}
/* ppln
-------------------------------------------------------------- */
.ppln_n{
	margin-top:60px;
	margin-bottom:80px;
}
.nabout-sm{
	width:49%;
	height:650px;
	overflow:hidden;
	background:url(../images/naboutbg1.jpg) no-repeat top center;
	background-size:cover;
	padding:60px 60px 0 60px;
	margin-top:50px;
	position:relative;
	}
.nabout-sm .nabout_icon,.nabout-jz .nabout_icon{
	position:absolute;
	left:0;
	bottom:80px;
	padding:0 60px;
}
.nabout-sm .nabout_icon img,.nabout-jz .nabout_icon img{
	max-width:100%;
	height:auto;
}
.nabout-jz{
	width:49%;
	height:650px;
	overflow:hidden;
	background:url(../images/naboutbg2.jpg) no-repeat top center;
	background-size:cover;
	padding:60px 60px 0 60px;
	margin-top:50px;
	position:relative;
	}
.nabout-jz h3,.nabout-sm h3{
	width:100%;
	overflow:hidden;
	font-size: 30px;
    line-height: 40px;
    color: #222;
	font-weight:normal;
	margin-bottom:20px;
	}
.nabout-jz p,.nabout-sm p{
	width:100%;
	overflow:hidden;
	font-size: 16px;
    line-height: 30px;
	}
.zzjg_n{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.zzjg_n img{
	width:100%;
	height:auto;
}
/* about_history_wrap
-------------------------------------------------------------- */
.about_history_wrap {
    position: relative;
    padding-bottom: 2.6041666vw;
}

.about_history_back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.about_history_box {
    position: relative;
    z-index: 9;
}

.about_history_title_box .public_title_box {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}


.about_history_head .about_public_label {
    color: #fff;
}

.about_history_content {
    padding: 5.7291666vw 0 4.1666vw 0;
}

.about_history_big {
    position: relative;
}

.about_history_photo {
    width: 32.375%;

}

.about_history_pic {
    width: 100%;

}

.about_history_img {
    width: 100%;
    padding-bottom: 125.8687%;
    -webkit-border-radius: 0 5.208333vw 0 0;
    border-radius: 0 5.208333vw 0 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(4vw);
    transform: translateY(4vw);
}

.about_history_fixed {
    position: relative;
}
.about_public_label {
    font-size: 76px;
    line-height:86px;
    color: #fff;
    margin-top: 0.5208333vw;
}
.about_history_mt {
    height: 4.1666vw;
}

.about_history_tab {
    width: 67.625%;
    z-index: 10;
    padding-left: 15.625vw;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(4vw);
    transform: translateY(4vw);
}

.about_history_pd {
    width: 100%;
}

.about_history_float {
    position: fixed;
    left: 0;
    padding: 0 8.3333vw;
}

.about_history_float .about_history_pd {
    width: 32.375%;
}

.about_history_end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    position: static;
}

.about_history_swiper {
    height: 100%;
}

.about_history_item_year {
    font-size: 90px;
    line-height: 100px;
    color: #fff;
}

.about_history_item_read {
    font-size: 0.8333vw;
    line-height: 1.3541666vw;
    color: #fff;
    margin-top: 1.5625vw;
}

.about_history_item_box {
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    margin-bottom: 7.291666vw;
    opacity: .2;
}

.about_history_item_box:last-child {
    margin: 0;
}

.about_history_item_big {
    width: 100%;
}

.about_history_item_active {
    opacity: 1;
}
.AddAboutHistoryDetails .public_title_box {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
}
.public_title_icon {
    width:32px;
}
.public_title_icon svg {
    fill: #fff;
}
.public_title_text {
    font-size: 36px;
    line-height: 50px;
    color: #fff;
    margin-left: 20px;
}
.AddAboutHistoryDetails .about_public_text {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.about_history_head .about_public_label {
    color: #fff;
}
/* nhonor
-------------------------------------------------------------- */
.nhonor{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhonornr dl,.nsbnr dl{
	overflow:hidden;
	padding:0 15px;
	margin:20px 0;
	}
.nhonornr dl dt,.nhonornr dl dd,.nsbnr dl dt,.nsbnr dl dd{
	width:100%;
	overflow:hidden;
	}
.nhonornr dl dt{
	position:relative;
	height:322px;
	}
.nhonornr dl dt img,.nsbnr dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nhonornr dl:hover dt img,.nsbnr dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.nhonornr dl dd,.nsbnr dl dd{
	line-height:30px;
	font-size:18px;
	color:#333;
	margin-top:10px;
	text-align:center;
	}
.nhonornr dl:hover dd,.nsbnr dl:hover dd{
	color:#212565;
}
.gallery{
	width:100%;
	overflow:hidden;
	position:relative;
}
.nhonornr dl:hover dd,.nsbnr dl:hover dd{
	color:#1947ba;
}
/* nsb
-------------------------------------------------------------- */
.nsb{
	margin-top:60px;
	margin-bottom:60px;
}
.nsbnr dl dt{
	position:relative;
	height:285px;
}
.nsbnr dl dd{
	height:60px;
	}
/* pro_n
-------------------------------------------------------------- */
.pro_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.npronr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.pro_n dl{
	overflow:hidden;
	margin:20px 0;
	padding:0 10px;
	}
.pro_n dl dt{
	width:100%;
	overflow:hidden;
	height:351px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	border: 1px solid #ebebeb;
	position:relative;
	}
.pro_n dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.pro_n dl dd{
	width:100%;
	overflow:hidden;
}
.pro_n dl:hover dt em {
    display: block;
    }
.pro_n dl dd h4 {
	width:100%;
	overflow:hidden;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	text-align: left;
	font-weight: normal;
	margin-bottom: 3px;
    padding-left: 20px;
	position:relative;
}
    
.pro_n dl dd h4:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 18px;
	background: #1947ba;
	left: 0;
	top: 50%;
	margin-top: -9px;
	z-index: 1;
}
.pro_n dl dd .p102-pros-1-desc {
	width:100%;
	overflow:hidden;
    line-height: 24px;
    font-size: 14px;
    color: #666666;
    text-align: justify;
}
.pro_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.pro_n dl:hover dd h4{
	color:#1947ba;
}
.nprolf{
	width:50%;
}
.nprolf img{
	max-width:100%;
	width:100%;
	border:1px solid #ddd;
	padding:3px;
}
.nprort{
	width:45%;
}
.nprort h1{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	border-bottom:solid 1px #ddd;
	padding-bottom:28px;
}
.nprort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-top:26px;
	margin-bottom:40px;
}
.nprort .npro_infolei span{
	font-size:20px;
	color:#333;
}
.nproinfo{
	font-size:16px;
	color:#666;
	line-height:30px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    background: #f0f0f0;
    margin-top: 40px;
    padding: 0 20px;
    color: #000;
}
.nprofbnr {
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
/* gssl_n
-------------------------------------------------------------- */
.gssl_n{
	width:100%;
	overflow:hidden;
	background: #f3f3f3;
}
.solution-section{
	padding-top:130px;
	padding-bottom:100px;
}
.solution-section .box{
	background: #FFFFFF;
	box-shadow: rgba(0,0,0,0.1) -15px 10px 40px;
	margin-left: 170px;
	/*overflow: hidden;*/
}
.solution-section .txt{
	float: left;	
	position: relative;
	padding-left: 85px;
	font-family: OPPOSans;
	font-size: 16px;
	color: #6b6b6b;
	width: 60%;
	height: 583px;
	padding-top: 170px;
	padding-right: 100px;
}
.solution-section .txt sup{
	font-family: Bebas;
	font-size: 106px;
	color: #6b6b6b;
	font-weight: bold;
	position: absolute; left: 85px; top: -50px;  
	line-height: 1; 
	z-index: 1;
	font-family: myTwoFont;
}
.solution-section .txt h2{
	font-family: OPPOSans;
	font-size: 30px;
	line-height:40px;
	color: #6b6b6b;
	font-weight: bold;
	z-index: 1; 
	position: relative;
}
.solution-section .txt li{
	padding-bottom: 25px; 
	position: relative;
	z-index: 1; 
	font-size:16px;
	line-height:30px;
}
.solution-section .txt p{
	position: relative; z-index: 1; text-indent: 2em;
}
.solution-section .txt em{
	position: absolute; 
	left: 0; 
	top: 0;
	font-size:16px;
	font-style: normal;
}
.solution-section .txt .bgimg{
	position: absolute;right:0;bottom: 0;
}
.solution-section .img{
	float: right;
	width: 40%; 
	height: 583px; 
	background-repeat:no-repeat ; 
	background-size:cover ; 
	background-position:center ;
}
.solution-section2 .box {
    background: #FFFFFF;
    box-shadow: rgb(0 0 0 / 10%) 10px 15px 40px;
    margin-right: 170px;
    margin-left: 0;
	border-radius:0 30px 30px 0;
}
.solution-section2 .img{
	float: left;	
	
}
.solution-section2 .txt{
	float: right;
}
.solution-section2 .txt sup{
	position: absolute;
	right: 80px;
	line-height: 1;
	left: auto;
}
.gylen{
	width:100%;
	overflow:hidden;
	color:#f9f9f9;
	font-size:60px;
	line-height:60px;
	text-transform: uppercase;
    font-weight: bold;
}
	
/* news_n
-------------------------------------------------------------- */
.news_n{
	width:100%;
	overflow:hidden;
	background: #f4f4f4;
	padding-top:60px;
	padding-bottom:60px;
	}
.newslist_n,.newslist_n ul{
	width:100%;
	overflow:hidden;
}
.newslist_n ul li{
	width:31.33333333333%;
	overflow:hidden;
	background:#fff;
	float:left;
	margin:20px 1%;
	position:relative;
}
.newslist_n ul li:after{
	content:"";
	width:0;
	height:4px;
	background:#1947ba;
	position:absolute;
	left:0;
	bottom:0;
	transition: 0.45s;
}
.newslist_n ul li .nlpic{
	width:100%;
	overflow:hidden;
	height:244px;
	position:relative;
}
.newslist_n ul li .nlpic img{
	display:block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.newslist_n ul li:hover .nlpic img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.newslist_n ul li:hover:after{
	width:100%;
}
.newslist_n ul li .nlwz {
	width:100%;
	overflow:hidden;
    padding: 20px 30px 35px 30px;
}
.newslist_n ul li .nwt1{
	width:100%;
	overflow:hidden;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    height: 65px;
	line-height:32px;
    overflow: hidden;
}
.newslist_n ul li .nwt2{
	width:100%;
	overflow:hidden;
    color: #666666;
    font-size: 16px;
    margin-top: 10px;
    height: 60px;
	line-height:30px;
    overflow: hidden;
}
.newslist_n ul li .nwbt {
	width:100%;
	overflow:hidden;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E1E1E1;
}
.newslist_n ul li .nbdate {
	overflow:hidden;
    display: block;
    color: #333333;
    font-size: 12px;
	line-height:20px;
}
.newslist_n ul li .nbicon {
	width:14px;
	height:20px;
	overflow:hidden;
    display: block;
    color: #999999;
    font-size: 12px;
	line-height:20px;
	background:url(http://www.xingyouelc.com/skin/images/icon20.png) no-repeat center;
}
.newslist_n ul li:hover .nbicon {
	background: url(http://www.xingyouelc.com/skin/images/iconh20.png) no-repeat center;
}
.newsnr_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #222;
    text-align: center;
    margin: 0 0 16px 0;
	line-height:40px;
	font-weight: normal;
	}
.newsnr_n .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    border-bottom: solid 1px #e6e6e6;
    padding-bottom: 23px;
}
.newsnr_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 16px;
    line-height: 30px;
}
.newsnr_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}
.newsnr_n .fbnr img{
	max-width:100%;
	height:auto !important;
	}
/* nzsjm
-------------------------------------------------------------- */
.nzsjm {
	width:100%;
	overflow:hidden;
	margin-top:60px;
	color:#fff;
	font-size:16px;
	line-height:30px;
}
.nzsjm p{
	overflow:hidden;
	color:#fff;
	font-size:16px;
	line-height:30px;
}
.nzsjm img{
	max-width:100%;
	height:auto;
}
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	margin-top:60px;
	margin-bottom:60px;
	}
.ncontact .ntit h3{
	text-align:left;
	}
.ncontact .ntit p{
	text-align:left;
	font-size:20px;
	color:#e0e0e0;
	}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	}
.ncontactnr .ncontactlf{
	width:65%;
	overflow:hidden;
	background:#fff;
	}
.ncontactnr .ncontactlf ul,.ncontactnr .ncontactlf ul li{
	width:100%;
	overflow:hidden;
	}
.ncontactnr .ncontactlf ul li{
	padding-bottom:20px;
	}
.ncontactnr .ncontactlf ul li h4{
	margin:0;
	}
.ncontactnr .ncontactlf ul li h4,.ncontactnr .ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#737373;
	line-height:30px;
	}
.ncontactnr .ncontactlf p a{
	font-size:16px;
	color:#737373;
}
.ncontactnr .ncontactrt{
	width:35%;
	overflow:hidden;
	}
.ncontactnr .ncontactrt dl{
	overflow:hidden;
	float:right;
	}
.ncontactnr .ncontactrt dl dt,.ncontactnr .ncontactrt dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	}
.ncontactnr .ncontactrt dl dt img{
	border:solid 1px #ccc;
	max-width:100%;
	height:auto;
}
.ncontactnr .ncontactrt dl dd{
	line-height:30px;
}

/* nmessage
-------------------------------------------------------------- */
.nmessage ::-webkit-input-placeholder {
  color: #a3a3a3;
}
.nmessage :-moz-placeholder {
  color: #a3a3a3;
}
.nmessage ::-moz-placeholder{
color: #a3a3a3;
}
.nmessage :-ms-input-placeholder {
  color: #a3a3a3;
}
.nmessage{
	margin-top:80px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	}
.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-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:260px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.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(1) dd input{
	background:#fff url(../images/icon12.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon13.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3) dd input{
	background:#fff url(../images/icon14.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(4) dd input{
	background:#fff url(../images/icon14.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(5){
	width:100%;
	}
.nmessagenr dl:nth-child(5) dd textarea{
	background:#fff url(../images/icon14.png) no-repeat 24px 21.5px;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background:#1947ba;
    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;
}
/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;width:auto;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp2{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color:#1947ba;
}

.toggle,#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.icon1,.icon2{
	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: #151515;
  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) {
  padding: 0 15px;
  width: 60%;
  background: #000;
  -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: #131313;
  -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: 20px;
  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:1%;
		  top:10px;
		  z-index:9999;
}

.toggle span {
  height: 3px;
  margin: 3px 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: -10px;
}


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

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

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


#toggleMenu .content {
  position: relative;
  z-index: 10;
  text-align: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

#toggleMenu .content h2 {
  position: relative;
  color: #fff;
  font-size: 4rem;
  text-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

#toggleMenu .content h2 span {
  font-size: 0.2em;
  font-weight: 300;
  letter-spacing: 5px;
  padding: 0 10px;
  text-transform: uppercase;
  background: #fff;
  color: #111;
  text-shadow: 0 5px 5px rgba(0,0,0,0);
  -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
          box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

#toggleMenu.active .content {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-200px);
      -ms-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

#toggleMenu .sci {
  position: absolute;
  bottom: 40px;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
}

#toggleMenu .sci li {
  list-style: none;
  margin: 5px;
  padding: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#toggleMenu.active .sci li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}

#toggleMenu .sci li a {
  color: #111;
  background: #fff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 5px;
  text-transform: uppercase;
}

#toggleMenu .sci li a:hover {
  background: #111;
  color: #fff;
}

#toggleMenu .sci li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#toggleMenu .sci li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#toggleMenu .sci li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
}

@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.about_n{
		overflow:hidden;
	}
}

@media only screen and (min-width: 1768px) and (max-width: 1919px) {
	.newsbg .newsimg{
		height:270px;
	}
}
@media only screen and (min-width: 1680px) and (max-width: 1767px) {
	.newsbg .newsimg{
		height:262px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1679px) {
	.newsbg .newsimg{
		height:248px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1600px) {
	.pro_n dl dt{
		height:334px;
	}
	.nhonornr dl dt{
		height:306px;
	}
	.nsbnr dl dt{
		height:271px;
	}
	.newslist_n ul li .nlpic{
		height:229px;
	}
	.card-img-150{
		height:239px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.pro_n dl dt{
		height:299px;
	}
	.nhonornr dl dt{
		height:273px;
	}
	.nsbnr dl dt{
		height:242px;
	}
	.newslist_n ul li .nlpic{
		height:196px;
	}
	.newsbg .newsimg{
		height:222px;
	}
	.card-img-150{
		height:213px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.pro_n dl dt{
		height:281px;
	}
	.nhonornr dl dt{
		height:257px;
	}
	.nsbnr dl dt{
		height:228px;
	}
	.newslist_n ul li .nlpic{
		height:180px;
	}
	.newsbg .newsimg{
		height:208px;
	}
	.card-img-150{
		height:199px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.pro_n dl dt{
		height:264px;
	}
	.nhonornr dl dt{
		height:240px;
	}
	.nsbnr dl dt{
		height:213px;
	}
	.newslist_n ul li .nlpic{
		height:164px;
	}
	.newsbg .newsimg{
		height:195px;
	}
	.card-img-150{
		height:186px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.pro_n dl dt{
		height:236px;
	}
	.nhonornr dl dt{
		height:214px;
	}
	.nsbnr dl dt{
		height:190px;
	}
	.newslist_n ul li .nlpic{
		height:138px;
	}
	.newsbg .newsimg{
		height:173px;
	}
	.card-img-150{
		height:165px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.pro_n dl dt{
		height:208px;
	}
	.nhonornr dl dt{
		height:188px;
	}
	.nsbnr dl dt{
		height:167px;
	}
	.newslist_n ul li .nlpic{
		height:112px;
	}
	.newsbg .newsimg{
		height:152px;
	}
	.card-img-150{
		height:144px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.pro_n dl dt{
		height:201px;
	}
	.nhonornr dl dt{
		height:181px;
	}
	.nsbnr dl dt{
		height:161px;
	}
	.newslist_n ul li .nlpic{
		height:105px;
	}
	.newsbg .newsimg{
		height:234px;
	}
	.card-img-150{
		height:139px;
	}
}
@media only screen and (min-width: 912px) and (max-width: 991px) {
	.nhonornr dl dt{
		height:258px;
	}
	.nsbnr dl dt{
		height:229px;
	}
}
@media only screen and (min-width: 820px) and (max-width: 911px) {
	.nhonornr dl dt{
		height:230px;
	}
	.nsbnr dl dt{
		height:204px;
	}
	.newsbg .newsimg{
		height:191px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 819px) {
	.nhonornr dl dt{
		height:214px;
	}
	.nsbnr dl dt{
		height:190px;
	}
	.newsbg .newsimg{
		height:178px;
	}
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	.pro_n dl dt{
		height:266px;
	}
	.newslist_n ul li .nlpic{
		height:171px;
	}
	.card-img-150{
		height:172px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 859px) {
	.pro_n dl dt{
		height:236px;
	}
	.newslist_n ul li .nlpic{
		height:143px;
	}
	.card-img-150{
		height:152px;
	}
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
	.pro_n dl dt{
		height:404px;
	}
	.nhonornr dl dt{
		height:189px;
	}
	.nsbnr dl dt{
		height:167px;
	}
	.card-img-150{
		height:194px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:99px;
	}
}

@media only screen and (min-width: 540px) and (max-width: 639px) {
	.pro_n dl dt{
		height:339px;
	}
	.nhonornr dl dt{
		height:158px;
	}
	.nsbnr dl dt{
		height:140px;
	}
	.card-img-150{
		height:161px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:83px;
	}
}
@media only screen and (min-width: 414px) and (max-width: 539px) {
	.nhonornr dl dt{
		height:120px;
	}
	.nsbnr dl dt{
		height:106px;
	}
}
@media only screen and (min-width: 393px) and (max-width: 413px) {
	.nhonornr dl dt{
		height:113px;
	}
	.nsbnr dl dt{
		height:100px;
	}
}
@media only screen and (min-width: 390px) and (max-width: 392px) {
	.nhonornr dl dt{
		height:112px;
	}
	.nsbnr dl dt{
		height:99px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 389px) {
	.nhonornr dl dt{
		height:108px;
	}
	.nsbnr dl dt{
		height:95px;
	}
}
@media only screen and (min-width: 360px) and (max-width: 374px) {
	.nhonornr dl dt{
		height:103px;
	}
	.nsbnr dl dt{
		height:91px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
	.nhonornr dl dt{
		height:91px;
	}
	.nsbnr dl dt{
		height:80px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.pro_n dl dt{
		height:263px;
	}
	.newslist_n ul li .nlpic{
		height:179px;
	}
	.card-img-150{
		height:123px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:64px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
	.pro_n dl dt{
		height:230px;
	}
	.newslist_n ul li .nlpic{
		height:147px;
	}
	.card-img-150{
		height:106px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:56px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
	.pro_n dl dt{
		height:194px;
	}
	.newslist_n ul li .nlpic{
		height:111px;
	}
	.newsbg .newsimg{
		height:239px;
	}
	.card-img-150{
		height:88px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:47px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.pro_n dl dt{
		height:167px;
	}
	.nhonornr dl dt{
		height:78px;
	}
	.nsbnr dl dt{
		height:70px;
	}
	.newslist_n ul li .nlpic{
		height:111px;
	}
	.newsbg .newsimg{
		height:209px;
	}
	.card-img-150{
		height:75px;
	}
	.nhzhbnr ul li,.hzhb .hzhbnr ul li{
		height:47px;
	}
}

@media(max-width:1768px) {
	.newslist {
		padding-left: 8%;
	}
	.about_n{
		padding-bottom:165px;
	}
}
@media(max-width:1680px) {
	.nav {
		margin-right: 100px;
	}
	.newslist {
		padding-left: 6%;
	}
	.about_n{
		padding-bottom:140px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
	}
	.nav {
		margin-right: 80px;
	}
	.nav .menu > li a{
		padding:0 35px;
	}
	.tit h3,.tit h3 a,.aboutlf h4,.aboutlf h4 a,.sbnr h3{
		font-size:44px;
		line-height:54px;
	}
	.honor .honorrt h3,.honor .honorlf h3{
		font-size:40px;
		line-height:50px;
	}
	.honor .honorlf h4,.honor .honorrt h4{
		font-size:26px;
		line-height:36px;
	}
	.about_n{
		padding-bottom:100px;
	}
	.about_public_label{
		font-size:66px;
	}
	.prort .prolist .prolistlf h5{
		font-size:24px;
		line-height:34px;
	}
}
@media(max-width:1440px) {
	.nav {
		margin-right: 50px;
	}
	.nav .menu > li a {
		padding: 0 30px;
	}
	.cjsbtit {
		height: 240px;
	}
	.cjsbtit h4 {
		font-size: 32px;
		line-height: 42px;
	}
	.ibrlink {
		padding: 0 30px;
	}
	.prort .prolist .prolistlf h5{
		font-size:22px;
		line-height:32px;
	}
	.about_n{
		padding-bottom:70px;
	}
}
@media(max-width:1360px) {
	.tit h3,.tit h3 a,.aboutlf h4,.aboutlf h4 a,.sbnr h3{
		font-size:40px;
		line-height:50px;
	}
	.honor .honorrt h3,.honor .honorlf h3{
		font-size:36px;
		line-height:46px;
	}
	.honor .honorlf h4,.honor .honorrt h4{
		font-size:22px;
		line-height:32px;
	}
	.about_n{
		padding-bottom:50px;
	}
	.cjsbtit h4 {
		font-size: 28px;
		line-height: 38px;
	}
	.cjsbtit {
		height: 220px;
		width: 386px;
	}
    .cjsbnr .cjsbrt .swiper-button{
		left:330px;
	}
	.about_public_label{
		font-size:56px;
		line-height:76px;
	}
	.solution-section .txt{
		padding-right:60px;
	}
	.gylen {
		font-size: 50px;
		line-height: 50px;
	}
}
@media(max-width:1280px) {
	.nav {
		margin-right: 30px;
	}
	.nav .menu > li a {
		padding: 0 25px;
	}
	.aboutcont_n h3{
		font-size: 32px;
		line-height: 42px;
	}
	.about_n{
		padding-bottom:0;
	}
	.ibrlink {
		padding: 0 20px;
	}
	.nprort h1{
		font-size:26px;
		line-height:36px;
	}
	.nprort .npro_infolei,.nprort .npro_infolei span{
		font-size:18px;
	}
	.prort .prolist .prolistlf h5{
		font-size:20px;
		line-height:30px;
	}
	.prort .prolist .prolistlf p{
		font-size:14px;
	}
}
@media(max-width:1200px) {
	
	
}
@media(max-width:1152px) {
	.nav {
		margin-right: 0;
	}
	.nav .menu > li a {
		padding: 0 18px;
	}
	.aboutcont_n h3{
		font-size: 28px;
		line-height: 38px;
	}
	.tit h3,.tit h3 a,.aboutlf h4,.aboutlf h4 a,.sbnr h3{
		font-size:36px;
		line-height:46px;
	}
	.ppln_n{
		margin-top:20px;
	}
	.ibrlink {
		padding: 0 15px;
	}
	.aboutjs_n{
		margin-top:40px;
	}
	.honor .honorrt h3,.honor .honorlf h3{
		font-size:32px;
		line-height:42px;
	}
	.honor .honorlf h4,.honor .honorrt h4{
		font-size:20px;
		line-height:30px;
	}
	.solution-section .txt{
		padding-left:60px;
	}
	.gylen {
		font-size: 40px;
		line-height: 40px;
	}
}
@media(max-width:1080px) {
	
}
@media(max-width:1024px) {
	.nav .menu > li a {
		padding: 0 15px;
	}
	.ppln_n{
		margin-top:0;
	}
}
@media(max-width:1023px) {
	.search{
		display:none;
	}
	.language{
		width:70px;
		margin-right:56px;
		margin-top:13px;
	}
	.language .languagenr {
		width: 70px;
	}
	.header{
		height:60px;
	}
	.logo{
		padding:7px 0;
	}
	.logo img{
		height:46px;
	}
	.banner .swiper-pagination{
		display:none;
	}
	.banner .swiper-button .swiper-button-prev, .banner .swiper-button .swiper-button-next{
		margin-top:0;
	}
	.banner .swiper-button .swiper-button-prev{
		margin-right:10px;
	}
	.banner .swiper-button {
		bottom: 20px;
		right: 2%;
	}
	.banner .bannermore {
		width: 120px;
		height: 50px;
		line-height: 50px;
		padding-left: 20px;
	}
	.banner .bannermore a:after {
		right: 18px;
		top: 20px;
	}
	.banner .bannermore{
		margin-top:60px;
	}
	.ibbe{
		height:auto;
	}
	.ibeleft {
		width: 100%;
		overflow:hidden;
		line-height: 40px;
		padding:0 2%;
	}
	.iberight {
		width: 100%;
		overflow:hidden;
		line-height: 40px;
		padding:0 1%;
	}
	.iberight a{
		font-size:16px;
		padding:0 10px;
	}
	.pcmenu{
		display:none;
	}
	.wapmenu{
		display:block;
	}
	.about_public_label {
		font-size: 46px;
		line-height: 66px;
	}
	.public_title_text {
		font-size: 30px;
		line-height: 40px;
	}
	.about_history_item_box{
		opacity:1 !important;
	}
}
@media(max-width:991px) {
	.banner .swiper-button {
		bottom: 10px;
		right: 2%;
	}
	.pro_n dl dd h4{
		font-size:18px;
	}
	.mySwiper2 .swiper-slide .prolist .pronum{
		display:none;
	}
	.prort .prolist .proimg{
		padding-top:0;
	}
	.shubiao{
		display:none;
	}
	.tit h3, .tit h3 a, .aboutlf h4, .aboutlf h4 a, .sbnr h3 {
		font-size: 32px;
		line-height: 42px;
	}
	.tit p,.aboutlf .abouten{
		font-size:18px;
	}
	.prort .prolist{
		height:auto;
	}
	.prort .prolist .prolistlf,.prort .prolist .proimg{
		width:100%;
	}
	.prort .prolist .prolistlf{
		padding: 0 40px 40px 40px;
	}
	.hzhbmore{
		margin-top:20px;
	}
	.hzhbmore a{
		float:left;
	}
	.cjsbnr .cjsblf .cjsbmore {
		margin-top: 40px;
	}
	.nmenu ul li a {
        padding: 0 30px;
	}
	.pro{
		padding-top:60px;
		padding-bottom:60px;
	}
	.pro .pronr .swiper-button{
		top:180px;
	}
	.pronr .prolf .promore {
		margin-top: 120px;
	}
	.pronr .prolf .projs{
		margin-top:30px;
	}
	.pronr .prort{
		margin-top:30px;
	}
	.pro .proen{
		display:none;
	}
	.probt span{
		font-size:16px;
	}
	.mySwiper .swiper-slide-thumb-active .probt span{
		font-size:18px;
	}
	.searchnr{
		padding:0 10px;
	}
	.hzhb{
		padding-top:60px;
		padding-bottom:60px;
	}
	.hzhb .hzhbnr ul li{
		width:31.33333333333%;
	}
	.nprolf,.nprort{
		width:100%;
	}
	.nprort{
		margin-top:20px;
	}
	.nprort h1 {
		font-size: 24px;
		line-height: 34px;
	}
	.nprort .npro_infolei, .nprort .npro_infolei span {
		font-size: 16px;
	}
	.honor .honorrt h3, .honor .honorrt h4, .honor .honorrt p {
		padding-left: 0;
	}
	.about_n{
		margin-bottom:0;
	}
	.sblist ul li{
		width: 23.5%;
		margin-right: 2%;
		padding: 27px 20px;
	}
	.sblist ul li:last-child{
		margin-right:0;
	}
	.sblist ul li h4{
		font-size:22px;
		line-height:32px;
	}
	.mySwiper {
		margin-top: 30px;
	}
	.about{
		padding-top:60px;
		padding-bottom:60px;
	}
	.aboutmore,.aboutenimg{
		margin-top:40px;
	}
	.about .aboutlf{
		padding:0;
	}
	.news,.cjsb{
		padding-top:60px;
		padding-bottom:60px;
	}
	.sblist{
		margin-top:40px;
	}
	.honor .honorlf, .honor .honorrt{
		height:auto;
	}
	.honor .honorlf,.honor .honorrt{
		padding: 60px 6%;
	}
	.honor .honorlf p,.honorlist,.honor .honorrt p,.honorimg{
		margin-top:40px;
	}
	.honorlist {
		width: 90%;
		margin:40px auto 0;
	}
	.honorlist .swiper-button-prev{
		left: -40px;
	}
	.honorlist .swiper-button-next{
		right:-40px;
	}
	.newstit .newstitrt {
		text-align: left;
		margin-top:20px;
	}
	.newstit .newstitrt ul li{
		margin-left:0;
		margin-right:30px;
	}
	.newstit .newstitrt ul li:last-child{
		margin-right:0;
	}
	.cjsb{
		padding-left:6%;
		padding-right:6%;
	}
	.cjsbnr .cjsblf,.cjsbnr .cjsbrt{
		width:100%;
	}
	.cjsbnr .cjsblf{
		padding-top:0;
	}
	.cjsbnr .cjsblf .aboutmore {
		margin-top: 40px;
	}
	.cjsbnr .cjsbrt{
		margin-top:40px;
	}
	.cjsbtit h4{
		font-size:30px;
		line-height:40px;
	}
	.aboutcont_n{
		padding-top:0;
	}
	.aboutcont_n,.about_n .aboutimg_n{
		width:100%;
	}
	.about_n .aboutimg_n{
		position:inherit;
		width:88%;
		margin:20px auto 0;
	}
	.aboutjs_n{
		margin-top:40px;
	}
	.nabout-sm,.nabout-jz{
		width:100%;
		height:480px;
	}
	.ntit h3{
		font-size: 30px;
		line-height:40px;
	}
	.ncontactnr .ncontactlf,.ncontactnr .ncontactrt{
		width:100%;
	}
	.ncontactnr .ncontactrt dl{
		float:left;
		margin-top:20px;
	}
	.nmessagenr dl dd textarea{
		height:240px;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1){
		margin-right:0;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left:0;
	}
	.newslist_n ul li{
		width:48%;
	}
	.newsnr_n h1{
		font-size:22px;
		line-height: 30px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.solution-section .box{
		margin-left: 0;
	}
	.solution-section2 .box{
		margin-right: 0;
	}
	.nabout-sm .nabout_icon img, .nabout-jz .nabout_icon img{
		width:100px;
	}
	.nabout-sm .nabout_icon, .nabout-jz .nabout_icon{
		bottom:40px;
		padding:0 40px;
	}
	.nabout-sm, .nabout-jz{
		height:400px;
	}
	.nhzhbnr ul li {
		width: 31.333333333%;
	}
	.footer .footerlf,.footer .footerrt{
		width:100%;
	}
	.footer .footerrt dl{
		float:left;
	}
	.footer .footerrt{
		margin-top:20px;
	}
	.footer .footerlf ul li{
		width:33.3333333333%;
	}
	.footer .footerlf ul li p{
		display:none;
	}
	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.bot .botrt{
		margin-top:20px;
	}
}
@media(max-width:860px) {
	
}
@media(max-width:768px) {
	
}
@media(max-width:767px) {
	.banner .img .banner1-1,.banner .img .banner2-1,.banner .img .banner3-1{
		left:6%;
	}
	.banner .bannermore {
		margin-top: 40px;
	}
	.tit h3, .tit h3 a, .aboutlf h4, .aboutlf h4 a, .sbnr h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.tit p,.aboutlf .abouten{
		font-size:16px;
	}
	.nhonornr dl dd, .nsbnr dl dd {
		font-size: 16px;
	}
	.aboutcont_n h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.prort .prolist .prolistlf h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.mySwiper .swiper-slide-thumb-active .probt span{
		font-size:16px;
	}
	.nmenu ul{
	    width: 100%;
	}
	.nmenu ul li{
	    width: 33.33333333333%;
	}
	.nmenu ul li a {
        padding: 0;
	}
	.newsmenu ul li {
		width: 100px;
		height: 40px;
		line-height: 40px;
		margin: 10px 5px;
	}
	.newslist_n ul li{
		width:100%;
		margin: 20px 0;
	}
	.newslist_n ul li .nwt1{
		height:auto;
	}
	.nhzhbnr ul li {
		width: 48%;
	}
	.gylen{
		display:none;
	}
	.sb{
		height:860px;
		padding-top:60px;
		padding-bottom:60px;
	}
	.hzhb .hzhbnr ul li{
		width:48%;
		margin:10px 1%;
	}
	.nhonornr dl, .nsbnr dl {
		padding: 0 5px;
	}
	.ntit h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.newsnr_n h1 {
		font-size: 20px;
	}
	.cjsbtit {
		width: 300px;
		height: 180px;
		bottom: 20px;
		padding: 20px 20px 0 20px;
	}
	.cjsbtit h4{
		font-size:26px;
		line-height:36px;
	}
	.cjsbnr .cjsbrt .swiper-button{
		left:260px;
	}
	.cjsbnr .cjsbrt .swiper-button div {
		width: 40px;
		height: 40px;
	}
	.sblist ul li h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.sblist ul li{
		width:49%;
		margin-bottom:20px;
	}
	.sblist ul li:nth-child(2n){
		margin-right:0;
	}
	.newscont .newsbg{
		height:auto;
	}
	.newsbg .newsimg{
		margin-left:0;
		margin-top:0;
	}
	.newsbg .newsrt {
		padding: 20px;
	}
	.solution-section .txt,.solution-section .img{
		width:100%;
	}
	.solution-section .txt {
		padding: 80px 40px 40px 40px;
		height:auto;
	}
	.solution-section .txt li{
		padding-bottom:0;
	}
	.solution-section .txt h2 {
		padding-bottom: 30px;
	}
	.solution-section {
		padding-bottom: 0;
	}
	.solution-section .txt h2{
		font-size:26px;
		line-height:36px;
	}
	.about_public_label {
		font-size: 36px;
		line-height: 56px;
	}
	.public_title_text {
		font-size: 26px;
		line-height: 36px;
	}
	.nhzhbnr ul li{
		margin:10px 1%;
	}
	.footer .footerlf ul li h4,.footer .footerlf ul li h4 a{
		font-size:16px;
	}
}
@media(max-width:640px) {
	.banner .bannermore {
		width: 90px;
		height: 40px;
		line-height: 40px;
		padding-left: 10px;
	}
	.banner .bannermore a{
		font-size: 14px;
	}
	.banner .bannermore a:after {
		width:8px;
		height:8px;
		right: 10px;
		top: 16px;
	}
	.banner .bannermore {
		margin-top: 20px;
	}
	.banner .img .banner1-1{
		width:37%;
		}
	.banner .img .banner2-1{
		width:37.4%;
		}
	.banner .img .banner3-1{
		width:34%;
		}
	.banner .img .banimg{
		width:120% !important;
		margin-left:-10%;
	}
	.nsbnr dl dd{
		line-height:20px;
		height: 40px;
	}
	.cjsbtit h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.cjsbnr .cjsbrt .swiper-button .swiper-button-next{
		background-color:#b52d2d;
		margin-left:2px;
	}
	.cjsbnr .cjsbrt{
		padding-left:0;
	}
	.cjsbtit{
		width:66.6%;
		position:inherit;
		border-radius:0 0 20px 20px;
		bottom:0;
	}
	.cjsbnr .cjsbrt .swiper-button{
		left: 50%;
		margin-left: -41px;
	}
	.prort .prolist .prolistlf h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.cjsbnr .cjsblf ul li:before{
		display:none;
	}
	.cjsbnr .cjsblf ul li:hover, .cjsbnr .cjsblf ul li.active {
		padding-left: 0;
	}
	.cjsbnr .cjsblf ul li{
		width:25%;
		float:left;
		text-align:center;
	}
	.cjsbnr .cjsblf ul li,.cjsbnr .cjsblf ul li a,.cjsbnr .cjsblf ul li:hover a, .cjsbnr .cjsblf ul li.active a{
		font-size:20px;
	}
	.probt{
		display:none;
	}
	.honor .honorrt h3, .honor .honorlf h3 {
		font-size: 28px;
		line-height: 38px;
	}
	.sbnr h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.cjsblist{
		padding-left:0;
	}
	.nhonornr dl dd, .nsbnr dl dd{
		font-size:14px;
	}
	.newslist .swiper-container {
		width: 100%;
	}
	.newslist {
		padding-right: 6%;
		padding-left: 3%;
	}
	.aboutcont_n h3 {
		font-size: 22px;
		line-height: 32px;
	}
	.nabout-jz h3, .nabout-sm h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.nabout-sm,.nabout-jz{
		 padding: 40px 40px 0 40px;
	}
	.solution-section .txt sup {
		top: -35px;
		font-size: 66px;
		left:40px;
	}
	.solution-section .txt {
		padding: 80px 30px 30px 30px;
	}
	.solution-section {
		padding-top: 80px;
	}
	.about_public_label {
		font-size: 26px;
		line-height: 46px;
	}
	.iberight a {
		font-size: 15px;
		display: block;
		float: left;
		width: 50%;
		text-align: center;
		padding: 0;
	}
	.wapmenu .iberight{
		padding:0 2%;
	}
	.cjsbtit{
		bottom:0;
	}
}
@media(max-width:540px) {
	.pro .pronr .swiper-button {
		top: 200px;
	}
	.solution-section .img{
		height:523px;
	}
	.sbnr h3 {
		font-size: 22px;
		line-height: 32px;
	}
}
@media(max-width:500px) {
	
}
@media(max-width:425px) {
	.banner .bannermore {
		height: 35px;
		line-height: 35px;
	}
	.banner .bannermore a:after {
		top: 13.5px;
	}
	.sblist ul li{
		height:230px;
	}
	.sblist ul li .sbicon{
		margin-top: 100px;
	}
	.sblist ul li h4{
		font-size:18px;
	}
	.solution-section .txt h2 {
		font-size: 22px;
		line-height: 32px;
	}
	.solution-section .txt sup {
		top: -32px;
		font-size: 60px;
	}
	.sb{
		height:760px;
	}
	.sbnr h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.honorlist .swiper-button-prev, .honorlist .swiper-button-next{
		width:27px;
		height:27px;
		background-size:27px;
	}
	.honorlist .swiper-button-prev{
		left:-30px;
	}
	.honorlist .swiper-button-next{
		right:-30px;
	}
	.cjsbnr .cjsblf ul li,.cjsbnr .cjsblf ul li a,.cjsbnr .cjsblf ul li:hover a, .cjsbnr .cjsblf ul li.active a{
		font-size:18px;
	}
	.nabout-sm, .nabout-jz {
		padding: 30px 30px 0 30px;
	}
	.solution-section .img{
		height:412px;
	}
	.nabout-sm .nabout_icon, .nabout-jz .nabout_icon{
		padding:0 30px;
	}
}
@media(max-width:375px) {
	.cjsbnr .cjsblf ul li,.cjsbnr .cjsblf ul li a,.cjsbnr .cjsblf ul li:hover a, .cjsbnr .cjsblf ul li.active a{
		font-size:16px;
	}
	.nabout-jz h3, .nabout-sm h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.solution-section .img{
		height:363px;
	}
}
@media(max-width:320px) {
	.pro .pronr .swiper-button {
		top: 230px;
	}
	.solution-section .img{
		height:310px;
	}
}
@media(max-width:319px) {
	.aboutcont_n h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.solution-section .img{
		height:271px;
	}
	.prort .prolist .prolistlf h5 {
		font-size: 18px;
	}
	.prort .prolist .prolistlf {
		padding: 0 30px 40px 30px;
	}
	.iberight a{
		width:100%;
	}
}