.header{
	width:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
	height:80px;
	line-height:80px;
	padding: 0;
	background:#fff;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8 20px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/*logo*/
.header .left{
	width: 12%;
	float:left;
}
.header .left a img{
	height:56px;
	margin-top:12px;
}
.header .left .img2{
	display: none;
}

.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height:80px;
	display: block;
	float:right;
}
.header .navbar li{
	float:left;
	position: relative;
	display: block;
}
.header .navbar li:after{
    content: "";
    width: 0;
    height: 2px;
    background:#00a7f6;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.header .navbar li:hover:after{
    width: 100%;
}
.header .navbar li a{
	text-decoration: none;
	height: 100%;
	padding: 0 25px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #333;
	font-size:1.1rem;
}
.header .navbar li:hover a{
	color:#00a7f6;
}
.header .navbar li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar li.dropdown ul.dropmenu{
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width:150px;
    left: -10%;
	z-index:999;
}
.header .navbar li.dropdown ul.dropmenu a{
	font-size:1.05rem;
	color: #666;
	padding: 0 15px;
	line-height: 40px;
	background: #fff;
	margin-bottom: 2px;width:120px;
}
.header .navbar li.dropdown:hover ul.dropmenu{
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar li.dropdown:hover ul.dropmenu a{
	color: #666;
}
.header .navbar li.dropdown:hover ul.dropmenu a:hover{
	color: #fff;
	background:#00a7f6;
}

.header .navbar li.dropdown ul.dropmenu li ul{display:none;width:200px;}
.header .navbar li.dropdown ul.dropmenu li ul li{width:200px;padding:0;}
.header .navbar li.dropdown ul.dropmenu li ul li a{width:180px;padding:0 10px;background: #f0f0f0;}
.header .navbar li.dropdown ul.dropmenu li:hover ul{display: block;
position:absolute;
top:0;left:150px;
	background: #f0f0f0;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;}
	
/**/
.header.on{
	background: #fff;
	border-bottom: 1px solid #ccc;
}
.header.on .left .img1{
	display: none;
}
.header.on .left .img2{
	display: block;
}
.header.on .navbar li a{
	color: #333;
}
.header.on .navbar li:hover a{
	color:#00a7f6;
}
#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 56px;
	display: block;
	margin:2px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size:1.1rem;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropmenu{
	display: none;
}

.m_nav .ul li .dropmenu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropmenu a:last-child{
	border: none;
}
.container{width:1200px;height:100%;margin:0 auto;clear:both;}

.wxtaglist{float:left;width:960px;}
.tagsitem{clear:both;height:200px;margin:20px 0;}
.tagsitem a{display:block;}
.tagsitem :hover{color:#00a7f6}
.tiimg{width:300px;height:200px;margin-right:20px;float:left;overflow:hidden;border-radius:10px;}
.tiimg img{width:100%;height:100%;}
.tiimg:hover img{transform: scale(1.05);
	transition: all .4s;}
.tiinfo{width:580px;height:200px;float:left;overflow:hidden;}
.tiinfo h3{font-size:1.5rem;height:30px;line-height:30px;margin:10px 0;overflow:hidden;}
.tiinfo p{font-size:1.02rem;line-height:25px;}

.alltags{float:left;width:960px;}
.alltags ul li a{font-size:1rem;height:30px;line-height:30px;background:#e9e9e9;padding:5px 10px;border-radius:5px;}
.alltags ul li a:hover{background:#00a7f6;color:#fff;}
.alltags ul{margin:20px 0}
.alltags ul li{width:auto;float:left;margin:10px;}

.cont{width:100%;height:880px;background:#f5f5f5;padding:50px 0 150px;margin-top:80px;}
.contimg{float:left;width:50%;height:445px;overflow:hidden;}
.contimg img{width:100%;height:100%;}
.contbox{background:#fff;width:40%;padding:5%;height:325px;float:left;}
.conttit{font-size:30px;color:#333;padding-bottom:50px;}
.cont1{font-size:22px;margin-bottom:20px;}
.csweixiu{width:1200px;margin:20px auto;clear:both;}
.weixiubox{float:left;width:960px;}
.weizhi{font-size:14px;height:48px;line-height:48px;padding-left:20px;background-image: linear-gradient(to right,rgba(0,167,246,1), rgba(255,255,255,0.5));color:#fff;clear:both;}
.weizhi a{color:#fff}
.weixiubox ul{margin:20px 0;}
.weixiubox ul li{width:300px;float:left;text-align:center;margin:8px 8px 30px 8px;border-radius:14px;overflow:hidden;}
.weixiubox ul li img{width:290px;height:200px;padding:5px;border-radius:14px;}
.weixiubox ul li p{width:300px;font-size:18px;height:35px;line-height:35px;color:#333;}
.weixiubox ul li:hover{background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;}
	
/*在线客服*/
.keifu{position:fixed;top:20%;right:10px;width:200px; _position:absolute;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.bottom,10)||0)-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
 z-index:990;}

.keifu_box{float:left;width:200px;height:auto;}
.keifu_con{border:1px solid #029bdb;padding:10px 0 20px;background:#fbfbfb;height:auto;}
.keifu_con li{text-align:center;margin-bottom:10px;font-size:15px;}
.keifu_con li span{color:#ff0000;font-size:18px;}
.keifu_con .weixin{height:130px;font-weight:bold;}
.keifu_con .weixin img{height:130px;}
.keifu_con li .plx {display:block;font-weight:bold;}
.keifu_con li .mlx{display:none;}
	
.morepro ul li {width:300px;float:left;text-align:center;margin:8px 8px 30px 8px;border-radius:14px;overflow:hidden;}
.morepro ul li img{width:290px;height:200px;padding:5px;border-radius:14px;}
.morepro ul li p{width:300px;font-size:18px;height:35px;line-height:35px;color:#333;}
.morepro ul li:hover{background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;}
.weixiuvideo{float:left;width:960px;}
.weixiuvideo ul{margin:20px 0;}
.weixiuvideo ul li{width:300px;float:left;text-align:center;margin:8px 8px 30px 8px;border-radius:14px;overflow:hidden;}
.weixiuvideo ul li img{width:290px;height:200px;padding:5px;border-radius:14px;}
.weixiuvideo ul li p{width:300px;font-size:18px;height:35px;line-height:35px;color:#333;}
.weixiuvideo ul li:hover{background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;}
.weixiuvideo a .btnbox{
	position: absolute;
	top: 5px;
	left:5px;
	display: none \9;
	opacity: 0;
	width:290px;
	height:200px;
	background: rgba(0,0,0,.3);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d000000, endColorstr=#4d000000);
	zoom: 1;
	cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s
}
.weixiuvideo ul li a:hover .btnbox {opacity:1;
filter:Alpha(opacity=100)}
.weixiuvideo ul li a:hover  .play-btn {
	position:absolute;
	top: 0;
	left: 0;
	display: block \9;
	width:100%;
	height:200px;
	background:url(../images/play-btn.png) no-repeat center ;cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s;
}
	
.videocontent {width:100%;clear:both;background:#262626;}
.videocenter {width:1200px;clear:both;margin:80px auto 0;height:494px;padding:30px 0;}
.videoleft{width:860px;height:494px;margin-right:20px;float:left;background:#484848;}
.videoleft video{width:860px;height:494px;}
.videoright {width:300px;height:494px;float:left;padding:0 10px;}
.videoright .videotitle{font-size:24px;color:#fff;font-weight:normal;height:60px;overflow:hidden;}
.videoright .videocontact a{display:block;width:290px;color:#fff;background:#fd4d26;font-size:20px;padding:0 5px;margin:6px 0;line-height:34px;border-radius:14px;text-align:center;}
.videoright .videocontact span{padding-left:10px;}
.videorl{width:300px;height:390px;overflow-x: hidden;
        overflow-y: scroll;}
		
/*修改滚动条样式*/
.videorl::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 10px;  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  }
  .videorl::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius   : 10px;
  background-color: skyblue;
  background-image: -webkit-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
  );
  }
.videorl::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  background   : #ededed;
  border-radius: 10px;
  }
 .videorl::-webkit-scrollbar-corner{
  background: #179a16;
  height:10px;
}
.videorl ul{margin:15px 0; }
.videorl ul li{width:300px;height:78px;margin-bottom:10px;overflow:hidden;}
.videorl ul li img{width:130px;height:78px;float:left;margin-right:10px;}
.videorl ul li p{width:148px;height:78px;overflow:hidden;float:left;color:#e0e0e0;font-size:15px;}
.videorl ul li:hover p{color:#fd4d26;}
.videorl a .btnbox{
	position:relative;
	top: 0;
	left: 0;
	display: none \9;
	opacity: 0;
	width: 130px;
	height:78px;
	background: rgba(0,0,0,.3);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d000000, endColorstr=#4d000000);
	zoom: 1;
	cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s
}
.videorl a:hover .btnbox {opacity:1;
filter:Alpha(opacity=100)}
.videorl a:hover  .play-btn {
	position:absolute;
	top: 0;
	left: 0;
	display: block \9;
	width: 130px;
	height:78px;
	background:url(../images/play-btn.png) no-repeat center ;cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s;
}
	
	
.wxnewslist{float:left;width:960px;}
.wxnewslist a{font-size:1.1rem;height:30px;line-height:30px;}
.wxnewslist ul{margin:20px 0}
.wxnewslist ul li{width:960px;margin-bottom:12px;font-size:14px;padding:8px 0px 8px;border-bottom:1px solid #f0f0f0;}
.wxnewslist ul li span{float:right;}
.ntime{font-size:0.7rem;color:#999;}
.ndesc{font-size:0.9rem;color:#757575;padding-right:20px;}
.weixiuz{width:210px;margin:0 20px 20px 0px;float:left;}
.weixiuz-title{font-size:20px;font-weight:400;margin:0 auto;height:48px;line-height:48px;text-align:center;color:#fff;border-bottom:1px solid #00a7f6;background:url(../images/apibox01.png) no-repeat;background-size:cover}
.weixiuz .wxzcenter{background:#f1f1f1;margin-bottom:10px;clear:both;-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.1);}
.weixiuz .wxzcenter ul li{width:210px;height:40px;line-height:40px;display:block;font-size:16px;color:#333;border-bottom:1px solid #e3e3e3;font-weight:normal}
.weixiuz .wxzcenter ul li a{display:block;font-size:16px;height:40px;line-height:40px;padding-left:40px;color:#333;font-weight:normal}
.weixiuz .wxzcenter ul li img{width:32px;height:32px;margin:4px 10px 4px 20px;float:left;}
.weixiuz .wxzcenter ul li:hover {background:#00a7f6;}
.weixiuz .wxzcenter ul li:hover a{color:#fff;font-weight:400;transform: scale(1.05);
	transition: all 0s;}
	.wxztit{font-size:20px;font-weight:400;margin:0 auto;height:48px;line-height:48px;text-align:center;color:#fff;border-bottom:1px solid #00a7f6;background:url(../images/apibox01.png) no-repeat;background-size:cover}
.wxzcon{margin-bottom:10px;clear:both;-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.1);}
.wxzcon ul li{width:200px;padding:0 5px;line-height:40px;display:block;font-size:16px;color:#333;border-bottom:1px solid #e3e3e3;font-weight:normal}
ul.page{width:960px;clear:both;margin:0 auto;}
ul.page li{width:50px;float:left;text-align:center;padding:3px 0;margin:30px 5px 50px;border:1px solid #e5e5e5}
ul.page li a{display:block;font-size:14px;text-align:center;color:#333;}
ul.page li:hover{background:#00a7f6;width:50px;color:#fff;}
ul.page li:hover a{color:#fff;}
.thisclass{font-size:16px;background:#00a7f6;color:#fff;}
.weixiuz001{width:210px;margin:0 20px 20px;float:left;background:#f1f1f1;}
.weixiuz-title001{font-size:14px;margin:0 auto;padding:10px 20px 10px 20px;text-align:center;color:#fff;background:#00a7f6;}
.weixiuz001 ul li{width:210px;height:40px;line-height:40px;display:block;font-size:14px;color:#333;border-bottom:1px solid #e3e3e3;font-weight:normal}
.weixiuz001 ul li a{display:block;font-size:14px;height:40px;line-height:40px;text-align:center;color:#333;font-weight:normal}
.weixiuz001 ul li img{width:32px;height:32px;margin:4px 10px 4px 20px;float:left;}
.weixiuz001 ul li:hover a{color:#00a7f6;}

.weixiuz002{width:210px;margin:0 20px 20px;float:left;background:#f1f1f1;}
.weixiuz-title2{font-size:14px;margin:0 auto;padding:10px 20px 10px 20px;text-align:center;color:#fff;background:#00a7f6;}
.weixiuz002 ul li{width:210px;height:40px;line-height:40px;display:block;font-size:14px;color:#333;border-bottom:1px solid #e3e3e3;font-weight:normal}
.weixiuz002 ul li a{display:block;font-size:14px;height:40px;line-height:40px;text-align:center;color:#333;font-weight:normal}
.weixiuz002 ul li img{width:32px;height:32px;margin:4px 10px 4px 20px;float:left;}
.weixiuz002 ul li:hover a{color:#00a7f6;}

.bimg1{width:100%;height:300px;background:url(../images/bimg1.jpg) no-repeat center top;margin:80px auto 0;}
.bimg2{width:100%;height:300px;background:url(../images/bimg2.jpg) no-repeat center top;margin:80px auto 0;}
.bimg3{width:100%;height:300px;background:url(../images/bimg3.jpg) no-repeat center top;margin:80px auto 0;}
.bimg4{width:100%;height:300px;background:url(../images/bimg4.jpg) no-repeat center top;margin:80px auto 0;}
.bimgcp{width:100%;height:300px;background:url(../images/bimgcp.jpg) no-repeat center top;margin:80px auto 0;}


blockquote{margin:10px;border:1px #d0d4c8 dashed;border-radius:6px;background:#f4f5f6;padding:8px 12px 0px 36px;}
blockquote p{padding:0;margin:0;line-height:26px;}

.article-content{float:left;width:960px;}
.maintop{width:950px;height:270px;clear:both;border:1px solid #f5f5f5;padding:5px;margin:20px auto 30px;}
.maintop .maintopimg{
	width: 420px;
	height: 258px;
	overflow:hidden;
	float:left;
	border-radius:6px;
}
.maintopimg img{width:420px;height:258px;}
.maintop .mainbox{
	width:460px;
	padding:0 20px;
	margin-left:20px;
	text-align:left;
	float:left;
	height:258px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8 20px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.mainbox .mbtit{font-weight:bold;text-align:left;margin:0 auto;color:#333;font-size:24px;line-height:25px;padding:15px 0;}
.moredesc {margin:0;}
.sourcetime{font-size:12px;color:#333;text-align:left;margin:0;padding:0;clear:both;}
.sourcetime p{margin:8px 0;}
.lxbutton1 {background: #00a7f6;text-align:center;margin:10px 20px 0px 0;border-radius:6px;float:left;}
.lxbutton1 a{color:#fff;display:block;padding:5px 20px;font-size:1.4rem;}
.lxbutton2 {font-size:1.4rem;padding:5px 0;color:#333;margin:10px 0 10px 0px;float:left;}
.lxbutton3 {display:none;}
.mainbox span{margin-left:5px;}
.maintop .mainbox img{width:400px;}
.content{font-size:1rem;color:#333;padding:20px 0;height:100%;clear:both;}
.content-title{margin:10px auto 0;text-align:center;}
.content-title .contit{color:#333;font-size:1.6rem;height:30px;line-height:30px;margin-bottom:5px;}
.content-title p{color:#999;font-size:0.8rem;}
.content-title p span{margin-right:10px;}
.content-title p a{color:#999}
.content .details{border-left:5px solid #00a7f6;margin:0;height:30px;line-height:30px;margin-bottom:1.2rem;padding-left:10px;}
.content .details h3{ padding-left:10px;height:30px;line-height:30px;}
.content strong{font-size:1.1rem;padding-bottom:20px;line-height:25px;}
.content h2{font-size:1.1rem;font-weight:bold;padding-bottom:20px;line-height:25px;}
.content h2 a{font-size:1.1rem;font-weight:bold;}
.content h3{font-size:1.1rem;padding-bottom:20px;line-height:25px;font-weight:bold;}
.content h3 a{font-size:1.1rem;}
.content table{width:99%;margin:0 0 15px ;border:2px solid #e5e5e5;border-collapse:collapse;}
.content table th,td{padding:2px;border:2px solid #e5e5e5;text-align:center;}
.content table th{background:#f2f2f2;color:#333;font-weight:normal;text-align:center;}
.content p ,.content div{line-height:28px;margin-bottom:5px;}
.content a{color:#333}
.content .tag a{margin-right:5px;}
.content .presx span{font-size:1rem;margin-right:20px;}


.js-silder{
	position: relative;	
	min-width: 320px;
	
}
.silder-scroll{
	width: 100%;
	overflow: hidden;
}
.silder-main{
	position: relative;
margin:80px auto 0;
	width:auto;
	overflow: hidden;
}
.silder-main-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-height:563;
}
.silder-main-img img{
	width: 100%;height:100%;
}
.js-silder-ctrl{
	width: 100%;
	text-align: center;
	clear:both;
}
.silder-ctrl-prev,
.silder-ctrl-next{
	position: absolute;
	top: 0;
	width: 8%;
	height: 100%;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	font-family: "宋体";
	font-size: 52px;
	font-weight: 600;
	text-shadow: #666 2px 2px 5px;
}
.silder-ctrl-prev{
	left: 0;
	text-align: left;
}
.silder-ctrl-next{
	right: 0;
	text-align: right;
}
.silder-ctrl-prev>span,
.silder-ctrl-next>span{
	position: absolute;
	top: 50%;
	margin-top: -40px;
}
.silder-ctrl-prev>span{
	left: 50px;
}
.silder-ctrl-next>span{
	right:50px;
}
.silder-ctrl-con{
	position:relative;bottom:30px;
	display: inline-block;
	width: 4%;
	margin: 0 10px;
	cursor: pointer;
}
.silder-ctrl-con>span{
	display: block;
	line-height: 0;
	text-indent: -9999px;
	overflow: hidden;
	padding: 5px 0;
	cursor: pointer;
	background-color: #e4e4e4;
}
.silder-ctrl-con.active>span{
	background-color: #00a7f6;
}
.dlgk{width:100%;clear:both;background:#fff;}
.dlgk2t{text-align:center;font-size:18px;}
.dlgk2t a{text-decoration:underline;}
.dlgk2t a:hover{color:#00a7f6}
.moregk{text-align:center;padding:10px 20px;font-size:14px;}
.dlgkli {height:250px;margin:15px 0;position:relative;}
.dlgkli ul li.saleli{padding:0 ;float:left;text-align:left;width:23%;margin:1%;}
.dlgkli ul li :hover{color:#00a7f6}
.dlgkli-img{display:inline-block;float:left;width:100px;height:50px;overflow:hidden}
.dlgkli-ppt{display:inline-block;margin-left:18px;color:#252b3a;height:50px;line-height:50px;font-size:18px}
/*底部*/
.site-footer {clear:both;font-size: 14px; line-height: 1.8; color: #a8aaba; background: #32333b;}
.site-footer a { color: #a8aaba;}
.site-footer a:hover { color: #00a7f6 !important;}
.site-footer .footer-article { padding: 30px 0 20px; overflow: hidden;}
.site-footer .contact { float: left; width: 280px;}
.site-footer .contact dt { width: 90px;}
.site-footer .contact .iconfont { width: 66px;height: 66px; display: block;float: left;background: url(../images/kefu.png) center center no-repeat;background-size: 55px;}
.site-footer .contact .text { font-size: 14px; line-height: 30px; color: #fff;}
.site-footer .contact .tel { padding: 3px 0 15px; font-size: 20px; color: #fff;}
.site-footer .contact a { display: block; width: 90px; font-size: 14px; line-height: 30px; color: #9b9ea0; text-align: center; border: 1px solid #9b9ea0; border-radius: 4px;}
.site-footer .contact a:hover { color: #fff !important;}
.site-footer .allweixiu-article { float: left; width: 211px;margin-left:30px;}
.site-footer .allweixiu-article dt { margin-bottom: 15px; font-size: 15px; font-weight: normal; color: #d7d8d9;}
.site-footer .allweixiu-article dd { margin-bottom: 8px; overflow: hidden;}
.site-footer .allweixiu-article dd a {font-size: 14px; color: #9b9ea0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;}
.site-footer .wx { float: left; width: 135px; margin-right: 0;}
.site-footer .wx dt { margin-bottom: 15px; font-size: 16px; font-weight: normal; color: #d7d8d9;}
.site-footer .wx dd { margin-bottom: 15px;}
.site-footer .wx dd img { display: block; width: 110px; height: 110px; margin: 5px 0; border-radius: 2px;}
.site-footer .wx dd.other { margin-bottom: 0; line-height: 18px;font-size: 12px;}
.site-footer .wx dd.other span { display: block; font-size: 12px;}
.site-footer .wx dd.other a { display: inline-block; margin-right: 5px; font-size: 12px; line-height: 18px; vertical-align: top;}
.footer-links { padding: 10px 0; border-top: 1px solid #41424c; border-bottom: 1px solid #41424c;}
.footer-links p { font-size: 14px; color: #a8aaba;}
.footer-links a { margin-right: 20px; font-size: 12px; color: #a8aaba;}
.footer-info .info-text { padding: 20px 0; font-size: 12px; text-align: center;}
.footer-info .info-text .nav-bottom { padding: 20px 0 5px; font-size: 14px; color: #ccc; text-align: center;}
.footer-info .info-text .nav-bottom a { padding: 0 8px; color: #9b9ea0;}
.footer-info .info-text .copyright { padding-top: 5px;}
.footer-info .info-text em { padding: 0 8px;}

.cloud-footer-feature {
    width:1200px;
	margin:0 auto;
    height: 120px;
    border-bottom: 1px solid #414b51
}


.cloud-footer-feature ul li  {
    white-space: nowrap; float: left;
	width:220px;
    display: block;
    line-height: 120px;
    padding-left:80px;
    background-repeat: no-repeat;
    background-position:10px center;
    font-size: 1.1rem;
    color: #fff;
}

.feature-item001 {
    background-image: url("../images/icon-item001.png")
}

.feature-item002 {
    background-image: url("../images/icon-item002.png")
}

.feature-item003 {
    background-image: url("../images/icon-item003.png")
}

.feature-item004 {
    background-image: url("../images/icon-item004.png")
}


.weixiu {
	padding-bottom:20px;
}

.weixiubg {
    background-size: cover;
}

.wxstit {
    max-width: 1200px;
    padding: 50px 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wxstit .wxstb {
    margin-bottom: 10px;
    font-size:2rem;
    line-height: 46px;
    text-align: center;
    color: #333;
    font-weight: inherit;
}

.wxstit p {
    font-size: 1.2rem;
    line-height: 22px;
    text-align: center;
    color: #333;
    opacity: 0.6;
}

.wxcontent {
    width:1200px;
    margin: 0 auto;
}

.wxxmlist {
    width: 240px;
    float: left;
	margin-right:20px;
	border-radius:10px;
	margin-top:18px;
}

.wxxmlist ul li {
    width: 190px;
    height: 70px;
	font-size:1.1rem;
    color: #fff;
    line-height: 60px;
    background: #00a7f6;
	border-bottom:1px solid #42c1fd;
    padding-left: 30px;
    margin: 0 10px;
    position: relative;
}


.wxxmlist ul .on {
    width: 200px;
	border-radius:10px;
    margin: 0;
    padding-left: 40px;
    background-image: linear-gradient(-180deg, #00a7f6 0%, #0084c2 63%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#00a7f6, endColorstr=#0084c2);
    /*IE<9>*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#00a7f6, endColorstr=#0084c2)";
    /*IE8+*/
}
.wxxmlist ul li:hover{color:#fff;}
.weixiuitem {
    display: block;
    padding: 0px;
    overflow: hidden;
}

.weixiuitem ul li {
    padding:0.5rem 0;
}

.weixiuitem ul li .wxsitt {
	border-left:3px solid #00a7f6;
	padding-left:10px;
    font-size: 1.2rem;
    line-height: 20px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: inherit;
}

.weixiuitem ul li p {
    opacity: 0.8;
    font-size: 14px;
    color: #333;
    line-height: 22px;
}


.wxtitle {
    position: relative;
}

.wxtitle .wxtt {
   font-size:18px;
    color: #333;
    width: 135px;
    font-weight: inherit;
}

.wxtitle span {
    border-top: 1px solid #999;
    opacity: 0.2;
    display: inline-block;
    width: 100%;
    position: absolute;
    margin-left: 135px;
    top: 12px;
}

.wxbrand {
    width: 100%;
    position: relative;
	clear:both;
	display:table;
}
.weixiuinpic{width:225px;height:auto;border-radius:10px;float:left;margin:0 10px 20px 0;}
.weixiuinpic .spimg{width:223px;height:140px;padding:1px;overflow:hidden;border-radius:8px;}
.weixiuinpic img{width:100%;height:100%;border-radius:8px;}
.weixiuinpic .sptit{text-align:center;font-size:14px;line-height:22px;height:22px;margin:5px 0;overflow:hidden;padding:0 5px}
.weixiuinpic:hover{background: #fff;
    -webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;}
.wxbrand-item {
    margin:5px;
	padding:1px 5px;
	background:#f0f0f0;
	border-radius:4px;
	height:30px;
	line-height:30px;
    width:auto;
    float: left;
	font-size:14px;
}


.wxbrand-item:hover {
    background:#00a7f6;
	color:#fff;
}
.wxmt a:hover{background:#00a7f6;color:#fff;}
.wxmt a{
	display:block;
	float:left;
	background:#00a7f6;
	height:30px;
	line-height:30px;
	margin:5px;
	padding:1px 10px;
	border-radius:4px;
	color:#fff;
	font-size:14px;
	}
.solution-more-wrap {
    text-align: center;
	width:230px;
	margin:5px auto 5px;
    display: block;
}

.solution-more-wrap a {
    width: auto;display:block;
    padding:15px 20px;
    color: #333;
	font-size:18px;
    border: none;
	background:#f0f0f0;
	border-radius:5px;
}

.solution-more-wrap a:hover {
    background: #00a7f6;
	color:#fff;

}


.solution-more-wrap em {
    width: 13px;
    height: 13px;
    margin-left: 10px;
    display: inline-block;
    background:#00a7f6;
    background-size: cover;
    transition: margin-left 0.3s ease-out;
}

.solution-more-wrap a:hover em {
    margin-left: 15px;
    background:#fff;
}



.weixiuitem ul {
    display: none;
}
.wxfwlx{width:100%;background:#fff;margin-bottom:80px;}
.wxfwlx1{max-width:1200px;margin:30px auto;clear:both;height:350px;}
.wxfwlx1 p{font-size:1.1rem;line-height:34px;}
.wxfwlx1eft{width:380px;margin-right:20px;float:left;text-align:right;height:150px;padding:100px 150px 100px 0;}
.wxlx1-tit{font-size:1.5rem;height:40px;line-height:40px;margin-bottom:10px;margin-right:20px;}
.wxfwlx1right{width:580px;margin-left:20px;float:right;}
.wxfwlx1right img{width:534px;height:350px;float:right;}
.wxfwlx2{max-width:1200px;margin:30px auto;clear:both;height:350px;}
.wxfwlx2 p{font-size:1.1rem;line-height:34px;}
.wxfwlx2left{width:580px;margin-right:20px;float:left;}
.wxfwlx2left img{}
.wxfwlx2right{width:380px;margin-right:20px;float:left;text-align:left;height:150px;padding:100px 0 100px 150px;}
.wxlx2-tit{font-size:1.5rem;height:40px;line-height:40px;margin-bottom:10px;}
.line{height:30px;margin:30px auto;background:url(../images/line.png) no-repeat center bottom;clear:both;}





.inabout{
    
    min-height: 460px;
    background: #333 url(../images/body-bg.png) center top no-repeat;
    background-size: 1920px 100%;
    padding: 80px 0 0;
   
}

.aboutcon{
    width:1200px;
    margin:0 auto;
    position:relative;
	clear:both;
}
.cswxableft{width:360px;height:445px;overflow:hidden;margin-right:20px;border:10px solid #e0e0e0;margin-top:-150px;float:left;}
.cswxableft img{width:360px;}
.cswxableft img{transform: scale(1);
	transition: all .4s;
	width: 100%;
	display: block;}
.cswxableft:hover img{transform: scale(1.05);}

.cswxabright{width:740px;margin-left:60px;float:left;}
.aboutcon h3{
    font-size: 2.5rem;
    line-height: 64px;
    color: #FFF;

    font-weight:normal;
}

.aboutcon p{
    margin-top: 10px;
    font-size: 16px;
    color: #FFF;
    opacity: .8;
    filter: alpha(opacity=80);
    line-height: 30px;
}

.banner-btn a{
    display: inline-block;
	text-align:center;
    width: 158px;
    height: 36px;
    background-color: #108CEE;
    border: 1px solid #108CEE;
    color: #FFF;
    font-size: 16px;
    line-height: 35px;
    cursor: pointer;
    margin-top: 40px;
}

.banner-btn a:hover{
    background-color: #1F9AFD;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.banner-btn .banner-btn-02{
    margin-left: 20px;
    background-color: transparent;
    border: 1px solid #FFF;
}

.banner-btn .banner-btn-02:hover{
    background-color: #FFF;
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.telbtn{width:220px;height:36px;line-height:36px;text-align:center;background:#fff;font-size:20px;display: inline-block;margin-left:30px;}
.abconlist{
    padding: 0;
    text-align: center;
	clear:both;
	margin-bottom:40px;
	height:500px;
}

.abwrap{
    width: 100%;
    display: block;
    margin-top:-40px;
}

.abwrap li{
    float: left;
    width: 265px;
    padding: 10px;
    margin:0 0 30px 20px;
    text-align:center;
    background-color: #FFF;
    -webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.baimg{width:265px;height:164px;overflow:hidden;}
.baimg img{transform: scale(1);
	transition: all .4s;
	width: 100%;
	display: block;}
.baimg:hover img{transform: scale(1.05);}
.abwrap p{
    padding: 0;
    font-size: 16px;
height: 26px;overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
    color: #000;
    margin-top: 10px;
}


.allweixiu{width:100%;height:100%;display:table;padding-bottom:50px;clear:both;background:#f0f0f0;}
.allweixiu1{float:left;width:31%;background:#fff;margin:0 2% 0 0;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.allweixiu2{float:left;width:31%;background:#fff;margin:0 1%;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.allweixiu3{float:left;width:33%;background:#fff;margin:0;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.allweixiu1 .allwxbox{background:url(../images/apibox01.png) no-repeat;background-size:cover}
.allweixiu2 .allwxbox{background:url(../images/apibox02.png) no-repeat;background-size:cover}
.allweixiu3 .allwxbox{background:url(../images/apibox03.png) no-repeat;background-size:cover}
.allwxbox{padding:23px 4px 0;height:90px}
/*绗竴鍒�*/
.allweixiu .caption{font-size:1.4rem;color:#fff;margin-bottom:9px;margin-top:0;line-height:1.25;text-align:center;}
.allweixiu .info{text-align:center;line-height:1.15rem;color:#fff;font-size:14px}
.csgkwx{text-align:center;padding:10px;clear:both;display:block;}
.csgkwx b{font-size:15px;background:#f0f0f0;border-radius:4px;height:30px;line-height:30px;width:150px;margin:10px auto;clear:both;display:block;}
.csgkwx div{font-size:14px;width:auto;float:left;height:24px;line-height:24px;margin:3px 3px;padding:0 2px;}
.csgkwx div:hover{color:#00a7f6;transform: scale(1.5);background:#fff;transition: all .4s;}
.csgkwx p{color:#333;text-align:left;;font-size:14px;line-height:20x;margin:5px 0;background:#f0f0f0;padding:5px;}
.allwxbottom{background:#fff;height:300px;clear:both;position:relative;}
.wxmore{
	display:block;
	clear:both;
	bottom:-15px;
	margin-left:40%;
	width:20%;
	text-align:center;
	height:30px;
	line-height:30px;
	border-radius:4px;
	color:#fff;
	font-size:15px;
	}
.wxmore a{background:#00a7f6;color:#fff;border-radius:5px;display:block;text-align:center;}


.boxblock{width:1200px;margin:0 auto;padding:40px 0;height:auto;}

.cswxnews{width: 100%; height:100%;clear:both; background: #fff; overflow: hidden;padding-bottom: 50px}

.wxnewsinner{width: 1300px; margin: 0 auto}
.wxnewsinner .wxinnerbox{float: left; width: 560px;border-radius:6px; height: 118px; text-align: left;margin:10px 25px;padding:0 20px;vertical-align: top; position: relative;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1)}
.wxnewsinner .wxinnerbox a{cursor: pointer;}
.wxnewsinner .wxinnerbox .newtit{float: left; line-height: 44px; height: 50px; font-size: 16px; color: #333; width: 400px; white-space: nowrap; word-break: normal; overflow: hidden; text-overflow: ellipsis}
.wxnewsinner .wxinnerbox a:hover .newtiticon{background-color: #00a7f6}
.wxnewsinner .wxinnerbox .newtiticon{width: 19px;height: 19px;border-radius:10px;background: url(../images/plus.png) center no-repeat; background-color: #a6a6a6; position: absolute; right: 20px; top: 14px}
.wxnewsinner .wxinnerbox .border{position: absolute; left: 97px; top: 44px; width: 21px; border-top: 1px solid #00a7f6}
.wxnewsinner .wxinnerbox .newcon{position:relative;float: left; height: 50px; width: 464px; font-size: 14px; line-height: 28px; color: #b0b0b0; margin-bottom: 50px; overflow: hidden; word-wrap: break-word; text-overflow: ellipsis; display: -webkit-box;}
.wxinnerbox .time{width: 54px; height: 80px; border: 1px solid #e0e0e0;border-radius:10px; background: #fff; text-align: center; margin-right: 20px; margin-top: 14px; float: left}
.wxinnerbox .time .day{font-size: 20px; color: #333; padding: 16px 0 0 0}
.wxinnerbox .time .ym{font-size: 12px; color: #666}
.wxinnerbox a:hover .time{background: #00a7f6;}
.wxinnerbox a:hover .day{color: #fff}
.wxinnerbox a:hover .ym{color: #fff}


/*数据统计滚动*/
.numinfo{background:url(../images/product_number_bg.jpg); position: relative;}
.numinfo .product-number-inner{width: 1200px; margin:0 auto;}
.numinfo ul{padding: 85px 0;}
.numinfo ul.q:after {content: "";clear: both;display: table;}
.numinfo li{float: left; width: 239px; height: 90px; border-left: 1px solid #66c7fd;color:#fff; padding-top:1px;}
.numinfo li:first-child{border:none;}
.numinfo li b{font-weight: 400; font-size:2.2rem; line-height: 1;display: inline-block; position: relative; margin: 15px 0 10px;}
.numinfo li b i{font-style: normal;}
.numinfo li b sup{position: absolute; font-size:1rem; right: -15px; top: -3px;}
.numinfo li b em{font-style: normal; font-size: 1.1rem; font-weight: 100; padding-left: 2px; position:relative; top: -4px;}
.numinfo li p{font-size:1rem;}
.numinfo li.li-1 b{padding-left:20px;}
.numinfo li.li-2 b,.numinfo li.li-2 p{padding-left:70px;}
.numinfo li.li-3 b,.numinfo li.li-3 p{padding-left:70px;}
.numinfo li.li-3 b,.numinfo li.li-3 p{padding-left:70px;}
.numinfo li.li-4 b,.numinfo li.li-4 p{padding-left:78px;}
.numinfo li.li-5{text-align:center;}
.numinfo li.li-5 b{padding-right: 2px;}



@media (max-width: 768px){
	.silder-ctrl-prev,
	.silder-ctrl-next{
		position: absolute;
	}
	.silder-ctrl-con{
		width: 14px;
		height: 14px;
		padding: 0;
		margin: 0 5px;
	}
	.silder-ctrl-con>span{
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		padding: 0;
	}
	
}



@media screen and (max-width: 992px){
	.header{
		padding: 0 10px;
	}
	.keifu{display:none;}
	.container{width:96%;margin:0 2%;height:100%;}
	.header #navToggle {
		height: 100%;
		padding:20px 15px;
		margin-right: 15px;
		display: inline-block;
		float: right;
	}
	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
		margin-top: 19px;
	}
	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}
	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #4f4f4f;
	}
	.header #navToggle span:before {
		top: 8px;
	}
	.header #navToggle span:after {
		bottom: 10px;
	}
	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}
	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
	.header #navToggle.open span {
		background: none;
	}
	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}
	
	.header .nav{
		display: none;
	}
	
	
	.silder-main-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:260px;
}
	.csweixiu{width:100%;margin:0px auto;clear:both;}
.weixiuz{width:100%;margin:10px 0;float:left;}
.weixiuz-title{font-size:20px;font-weight:400;margin:0 auto;height:48px;line-height:48px;text-align:center;color:#fff;border-bottom:1px solid #00a7f6;background:url(../images/apibox01.png) no-repeat;background-size:cover}
.weixiuz .wxzcenter ul li{float:left;width:50%;height:40px;line-height:40px;display:block;font-size:16px;color:#333;border-bottom:1px solid #e3e3e3;font-weight:normal}
.weixiuz .wxzcenter ul li a{display:block;font-size:16px;height:40px;line-height:40px;padding-left:0px;text-align:center;color:#333;font-weight:normal}
.weixiuz .wxzcenter ul li img{width:32px;height:32px;margin:4px 10px 4px 20px;float:left;}

.weixiubox{float:right;width:100%;clear:both;}
.weixiubox ul{margin:20px 0;}
.weixiubox ul li{width:48%;float:left;text-align:center;margin:2% 1%;border-radius:14px;overflow:hidden;}
.weixiubox ul li img{width:99%;max-height:150px;padding:0.5%;border-radius:14px;}
.weixiubox ul li p{width:100%;font-size:16px;height:35px;line-height:35px;color:#333;}
.morepro ul li {width:48%;float:left;text-align:center;margin:2% 1%;border-radius:14px;overflow:hidden;}
.morepro ul li img{width:99%;max-height:150px;padding:0.5%;border-radius:14px;}
.morepro ul li p{width:100%;font-size:16px;height:35px;line-height:35px;color:#333;}

ul.page{width:100%;clear:both;margin:0 auto;}
ul.page li{width:auto;float:left;text-align:center;padding:3px 0;margin:30px 5px 50px;border:1px solid #e5e5e5}
ul.page li a{display:block;font-size:14px;padding:3px 15px;text-align:center;color:#333;}
ul.page li:hover{background:#00a7f6;width:auto;color:#fff;}
ul.page li:hover a{color:#fff;}
ul.page li.thisclass{padding:3px 15px;}


.allweixiu1{float:left;width:48%;background:#fff;margin:0 2% 0 0;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.allweixiu2{float:left;width:48%;background:#fff;margin:0 1%;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.allweixiu3{float:left;width:100%;background:#fff;margin:4% 0 0 0;padding-bottom:20px;
-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}

.cloud-footer-feature {
    width:100%;
	margin:0 auto;
    height: 120px;
    border-bottom: 1px solid #414b51
}
.cloud-footer-feature ul li {
    float: left;
    width: 40%;
    height: 120px;
	font-size:1rem;
}
.site-footer .contact { float:left; width:25%;}
.site-footer .contact dt { width: 90px;}
.site-footer .allweixiu-article { float: left; width:25%;margin:0;}
.site-footer .wx { float: left; width:20%; margin-right: 0;display:none;}
.site-footer .wx dd img { display: block; width:100%;margin:0; border-radius: 2px;}

.wxnewslist{float:right;width:100%;clear:both;margin:0;}
.wxnewslist ul li{width:auto;margin-bottom:1.1rem;font-size:14px;padding:0;border-bottom:1px solid #f0f0f0;}
.wxnewslist ul li span{float:right;}

.article-content{float:right;width:100%;clear:both;margin:0;}
.content img{width:98%;margin:1%;}
.maintop{width:100%;height:auto;clear:both;border:1px solid #f1f1f1;padding:5px;margin:0;}
.maintop .maintopimg{
	width:50%;
	height:auto;
	overflow:hidden;
	float:left;
	border-radius:6px;
}
.maintopimg img{width:100%;height:auto;}
.maintop .mainbox{
	width:44%;
	padding:0 2%;
	height:auto;
	margin-left:2%;
	text-align:left;
	float:left
}
.mainbox .mbtit{font-weight:bold;text-align:left;margin:0 auto;color:#333;font-size:24px;line-height:25px;padding:15px 0;}
.mainbox p , .mainbox p a{font-size:12px;color:#999;text-align:left;margin:0;padding:0;clear:both;}
.sourcetime{display:none;}
.wxtaglist{float:right;width:100%;clear:both;margin:0;}
.tagsitem{clear:both;height:auto;margin:20px 0;}
.tagsitem a{display:block;}
.tagsitem :hover{color:#00a7f6}
.tiimg{width:30%;max-height:150px;margin-right:2%;float:left;overflow:hidden;border-radius:10px;}
.tiimg img{width:100%;height:100%;}
.tiimg:hover img{transform: scale(1.05);
	transition: all .4s;}
.tiinfo{width:68%;max-height:150px;float:left;overflow:hidden;}
.tiinfo h3{font-size:1.5rem;height:30px;line-height:30px;margin:0.2rem 0;}
.tiinfo p{font-size:0.9rem;line-height:1.2rem;}

.alltags{float:right;width:100%;clear:both;margin:0;}
.wxcontent {
    width:100%;
    margin: 0 auto;
}
.wxxmlist {
    width:30%;
    float: left;
	margin-right:2%;
	border-radius:10px;
	margin-top:18px;
}

.wxxmlist ul li {
	font-size:0.9rem;
    width:auto;
    height: 50px;
    color: #fff;
    line-height: 50px;
    background: #00a7f6;
	border-bottom:1px solid #42c1fd;
    padding-left:6px;
    margin: 0 10px;
    position: relative;
}


.wxxmlist ul .on {
    width:auto;
	border-radius:10px;
    margin: 0;
    padding-left: 10px;
    background-image: linear-gradient(-180deg, #00a7f6 0%, #0084c2 63%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#00a7f6, endColorstr=#0084c2);
    /*IE<9>*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#00a7f6, endColorstr=#0084c2)";
    /*IE8+*/
}
.weixiuitem {
 width:68%;   
    display: block;
    padding: 0px;
    overflow: hidden;
}
.weixiuinpic{width:48%;height:auto;border-radius:10px;float:left;margin-right:2%;}
.weixiuinpic .spimg{width:100%;max-height:132px;overflow:hidden;border-radius:8px;}
.weixiuinpic img{width:100%;border-radius:8px;}
.weixiuinpic .sptit{font-size:14px;line-height:20px;height:40px;margin-top:5px;overflow:hidden;}


/*数据统计滚动*/
.numinfo {display:none;}

.aboutcon{
    width:96%;
	padding:0 2%;
    margin:0 auto;
    position:relative;
	clear:both;
}
.inabout{
    
    height: 460px;
    background: #333;
    padding: 10px 0 0;
   
}
.cswxableft{width:98%;height:auto;overflow:hidden;border:0px solid #e0e0e0;margin:1%;background:#fff;}
.cswxableft img{width:auto;}
.cswxableft img{transform: scale(1);
	transition: all .4s;
	width: 100%;
	display: block;}
.cswxableft:hover img{transform: scale(1.05);}

.cswxabright{width:98%;padding:1%;margin:0;background:#333;}

.aboutcon h3{
    font-size: 1.5rem;
    line-height:2rem;
    color: #FFF;

    font-weight:normal;
}
.abwrap li{
    float: left;
    width: 48%;
    padding: 1%;
    margin:0 0 2% 0;
    text-align:center;
    background-color: #FFF;
    -webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
}
.baimg{width:100%;height:auto;overflow:hidden;}
.baimg img{transform: scale(1);
	transition: all .4s;
	width: 100%;
	display: block;}
.baimg:hover img{transform: scale(1.05);}
.abwrap p{
    padding: 0;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-top: 10px;
}

.wxnewsinner{width:100%; margin: 0 auto}
.wxnewsinner .wxinnerbox{float: left; width:92%;border-radius:6px; height:100%; text-align: left;margin:10px 2%;padding:1% 2%;vertical-align: top; position: relative;-webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.1)}
	
.wxnewsinner .wxinnerbox .border{position: relative;border-top: 1px solid #00a7f6}
.wxnewsinner .wxinnerbox a{cursor: pointer}
.wxnewsinner .wxinnerbox .newtit{float: left; line-height: 44px; height: 50px; font-size: 16px; color: #333; width:83%; white-space: nowrap; word-break: normal; overflow: hidden; text-overflow: ellipsis}
.wxinnerbox .time{width:15%; height:auto; border: 0px solid #e0e0e0;border-radius:10px; background: #fff; text-align: center; margin-right:2%; margin-top:12px; float: left}
.wxinnerbox .time .day{font-size: 20px; color: #333; padding:0}
.wxnewsinner .wxinnerbox .newcon{position:relative;float: left; height:auto; width:100%; font-size: 14px; line-height: 28px; color: #b0b0b0; margin-bottom: 30px; overflow: hidden; word-wrap: break-word; text-overflow: ellipsis; display: -webkit-box;}
.boxblock{width:96%;margin:0 2%;padding:0 0 50px;height:100%;clear:both;}
.wxfwlx1{width:100%;margin:0px auto 30px;clear:both;display:table;height:100%;}
.wxfwlx1 p{font-size:1rem;line-height:24px;}
.wxfwlx1eft{width:45%;margin:0 5% 0 0;float:left;text-align:right;height:auto;padding:0;}
.wxlx1-tit{font-size:1.2rem;height:40px;line-height:40px;margin-bottom:10px;margin-right:20px;}
.wxfwlx1right{width:45%;margin-left:5%;float:right;}
.wxfwlx1right img{width:100%;height:auto;float:right;}
.wxfwlx2{width:100%;margin:0px auto;clear:both;height:auto;}
.wxfwlx2 p{font-size:1rem;line-height:24px;}
.wxfwlx2left{width:45%;margin-right:5%;float:left;}
.wxfwlx2left img{width:100%;height:auto;}
.wxfwlx2right{width:45%;margin:0 5% 0 0;float:left;text-align:left;height:auto;padding:0;}
.wxlx2-tit{font-size:1.2rem;height:40px;line-height:40px;margin-bottom:10px;}
.line{height:30px;margin:30px auto;background:url(../images/line.png) no-repeat center bottom;clear:both;display:block}


.banner-btn a{
    display: inline-block;
	text-align:center;
    width: auto;
    height: auto;
    background-color: #108CEE;
    border: 1px solid #108CEE;
    color: #FFF;
    font-size:1.1rem;padding:1px 10px;
    line-height:auto;
    cursor: pointer;
    margin-top:5px;
}

.banner-btn a:hover{
    background-color: #1F9AFD;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.banner-btn .banner-btn-02{
    margin-left: 20px;
    background-color: transparent;
    border: 1px solid #FFF;
}

.banner-btn .banner-btn-02:hover{
    background-color: #FFF;
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.telbtn{width:auto;height:auto;line-height:auto;text-align:center;background:#fff;font-size:1.3rem;margin-left:0px;}
.csgkwx b{font-size:15px;background:#f0f0f0;border-radius:4px;height:30px;line-height:30px;width:auto;margin:10px auto;clear:both;display:block;}
.lxbutton2{display:none;}
.moredesc{clear:both;}
.lxbutton3 {width:98%;display:block;clear:both;font-size:1.4rem;color:#333;padding:2% 1%;float:none;}
.lxbutton3 p{color:#fd6522;font-size:1.1rem;}
.wxzcon{display:none;}
.cont{width:100%;height:100%;clear:both;background:#f5f5f5;padding:50px 0 50px;margin-top:80px;}
.contimg{display:none;}
.contbox{background:#fff;width:auto;max-height:100%;margin:0}

.weixiuvideo{float:left;width:100%;}
.weixiuvideo ul{margin:20px 0;}
.weixiuvideo ul li{width:48%;float:left;text-align:center;margin:1%;border-radius:14px;overflow:hidden;}
.weixiuvideo ul li img{width:99%;max-height:150px;padding:0.5%;border-radius:14px;}
.weixiuvideo ul li p{width:100%;font-size:18px;height:35px;line-height:35px;color:#333;}
.weixiuvideo a .btnbox{
	position: absolute;
	top: 5px;
	left:5px;
	display: none \9;
	opacity: 0;
	width:100%;
	max-height:150px;
	background: rgba(0,0,0,.3);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d000000, endColorstr=#4d000000);
	zoom: 1;
	cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s
}
.weixiuvideo ul li a:hover  .play-btn {
	position:absolute;
	top: 0;
	left: 0;
	display: block \9;
	width:100%;
	max-height:150px;
	background:url(../images/play-btn.png) no-repeat center ;cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s;
}
	
.videocenter {width:100%;clear:both;margin:80px auto 0;height:100%;padding:30px 0;}
.videoleft{width:100%;height:100%;margin-right:0;float:left;background:#484848;}
.videoleft video{width:100%;height:auto;}
.videoright {width:96%;height:auto;float:left;padding:2%;}
.videoright .videotitle{font-size:24px;color:#333;font-weight:normal;height:60px;overflow:hidden;}
.videorl{width:auto;height:400px;overflow-x: hidden;
        overflow-y: scroll;}
		
/*修改滚动条样式*/
.videorl::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 10px;  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  }
  .videorl::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius   : 10px;
  background-color: skyblue;
  background-image: -webkit-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
  );
  }
.videorl::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  background   : #ededed;
  border-radius: 10px;
  }
 .videorl::-webkit-scrollbar-corner{
  background: #179a16;
  height:10px;
}
.videorl ul{margin:15px 0; }
.videorl ul li{width:100%;height:78px;margin-bottom:10px;overflow:hidden;}
.videorl ul li img{width:30%;max-height:78px;float:left;margin-right:2%;}
.videorl ul li p{width:68%;max-height:78px;overflow:hidden;float:left;color:#333;font-size:15px;}
.videorl ul li:hover p{color:#fd4d26;}
.videorl a .btnbox{
	position:relative;
	top: 0;
	left: 0;
	display: none \9;
	opacity: 0;
	width:30%;
	max-height:78px;
	background: rgba(0,0,0,.3);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d000000, endColorstr=#4d000000);
	zoom: 1;
	cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s
}
.videorl a:hover .btnbox {opacity:1;
filter:Alpha(opacity=100)}
.videorl a:hover  .play-btn {
	position:absolute;
	top: 0;
	left: 0;
	display: block \9;
	width: 100%;
	max-height:78px;
	background:url(../images/play-btn.png) no-repeat center ;cursor: pointer;
	-webkit-transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
	transition: opacity .3s ease 0s;
}

/*在线客服*/

}