/*
* @Author: DoDo
* @Date:   2019-08-28 10:11:38
* @Last Modified by:   DoDo
* @Last Modified time: 2019-11-22 14:32:18
*/
*{
	letter-spacing: 1px;
}
body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    overflow-x: hidden;
    height: 100%;
}
body.on{
    overflow: hidden;
}
a{
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9;  /* ie8 */
    -ms-interpolation-mode: bicubic;
    border: none;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}


@media (min-width:1366px) {
    .container {
        width: 1200px;
        padding-left: 0;
        padding-right: 0;
    }
}

/*========================public============================*/
.f0{
	font-size: 0;
}
.bg-f5f5f5{
	background-color: #f5f5f5;
}
.bg-f7f7f7{
	background-color: #f7f7f7;
}

.header{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 101;
	background-color: #000;
	border-top: 3px solid #1c6dd1;
}
.index-header{
	background-color: rgba(0,0,0,.5);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header .a-logo{
	float: left;
	margin-top: 10px;
}
.header .a-logo img{
	height: 40px;
}

.header-bream{
    float: right;
    width: 30px;
    height: 25px;
    position: relative;
    padding-top: 12px;
    margin-top: 7px;
    cursor: pointer;
}
.header-bream span{
    display: block;
    height: 1px;
    filter:alpha(opacity=100);  
    -moz-opacity:1;  
    -khtml-opacity: 1;  
    opacity: 1;
    background-color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header-bream::before,.header-bream:after{
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header-bream::before{
    top: 2px;
}
.header-bream::after{
    bottom: 2px;
}

.header-bream.on span{
    filter:alpha(opacity=0); 
    -moz-opacity:0;  
    -khtml-opacity: 0;  
    opacity: 0;
}
.header-bream.on::before{
    top: 12px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg); 
}
.header-bream.on::after{
    bottom: 12px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg); 
}

.nav-list{
	float: right;
	width: calc(100% - 280px);
}
.nav-list ul{
	float: left;
}
.nav-list ul li{
	float: left;
	margin-left: 42px;
}
.nav-list ul li:first-child{
	margin-left: 0;
}
.nav-list ul li>a{
	position: relative;
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 52px;
	padding: 4px 17px 2px;
}
.nav-list ul li>a::after{
	content: " ";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 2px;
	background-color: rgba(28,109,209,0);
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}
.nav-list ul li.active>a::after{
	left: 0;
	right: 0;
	background-color: rgba(28,109,209,1);
}


.nav-down{
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background-color: #fff;
	padding-top: 24px;
	padding-bottom: 24px;
	visibility: hidden;
}

.nav-down-01{
	height: auto;
    padding-top: 10px;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    break-inside: avoid;
}
.nav-down-01 .div-title{
	border-bottom: 1px solid #dbdbdb;
}
.nav-down-01 .div-title a{
	display: block;
	line-height: 34px;
	font-size: 14px;
	color: #333;
}
.nav-down-01 .div-list{
	margin-top: 10px;
}
.nav-down-01 .div-list .span-01 a{
	display: block;
	margin-left: -10px;
	border-left: 3px solid #fff;
	font-size: 13px;
	color: #888;
	line-height: 20px;
	padding: 8px 0 8px 7px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.nav-down-01 .div-list .span-more{
	line-height: 36px;
}
.nav-down-01 .div-list .span-more a{
	font-size: 13px;
	color: #1c6dd1;
}

.header-search{
	float: right;
	width: 190px;
	margin-top: 10px;
}
.header-search .put-01{
	background:#1f1f1f;
	border: none;
	outline: none;
	width: 100%;
	height: 36px;
	line-height: 26px;
	padding: 8px 15px 8px 43px;
	border-radius: 36px;
	font-size: 14px;
	color: #fff;
	box-shadow: 0 0 20px 10px #1f1f1f inset;
}
.header-search .put-01::-webkit-input-placeholder { color: #999; }
.header-search .put-01:-moz-placeholder { color: #999; opacity: 1; }
.header-search .put-01::-moz-placeholder { color: #999; opacity: 1; }
.header-search .put-01:-ms-input-placeholder { color: #999; }
/*.header-search .put-01:-webkit-autofill {
  color: #fff!important;
  -webkit-text-fill-color: #1f1f1f;
  box-shadow: 0 0 0 1000px #1f1f1f inset
}

.header-search .put-01:autofill {
  color: #fff!important;
  -webkit-text-fill-color: #1f1f1f;
  box-shadow: 0 0 0 1000px #1f1f1f inset
}
*/

.header-search .but-01{
	border: none;
	background: none;
	outline: none;
	position: absolute;
	left: 5px;
	top: 0;
	width: 38px;
	height: 36px;
}
.header-lauguage{
	position: relative;
	float: right;
	width: 63px;
	padding-right: 15px;
	background: url('../images/icon-01.png') right 9px no-repeat;
	font-size: 14px;
	margin-top: 17px;
	margin-right: 50px;
	padding-left: 10px;
}
.header-lauguage a{
	color: #fff;
	display: block;
	line-height: 24px;
}
.header-lauguage .span-xl{
	visibility: hidden;
	transform: translateY(10px);
	position: absolute;
	left: 0;
	top: 100%;
	right: 0;
	background-color: #000;
	border: 1px solid #1c6dd1;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header-lauguage .span-xl a{
	color: #fff;
	padding-left: 10px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header-lauguage:hover .span-xl{
	visibility: visible;
	transform: translateY(0);
	filter:alpha(opacity=100);  
	-moz-opacity:1;  
	-khtml-opacity: 1;  
	opacity: 1;
}
.header-lauguage .span-xl:hover a{
	background-color: #1c6dd1;
	color: #fff;
}

/* footer */
.footer{
	padding-top: 40px;
	padding-bottom: 38px;
	background-color: #373d41;
	color: #999;
}
.footer a{
	color: #999;
}
.footer a:hover{
	color: #fff;
}


.foot-top{
	padding-left: 22.75%;
	margin-bottom: 40px;
}
.foot-left{
	float: left;
	width: 29.45%;
	margin-left: -29.45%;
	border-right: 1px solid #555;
}
.foot-left .div-01{
	font-size: 16px;
	line-height: 16px;
}
.foot-left .div-01 .b-num{
	display: block;
	font-size: 24px;
	color: #fff;
	line-height: 24px;
	margin-top: 13px;
}
.foot-left .div-nav{
	font-size: 0;
	line-height: 20px;
	padding-top: 23px;
}
.foot-left .div-nav .span-01{
	font-size: 14px;
	margin-top: 12px;
}
.foot-nav{
	float: left;
	width: 100%;
	padding-left: 11.65%;
}
.foot-nav ul{
	float: left;
	width: 26.66%;
}
.foot-nav ul:last-child{
	width: 20%;
}
.foot-nav ul li{
	line-height: 20px;
	margin-top: 10px;
}
.foot-nav ul li:first-child{
	margin-top: 0;
	padding-bottom: 2px;
}
.foot-nav ul li:first-child a{
	font-size: 16px;
	color: #ccc;
	font-weight: bold;
}
.foot-nav ul li .span-img{
	padding-top: 2px;
	padding-bottom: 6px;
}

.foot-middle{
	padding-top: 19px;
	padding-bottom: 25px;
	border-top: 1px solid #555;
}
.foot-middle .div-01{
	padding-left: 9%;
	line-height: 20px;
	margin-top: 12px;
}
.foot-middle .div-01 .span-01{
	float: left;
	margin-left: -9.89%;
	font-weight: bold;
	color: #ccc;
}
.foot-middle .div-01 .bdo-01{
	float: left;
	min-width: 11.68%;
	padding-right: 10px;
}

.foot-copy{
	font-size: 12px;
	line-height: 20px;
	padding-top: 27px;
	border-top: 1px solid #555;
}
.foot-copy .div-01{
	margin-top: 4px;
}
.foot-copy .div-01 img{
	margin-right: 5px;
}

/* 返回顶部 */
.return-top{
	position: fixed;
	right: 1%;
	bottom: 10%;
	z-index: 99;
	width: 44px;
	height: 44px;
	background-color: #1c6dd1;
	-webkit-box-shadow:0 0 8px rgba(0, 0, 0, .14);  
    -moz-box-shadow:0 0 8px rgba(0, 0, 0, .14);  
    box-shadow:0 0 8px rgba(0, 0, 0, .14);
    cursor: pointer;
    display: none;
}

/* 在线咨询 */
.public-online{
	position: fixed;
	right: 1%;
	bottom: calc(10% + 60px);
	z-index: 99;
	width: 44px;
}
.public-online .span-tag{
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #1c6dd1;
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}
.public-online .span-tag img{
	margin-bottom: 7px;
}
.public-online-01{
	position: absolute;
	right: 100%;
	transform: translateX(-4px);
	bottom: 0;
	z-index: 1;
	padding: 30px;
	width: 290px;
	background-color: #fff;
	-webkit-box-shadow:0 0 8px rgba(0, 0, 0, .14);
    -moz-box-shadow:0 0 8px rgba(0, 0, 0, .14);
    box-shadow:0 0 8px rgba(0, 0, 0, .14);
    display: none;
}
.public-online-01 .mg-close{
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 10;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.public-online-01 .div-01{
	padding-left: 38px;
	margin-top: 23px;
}
.public-online-01 .div-01:first-child{
	margin-top: 0;
}
.public-online-01 .div-01 .mg-icon{
	float: left;
	margin-top: 7px;
	margin-left: -38px;
}
.public-online-01 .div-01 .span-title{
	font-size: 14px;
	color: #666;
	line-height: 20px;
}
.public-online-01 .div-01 .span-01{
	font-size: 12px;
	color: #888;
	margin-top: 2px;
}
.public-online-01 .div-01 a:hover .span-01{
	color: #1c6dd1;
}

/* 分页 */
.pages{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0;
}
.pages a{
    display: inline-block;
    margin: 0 3px;
    min-width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    color: #333;
    background-color: #eee;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.pages a:first-child,.pages a:last-child{
    width: 120px;
}
.pages a:hover{
    color: #fff;
    background-color: #1c6dd1;
    border-color: #1c6dd1;
}
.pages a.on{
    color: #fff;
    background-color: #1c6dd1;
    border-color: #1c6dd1;
}
.pages strong{
	display: inline-block;
	margin: 0 3px;
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 12px;
	color: #fff;
	border-color: #1c6dd1;
	background-color: #1c6dd1;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


/*========================index============================*/
.banner{
	position: relative;
}
.banner-owl .owl-dots{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 152px;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 4px;
}
.banner-owl  button.owl-dot{
	width: 40px;
	height: 4px;
	background-color: #fff;
	margin: 0 5px;
	padding: 0;
}
.banner-owl  button.owl-dot.active{
	background-color: #1c6dd1;
}
.banner-a1{
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.banner-bottom{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background-color: rgba(27,27,27,.5);
	font-size: 0;
}
.banner-a2{
	/*display: inline-block;*/
	float: left;
	width: 20%;
	padding: 25px 20px 30px;
	line-height: 24px;
	border-right: 1px solid #434447;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.banner-a2:first-child{
	border-left: 1px solid #434447;
}
.banner-a2 .b-title{
	max-width: 100%;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.banner-a2 .span-des{
	max-width: 100%;
	font-size: 14px;
	height: 48px;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 7px;
}

.index-title .span-cn{
	font-size: 24px;
	color: #333;
	line-height: 30px;
}
.index-title .span-txt{
	font-size: 16px;
	line-height: 24px;
	color: #666;
	margin-top: 10px;
}

.index-service-01{
	padding-top: 45px;
}
.index-service-01:first-child{
	padding-top: 60px;
}
.index-service{
	padding-top: 30px;
}
.index-service .index-title{
	margin-top: 27px;
}

.index-service-tab .div-01{
	float: left;
	width: 20%;
	text-align: center;
}
.index-service-tab .div-01 a{
	font-size: 14px;
	line-height: 20px;
}
.index-service-tab .div-01 a .span-img img{
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-service-tab .div-01 a .span-img .mg1{
	display: block;
}
.index-service-tab .div-01 a .span-img .mg1h{
	position: absolute;
	left: 0;
	top: 0;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
}
.index-service-tab .div-01 a .span-txt{
	color: #333;
}


.index-service-nr{
	background-color: #f7f7f7;
	margin-top: 20px;
	overflow: hidden;
}
.index-service-nr .div-01{
	display: none;
	padding-top: 18px;
	padding-bottom: 17px;
	background-color: #f7f7f7;
}
.index-service-nr .div-hot{
	float: left;
	width: 31.25%;
	padding-bottom: 20px;
}
.index-service-nr .div-list{
	float: right;
	width: 65.83%;
}
.index-service-nr .div-list ul{
	float: right;
	width: 47.46%;
}
.index-service-nr .div-list ul:first-child{
	float: left;
}

.index-service-list{
	line-height: 20px;
}
.index-service-list .div-title{
	height: 20px;
	padding-right: 37px;
}
.index-service-list .div-title span{
	display: inline-block;
	max-width: 100%;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.index-service-list .div-title .bdo-icon{
	position: absolute;
	margin-left: 11px;
	margin-top: -2px;
}
.index-service-list .div-des{
	font-size: 12px;
	color: #888;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	margin-top: 5px;
}
.index-service-list .a-more{
	width: 100px;
	height: 30px;
	border: 1px solid #434343;
	line-height: 28px;
	font-size: 12px;
	color: #555;
	text-align: center;
	margin-top: 15px;
}

.index-service-list.index-service-hot li{
	margin-top: 40px;
	padding-left: 20px;
}
.index-service-list.index-service-hot li:first-child{
	margin-top: 14px;
}
.index-service-list.index-service-hot .div-title a{
	display: inline-block;
	max-width: 100%;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.index-service-list.index-service-hot .div-des{
	margin-top: 10px;
}
.index-service-nr .div-list .index-service-list li{
	position: relative;
	padding: 15px 40px 15px 20px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-service-nr .div-list .index-service-list li::after{
	content: " ";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(-15px,-50%);
	width: 9px;
	height: 14px;
	background: url('../images/icon-17.png') center center no-repeat;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


.index-service-more{
	/*margin-top: 37px;*/
	width: 128px;
	height: 40px;
	line-height: 38px;
	font-size: 14px;
	color: #555;
	border: 1px solid #434343;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.index-case{
	padding-top: 73px;
}
.index-case-cont{
	background-color: #373d41;
	margin-top: 63px;
}
.index-case-owl{
	margin: 0 auto;
}
.index-case-owl .owl-nav button.owl-prev,
.index-case-owl .owl-nav button.owl-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 26px;
	font-size: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-case-owl .owl-nav button.owl-prev{
	left: 25px;
	background: url('../images/arrow-left.png') center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.index-case-owl .owl-nav button.owl-next{
	right: 25px;
	background: url('../images/arrow-right.png') center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.index-case-a1 .span-mc{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(38,38,38,.5);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-case-a1 .div-cont{
	position: absolute;
	left: 25px;
	right: 25px;
	top: 50%;
	transform: translateY(-63%);
	color: #fff;
}
.index-case-a1 .div-cont .span-img img{
	width: auto;
}
.index-case-a1 .b1{
	font-size: 20px;
	line-height: 24px;
	padding-top: 27px;
	background: url('../images/line-01.jpg') top center no-repeat;
	margin-top: 25px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-case-a1 .span-cont{
	margin-top: 19px;
	padding-top: 1px;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-case-a1 .bdo-des{
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	height: 72px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.index-case-a1 .bdo-more{
	width: 128px;
	height: 40px;
	line-height: 38px;
	border: 1px solid #fff;
	font-size: 14px;
	color: #fff;
	margin-top: 45px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


.index-news{
	padding-top: 73px;
}
.index-news-cont{
	margin-top: 63px;
}
.index-news-01{
	float: left;
	width: 41.66%;
}
.index-news-01 .span-img img{
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-news-01 .b-title{
	font-size: 16px;
	color: #333;
	line-height: 20px;
	margin-top: 20px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.index-news-01 .span-des{
	font-size: 12px;
	line-height: 20px;
	color: #888;
	margin-top: 10px;
	height: 40px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index-news-list{
	float: right;
	width: 55%;
	padding-left: 30px;
	border-left: 1px solid #e6e6e6;
}
.index-news-list li{
	position: relative;
	padding: 30px 50px 26px 90px;
	border-bottom: 1px solid #e6e6e6;
	line-height: 20px;
}
.index-news-list li::before{
	content: " ";
	position: absolute;
	left: -32px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: url('../images/line-03.jpg') center center no-repeat;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.index-news-list li:first-child{
	padding-top: 0;
}
.index-news-list li .div-date{
	float: left;
	margin-left: -90px;
	width: 60px;
	height: 60px;
	border: 1px solid #999;
	padding-top: 5px;
	font-size: 12px;
	color: #666;
	line-height: 12px;
}
.index-news-list li .div-date .span-day{
	font-size: 24px;
	color: #666;
	line-height: 24px;
	padding-bottom: 6px;
	background: url('../images/line-02.jpg') center bottom no-repeat;
	margin-bottom: 7px;
}
.index-news-list li .div-title{
	position: relative;
	height: 20px;
}
.index-news-list li .div-title::before{
	content: " ";
	position: absolute;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
	height: 14px;
	background: url('../images/icon-23.png') center center no-repeat;
	visibility: hidden;
	transform: translateX(-10px);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


.index-news-list li .div-title a{
	display: inline-block;
	max-width: 100%;
	font-weight: bold;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.index-news-list li .div-des{
	font-size: 12px;
	line-height: 20px;
	color: #888;
	height: 40px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 8px;
}

.index-partner{
	padding-top: 75px;
	padding-bottom: 75px;
}
.index-partner-cont{
	margin-top: 62px;
	border-left: 1px solid #e7e9ed;
	border-top: 1px solid #e7e9ed;
}
.index-partner-cont .a-01{
	position: relative;
	float: left;
	width: 20%;
	border-right: 1px solid #e7e9ed;
	border-bottom: 1px solid #e7e9ed;
	overflow: hidden;
}
.index-partner-cont .a-01::before,.index-partner-cont .a-01::after{
	content: " ";
	position: absolute;
	left: -1px;
	top: -1px;
	border-top: 9px solid #1c6dd1;
	border-left: 9px solid #1c6dd1;
	right: 100%;
	bottom: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
}
.index-partner-cont .a-01::after{
	right: -1px;
	bottom: -1px;
	top: 100%;
	left: 100%;
	border-left: none;
	border-top: none;
	border-right: 9px solid #1c6dd1;
	border-bottom: 9px solid #1c6dd1;
}
.index-partner-cont .a-01 img{
	width: 100%;
}

/*========================03_产品============================*/
.product-top{
	padding-top: 87px;
	padding-bottom: 33px;
	background-color: #fff;
}
.product-top-title{
	float: left;
	padding-top: 10px;
}
.product-top-title .span-cn{
	font-size: 30px;
	line-height: 30px;
	color: #333;
}
.product-top-title .span-des{
	font-size: 14px;
	line-height: 20px;
	color: #999;
	margin-top: 8px;
}

.product-top-search{
	float: right;
	font-size: 12px;
	color: #999;
	line-height: 20px;
}
.product-top-search .div-top .div-01{
	float: left;
}
.product-top-search .div-top .div-01 .put-01{
	border: none;
	outline: none;
	margin: 0;
	line-height: 20px;
	padding: 7px 65px 7px 38px;
	background: #f5f5f5;
	color: #333;
}
.product-top-search .div-top .div-01 .put-01::-webkit-input-placeholder { color: #999; }
.product-top-search .div-top .div-01 .put-01:-moz-placeholder { color: #999; opacity: 1; }
.product-top-search .div-top .div-01 .put-01::-moz-placeholder { color: #999; opacity: 1; }
.product-top-search .div-top .div-01 .put-01:-ms-input-placeholder { color: #999; }
.product-top-search .div-top .div-01 .mg-icon{
	position: absolute;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
}
.product-top-search .div-top .div-01 .but-01{
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 58px;
	height: 34px;
	background: #1c6dd1;
	color: #fff;
}
.product-top-search .div-top span{
	float: left;
	line-height: 34px;
	margin: 0 6px;
}
.product-top-search .div-top .a-01{
	float: left;
	width: 108px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 12px;
	color: #fff;
	background-color: #1c6dd1;
}
.product-top-search .div-txt{
	line-height: 20px;
	margin-top: 8px;
}
.product-top-search .div-txt span{
	margin: 0 6px;
}
.product-top-search .div-txt a{
	display: inline-block;
	font-size: 12px;
	color: #999;
}

.product-middle{
	padding-top: 20px;
	background-color: #eee;
}
.product-menu{
	position: relative;
	z-index: 99;
	float: left;
	width: 238px;
	background-color: #fff;
}
.product-menu .div-title{
	position: relative;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background-color: #1c6dd1;
	font-size: 14px;
	color: #fff;
}
.product-menu .div-title span{
	display: none;
}
.product-menu-list li .span-link{
	position: relative;
	display: block;
	height: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.product-menu-list li .span-link::before{
	content: " ";
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	right: 15px;
	background-color: #fff;
	border-top: 1px solid #eee;
}
.product-menu-list li .span-link a{
	position: relative;
	display: inline-block;
	max-width: 100%;
	height: 40px;
	line-height: 40px;
	padding-left: 25px;
	padding-right: 30px;
	font-size: 12px;
	color: #333;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-menu-list li .span-link a .bdo-img{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.product-menu-list li .span-link a .bdo-img img{
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.product-menu-list li .span-link a .bdo-img .mg1h{
	position: absolute;
	left: 0;
	top: 0;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
}
.product-menu-list li .span-link a::after{
	content: " ";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-15px,-50%);
	width: 6px;
	height: 9px;
	background: url('../images/icon-34.png') center center no-repeat;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.product-menu-list li:first-child .span-link::before{
	border-top: none;
}

.product-menu-down{
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	overflow: auto;
	width: 350px;
	background-color: #fff;
	padding-top: 40px;
	padding: 40px 25px 20px 28px;
	visibility: hidden;
	z-index: 2;
	-webkit-box-shadow:-10px 0 40px rgba(0, 0, 0, .09);  
    -moz-box-shadow:-10px 0 40px rgba(0, 0, 0, .09);  
    box-shadow:-10px 0 40px rgba(0, 0, 0, .09);
}
.product-menu-down .div-list{
	float: left;
	width: 100%;
}
.product-menu-down .div-list .span-title,.product-menu-down .div-list2 .span-title{
	font-size: 14px;
	color: #3b3b3b;
	line-height: 14px;
	font-weight: bold;
	margin-bottom: 13px;
}
.product-menu-down .div-list .span-01{
	line-height: normal;
	padding: 2px 0;
}
.product-menu-down .div-list .span-01 a{
	display: inline-block;
	font-size: 12px;
	color: #999;
	line-height: 20px;
}

.product-menu-down .div-list2{
	float: right;
	width: 202px;
}
.product-menu-down .div-list2 .a-01{
	/*background-color: #f5f5f5;*/
	padding: 20px;
	margin-top: 3px;
}
.product-menu-down .div-list2 .span-title + .a-01{
	margin-top: 0;
}
.product-menu-down .div-list2 .a-01 .span-name{
	font-size: 14px;
	color: #999;
	line-height: 14px;
	margin-bottom: 18px;
}
.product-menu-down .div-list2 .a-01 .bdo-more{
	float: left;
	font-size: 12px;
	line-height: 12px;
	color: #1c6dd1;
}
.product-menu-down .div-list2 .a-01 .mg1{
	float: right;
	margin-top: 2px;
}

.product-menu-zixun{
	background: #1c6dd1;
	color: #fff;
	padding: 10px 15px 19px;
}
.product-menu-zixun .span-title{
	height: 20px;
	line-height: 20px;
}
.product-menu-zixun .cssSelect {
    white-space: nowrap;
    height: 40px;
    margin-top: 5px;
}
.product-menu-zixun .cssSelect * {
    display: block
}
.product-menu-zixun .cssSelect a {
    outline-width: 0;
    color: #666;
    text-decoration: none
}
.product-menu-zixun .cssSelect .selectBox {
    float: left;
    width: 210px;
    padding-right: 40px;
    background-color: #3889eb;
    border: solid 1px #3889eb;
    cursor: pointer;
}
.product-menu-zixun .cssSelect .selectLt {
    float: left;
    width: 100%;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    padding: 0 10px;
    height: 40px;
    background: none transparent scroll repeat 0 0;
    font-size: 12px;
    color: #fff;
    line-height: 40px
}
.product-menu-zixun .cssSelect .selectRt {
    float: right;
    margin-right: -40px;
    width: 40px;
    height: 40px;
    background: url(../images/icon-33.png) center center no-repeat #3889eb;
    cursor: pointer;
    padding: 0;
}

.product-menu-zixun .cssSelect .sNormal {
    background-position: 0 0
}
.product-menu-zixun .cssSelect .sHover {
    background-position: 0 -50px
}
.product-menu-zixun .cssSelect .sHover .selectRt {
    background: url(../images/icon-33.png) center center no-repeat #3889eb;
}
.product-menu-zixun .cssSelect .sPressDown .selectRt {
    background: url(../images/icon-33h.png) center center no-repeat #3889eb;
}
.product-menu-zixun .cssSelect .optionsBox {
    position: absolute;
    z-index: 100;
    margin: 0;
    width: 210px;
    max-width: 100%;
    padding: 2px;
    border: none;
    background: #3889eb;
}
.product-menu-zixun .cssSelect .optionBox {
    margin: 0;
    padding: 2px 30px 2px 18px;
    height: auto;
    line-height: auto;
    cursor: pointer;
    color: #fff;
}
.product-menu-zixun .cssSelect .optionBox span {
    font-size: 14px;
    cursor: pointer;
    line-height: 20px;
    padding: 10px 0;
}
.product-menu-zixun .cssSelect .oHover {
    background: #1c6dd1;
    color: #fff
}
.product-menu-zixun .cssSelect .selected {
    background: #1c6dd1;
    color: #fff
}
.product-menu-zixun .but-01{
	border: none;
	outline: none;
	width: 210px;
	height: 40px;
	font-size: 16px;
	color: #fff;
	background: #3889eb;
	margin-top: 4px;
}



.product-middle-right{
	float: right;
	width: 78.33%;
}
.product-middle-owl{
	-webkit-box-shadow:0 0 9px rgba(0, 0, 0, .42);  
    -moz-box-shadow:0 0 9px rgba(0, 0, 0, .42);  
    box-shadow:0 0 9px rgba(0, 0, 0, .42); 
}
.product-middle-owl img{
	width: 100%;
}
.product-middle-owl .owl-dots{
	position: absolute;
	right: 10px;
	bottom: 5%;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 4px;
}
.product-middle-owl  button.owl-dot{
	width: 40px;
	height: 5px;
	background-color: #fff;
	margin: 0 5px;
	padding: 0;
}
.product-middle-owl  button.owl-dot.active{
	background-color: #ff9602;
}


.product-middle-img{
	margin-top: 20px;
}
.product-middle-img img{
	width: 100%;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.product-middle-img>.row{
	margin-left: -12px;
	margin-right: -12px;
}
.product-middle-img>.row>div{
	padding-left: 12px;
	padding-right: 12px;
}

.product-bottom{
	padding-top: 20px;
	background-color: #f5f5f5;
}

.product-guess{
	background-color: #fff;
	padding-bottom: 17px;
}
.product-guess-tab{
	font-size: 0;
	background-color: #f9f9f9;
	border-top: 4px solid #373d41;
}
.product-guess-tab a{
	display: inline-block;
	min-width: 160px;
	padding: 0 20px;
	font-size: 18px;
	color: #333;
	line-height: 48px;
	text-align: center;
}
.product-guess-tab a.on{
	color: #1c6dd1;
	background-color: #fff;
	border-top: 4px solid #1c6dd1;
	margin-top: -4px;
}
.product-guess-owl{
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.product-guess-owl.owl-hidden{
	opacity: 1;
}
.product-guess-a1{
	line-height: 20px;
}
.product-guess-a1 .span-img img{
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.product-guess-a1 .span-des{
	font-size: 12px;
	color: #888;
	margin-top: 9px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-guess-a1 .span-name{
	font-size: 14px;
	color: #555;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.product-fenlei{
	padding-top: 37px;
}
.product-fenlei-01{
	background-color: #fafafa;
	margin-top: 22px;
}
.product-fenlei-01 .div-title{
	background-color: #fff;
	padding: 23px 20px 13px 30px;
	border-left: 2px solid #1c6dd1;
	line-height: 20px;
}
.product-fenlei .row{
	margin-left: -11px;
	margin-right: -11px;
}
.product-fenlei .row>div{
	padding-left: 11px;
	padding-right: 11px;
}
.product-fenlei .row>div:nth-child(2) .product-fenlei-01 .div-title{
	border-left-color: #01bc01;
}
.product-fenlei .row>div:nth-child(3) .product-fenlei-01 .div-title{
	border-left-color: #ec6941;
}
.product-fenlei .row>div:nth-child(4) .product-fenlei-01 .div-title{
	border-left-color: #8957a1;
}
.product-fenlei-01 .div-title .span-name{
	font-size: 16px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-fenlei-01 .div-title .span-name a{
	color: #333;
}
.product-fenlei-01 .div-title .span-des{
	font-size: 12px;
	color: #999;
	margin-top: 4px;
	padding-right: 50px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-fenlei-01 .div-title .span-des a{
	position: absolute;
	right: 0;
	top: 0;
	color: #1c6dd1;
}

.product-fenlei-list{
	padding: 30px;
}
.product-fenlei-list li{
	padding-left: 63px;
	margin-top: 30px;
}
.product-fenlei-list li:first-child{
	margin-top: 0;
}
.product-fenlei-list li .span-icon{
	float: left;
	margin-left: -63px;
	width: 50px;
}
.product-fenlei-list li .span-icon img{
	width: 100%;
}
.product-fenlei-list li .span-title a{
	display: inline-block;
	font-size: 14px;
	color: #555;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-fenlei-list li .span-des{
	font-size: 12px;
	color: #999;
	margin-top: 10px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.product-model{
	margin-top: 43px;
}
.product-model-cont{
	margin-top: 36px;
}


.producrt-system{
	padding-bottom: 37px;
}
.product-system-cont{
	margin-top: 36px;
}
.product-system-cont .span-icon{
	float: left;
	width: 3.8%;
	margin-top: 17px;
}
.product-system-title{
	font-size: 26px;
	color: #333;
	line-height: 30px;
}
.product-system-01{
	float: left;
	width: 13.5%;
	text-align: center;
	padding-left: 22px;
	padding-right: 22px;
}
.product-model .row{
	margin-left: -12px;
	margin-right: -12px;
}
.product-model .row>div{
	padding-left: 12px;
	padding-right: 12px;
}
.product-model-01 .div-title{
	font-size: 16px;
	line-height: 16px;
}
.product-model-01 .div-title a{
	color: #555;
}
.product-model-cont{
	margin-top: 25px;
	background-color: #fff;
	padding-left: 132px;
}
.product-model-menu{
	float: left;
	width: 132px;
	height: 274px;
	margin-left: -132px;
	background-color: #00d5cb;
}
.product-model-title{
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	height: 86px;
	line-height: 86px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #05cac1;
}
.product-model-nav{
	padding-left: 4px;
	padding-right: 4px;
	margin-top: -4px;
}
.product-model-nav a{
	display: inline-block;
	padding: 0 5px;
	height: 24px;
	line-height: 24px;
	background-color: #05cac1;
	color: #fff;
	margin-top: 8px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.product-model-a1{
	float: left;
	width: 50%;
	padding: 23px 20px 13px 15px;
	border: 1px solid #eee;
}
.product-model-a1 .span-title{
	font-size: 16px;
	color: #666;
	line-height: 18px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-model-a1 .span-cont{
	font-size: 12px;
	line-height: 20px;
	color: #999;
}
.product-model-a1 .span-cont .bdo-des{
	float: left;
	width: 105px;
	height: 54px;
	line-height: 18px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-top: 27px;
}
.product-model-a1 .span-cont .bdo-img{
	float: right;
}
.product-model-a1 .span-cont .bdo-img img{
	width: 76px;
	height: 76px;
}
.product-model-a2{
	width: 33.33%;
}
.product-model-a2 .span-cont .bdo-des{
	margin-top: 8px;
}
.product-model-a2 .bdo-img{
	margin-top: 4px;
}
.product-model-a3{
	width: 50%;
	padding-top: 22px;
}
.product-model-a3 .span-cont .bdo-des{
	width: 100%;
	margin-top: 3px;
	height: 18px;
	display: block;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.product-model-a3 .bdo-img{
	display: none;
}
.producrt-system{
	margin-top: 58px;
}
.product-system-01 .span-img{
	width: 50px;
}
.product-system-01 .span-img img{
	width: 100%;
}
.product-system-01 .b-title{
	font-size: 14px;
	color: #333;
	line-height: 20px;
	margin-top: 17px;
}
.product-system-01 .span-des{
	font-size: 12px;
	line-height: 18px;
	color: #888;
	margin-top: 6px;
}

/*========================04_产品二级目录============================*/
.inside-banner{
	position: relative;
	height: 380px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.inside-banner a{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}

.product-ziuxun a{
	display: block;
	width: 100%;
	font-size: 14px;
	color: #f0f0f0;
	line-height: 20px;
	padding: 10px 15px;
	background-color: #1c6dd1;
}
.product-ziuxun a.a1{
	font-size: 18px;
	line-height: 30px;
}

.product-recommend{
	background-color: #fafafa;
	padding-top: 40px;
	padding-bottom: 40px;
}
.product-recommend-title{
	font-size: 16px;
	color: #4a4a4a;
	height: 50px;
	line-height: 50px;
	background-color: #fff;
	padding: 0 20px;
}

.product-recommend-a1{
	background-color: #fff;
	margin-top: 22px;
	padding: 26px 20px 23px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.product-recommend-a1 .span-img img{
	height: 150px;
}
.product-recommend-a1 .span-title{
	font-size: 16px;
	color: #333;
	height: 18px;
	line-height: 18px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	margin-top: 18px;
}
.product-recommend-a1 .span-des{
	margin-top: 10px;
	height: 36px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 18px;
	color: #888;
}

.product-recommend-cont .row{
	margin-left: -10px;
	margin-right: -10px;
}
.product-recommend-cont .row>div{
	padding-left: 10px;
	padding-right: 10px;
}

.product-pro{
	padding-top: 20px;
	padding-bottom: 60px;
	background-color: #eee;
}
.product-proLeft{
	float: left;
	width: 23.33%;
}
.product-prohead{
	padding: 15px 20px;
	background-color: #fff;
}
.product-prohead .div-01{
	font-size: 18px;
	color: #555;
	line-height: 24px;
	text-align: center;
}
.product-prohead .div-01 .span-txt{
	margin-top: 6px;
}
.product-prohead .div-02{
	font-size: 14px;
	line-height: 26px;
	color: #333;
	margin-top: 10px;
}
.product-prohead .div-02 .span-01{
	padding-left: 68px;
}
.product-prohead .div-02 .span-01 .bdo-01{
	float: left;
	margin-left: -68px;
}
.product-prohead .div-02 .span-02{
	padding-left: 42px;
}
.product-prohead .div-02 .span-02 .bdo-01{
	margin-left: -42px;
}

.product-prosearch{
	padding: 14px 20px;
	background-color: #fff;
	margin-top: 20px;
}
.product-prosearch .div-title{
	font-size: 18px;
	color: #333;
	line-height: 18px;
}
.product-prosearch .div-search{
	margin-top: 15px;
}
.product-prosearch .div-search .put-01{
	background: none;
	outline: none;
	margin: 0;
	width: 100%;
	height: 32px;
	border: 1px solid #dcdcdc;
	font-size: 12px;
	color: #333;
	line-height: 20px;
	padding: 6px 10px;
}
.product-prosearch .div-search .put-01::-webkit-input-placeholder { color: #555; }
.product-prosearch .div-search .put-01:-moz-placeholder { color: #555; opacity: 1; }
.product-prosearch .div-search .put-01::-moz-placeholder { color: #555; opacity: 1; }
.product-prosearch .div-search .put-01:-ms-input-placeholder { color: #555; }
.product-prosearch .div-search .but-01{
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	outline: none;
	font-size: 12px;
	color: #fff;
	width: 64px;
	height: 32px;
	background: #1c6dd1;
}

.product-pronav{
	margin-top: 20px;
	background-color: #fff;
	padding-bottom: 55px;
}
.product-pronav .div-title{
	position: relative;
	font-size: 18px;
	color: #333;
	line-height: 18px;
	padding: 15px 20px;
}
.product-pronav .div-title span{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.produce-prolist-cont.on{
	transform: translateX(0);
}
.produce-prolist-cont .span-close{
	display: none;
}
.product-prolist{
	border-bottom: 1px solid #e5e5e5;
}
.product-prolist li{
	line-height: 40px;
}
.product-prolist>li{
	padding-left: 0;
	padding-right: 0;
	border-top: 1px solid #e5e5e5;
}
.product-prolist>li>a{
	position: relative;
	display: block;
	padding-left: 20px;
	padding-right: 50px;
}
.product-prolist li a{
	position: relative;
	display: block;
	font-size: 12px;
	color: #333;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	cursor: pointer;
}
.product-prolist>li>ul{
	background: #f8f8f8;
}
.product-prolist>li>ul>li>a{
	padding-left: 40px;
	padding-right: 50px;
}
.product-prolist>li>ul>li>ul>li>a{
	padding-left: 60px;
	padding-right: 50px;
}
.product-prolist ul{
	display: none;
}
.product-prolist li ul li a{
	color: #555;
}
.product-prolist li ul ul li a{
	color: #888;
}
.product-prolist li.on a span{
	position: absolute;
	width: 17px;
	height: 17px;
	right: 20px;
	top: 50%;
	margin-top: -9px;
	background: url('../images/icon-38h.png') center center no-repeat;
}
.product-prolist li.active>a{
	color: #1c6dd1;
}
.product-prolist li.active>a span{
	background: url('../images/icon-38.png') center center no-repeat;
}
.product-prolist li:hover>a{
	color: #1c6dd1;
}

.product-proRight{
	float: right;
	width: 75%;
}
.product-propage .pages{
	margin-top: 20px;
	padding: 10px 0;
	background-color: #fff;
}

/*========================05_产品详情============================*/
.productxq-main{
	padding-top: 28px;
	padding-bottom: 80px;
}
.productxq-bream{
	font-size: 14px;
	color: #333;
	line-height: 20px;
}
.productxq-bream a{
	color: #333;
}
.productxq-bream a.on{
	color: #1c6dd1;
}

.productxq-mainc{
	margin-top: 28px;
}
.productxq-left{
	float: left;
	width: 74.16%;
}
.productxq-top{
	padding: 30px 30px 30px 20px;
	background-color: #fff;
}

.pro-info-scroll{
	float: left;
	width: 44%;
}
.pro-info-big{
	position: relative;
	float: left;
	width: 81%;
	z-index: 100;
}
.pro-info-big .a-01{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
}


.tb-booth {position:relative;z-index:1;width:100%;}
.tb-booth.on{
	visibility: hidden;
}
.tb-booth .tb_img{width:100%;height:100%;position:relative;display:block;}
.tb-booth img{width:100%;height:100%; max-width: inherit; display: block;}

div.zoomDiv {z-index:999;position:absolute;top:0px;left:0px;width:200px;height:540px;background:#fff;display:none;text-align:center;overflow:hidden;}
div.zoomMask {position:absolute;cursor:move;z-index:1;}
div.zoomMask a{width:100%;height:100%;display:block;}

.tb-video{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: none;
}
.tb-video .pro-video{
	width: 100%;
    height: 100%;
    object-fit: fill;
    visibility: visible;
}
.tb-video-mc{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
}
.tb-video-mc img{
	width: 100%;
}
.tb-video-mc .span-icon{
	position: absolute;
	left: 6%;
	bottom: 4.3%;
	display: block;
	width: 26px;
	height: 27px;
	background: url('../images/icon-39.png') center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}


.pro-info-slick{
	position: relative;
	float: right;
	width: 16.2%;
	padding-top: 14px;
	padding-bottom: 5px;
}
.pro-info-slick .slick-arrow{
	background: none;
	border: none;
	outline: none;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	height: 15px;
	font-size: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.pro-info-slick .slick-prev{
	top: 0;
	background: url('../images/arrow-top.jpg') center top no-repeat;
}
.pro-info-slick .slick-next{
	bottom: 0;
	background: url('../images/arrow-bottom.jpg') center top no-repeat;
}
.pro-info-slick .span-video{
	margin: 0 0 10px;
	cursor: pointer;
}
.pro-info-slick .span-img{
	margin: 0 0 10px;
	cursor: pointer;
}
.pro-info-slick .span-video img,.pro-info-slick .span-img img{
	width: 100%;
}

.productxq-top-word{
	float: right;
	width: 48.8%;
}
.productxq-top-word .div-title{
	font-size: 18px;
	color: #3c3c3c;
	line-height: 24px;
}
.productxq-top-word .div-title .span-tag{
	position: relative;
	top: -2px;
	display: inline-block;
	font-size: 13px;
	color: #fff;
	background-color: #1c6dd1;
	line-height: 18px;
	padding: 0 7px;
	margin-right: 13px;
}
.productxq-top-word .div-title .span-name{
	display: inline-block;
	font-size: 14px;
	color: #8d8d8d;
	margin-left: 20px;
}
.productxq-top-word .div-des{
	font-size: 12px;
	line-height: 24px;
	color: #888;
	text-align: justify;
	margin-top: 10px;
}
.productxq-top-word .a-01{
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #fff;
	background-color: #ff6c00;
	text-align: center;
	margin-top: 23px;
}
.productxq-cont{
	padding: 23px 20px 60px;
	background-color: #fff;
	margin-top: 30px;
}
.productxq-tab{
	font-size: 0;
	border-bottom: 1px solid #d8d8d8;
}
.productxq-tab .span-01{
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	color: #333;
	margin: 0 20px;
	cursor: pointer;
	padding-bottom: 25px;
}
.productxq-tab .span-01:first-child{
	margin-left: 0;
}
.productxq-tab .span-01:last-child{
	margin-right: 0;
}
.productxq-tab .span-01.on{
	color: #1c6dd1;
	border-bottom: 1px solid #1c6dd1;
	margin-bottom: -1px;
}
.productxq-nr{
	padding-top: 27px;
}
.productxq-nr-01{
	display: none;
	font-size: 12px;
	color: #333;
	line-height: 24px;
}
.productxq-nr-01:first-child{
	display: block;
}

.productxq-right{
	float: right;
	width: 23.33%;
	background-color: #fff;
	padding: 20px;
}

.productxq-contact{
	font-size: 12px;
	line-height: 24px;
	color: #333;
}
.productxq-contact .div-01{
	padding-left: 75px;
	margin-top: 6px;
}
.productxq-contact .div-01:first-child{
	margin-top: 0;
}
.productxq-contact .div-01 .span-01{
	font-size: 14px;
	margin-left: -75px;
}
.productxq-contact .div-01 .b1{
	font-size: 18px;
	color: #1c6dd1;
}
.productxq-contact .div-01:last-child{
	padding-left: 0;
}
.productxq-contact .div-01:last-child .span-01{
	margin-left: 0;
}
.productxq-contact .div-01 .bdo-01{
	float: left;
	width: 50%;
	padding-right: 10px;
}
.productxq-contact .div-01 .bdo-01 a{
	padding-left: 20px;
	font-size: 12px;
	color: #1c6dd1;
	background-repeat: no-repeat;
	background-position: left center;
}

.productxq-recomment .div-title{
	font-size: 18px;
	color: #333;
	line-height: 18px;
	padding-top: 30px;
	border-top: 1px solid #ededed;
	margin-top: 16px;
}
.productxq-recomment ul{
	padding-top: 10px;
}
.productxq-recomment li{
	padding-left: 75px;
	padding-top: 17px;
	padding-bottom: 17px;
	border-top: 1px solid #ededed;
}
.productxq-recomment li:first-child{
	border-top: none;
}
.productxq-recomment li .a-img{
	float: left;
	margin-left: -75px;
	width: 60px;
}
.productxq-recomment li .a-img img{
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.productxq-recomment li .span-title{
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.productxq-recomment li .span-title a{
	display: inline-block;
	font-size: 14px;
	color: #333;
	line-height: 18px;
}
.productxq-recomment li .span-des{
	font-size: 12px;
	line-height: 18px;
	color: #888;
	height: 36px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/*========================06_解决方案============================*/
.case-main{
	padding-top: 60px;
	padding-bottom: 80px;
}
.case-title{
	font-size: 20px;
	color: #333;
	line-height: 20px;
}
.case-main .row{
	margin: 52px -12px 0;
	padding-bottom: 24px;
}
.case-main .row>div{
	padding-left: 12px;
	padding-right: 12px;
}
.case-a1{
	position: relative;
	border: 1px solid #e1e3e6;
	margin-bottom: 26px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.case-a1 .span-icon{
	position: absolute;
	right: -4px;
	top: -4px;
	display: block;
	width: 49px;
	height: 50px;
	-webkit-background-size: cover;
	background-size: cover;	
	background-position: center;
	background-repeat: no-repeat;
}
.case-a1 .span-cont{
	padding: 27px 25px 25px;
	line-height: 20px;
}
.case-a1 .span-cont .bdo-name{
	font-size: 18px;
	color: #333;
	margin-top: 20px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.case-a1 .span-cont .bdo-des{
	font-size: 12px;
	color: #888;
	height: 40px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 15px;
}
.case-a1 .span-more{
	font-size: 14px;
	color: #1c6dd1;
	padding: 0 25px;
	border-top: 1px solid #e1e3e6;
	height: 54px;
	line-height: 54px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

/*========================09_设备操作视频============================*/
.device-menu{
	background: #fff;
}
.device-menu-cont{
	padding-left: 62px;
	font-size: 0;
}
.device-menu-cont span{
	background: url('../images/line-05.png') right center no-repeat;
}
.device-menu-cont a{
	line-height: 46px;
}
.device-menu-cont .span-qb{
	float: left;
	width: 62px;
	margin-left: -62px;
}
.device-menu-cont .span-qb a{
	font-size: 14px;
	color: #333;
}
.device-menu-cont .span-01{
	display: inline-block;
	padding: 0 16px;
}
.device-menu-cont .span-01 a{
	font-size: 14px;
	color: #555;
}
.device-menu-cont a.on{
	color: #1c6dd1;
}


.device-main{
	padding-top: 25px;
	padding-bottom: 80px;
}
.device-static{
	/*padding-top: 25px;
	padding-bottom: 30px;*/
	font-size: 0;
}
.device-static .span-01{
	display: inline-block;
	font-size: 16px;
	color: #333;
	padding-right: 10px;
	margin-right: 20px;
	background: url('../images/icon-42.png') right center no-repeat;
	cursor: pointer;
}
.device-static .span-01.on{
	color: #1c6dd1;
	background: url('../images/icon-42h.png') right center no-repeat;
}

.device-content{
	margin-top: 30px;
}
.device-content .row{
	margin-left: -10px;
	margin-right: -10px;
}
.device-content .row>div{
	padding-left: 10px;
	padding-right: 10px;
}
.device-content .a-01{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: none;
}
.device-a1{
	background-color: #fff;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.device-a1 .span-title{
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
	color: #fff;
	height: 36px;
	line-height: 36px;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}
.device-a1 .span-cont{
	padding: 15px 20px 20px;
}
.device-a1 .span-cont .bdo-title{
	font-size: 16px;
	line-height: 24px;
	color: #555;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.device-a1 .span-cont .bdo-01{
	padding-right: 60px;
	font-size: 12px;
	color: #888;
	padding-top: 10px;
	line-height: 28px;
	margin-top: 6px;
}
.device-a1 .span-cont .bdo-01 .i-play{
	float: right;
	margin-top: -10px;
	margin-right: -60px;
	display: block;
	width: 38px;
	height: 38px;
	background: url('../images/icon-play.png') center center no-repeat;
}
.device-a1 .div-02{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	visibility: hidden;
}
.device-a1 .div-02 .video-device{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.device-a1.on .div-01{
	visibility: hidden;
}
.device-a1.on .div-02{
	visibility: visible;
}

.device-page .pages{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #fff;
}

/*========================12_新闻动态============================*/
.news-main{
	padding-top: 18px;
	padding-bottom: 40px;
}
.news-cont{
	padding: 20px 40px 33px;
	background-color: #fff;
}
.news-title{
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 16px;
	background: url('../images/line-04.jpg') left bottom no-repeat;
	padding-bottom: 11px;
}
.news-nav{
	white-space: nowrap;
	overflow: auto;
	margin: 8px 0 10px;
}
.news-nav a{
	display: inline-block;
	line-height: 20px;
	font-size: 14px;
	color: #555;
	margin: 0 20px;
}
.news-nav a:first-child{
	margin-left: 0;
}
.news-nav a.on{
	color: #1c6dd1;
}

.news-list-top{
	font-size: 12px;
	color: #888;
	background-color: #f5f5f5;
	padding: 0 10px;
	line-height: 30px;
}
.news-list-top .span-02{
	float: right;
}

.news-list{
	margin-bottom: 50px;
}
.news-list li{
	position: relative;
	padding-right: 188px;
	font-size: 12px;
	color: #999;
	height: 44px;
	line-height: 42px;
	border-bottom: 1px dashed #e6e6e6;
}
.news-list li .span-date{
	float: right;
	margin-right: -188px;
	padding-right: 5px;
}
.news-list li a{
	display: inline-block;
	max-width: 100%;
	padding-left: 15px;
	color: #555;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

/*========================07_解决方案_详情============================*/
.casexq-main{
	padding-top: 50px;
	padding-bottom: 80px;
}
.casexq-title{
	font-size: 20px;
	color: #333;
	line-height: 24px;
	border-left: 3px solid #1c6dd1;	
	padding-left: 13px;
}
.casexq-01{
	background: #fbfbfb;
	margin-top: 40px;
}

.casexq-case-tab{
	float: left;
	width: 68.33%;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 32px;
}
.casexq-case-tab-ttile{
	font-size: 0;
}
.casexq-case-tab-ttile .span-01{
	display: inline-block;
	font-size: 14px;
	color: #666;
	line-height: 36px;
	background-color: #ebebec;
	padding-left: 15px;
	padding-right: 15px;
	min-width: 98px;
	margin: 0 10px;
	text-align: center;
	cursor: pointer;
}
.casexq-case-tab-ttile .span-01:first-child{
	margin-left: 0;
}

.casexq-case-tab-ttile .span-01.on{
	background-color: #1c6dd1;
	color: #fff;
}
.casxq-case-nr-01 .div-01{
	display: none;
}



.casexq-case-right{
	float: right;
	width: 31.67%;
	background-color: #f7f7f7;
}
.casexq-case-title{
	font-size: 16px;
	height: 20px;
	color: #333;
}
.casexq-case-list{
	padding-top: 20px;
}
.casexq-case-01{
	background-color: #f2f2f2;
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 15px;
}
.casexq-case-01 .div-des{
	font-size: 12px;
	line-height: 24px;
	color: #888;
	margin-top: 10px;
	text-align: justify;
}
.casexq-case-02{
	padding: 30px 30px 20px;
}
.casexq-case-list li{
	float: left;
	width: 50%;
	padding: 10px 10px 10px 0;
}
.casexq-case-list li a{
	display: inline-block;
	max-width: 100%;
	padding-left: 22px;
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 12px;
	color: #888;
	line-height: 20px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.casexq-02{
	margin-top: 50px;
}

.casexq-table{
	text-align: center;
}
.casexq-table tr th{
	font-size: 14px;
	color: #fff;
	background-color: #313131;
	text-align: center;
	font-weight: normal;
	line-height: 30px;
	border-left: 1px solid #e6e6e6;
}
.casexq-table tr th:first-child{
	border-left: none;
}
.casexq-table tr td{
	vertical-align: middle;
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	line-height: 20px;
	font-size: 12px;
	color: #666;
	padding:15px;
	min-height: 70px;
}
.casexq-table tr td:first-child{
	border-left: 1px solid #e6e6e6;
}
.casexq-table tr td:first-child{
	width: 8%;
}
.casexq-table tr td:nth-child(2){
	width: 11.4%;
}
.casexq-table tr td:nth-child(3){
	width: 15.4%;
}
.casexq-table tr td:nth-child(4){
	width: 16.66%;
}
.casexq-table tr td:nth-child(5){
	width: 14.16%;
}
.casexq-table tr td:nth-child(6){
	width: 14.7%;
}
.casexq-table tr td:nth-child(7){
	width: 19.6%;
}

.casexq-03{
	margin-top: 50px;
}
.casexq-cont{
	margin-top: 40px;
}
.casexq-tab{
	float: left;
	width: 23.66%;
	border: 1px solid #e6e6e6;
}
.casexq-tab .span-01{
	font-size: 16px;
	color: #555;
	padding-left: 14%;
	padding-right: 14%;
	line-height: 52px;
	border-top: 1px solid #e6e6e6;
	cursor: pointer;
}
.casexq-tab .span-01:first-child{
	border-top: none;
}
.casexq-tab .span-01.on{
	background-color: #f1f1f1;
	font-size: 16px;
	color: #1c6dd1;
	border-left: 2px solid #1c6dd1;
	margin-left: -1px;
}

.casexq-tabnr{
	float: right;
	width: 73.83%;
	border: 1px solid #e6e6e6;
}
.casexq-tabnr .div-01{
	display: none;
	line-height: 28px;
	padding: 35px 10.15%;
}
.casexq-tabnr .div-01 .span-title{
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
}
.casexq-tabnr .div-01 .span-des{
	text-align: justify;
}

.casexq-04{
	margin-top: 50px;
}
.casexq-04 .row{
	margin-left: -14px;
	margin-right: -14px;
	padding-top: 20px;
}
.casexq-04 .row>div{
	padding-left: 14px;
	padding-right: 14px;
	margin-top: 20px;
}
.casexq-a1 img{
	display: block;
	width: 100%;
}
.casexq-a1 .span-01{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(28,109,209,.7);
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.casexq-a1 .span-01 .bdo-word{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	right: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	max-height: 40px;
	overflow: hidden;
}

/*========================15_联系我们============================*/
.contact-title{
	padding-top: 19px;
	padding-bottom: 18px;
	border-bottom: 1px solid #ececec;
}
.contact-title .div-title{
	font-size: 18px;
	color: #1c6dd1;
	line-height: 20px;
	border-left: 4px solid #1c6dd1;
	padding-left: 10px;
}
.contact-tips{
	background-color: #f6fbfc;
	font-size: 12px;
	line-height: 24px;
	color: #888;
	padding: 5px 40px;
	margin-top: 30px;
}
.contact-tips .mg-icon{
	float: left;
	margin-left: -30px;
	margin-top: 3px;
}
.contact-form{
	margin-top: 30px;
	margin-bottom: 60px;
}
.contact-list{
	width: 420px;
	margin-left: 25%;
}
.contact-list li{
	line-height: 38px;
	margin-top: 15px;
}
.contact-list li:first-child{
	margin-top: 0;
}
.contact-list li .span-title{
	float: left;
	width: 120px;
	margin-left: -120px;
	text-align: right;
	font-size: 12px;
	color: #555;
}
.contact-list li .span-title bdo{
	font-size: 16px;
	color: #ff0000;
	margin-right: 5px;
}
.contact-list li .label-01{
	float: left;
	margin-right: 16px;
	font-size: 12px;
	color: #555;
	font-weight: normal;
}
.contact-list li .label-01 .radio-01{
	float: left;
	width: 16px;
	height: 16px;
	margin-top: 11px;
	margin-right: 8px;
	background: url('../images/icon-46.png') center center no-repeat;
}
.contact-list li .put-01{
	background: none;
	border: 1px solid #e6e6e6;
	width: 100%;
	height: 38px;
	padding: 9px 15px;
	margin: 0;
	line-height: 20px;
}
.contact-list li .span-tips{
	font-size: 12px;
	color: #888;
	line-height: 12px;
	margin-top: 8px;
}
.contact-list li .txt-01{
	background: none;
	resize: none;
	margin:0;
	padding: 9px 15px;
	border: 1px solid #e6e6e6;
	line-height: 20px;
	width: 100%;
	height: 52px;
}
.contact-list li .div-01{
	text-align: center;
	width: 100px;
	height: 36px;
	line-height: 34px;
	border: 1px solid #e6e6e6;
	overflow: hidden;
	cursor: pointer;
}
.contact-list li .div-01 .span-01{
	padding-left: 21px;
	background: url('../images/icon-45.png') left center no-repeat;
}
.contact-list li .div-01 .put-file{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
}
.contact-list li .but-01{
	border: none;
	outline: none;
	line-height: normal;
	width: 120px;
	height: 36px;
	background: #1c6dd1;
	color: #fff;
	font-size: 14px;
}

/*========================14_合作伙伴============================*/
.partner-main{
	padding-top: 40px;
	padding-bottom: 60px;
}
.partner-nav{
	font-size: 0;
	border-bottom: 2px solid #e6e6e6;
	padding-left: 12%;
	padding-right: 12%;
}
.partner-nav a{
	display: inline-block;
	font-size: 16px;
	color: #555;
	padding-left: 22px;
	padding-right: 22px;
	padding-bottom: 23px;
	margin: 0 5.7% -2px;
	border-bottom: 3px solid rgba(0,0,0,0);
}
.partner-nav a.on{
	color: #1c6dd1;
	border-bottom: 3px solid #1c6dd1;
}
.partner-txt{
	font-size: 18px;
	color: #888;
	line-height: 184px;
}


.partner-shengqing{
	padding-top: 53px;
	padding-bottom: 66px;
	background-color: #f5f5f6;
}
.partner-title{
	font-weight: bold;
	font-size: 24px;
	color: #333;
	line-height: 24px;
}
.partner-sqlc{
	position: relative;
	margin-top: 45px;
	font-size: 0;
}
.partner-sqlc::before{
	content: " ";
	position: absolute;
	left: 0;
	top: 89px;
	width: 100%;
	height: 1px;
	border-bottom: 2px dotted #c5c5c5;
}
.partner-sqlc .div-01{
	position: relative;
	z-index: 2;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #555;
	width: 188px;
	line-height: 20px;
}
.partner-sqlc .div-01 .span-txt{
	padding-top: 27px;
	background: url('../images/icon-52.png') top center no-repeat;
	margin-top: 22px;
}


.partner-plan{
	padding-top: 64px;
}
.partner-title-txt{
	font-size: 16px;
	color: #999;
	line-height: 26px;
	margin-top: 27px;
}
.partner-plan .row{
	padding-top: 13px;
	margin-left: -20px;
	margin-right: -20px;
}
.partner-plan .row>div{
	padding-left: 20px;
	padding-right: 20px;
}
.partner-plan-01{
	border: 1px solid #eee;
	padding: 24px 25px;
	font-size: 14px;
	color: #888;
	line-height: 20px;
	margin-top: 20px;
}
.partner-plan-01 .div-title{
	line-height: 28px;
}
.partner-plan-01 .div-title a{
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
	color: #343434;
}
.partner-plan-01 .div-des{
	margin-top: 7px;
	height: 40px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.partner-plan-01 .a-01{
	width: 120px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	font-size: 16px;
	color: #fff;
	background-color: #1c6dd1;
	margin-top: 20px;
}

/*========================08_服务支持============================*/
.service-menu{
	font-size: 0;
	border-right: 1px solid #efefef;
}
.service-menu .div-01{
	/*display: inline-block;*/
	float: left;
	width: 25%;
	border-left: 1px solid #efefef;
	padding: 20px 15px 20px 99px;
	line-height: 18px;
	vertical-align: top;
}
.service-menu .div-01 .span-icon{
	float: left;
	margin-left: -58px;
}
.service-menu .div-01 .span-title{
	font-size: 14px;
	color: #444;	
}
.service-menu .div-01 .span-des{
	font-size: 12px;
	color: #888;
	margin-top: 2px;
	max-height: 36px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.service-main{
	padding-top: 20px;
	padding-bottom: 40px;
}
.service-left{
	float: left;
	width: 65.83%;
}

.service-right{
	float: right;
	width: 32.5%
}
.service-sq{
	background-color: #fff;
}
.service-title{
	font-size: 18px;
	color: #444;
	line-height: 50px;
	padding-left: 30px;
	padding-right: 30px;
	border-bottom: 1px solid #f5f5f6;
}
.service-title a{
	position: absolute;
	right: 30px;
	top: 0;
	font-size: 14px;
	color: #1c6dd1;
}
.service-sq-cont{
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 60px;
}
.service-sq .row{
	padding-top: 30px;
	margin-left: 5px;
	margin-right: 5px;
}
.service-sq .row>div{
	padding-left:5px;
	padding-right:5px;
}
.service-sq-01{
	font-size: 12px;
	line-height: 28px;
	color: #888;
	margin-top: 20px;
}
.service-sq .row>div:first-child .service-sq-01{
	font-size: 14px;
}
.service-sq-01 .span-img{
	float: left;
	width: 138px;
	border-radius: 50%;
	margin-right: 10px;
}
.service-sq-01 .span-01{
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
	padding-top: 30px;
}
.service-sq-01 .span-des{
	text-align: justify;
}
.service-down{
	position: absolute;
	right: 0;
	bottom: 5px;
	line-height: normal;
}
.service-down .a1{
	position: relative;
	padding-left: 20px;
	background-position: left center;
	background-repeat: no-repeat;
	font-size: 12px;
	color: #1c6dd1;
	margin-left: 15px;
	cursor: pointer;
}
.service-down .a1:first-child{
	margin-left: 0;
}
.service-down .a1 input{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
	cursor: pointer;
}


.service-sz{
	background: #fff;
	margin-top: 20px;
}
.service-sz-cont{
	padding: 30px;
}
.service-sz-yuyue{
	padding: 25px 20px;
	background-color: #f6fbfc;
	border: 1px solid #f6fbfc;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.service-sz-yuyue .span-img{
	float: left;
	width: 48px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	margin-top: -2px;
}
.service-sz-yuyue .span-title{
	font-size: 18px;
	color: #444;
	line-height: 20px;
}
.service-sz-yuyue .span-des{
	font-size: 12px;
	line-height: 14px;
	margin-top: 10px;
	color: #888;
}
.service-sz-yuyue .service-down{
	right: 15px;
	bottom: 20px;
}

.service-sz-lc{
	margin-top: 30px;
}
.service-sz-lc .div-title{
	font-size: 18px;
	color: #444;
	line-height: 18px;
}
.service-sz-lc .div-01{
	float: left;
	width: 11.5%;
	margin-top: 20px;
	font-size: 12px;
	line-height: 18px;
	color: #888;
}
.service-sz-lc .div-01 .span-title{
	font-size: 14px;
	color: #444;
	margin-top: 13px;
}
.service-sz-lc .div-01 .span-des{
	margin-top: 4px;
}
.service-sz-lc .span-line{
	float: left;
	width: 7.67%;
	height: 1px;
	background-color: #888;
	margin: 45px -0.82% 0;
}

.service-sz-cont.ling{
	padding-top: 10px;
}
.service-sz-cont.ling .service-sz-yuyue{
	margin-top: 20px;
	line-height: 24px;
}
.service-sz-cont.ling .service-sz-yuyue .span-title{
	position: relative;
}
.service-sz-yuyue .span-title bdo{
	font-size: 12px;
	color: #fff;
	background-color: #ff8400;
	margin-left: 5px;
	padding: 0 2px;
	position: relative;
	top: -2px;
}
.service-sz-cont.ling .service-sz-yuyue .span-des{
	line-height: 24px;
	margin-bottom: 5px;
}
.service-sz-yuyue .a-01{
	color: #1c6dd1;
	cursor: pointer !important;
}
.service-sz-yuyue .a-01 input{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	filter:alpha(opacity=0); 
	-moz-opacity:0;  
	-khtml-opacity: 0;  
	opacity: 0;
	cursor: pointer !important;
}
.service-sz-yuyue.ling .service-down{
	position: static;
	text-align: left;
}



.service-sh{
	background-color: #fff;
	margin-top: 20px;
}
.service-sh:first-child{
	margin-top: 0;
}
.service-list{
	margin-left: 30px;
	margin-right: 30px;
	padding: 26px 0 37px;
}
.service-list li{
	line-height: 20px;
	margin-top: 22px;
}
.service-list li:first-child{
	margin-top: 0;
}
.service-list li .span-title{
	font-size: 14px;
	padding-left: 15px;
	height: 20px;
	background: url('../images/icon-65.png') left center no-repeat;
}
.service-list li .span-title a{
	display: inline-block;
	max-width: 100%;
	color: #555;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.service-sh.ling{
	padding-bottom: 30px;
}
.service-sh.ling .service-list{
	padding-top: 10px;
	padding-bottom: 10px;
	border-left: 1px solid #f5f5f6;
	margin-top: 10px;
}
.service-sh.ling .service-list li{
	margin-left: -3px;
}
.service-sh.ling .service-list li .span-date{
	padding-left: 20px;
	font-size: 12px;
	color: #888;
	margin-bottom: 7px;
}

/*========================10_资料下载============================*/
.down-main{
	padding-top: 20px;
	padding-bottom: 80px;
}
.down-left{
	float: left;
	width: 65.83%;
}
.down-menu{
	white-space: nowrap;
	overflow: auto;
	font-size: 0;
	color: #e3e6e6;
	padding-bottom: 22px;
	border-bottom: 1px solid #e6e6e6;
	line-height: 14px;
}
.down-menu a{
	display: inline-block;
	font-size: 12px;
	color: #333;
}
.down-menu a.on{
	color: #1c6dd1;
}
.down-menu span{
	display: inline-block;
	font-size: 14px;
	margin: 0 20px;
}

.down-cont .row{
	margin-left: -6px;
	margin-right: -6px;
}
.down-cont .row>div{
	padding-left: 6px;
	padding-right: 6px;
}
.down-01{
	background-color: #fff;
	padding: 30px 103px 30px 35px;
	margin-top: 12px;
	font-size: 18px;
	color: #333;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.down-01 .mg-icon{
	float: right;
	margin-right: -80px;
	margin-top: 26px;
}
.down-01 .div-title{
	font-size: 18px;
	line-height: 24px;
	color: #333;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.down-01 .div-num{
	font-size: 12px;
	color: #999;
	padding-left: 17px;
	line-height: normal;
	background: url('../images/icon-67.png') left center no-repeat;
	margin-top: 23px;
}


.down-right{
	float: right;
	width: 32.5%;
}
.down-online{
	padding: 0 30px 30px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center right;
}
.down-title{
	font-size: 18px;
	color: #444;
	line-height: 38px;
	padding-top: 10px;
	border-bottom: 1px solid #f5f5f6;
}
.down-online-txt{
	font-size: 14px;
	color: #555;
	line-height: 72px;
	margin-top: 20px;
}
.down-online .a1{
	width: 150px;
	height: 36px;
	line-height: 34px;
	border: 1px solid #1c6dd1;
	font-size: 14px;
	color: #1c6dd1;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}


.down-search{
	background-color: #fff;
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 20px;
	padding-bottom: 30px;
}
.down-search .div-search{
	padding-right: 64px;
	margin-top: 26px;
}
.down-search .div-search .put-01{
	outline: none;
	background: none;
	width: 100%;
	height: 36px;
	line-height: 34px;
	border: 1px solid #dcdcdc;
	margin: 0;
	padding: 0 10px 0 10px;
}
.down-search .div-search .but-01{
	outline: none;
	background: none;
	outline: none;
	width: 64px;
	height: 36px;
	border: 1px solid #1c6dd1;
	float: right;
	margin-right: -64px;
	background: #1c6dd1;
	font-size: 12px;
	color: #fff;
}

.down-ranking{
	background-color: #fff;
	margin-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
}
.down-ranking .div-title{
	padding-left: 45px;
	padding-right: 70px;
	background-color: #f7f7f7;
	height: 34px;
	line-height: 34px;
	font-size: 12px;
	color: #66600;
	margin-top: 25px;
}
.down-ranking .div-title .span-01{
	display: inline-block;
	width: 100%;
	text-align: center;
}
.down-ranking .div-title .span-01:first-child{
	float: left;
	width: 45px;
	margin-left: -45px;
}
.down-ranking .div-title .span-01:nth-child(2){
	float: right;
	width: 70px;
	margin-right: -70px;
}

.down-list li{
	padding: 15px 70px 15px 45px;
	font-size: 12px;
	color: #666;
	line-height: 20px;
	text-align: center;
	border-top: 1px solid #f2f2f2;
}
.down-list li:first-child{
	border-top: none;
}
.down-list li .span-num{
	float: left;
	width: 45px;
	margin-left: -45px;
}
.down-list li .span-cs{
	float: right;
	width: 70px;
	margin-right: -70px;
}
.down-list li .span-title{
	display: block;
	text-align: left;
}
.down-list li .span-title a{
	color: #666;
}

/*========================13_新闻动态_详情============================*/
.newsxq-main{
	padding-top: 23px;
}
.newsxq-left{
	float: left;
	width: 74.16%;
	background-color: #fff;
	padding: 30px;
}
.news-art{
	font-size: 14px;
	line-height: 20px;
	color: #888;
}
.news-art-title{
	padding-bottom: 24px;
	border-bottom: 1px solid #dcdcdc;
}
.news-art-title .div-title{
 	font-size: 18px;
 	color: #333;
 	line-height: 26px;
}
.news-art-title .div-title .span-tag{
	display: inline-block;
	min-width: 66px;
	padding: 0 10px;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: #fff;
	background-color: #1c6dd1;
	text-align: center;
	margin-left: 19px;
}
.news-art-title .div-date{
	font-size: 14px;
	color: #888;
	margin-top: 13px;
}
.news-art-title .div-des{
	font-size: 14px;
	color: #888;
	margin-top: 23px;
}
.news-art .div-cont{
	padding-top: 33px;
	min-height: 300px;
	padding-bottom: 30px;
}

.newsxq-other{
	border-top: 1px solid #dcdcdc;
	padding-top: 25px;
}
.newsxq-other .div-title{
	font-size: 16px;
	color: #333;
	font-weight: bold;
	line-height: 16px;
}
.newsxq-other a{
	display: inline-block;
	font-size: 14px;
	color: #888;
	line-height: 20px;
	padding-left: 17px;
	background: url('../images/icon-68.png') left center no-repeat;
	margin-top: 16px;
}

.newsxq-right{
	float: right;
	width: 24.16%;
}
.newsxq-hot{
	padding-top: 20px;
}
.newsxq-hot:first-child{
	padding-top: 6px;
}
.newsxq-title{
	font-size: 16px;
	color: #555;
	line-height: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #dcdcdc;
}
.newsxq-list li{
	margin-top: 8px;
	background-color: #fff;
	padding: 16px 20px 18px;
	line-height: 18px;
}
.newsxq-list li .span-title a{
	display: inline-block;
	font-size: 14px;
	color: #333;
	font-weight: bold;
}
.newsxq-list li .span-title .bdo-tag{
	display: inline-block;
	width: 22px;
	height: 12px;
	margin-left: 13px;
}
.newsxq-list li .span-des{
	font-size: 12px;
	color: #888;
	margin-top: 5px;
}
.newsxq-list li .a-more{
	margin-top: 13px;
	width: 80px;
	height: 30px;
	border: 1px solid #1c6dd1;
	line-height: 28px;
	color: #1c6dd1;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.newsxq-online .newsxq-list li .a-more{
	background-color: #1c6dd1;
	color: #fff;
}

/*========================16_搜索结果页============================*/
.result-search{
	padding-top: 28px;
	padding-bottom: 28px;
	background-color: #f7f7f7;
}
.result-search .div-01{
	width: 61.66%;
	padding-right: 88px;
}
.result-search .div-01 .put-01{
	outline: none;
	margin: 0;
	width: 100%;
	height: 38px;
	line-height: 36px;
	background: #fff;
	border: 1px solid #e6e6e6;
	padding: 0 15px;
}
.result-search .div-01 .but-01{
	border: none;
	outline: none;
	float: right;
	margin-right: -88px;
	width: 88px;
	height: 38px;
	background: #1c6dd1;
	font-size: 12px;
	color: #fff;
}

.result-main{
	padding-bottom: 80px;
}
.result-nav{
	border-bottom: 1px solid #e6e6e6;
	padding-top: 22px;
	font-size: 0;
}
.result-nav a{
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	color: #666;
	margin: 0 36px;
	padding-bottom: 18px;
}
.result-nav a:first-child{
	margin-left: 0;
}
.result-nav a.on{
	color: #1c6dd1;
	border-bottom: 3px solid #1c6dd1;
	margin-bottom: -1px;
}

.result-content{
	margin-top: 30px;
}
.result-left{
	float: left;
	width: 66.66%;
}
.result-01{
	padding: 20px 20px 0;
	border: 1px solid #e6e6e6;
}
.result-01 .div-01{
	padding-left: 75px;
	line-height: 24px;
}
.result-01 .div-01 .span-icon{
	float: left;
	width: 56px;
	margin-left: -75px;
}
.result-01 .div-01 .div-title a{
	font-size: 18px;
	color: #333;
	font-weight: bold;
}
.result-01 .div-des{
	font-size: 14px;
	color: #888;
	margin-top: 9px;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.result-01 .a-01{
	width: 146px;
	height: 34px;
	border: 1px solid #e6e6e6;
	line-height: 32px;
	font-size: 12px;
	color: #888;
	margin-top: 11px;
}
.result-01 .div-txt{
	margin-left: -20px;
	margin-right: -20px;
	font-size: 12px;
	color: #888;
	line-height: 20px;
	padding: 9px 20px 7px;
	background: #f7f7f7;
	margin-top: 18px;
}
.result-02{
	padding-left: 64px;
	line-height: 20px;
	margin-top: 15px;
}
.result-02 .span-title{
	float: left;
	margin-left: -64px;
	font-size: 12px;
	color: #555;
}
.result-02 a{
	display: inline-block;
	margin-right: 15px;
	font-size: 12px;
	color: #888;
}
.result-list{
	margin-bottom: 35px;
}
.result-list li{
	margin-top: 33px;
}
.result-list li:first-child{
	margin-top: 25px;
}
.result-list li .div-title a{
	font-size: 16px;
	color: #333;
	/*font-weight: bold;*/
	line-height: 20px;
}
.result-list li .div-des{
	font-size: 14px;
	line-height: 24px;
	color: #666;
	margin-top: 12px;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.result-list li .div-info{
	margin-top: 8px;
}
.result-list li .div-info a{
	color: #999;
}

.result-right{
	float: right;
	width: 21.66%;
}
.result-title{
	font-size: 16px;
	color: #333;
	line-height: 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid #e6e6e6;
}
.result-03{
	margin-top: 33px;
}
.result-03:first-child{
	margin-top: 0;
}
.result-03 .div-list .span-01{
	margin-top: 12px;
	height: 20px;
}
.result-03 .div-list .span-01 a{
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #666;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

/*========================17_问答============================*/
.ask-main{
	padding-top: 40px;
	padding-bottom: 60px;
}
.ask-left{
	float: left;
	width: 74.16%;
}
.ask-right{
	float: right;
	width: 23.33%;
}

.ask-nav{
	width: 100%;
	background-color: #f7f7f7;
	border: 1px solid #e6e6e6;
	font-size: 0;
}
.ask-nav a{
	display: inline-block;
	min-width: 118px;
	padding: 0 15px;
	text-align: center;
	font-size: 14px;
	color: #666;
	line-height: 36px;
	border-right: 1px solid #e6e6e6;
	margin-top: -1px;
}
.ask-nav a:first-child{
	border-left: none;
}
.ask-nav a.on{
	color: #1c6dd1;
	border-top: 3px solid #1c6dd1;
}
.ask-list{
	margin-bottom: 30px;
}
.ask-list li{
	padding: 12px 0 20px;
	border-bottom: 1px solid #e5e5e5;
}
.ask-list li .div-title{
	position: relative;
	height: 32px;
	padding-top: 8px;
	padding-right: 100px;
}
.ask-list li .div-title a{
	display: inline-block;
	max-width: 100%;
	font-size: 16px;
	color: #333;
	line-height: 24px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.ask-list li .div-title span{
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 12px;
	font-size: 12px;
	color: #666;
}
.ask-list li .div-tag{
	font-size: 0;
}
.ask-list li .div-tag a{
	display: inline-block;
	min-width: 48px;
	height: 20px;
	line-height: 18px;
	border: 1px solid #b3b3b3;
	border-radius: 20px;
	font-size: 12px;
	color: #666;
	text-align: center;
	margin-top: 7px;
	margin-right: 10px;
	padding: 0 10px;
}
.ask-list li:first-child{
	line-height: 24px;
	padding: 20px 0 20px 320px;
}
.ask-list li:first-child .a-img{
	float: left;
	margin-left: -320px;
}
.ask-list li:first-child .a-img img{
	display: block;
	width: 100%;
}
.ask-list li:first-child .div-title span{
	top: 8px;
}
.ask-list li:first-child .div-des{
	font-size: 14px;
	color: #666;
	margin-top: 4px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.ask-list li:first-child .div-tag{
	padding-top: 5px;
}
.ask-list li:first-child .div-des2{
	font-size: 12px;
	color: #555;
	margin-top: 7px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ask-hot{
	padding-top: 22px;
	background-color: #f9f9f9;
}
.ask-title{
	font-size: 18px;
	color: #666;
	line-height: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e6e6e6;
	padding-left: 20px;
	padding-right: 20px;
}
.ask-hot .div-list{
	padding: 13px 20px 50px;
	text-align: center;
	font-size: 0;
}
.ask-hot .div-list a{
	display: inline-block;
	min-width: 48px;
	padding: 0 10px;
	font-size: 12px;
	color: #666;
	border: 1px solid #b3b3b3;
	border-radius: 20px;
	margin: 15px 5px 0;
}

.ask-search{
	margin-top: 20px;
	padding: 20px;
	background-color: #f9f9f9;
}
.ask-search .div-title{
	font-size: 18px;
	color: #666;
	line-height: 18px;
}
.ask-search .div-01{
	padding-right: 56px;
	margin-top: 14px;
}
.ask-search .div-01 .put-01{
	border: none;
	background: none;
	outline: none;
	width: 100%;
	height: 34px;
	line-height: 32px;
	border: 1px solid #e6e6e6;
	font-size: 14px;
	color: #888;
	padding: 0 10px;
}
.ask-search .div-01 .but-01{
	float: right;
	margin-right: -56px;
	outline: none;
	width: 56px;
	height: 34px;
	background-color: #1c6dd1;
	border: 1px solid #1c6dd1;
	font-size: 12px;
	color: #fff;
}

.ask-question{
	margin-top: 20px;
	padding: 24px 0 34px;
	background-color: #f9f9f9;
}
.ask-quelist{
	padding: 16px 20px 0;
	line-height: 24px;
}
.ask-quelist li{
	padding-left: 24px;
	margin-top: 8px;
}
.ask-quelist li .span-num{
	float: left;
	width: 24px;
	margin-left: -24px;
	font-size: 14px;
	color: #888;
}
.ask-quelist li .span-title a{
	display: inline-block;
	max-width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/*========================11_天禹简介============================*/
.intro-main{
	padding-top: 74px;
	padding-bottom: 55px;
}
.intro-title{
	font-weight: bold;
	line-height: 110px;
}
.intro-title .span-en{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	font-size: 110px;
	color: #f0f0f0;
}
.intro-title .span-cn{
	position: relative;
	z-index: 2;
	font-size: 30px;
	color: #222;
	font-weight: bold;
}

.intro-num{
	font-size: 0;
	margin-top: 64px;
}
.intro-num .span-01{
	/*display: inline-block;*/
	float: left;
	width: 25%;
	padding-top: 22px;
	padding-bottom: 7px;
	font-size: 16px;
	color: #222;
	line-height: 20px;
	border-left: 1px solid #dcdcdc;
}
.intro-num .span-01:first-child{
	border-left: none;
}
.intro-num .span-num{
	font-size: 72px;
	line-height: 72px;
	margin-bottom: 45px;
}



.intro-art{
	font-size: 14px;
	line-height: 24px;
	color: #555;
}
.intro-art1{
	margin-top: 108px;
}
.intro-art2{
	margin-top: 35px;
}

.intro-area{
	margin-top: 25px;
}
.intro-area .span-title{
	display: none;
}
.intro-area-01 .span-01{
	position: absolute;
	width: 1%;
}
.intro-area-01 .span-01 img{
	display: block;
	width: 100%;
}
.intro-area-01 .span-01 bdo{
	white-space: nowrap;
	position: absolute;
	font-size: 14px;
	color: #555;
	line-height: 14px;
	left: 100%;
	margin-left: 5px;
	top: 4px;
}
.intro-area-01 .span-01:nth-child(5) bdo,
.intro-area-01 .span-01:nth-child(6) bdo,
.intro-area-01 .span-01:nth-child(7) bdo,
.intro-area-01 .span-01:nth-child(13) bdo{
	left: auto;
	right: 100%;
	margin-left: auto;
	margin-right: 5px;
}
.intro-area-01 .span-01:first-child{
	left: 13.58%;
	top: 26.97%;
}
.intro-area-01 .span-01:nth-child(2){
	left: 20.5%;
	top: 34.13%;
}
.intro-area-01 .span-01:nth-child(3){
	left: 47.83%;
	top: 22.38%;
}
.intro-area-01 .span-01:nth-child(4){
	left: 58%;
	top: 38.53%;
}
.intro-area-01 .span-01:nth-child(5){
	left: 67.16%;
	top: 47.7%;
}
.intro-area-01 .span-01:nth-child(6){
	left: 76.83%;
	top: 30.64%;
}
.intro-area-01 .span-01:nth-child(7){
	left: 81.91%;
	top: 32.47%;
}
.intro-area-01 .span-01:nth-child(8){
	left: 85.41%;
	top: 30.27%;
}
.intro-area-01 .span-01:nth-child(9){
	left: 74.5%;
	top: 41.83%;
}
.intro-area-01 .span-01:nth-child(10){
	left: 80%;
	top: 46%;
}
.intro-area-01 .span-01:nth-child(11){
	left: 74.41%;
	top: 53.4%;
}
.intro-area-01 .span-01:nth-child(12){
	left: 81.41%;
	top: 53.4%;
}
.intro-area-01 .span-01:nth-child(13){
	left: 74.75%;
	top: 58.53%;
}
.intro-area-01 .span-01:nth-child(14){
	left: 76.83%;
	top: 62%;
}
.intro-area-01 .span-01:nth-child(15){
	left: 85.25%;
	top: 78.53%;
}



.intro-area-01 .span-01 .bdo1,
.intro-area-01 .span-01 .bdo2,
.intro-area-01 .span-01 .bdo3{
	content: " ";
	position: absolute;
	left: -400% !important;
	top: -400% !important;
	right: -400% !important;
	bottom: -400% !important;
	border-radius: 50% !important;
	border: 1px solid #3369e7;
	filter:alpha(opacity=0); 
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
	margin-left: auto !important;
	margin-right: auto !important;
}
/*@-webkit-keyframes ripple{ 0%{opacity:0;-webkit-transform:scale(0.1,0.1); } 5%{ opacity:1; }  100%{ opacity:0; -webkit-transform:scale(1)}}
@-moz-keyframes ripple{ 0%{opacity:0;-moz-transform:scale(0.1,0.1); } 5%{ opacity:1; }  100%{ opacity:0; -moz-transform:scale(1)}}
@-o-keyframes ripple{ 0%{opacity:0;-o-transform:scale(0.1,0.1); } 5%{ opacity:1; }  100%{ opacity:0; -o-transform:scale(1)}}
@keyframes ripple{ 0%{opacity:0;-webkit-transform:scale(0.1,0.1);-moz-transform:scale(0.1,0.1);-ms-transform:scale(0.1,0.1);transform:scale(0.1,0.1); } 5%{ opacity:1; }  100%{ opacity:0;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}}
.ripple{
	-webkit-animation: 4500ms ease-out 1800ms infinite normal none running ripple;
    -moz-animation: 4500ms ease-out 1800ms infinite normal none running ripple;
    animation: 4500ms ease-out 1800ms infinite normal none running ripple;
}*/
@-webkit-keyframes ripple {
	0% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(0.1, 0.1);
		-moz-transform:scale(0.1, 0.1);
		-o-transform:scale(0.1, 0.1);
		transform:scale(0.1, 0.1); 
	}
	5% {
		filter:alpha(opacity=100);
		-moz-opacity:1;
		-khtml-opacity: 1;
		opacity: 1;
	}
	100% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(1);
		-moz-transform:scale(1);
		-o-transform:scale(1);
		transform:scale(1); 
	}

}

@-moz-keyframes ripple {
	0% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(0.1, 0.1);
		-moz-transform:scale(0.1, 0.1);
		-o-transform:scale(0.1, 0.1);
		transform:scale(0.1, 0.1); 
	}
	5% {
		filter:alpha(opacity=100);
		-moz-opacity:1;
		-khtml-opacity: 1;
		opacity: 1;
	}
	100% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(1);
		-moz-transform:scale(1);
		-o-transform:scale(1);
		transform:scale(1); 
	}

}

@-o-keyframes ripple {
	0% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(0.1, 0.1);
		-moz-transform:scale(0.1, 0.1);
		-o-transform:scale(0.1, 0.1);
		transform:scale(0.1, 0.1); 
	}
	5% {
		filter:alpha(opacity=100);
		-moz-opacity:1;
		-khtml-opacity: 1;
		opacity: 1;
	}
	100% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(1);
		-moz-transform:scale(1);
		-o-transform:scale(1);
		transform:scale(1); 
	}

}

@keyframes ripple {
	0% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(0.1, 0.1);
		-moz-transform:scale(0.1, 0.1);
		-o-transform:scale(0.1, 0.1);
		transform:scale(0.1, 0.1); 
	}
	5% {
		filter:alpha(opacity=100);
		-moz-opacity:1;
		-khtml-opacity: 1;
		opacity: 1;
	}
	100% {
		filter:alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform:scale(1);
		-moz-transform:scale(1);
		-o-transform:scale(1);
		transform:scale(1); 
	}

}
.ripple{
	-moz-animation:ripple 4500ms infinite linear; /* Firefox */
	-webkit-animation:ripple 4500ms infinite linear; /* Safari and Chrome */
	-o-animation:ripple 4500ms infinite linear; /* Opera */
	animation:ripple 4500ms infinite linear;
}


.intro-adv-title{
	font-size: 30px;
	color: #212020;
	line-height: 40px;
}
.intro-adv{
	padding-top: 72px;
	padding-bottom: 90px;
	background-color: #f7f7f7;
}
.intro-adv-cont{
	font-size: 0;
	text-align: center;
	padding-top: 30px;
	margin-left: -10px;
	margin-right: -10px;
}
.intro-adv-01{
	/*display: inline-block;*/
	float: left;
	width: 25%;
	vertical-align: top;
	margin-top: 20px;
	line-height: 24px;
	padding-left: 10px;
	padding-right: 10px;
}

.intro-adv-01 .span-icon{
	margin-bottom: 30px;
}
.intro-adv-01 .span-icon img{
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	-o-transition: all .7s ease 0s;
	transition: all .7s ease 0s;
}
.intro-adv-01 .span-title{
	font-size: 16px;
	color: #222;
}
.intro-adv-01 .span-des{
	font-size: 14px;
	line-height: 24px;
	color: #888;
	margin-top: 7px;
}

.intro-adv-01:hover .span-icon img{
	-webkit-transform:rotateY(360deg);
	-moz-transform:rotateY(360deg);
	-o-transform:rotateY(360deg);
	transform:rotateY(360deg); 
}























