﻿/*全局*/

/*导航栏*/
.header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    line-height: 5.2rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.20);
    z-index: 999;
}
.logo {
    margin-top: 18px;
}
.logo img {
    width: 300px;
}
.nav {
    position: relative;
    font-size: 14px;
}
.nav li {
    position: relative;
    float: left;
    z-index: 999;
    margin-left: 40px;
}

.nav li a {
    color: #777;
    height: 80px;
    display: block;
}

.nav li.active a{
   color: #2588d9;
}
.nav li a:hover {
    color: #2588d9;
}
.nav li:hover a {
    color: #2588d9;
}
.nav li.active a i {
    border-top: 4px solid #2588d9;
}
.nav li a i {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #777;
    margin-left: 5px;
    position: relative;
    top: -3px;
    -webkit-transition: .2s ease-in;
    -moz-transition: -webkit-transform .2s ease-in;
    -o-transition: -webkit-transform .2s ease-in;
    transition: .2s ease-in;
}
.nav li:hover a i {
    border-top: 4px solid #2588d9;
    /*FILTER: progid: DXImageTransform . Microsoft . BasicImage(rotation = 2);*/
    -moz-transform: rotate(180deg);
    -moz-transform-origin: 50% 30%;
    -webkit-transform: rotate(180deg);
    -webkit-transform-origin: 50% 30%;
    -o-transform: rotate(180deg);
    -o-transform-origin: 50% 30%;
    transform: rotate(180deg);
    transform-origin: 50% 30%;
}
.nav .subnav {
    display: none;
    position: absolute;
    width: 180px;
    top: 70px;
    left: -45px;
    background: #fff;
    z-index: 999;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 -2px 0 0 rgba(247,247,247,0.8), /*顶部阴影*/
    0 3px 5px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 -2px 0 0 rgba(247,247,247,0.8), /*顶部阴影*/
    0 3px 5px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 -2px 0 0 rgba(247,247,247,0.8), /*顶部阴影*/
    0 3px 5px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    overflow: hidden;
}
.nav .subnav div {
    border-bottom: 1px solid #ddd;
    width: 100%;
    height: 20px;
    display: block;
    float: left;
    line-height: 26px;
    padding: 8px 0 15px 20px;
}
.nav li:hover .subnav a {
    color: #888;
}
.nav .subnav div:hover {
    background: #f7f7f7;
}
.nav .subnav a {
    width: 100%;
    font-size: 13px;
    display: block;
    color: #888;
    height: 20px !important;
    line-height: 26px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.nav .subnav a:hover
{
    color: #888 !important;
    background: #f7f7f7;
    transform: translate(20px, 0);
    -ms-transform: translate(20px, 0);
    -webkit-transform: translate(20px, 0);
    -o-transform: translate(20px, 0);
    -moz-transform: translate(20px, 0);
}
.nav .subnav a:hover:after
{
    content: '＞';
    margin-left: 40px;
}

.sideline {
    display: block;
    position: absolute;
    border: 0;
    height: 3px;
    background-color: #2588d9;
    left: 0;
    top: 0;
    pointer-events: none;
    margin-left: 45px;
}
.pointer {
    pointer-events: none;
}
/*导航结束*/


/*footer 页脚开始*/
.footer {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}
.footer1 {
    position: relative;
    overflow: hidden;
    display: block;
}
.footer1 .links {
    width: 800px;
}
.footer1 .links li {
    float: left;
    padding-right: 20px;
    position: relative;
    border-right: 1px solid #ddd;
    margin-right: 33px;
}
.footer1 .links a {
    color: #888;
    font-size: 13px;
    line-height: 22px;
}
.footer1 .links a:hover {
    color: #2588d9;
}
.footer1 .links .btit {
    margin-bottom: 10px;
}
.footer1 .links .btit a {
    color: #666;
    font-size: 15px;
}
.footer1 .links .btit a:hover {
    color: #2588d9;
}
.footer1 .wechat {
    margin-right: 80px;
    text-align: center;
    font-size: 14px;
    color: #999;
}
.footer1 .wechat img {
    width: 178px;
}
.footer2 {
    width: 100%;
    color: #999;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}
.footer3 {
    width: 100%;
    position: relative;
    color: #999;
    font-size: 12px;
    margin-top: 30px;
    line-height: 12px;
}
.footer3 a {
    color: #999;
    float: left;
    border-right: 1px solid #999;
    padding-right: 5px;
    margin-right: 6px;
    margin-bottom: 12px;
}
.footer3 a:hover {
    color: #2588d9;
}

.footer4 {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    margin-bottom: 10px;
}
.footer4 .copy {
    font-size: 12px;
    color: #999;
    position: relative;
    margin-top: 10px;
}
.footer4 .cert {
    margin-left: 30px;
    font-size: 13px;
    margin-top: 10px;
    position: relative;
}
.footer4 .cert a {
    color: #888;
    position: relative;
}
.footer4 .cert a:hover {
    color: #444;
}
.footer4 .cert .icp {
    background: url(../images/icp.png) no-repeat center;
}
.footer4 .cert .zheng {
    background: url(../images/zheng.png) no-repeat center;
}
.footer4 .cert .jhw {
    background: url(../images/jhw.png) no-repeat center;
}
.footer4 .cert .icp,.footer4 .cert .zheng,.footer4 .cert .jhw {
    width: 25px;
    height: 27px;
    background-size: 27px;
    vertical-align: middle;
    margin-right: 6px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.footer4 .cert a:hover .icp, .footer4 .cert a:hover .zheng, .footer4 .cert a:hover .jhw {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: '';
}
/*footer end*/


.direct-word {
    font-size: 40px;
    color: #666;
    font-weight: 100;
    margin-bottom: 50px;
}
.direct-cont {
    font-size: 18px;
    color: #999;
    word-break: break-all;
    overflow: hidden;
    margin-top: 20px;
}




/*全局结束*/


/*首页开始*/
/*banner开始*/
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
    z-index: 0;
}
.banner img {
    width: 100%;
}
.banner .swiper-container .swiper-button-prev {
    width: 56px;
    height: 100px;
    background-image: url(../images/prev.png) !important;
    background-size: 56px 100px;
    left:0;
    margin-top: -60px;
}
.banner .swiper-container .swiper-button-next {
    width: 56px;
    height: 100px;
    background-image: url(../images/next.png) !important;
    background-size: 56px 100px;
    right:0;
    margin-top: -60px;
}

.banner .swiper-pagination  .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    cursor: pointer;
    transition: all .2s ease-out;
    border-radius: 0;
    opacity: 1;
}
.banner .swiper-pagination  .swiper-pagination-bullet:hover {
    background-color: #3492de;
    opacity: 1;
}
.banner .swiper-pagination  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #3492de;
}
/*banner结束*/

/*search bar*/
.search {
    background: #fff;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    display: block;
    position: relative;
    margin-top: -3px;
    z-index: 33;
}
.h_sea {color: #999;border-bottom: 1px solid #f7f7f7;overflow: hidden;padding-top: 12px;padding-left: 55px;font-size: 12px;}
.s_inp{width:230px;height:40px;background:url(../images/search-bk.png) no-repeat;}
.inp01 {border:none;color: #999;display: block;float: left;height: 31px;line-height: 31px;width:162px;margin:2px 0 0 10px;padding-left:10px;background:none;}
.key {
    margin-top: 8px;
}
.key a {color: #999;padding: 0 20px 0 0;text-decoration:none;}
.key a:hover {color: #2588d9;}
.s_inp input {
    border:0px;background:none;
}
.s_inp input:focus {
    outline: none;background: none;
}
.s_ss {float: left;height: 41px;width: 42px;background:none;border:none;}

.tips {
    padding: 20px 0 20px 20px;
    position: relative;
    overflow: hidden;
}
.tips .tipitem {
    margin-right: 15px;
}
.tipimg img {
    width: 55px;
    margin-right: 20px;
}
.tipinfo .tit a {
    color: #333333;
    font-size: 16px;
}
.tipinfo .tit a:hover {
    color: #2588d9;
}
.tipinfo .tipwords {
    margin-top: 6px;
    width: 156px;
    color: #999;
    font-size: 30px;
    overflow: hidden;
    word-break: break-all;
}
.tipinfo .tipwords .danwei{ font-size:14px ; color:#999; display:inline;}
.tips .line {
    margin-right: 20px;
    margin-top: 6px;
}

/*search bar end*/

/*index - content begin*/
.content {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}
.contit {
    text-align: center;
    position: relative;
    display: block;
}
.contit .btit {
    font-size: 30px;
    color: #333;
}
.contit .subtit {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
    position: relative;
}
.content .detail {
    margin-top: 55px;
}
.detailimg {
    text-align: center;
    font-size: 0;
    margin: 0 auto;
}

.ywbg {
    background: url(../images/yw-map.png) center no-repeat;
    width: 100%;
    height: 590px;
}

.ywmap {
    margin-right: 80px;
}
.ywmap img {
    width: 530px;
}
.ywicon {
    margin-right: 45px;
}
.ywicon img {
    width: 139px;
}
.ywinfo {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}
.ywinfo .item {
    width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-right: 245px;
    padding-top: 10px;
    padding-left: 10px;
}
.shuxian {
    width: 2px;
    height: 36px;
    border-left: 1px solid #ccc;
    margin: 10px 0 10px 70px;
}
.ywinfo .item a:hover .outyw1 {
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20),
    0 -3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20),
    0 -3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20),
    0 -3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
}
.ywinfo .item .outyw1 {
    position: relative;
    display: block;
    width: 182px;
    padding-top: 10px;
    height: 172px;
    text-align: center;
    vertical-align: middle;
    background: #2588d9;
    border-radius: 50%;
    line-height: 230px;
    margin-right: 40px;
    transition: 0.5s all ease-in-out;
}
.ywinfo .item a:hover .ywcircle {
    border: 1px solid #fff;
}
.ywcircle {
    width: 162px;
    height: 162px;
    margin-left: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #2588d9;
    transition: 0.5s all ease-in-out;
}


.ywinfo .item .yw1 {
    background: url(../images/icon-hhome.png) center no-repeat;
    width: 74px;
    height: 76px;
}
.ywinfo .item .yw2 {
    background: url(../images/icon-llou.png) center no-repeat;
    width: 69px;
    height: 77px;
}
.ywinfo .item .yw3 {
    background: url(../images/icon-fxp.png) center no-repeat;
    width: 76px;
    height: 77px;
}
.ywinfo .item .tit {
    font-size: 20px;
    color: #333;
    margin-top: 35px;
    transition: 0.5s all ease-in-out;
}
.ywinfo .item a:hover .tit {
    color: #2588d9;
}
.ywinfo .item .horizonline {
    margin-top: 10px;
}
.ywinfo .item .words {
    width: 200px;
    overflow: hidden;
    word-break: break-all;
    color: #888;
    font-size: 15px;
    margin-top: 15px;
    line-height: 25px;
}
.conbottom {
    margin: 0px auto;
    margin-top: 70px;
    text-align: center;
    position: relative;
    width: 190px;
    height: 50px;
}
.conbottom .conbtn {
    border: 1px solid #999;
    color: #666;
    font-size: 16px;
    padding: 14px 62px;
}
.conbottom .conbtn:before {
    content: "";position: absolute;top: -15px;left: 0px;height: 100%;width: 0px;z-index: -1;transition:all 0.5s ease-in-out;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;
}
.conbottom .conbtn:hover:before{
    width: 100%;background-color: #2588d9;
}
.conbottom .conbtn:hover {
    border: 1px solid #2588d9;
    color: #fff;
}

/*案例*/
.casebg {
    background: url(../images/case-bg.jpg) center no-repeat;
    background-size: 100% 900px;
    position: relative;
	background-attachment:fixed;
}
.connav {
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}
.connav a:hover {
    background:#2588d9;
    color: #fff;
}
.connav a.on {
    background:#2588d9;
    color: #fff;
}
.connav a {
    position: relative;
    font-size: 15px;
    color: #666;
    padding: 5px 24px;
}

.caselist li {
    float: left;
    width: 270px;
    height: 270px;
    background: #fff;
    margin-right: 10px;
    margin-bottom: 20px;
    transition: all .3s linear;
    font-size: 0;
    cursor: pointer;
    position: relative;
}
.caselist li:hover img{
    border-bottom: 5px solid #2588d9;
}
.caselist li:hover {
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
    top: -5px;
}
.casimg {
    height: 190px;
    background: #fff;
    position: relative;
    text-align: center;
}
.caselist li .n {display: none;}
.caselist li .n img {
    width: 37px !important;
    height: 37px !important;
    border: none;
    margin-top: 76px;
    transform: translateZ(0px);
    transition: transform 0.5s ease 0s;
}

.caselist li a:hover .n img{
    transform: scale(0.9, 0.9);
    transition: transform 0.5s ease 0s;
	width:37px; height:
}
.caselist li:hover .n {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    display: block;
    position: absolute;
    top:0;
    text-align: center;
    width: 270px;
    height: 190px;
    z-index: 11;
}
.caseimg {   width: 271px;
    height: 203px; overflow:hidden;}
.caseimg .img {
    width: 271px;
    height: auto;
	min-height:203px;
    border-bottom: 5px solid #e3e3e3;
}

.casedesc {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.casedesc .casetit{
    text-align: center;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 15px;
    width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.casedesc .casetime{
    font-size: 12px;
    margin-top: 10px;
}
.casedesc .casetit a{
    color: #555;
}
.casedesc .casetime a{
    color: #999;
}

.detail .desc {
    text-align: center;
    font-size: 16px;
    color: #888;
}
.detail .desc div{
    position: relative;
    margin-bottom: 15px;
}
.detail .aboutimg {
    position: relative;
    margin-top: 40px;
}
.detail .aboutimg img {
    width: 1120px;
}
.aboutbluebg {
    width: 100%;
    height: 220px;
    background: #2588d9;
    margin-top: -200px;
    z-index: -66;
}

.advlist {
    width: 1170px;
    margin: 0 auto;
    position: relative;
    margin-top: 50px;
    font-size: 0;
    margin-bottom: 100px;
}
.advlist li {
    display: inline-block;
    position: relative;
    width: 195px;
    height: 487px;
}
.advlist li:hover {
    cursor: pointer;
}
.advimg  img {
    width: 195px;
}
.advtips {
    position: relative;
    margin-top: 40px;
    text-align: center;
}
.advtips div {
    position: relative;
    margin-bottom: 10px;
}
.advtips .line {

}

.advtips .tit {
    font-size: 18px;
    color: #666;
}
.advtips .num {
    font-size: 14px;
    color: #aaa;
}
.advlist .even {
    margin-top: 20px;
}
.advlist .mask {
    width: 195px;
    height: 487px;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(0,0,0, 0.78);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: absolute;
    top:0;
    left: 0;
}

.advlist li:hover .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}
.advlist .mask .cell {
    border: 1px solid #ccc;
    width: 175px;
    height: 467px;
    margin: 10px;
}
.advlist .mask .cell .leaf{
    margin-top: 25px;
    margin-left: 6px;
}
.advlist .mask .cell .dewords {
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
    width: 135px;
    word-break: break-all;
    margin-left: 8px;
    line-height: 22px;
}
.advlist .mask .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 195px;
    height: 140px;
    background: #fff;
    text-align: center;
}
.advlist .mask .bottom .cell {
    width: 175px;
    height: 140px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: none;
    margin-left: 10px;
    margin-bottom: 10px;
    margin-top: -10px;
}
.advlist .mask .bottom .cell .tit {
    color: #ddd;
    font-size: 60px;
    padding-top: 30px;
}
.advlist .mask .bottom .cell .zhtit {
    color: #333;
    font-size: 18px;
    margin-top: -45px;
    z-index: 30;
}
.advlist .mask .bottom .cell .zhdesc {
    color: #999;
    font-size: 12px;
    margin-top: 8px;
}

.advlist .mask2 {
    width: 195px;
    height: 487px;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(0,0,0, 0.78);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: 15px;
    left: 0;
}

.advlist li:hover .mask2 {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}
.advlist .mask2 .cell {
    border: 1px solid #ccc;
    width: 175px;
    height: 467px;
    margin: 10px;
}
.advlist .mask2 .cell .leaf{
    margin-top: 25px;
    margin-left: 6px;
}
.advlist .mask2 .cell .dewords {
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
    width: 135px;
    word-break: break-all;
    margin-left: 8px;
    line-height: 22px;
}
.advlist .mask2 .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 195px;
    height: 140px;
    background: #fff;
    text-align: center;
}
.advlist .mask2 .top .cell {
    width: 175px;
    height: 140px;
    border-left: 1px solid #ccc;
    border-bottom: none;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    margin-left: 10px;
}
.advlist .mask2 .top .cell .tit {
    color: #ddd;
    font-size: 60px;
    padding-top: 10px;
}
.advlist .mask2 .top .cell .zhtit {
    color: #333;
    font-size: 18px;
    z-index: 30;
    margin-top: -45px;
}
.advlist .mask2 .top .cell .zhdesc {
    color: #999;
    font-size: 12px;
    margin-top: 8px;
}

/*首页公司新闻动态*/
.index-news {
    margin-top: 40px;
    border-top: 1px solid #ececed;
    padding-top: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ececed;
    position: relative;
    overflow: hidden;
}
.combox {
    width: 520px;
    margin-right: 40px;
}
.dynamic-news, .dynamic-topic {
    text-align: left;
}
.dynamic-title1 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.dynamic-title1 .dynamic-atit {
    color: #fff;
    background: #2588d9;
    padding: 6px 12px;
}
.news-list {
    display: table;
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 30px;
}
.news-item {
    display: table-row;
    width: 100%;
    margin: 0 10px;
}
.decoration {
    display: table-cell;
    width: 10%;
    position: relative;
    vertical-align: middle;
    text-align: center;
}
.news-circle {
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    vertical-align: middle;
}
.solid-circle {
    background: #ccc;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    overflow: hidden;
    margin: 5px;
}
.decoration:before,
.decoration:after {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background: #ccc;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.news-box {
    display: table-cell;
    line-height: 30px;
    width: 70%;
    vertical-align: middle;
    color: #000;
    padding-left: 15px;
    position: relative;
    border-radius: 2px;
    height: 70px;
}
.news-item:nth-child(1) .decoration:before {
    display: none;
}

.news-item:nth-last-child(1) .decoration:after {
    display: none;
}
.decoration:before {
    top: 0;
}

.decoration:after {
    bottom: 0;
}

.news-item:hover .news-box {
    background-color: #2588d9;
    color: #fff;
}

.news-item:hover .news-box:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #2588d9;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.news-item:hover .solid-circle {
    background: #2588d9;
}

.news-item .news-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    text-overflow: ellipsis;
}

.news-item:hover .news-title {
    color: #fff;
}

.news-item:hover .news-time {
    color: #fff;
}

.news-time {
    color: #999999;
    font-size: 12px;
    line-height: 24px;
}
.topic-wrap {
    position: relative;
}
.topic-item {
    width: 240px;
    height: 180px;
    margin-right: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.topic-img img {
    width: 240px;
    height: 180px;
    border: none;
    transform: translateZ(0px);
    transition: transform 1s ease 0s;
    display: block;
}
.topic-item .item {
    position: relative;

}
.topic-item:hover {
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}
.topic-item:hover img{
    transform: scale(1.1, 1.1);
    transition: transform 1s ease 0s;
}
.topic-item:hover .topic-mask {
    background: rgba(255, 255, 255, 1);
    color: #333;
}
.topic-mask {
    width: 240px;
    height: 42px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.66);
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    color: #666;
}


.honorbg {
    background: url(../images/honor-bg.png) center no-repeat;
    background-size: 100% 450px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.honorscroll {
    position: relative;
    overflow: hidden;
    width: 998px;
    margin: 0 auto;
}
.honorscroll .swiper-slide {
    width: 316px;
    height: 220px;
    overflow: hidden;
}
.honorscroll .swiper-slide img {
    width: 316px;
    height: 220px;
    transform: translateZ(0px);
    transition: transform 1s ease 0s;
}
.honorscroll .swiper-slide:hover img{
    transform: scale(1.1, 1.1);
    transition: transform 1s ease 0s;
}
.honor-button-prev {
    background: url(../images/honorprev.png) center no-repeat;
    background-size: 37px 37px;
    position: relative;
    width: 37px;
    height: 37px;
    margin-top: 95px;
    margin-right: 26px;
}
.honor-button-prev:hover {
    background: url(../images/honorprev-c.png) center no-repeat;
}
.honor-button-next {
    background: url(../images/honornext.png) center no-repeat;
    background-size: 37px 37px;
    position: relative;
    width: 37px;
    height: 37px;
    margin-top: 95px;
}
.honor-button-next:hover {
    background: url(../images/honornext-c.png) center no-repeat;
}


.newsbg {
    background: url(../images/news-bg.png) center no-repeat;
    background-size: 100% 830px;
    position: relative;
    background-attachment: fixed;
}
.newslist {
    width: 520px;
    position: relative;
    overflow: hidden;
    float: left;
    display: block;
}
.newslist li{
    float: left;
    width: 255px;
    height: 180px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.newslist li:nth-child(2), .newslist li:nth-child(4) {
    margin-left: 10px;
}
.newsimgcell {
    width: 255px;
    height: 180px;
    position: relative;
    overflow: hidden;
}
.newsimgcell img {
    width: 255px;
    height: 180px;
    transform: translateZ(0px);
    transition: transform 0.5s ease 0s;
}

.newslist li:hover a:hover .newsimgcell img {
    transform: scale(1.1, 1.1);
    transition: transform 0.5s ease 0s;
}

.newslist a .n img {
    height: 37px !important;
    width: 37px !important;
    border: none;
    margin-top: 76px;
    transform: translateZ(0px);
    transition: transform 0.5s ease 0s;
}

.newslist li:hover a:hover .n img{
    transform: scale(0.9, 0.9);
    transition: transform 0.5s ease 0s;
}
.newslist li .n {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.66);
    display: block;
    position: absolute;
    bottom:0;
    text-align: center;
    width: 255px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    color: #555;
    z-index: 11;
}

.newslist li .n p {
    width: 245px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}
.newslist li:hover .n {
    background: #2588d9;
    color: #fff;
}
.newsinfo {
    position: relative;
    margin-left: 25px;
    width: 248px;
    overflow: hidden;
}
.newsinfo .newst {
    border-bottom: 1px dotted #c8c9c9;
}
.newsinfo .newst div {
    position: relative;
    margin-top: 10px;
}
.newslist li:hover .newstit {
    color: #2588d9;
}
.newsinfo .newst .newstit {
    font-size: 18px;
    color: #555;
}
.newsinfo  .newstime {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}
.newsinfo  .newsdesc {
    width: 222px;
    overflow: hidden;
    position: relative;
    word-break: break-all;
    font-size: 13px;
    color: #999;
    line-height: 22px;
    margin-top: 25px;
}
.newstxt {
    margin-left: 80px;
    position: relative;
    display: block;
    float: left;
    width: 520px;
    word-break: break-all;
}
.newstxt li {
    border-bottom:  1px solid #d3d3d3;
    position: relative;
    overflow: hidden;
    height: 80px;
    margin-bottom: 15px;
}
.newstxt li:hover {
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    border: none;
}
.newstxt li a:hover .txtdot, .newstxt li a:hover .txtit {
    color: #2588d9;
}
.newstxt .txtdot {
    margin-left: 6px;
    width:16px;
    height:16px;
    display: inline-block;
    font-size:44px;
    line-height:16px;
    text-align:center;
    color:#666;
    text-decoration:none;
    margin-top: 10px;
}
.newstxt .txtit {
    font-size: 15px;
    color: #666;
    margin-left: 8px;
    margin-top: 10px;
    width: 310px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.newstxt .txtime {
    font-size: 18px;
    color: #999;
    margin-top: 10px;
    margin-right: 16px;
}
.newstxt .txtcon {
    font-size: 13px;
    color: #999;
    width: 366px;
    margin-left: 30px;
    line-height: 20px;
}

.newstxt .txtarrow {
    margin-top: 16px;
    margin-right: 16px;
}







.servicescroll {
    position: relative;
    overflow: hidden;
    width: 1000px;
    margin: 0 auto;
}
.servicegallay {
    margin-top: 40px;
}

.servicescroll .swiper-slide {
    width: 173px;
    height: 120px;
    overflow: hidden;
}
.servicescroll .swiper-slide img {
    width: 173px;
    height: 120px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.servicescroll .swiper-slide:hover img{
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: '';
}

.service-button-prev {
    background: url(../images/honorprev.png) center no-repeat;
    background-size: 37px 37px;
    position: relative;
    width: 37px;
    height: 37px;
    margin-top: 40px;
    margin-right: 26px;
}
.service-button-prev:hover {
    background: url(../images/honorprev-c.png) center no-repeat;
}
.service-button-next{
    background: url(../images/honornext.png) center no-repeat;
    background-size: 37px 37px;
    position: relative;
    width: 37px;
    height: 37px;
    margin-top: 40px;
}
.service-button-next:hover {
    background: url(../images/honornext-c.png) center no-repeat;
}
/*index-content end*/

/*----------------------------left 表格浮动--------------------------------*/
.leftfixed {
    position: fixed;
    left: 5px;
    width: 140px;
    height: 235px;
    background: #fff;
    z-index: 666;
    top:250px;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
}
.leftformtit {
    background: #2588d9;
    width: 100%;
    color: #fff;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
}
.leftforminpt {
    margin-top: 10px;
    margin-left: 8px;
}
.leftforminpt div{
    position: absolute;
    font-size: 14px;
    color: #666;
    line-height: 26px;
    left: 15px;
}
.leftforminpt input {
    border: 1px solid #bbb;
    width: 122px;
    text-indent: 42px;
    font-size: 14px;
    color: #666;
    padding: 3px 0;
}
.leftbtn {
    margin-left: 8px;
    margin-top: 10px;
}
.leftbtn button:hover{
    background: #007aff;
}
.leftbtn button {
    background: #2588d9;
    border: none;
    outline: none;
    color: #fff;
    width: 124px;
    font-size: 17px;
    padding: 8px 0;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    cursor: pointer;
}
.leftformselect {
    margin-left: 8px;
    margin-top: 10px;
}
.leftformselect select{
    width: 124px;
    color: #666;
    line-height: 26px;
    font-size: 14px;
}
/*----------------------------left 表格浮动end-----------------------------*/

/*-----------------------------right右侧浮动--------------------------------*/
.rightfixed {
    position: fixed;
    width: 185px;
    background: #fff;
    z-index: 666;
    top:250px;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    right: -140px;
    transition: all 0.5s;
}
.rightfixed:hover {
    right: 5px;
}
.rightfixed .r-item{
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    height: 48px;
    width: 100%;
}
.rightfixed .r-item:hover{
    background: #2588d9;
    color: #fff;
}
.rightfixed .r-item:hover .r-mes {
    background: url(../images/icon-mes-sel.png) center no-repeat;
}
.r-mes {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-mes.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item:hover .r-tel {
    background: url(../images/icon-tel-sel.png) center no-repeat;
}
.r-tel {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-tel.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item:hover .r-service {
    background: url(../images/icon-service-sel.png) center no-repeat;
}
.r-service {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-service.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item:hover .r-wechat {
    background: url(../images/icon-wechat-sel.png) center no-repeat;
}
.r-wechat {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-wechat.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item:hover .r-share {
    background: url(../images/icon-share-sel.png) center no-repeat;
}
.r-share {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-share.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item:hover .r-top {
    background: url(../images/icon-top-sel.png) center no-repeat;
}
.r-top {
    display: block;
    float: left;
    margin: 15px;
    background: url(../images/icon-top.png) center no-repeat;
    background-size: 16px;
    width: 18px;
    height: 18px;
}
.rightfixed .r-item a.r-a{
    width: 100%;
    line-height: 48px;
    display: inline-block;
    font-size: 14px;
    color: #9a9a9a;
    text-align: left;
}
.rightfixed .r-item a:hover{
    color: #fff;
}
.rightfixed .jiathis_style_32x32{
    margin-left: 4px;
    float: left;
}
.rightfixed .jiathis_style_32x32 span{

}
.jiathis_style a {
    float: left;
    margin-right: 15px;
    margin-top: 15px;
}
.jiathis_style .jtico_tsina {
    background: url(../images/icon-sina-share.png) no-repeat center !important;
    background-size: 16px !important;
}
.jiathis_style .jtico_weixin {
    background: url(../images/icon-wechat-share.png) no-repeat center !important;
    background-size: 16px !important;
}
.jiathis_style .jtico_qzone {
    background: url(../images/icon-qq-share.png) no-repeat center !important;
    background-size: 16px !important;
}
.rightfixed .r-item:hover .jiathis_style .jtico_tsina {
    background: url(../images/icon-sina-share-sel.png) no-repeat center !important;
}
.rightfixed .r-item:hover .jiathis_style .jtico_weixin {
    background: url(../images/icon-wechat-share-sel.png) no-repeat center !important;
}
.rightfixed .r-item:hover .jiathis_style .jtico_qzone {
    background: url(../images/icon-qq-share-sel.png) no-repeat center !important;
}
.jiathis_style >.jiadiv_01{
    display: none;
}

/*留言模态*/
#mesform {
    width: 550px;
    height: 480px;
    background: #fff;
}
.lfnav {
    width: 50px;
    background: #f3f3f3;
    box-shadow: 2px 0 12px 0 rgba(0, 0, 0, 0.35);/*右边阴影*/
    -webkit-box-shadow: 2px 0 12px 0 rgba(0, 0, 0, 0.35);/*右边阴影*/
    -moz-box-shadow: 2px 0 12px 0 rgba(0, 0, 0, 0.35);/*右边阴影*/
    -o-box-shadow: 2px 0 12px 0 rgba(0, 0, 0, 0.35);/*右边阴影*/
    height: 480px;
    position: relative;
    overflow: hidden;
}
.lfnav .navtit {
    font-size: 15px;
    color: #555;
    width: 50px;
    text-align: center;
    line-height: 20px;
    height: 240px;
    cursor: pointer;
}
.lfnav .navtit.on {
    color: #2588d9;
    border-left: 3px solid #2588d9;
    background: #fff;
}
.lfnav .navtit p{
    height: 80px;
    width: 20px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    padding-top: 80px;
}
.rtcontent {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 500px;
}
.rtit {
    font-size: 24px;
    color: #555;
    font-weight: bold;
    margin-top: 40px;
}
.rtips {
    margin-top: 15px;
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}
.rtips span {
    color: #2588d9;
}
.rtinpt {
    margin-left: 50px;
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
    height: 40px;
    line-height: 50px;
}
.rtinpt .rtlabel {
    color: #555;
}
.rtinpt div{
    margin-right: 12px;
}
.rtinpt .sn {
    color: #2588d9;
}
.rtinpt input {
    border: 1px solid #ddd;
    text-indent: 20px;
    padding: 10px 0;
    width: 300px;
}
.rtinpt select {
    border: 1px solid #ddd;
    text-indent: 20px;
    padding: 10px 0;
    width: 94px;
    margin-right: 10px;
}
.rtinfo {
    font-size: 12px;
    color: #2588d9;
}
.rtbtn {
    line-height: 100px;
}
.rtbtn button{
    border: none;
    outline: none;
    background: #2588d9;
    padding: 10px 0;
    width: 395px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.rtinpt .m2 {
    position: absolute;
    right: 66px;
}




/*-----------------------------right右侧浮动end--------------------------------*/





/*首页结束*/

/*检测治理页面*/
.detection1{
    background: #2588d9;
    display: block;
    position: relative;
    margin-top: -56px;
    z-index: 33;
}
.deitem {
    width: 372px;
    height: 190px;
    position: relative;
    display: block;
    text-align: center;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.deitem:hover, .deitem.on {
    background: #fff;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
}
.deline {
    margin-top: 40px;
}
.deicon {
    margin-top: 20px;
}
.deitem:hover .detit,.deitem.on .detit {
    color: #2588d9;
}
.detit {
    margin-top: 24px;
    color: #fff;
    font-size: 18px;
}
.destit {
    margin-top: 12px;
    font-size: 12px;
    color: #9cd3ff;
}
.deitem:hover .detest, .deitem.on .detest {
    background: url(../images/icon-de-test-sel.png) center no-repeat;
}
.deitem:hover .deindoor, .deitem.on .deindoor {
    background: url(../images/icon-de-indoor-sel.png) center no-repeat;
}
.deitem:hover .decar, .deitem.on .decar {
    background: url(../images/icon-de-car-sel.png) center no-repeat;
}
.detest {
    background: url(../images/icon-de-test.png) center no-repeat;
    background-size: 65px;
    width: 65px;
    height: 65px;
}
.deindoor {
    background: url(../images/icon-de-indoor.png) center no-repeat;
    background-size: 65px;
    width: 65px;
    height: 65px;
}
.decar {
    background: url(../images/icon-de-car.png) center no-repeat;
    background-size: 65px;
    width: 65px;
    height: 65px;
}

.decell {
    width: 276px;
    height: 364px;
    position: relative;
    display: block;
    margin-right: 6px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.decell:hover {
    background: #fff;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
}
.decell:nth-child(4)
{
    margin-right: 0;
}
.decimg {
    width: 100%;
}
.aboutimg .decimg img {
    width: 276px;
    height: 268px;
}
.decell:hover .dectit {
    color: #333;
    border-bottom: 2px solid #2588d9;
}
.dectit {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
    margin-left: 15px;
    padding-bottom: 8px;
    width: 40px;
}
.decell:hover .decstit {
    color: #888;
}
.decstit {
    margin-top: 5px;
    font-size: 15px;
    color: #9ed3ff;
    margin-left: 15px;
}
.detectwrap {
    height: 620px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    position: relative;
    display: block;
    padding-top: 70px;
}
.detectinfo {
    margin-left: 70px;
    width: 488px;
    position: relative;
    display: block;
    word-break: break-all;
    overflow: hidden;
    color: #888;
    font-size: 18px;
    line-height: 36px;
}
.detectinfo i {
    color: #2588d9;
    font-size: 44px;
}
.de-equipment {
    margin-bottom: 60px;
    margin-right: 22px;
    font-size: 16px;
    color: #666;
}
.de-equipment:nth-child(3) {
    margin-right: 0;
}
.de-equipment:hover .deqpimg {
    border: none;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.de-equipment .deqpimg {
    border: 1px solid #ccc;
    width: 356px;
    height: 252px;
    vertical-align: middle;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.de-equipment .deqpimg img {
    margin-top: 25px;
    width: 306px;
    height: 194px;
}

.airservicebg {
    background: url(../images/airservice-bg.png) center no-repeat;
    background-size: 100% 620px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 480px;
}

.de-processlist {
    position: relative;
}
.de-processlist li {
    display: inline-block;
    margin-right: 30px;
    cursor: pointer;
}
.de-processlist li:nth-child(6) {
    margin-right: 0;
}
.de-processlist .de-process1,.de-processlist .de-process2,.de-processlist .de-process3,.de-processlist .de-process4,.de-processlist .de-process5,.de-processlist .de-process6 {
    background-size: 157px 189px;
    width: 157px;
    height: 189px;
    transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.de-processlist li:hover .de-process1 {
    background: url(../images/de-process1-sel.png) center no-repeat;
}
.de-processlist li:hover .de-process2 {
    background: url(../images/de-process2-sel.png) center no-repeat;
}
.de-processlist li:hover .de-process3 {
    background: url(../images/de-process3-sel.png) center no-repeat;
}
.de-processlist li:hover .de-process4 {
    background: url(../images/de-process4-sel.png) center no-repeat;
}
.de-processlist li:hover .de-process5 {
    background: url(../images/de-process5-sel.png) center no-repeat;
}
.de-processlist li:hover .de-process6 {
    background: url(../images/de-process6-sel.png) center no-repeat;
}
.de-processlist .de-process1 {
    background: url(../images/de-process1.png) center no-repeat;
}
.de-processlist .de-process2 {
    background: url(../images/de-process2.png) center no-repeat;
}
.de-processlist .de-process3 {
    background: url(../images/de-process3.png) center no-repeat;
}
.de-processlist .de-process4 {
    background: url(../images/de-process4.png) center no-repeat;
}
.de-processlist .de-process5 {
    background: url(../images/de-process5.png) center no-repeat;
}
.de-processlist .de-process6 {
    background: url(../images/de-process6.png) center no-repeat;
}
.de-assets {
    width: 1120px;
    position: relative;
    display: block;
    height: 380px;
    background: #2588d9;
    margin: 0 auto;
    margin-top: -90px;
}

.deasset-item {
    width: 462px;
}
.deasset-itemtit {
    margin-top: 50px;
    font-size: 30px;
    color: #fff;
    margin-left: 50px;
}
.deasset-itemline {
    margin-left: 50px;
    margin-top: 6px;
}
.deasset-itemtips {
    width: 460px;
    word-break: break-all;
    overflow: hidden;
    position: relative;
    display: block;
}
.deasset-itemstit {
    font-size: 16px;
    color: #fff;
    margin-left: 50px;
    margin-top: 6px;
}
.deasset-itemtips {
    margin-top: 45px;
    color: #fff;
    margin-left: 50px;
    font-size: 14px;
    line-height: 24px;
}
.deasset-itembtn {
    margin-top: 40px;
}
.deasset-itembtn a {
    font-size: 16px;
    color: #fff;
    margin-left: 50px;
    text-align: center;
    border: 1px solid #fff;
    padding: 9px 37px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.deasset-itembtn a:hover {
    color: #2588d9;
    background: #fff;
    margin-left: 50px;
    border: 1px solid #2588d9;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.deasset-img {
    margin-right: 60px;
    position: relative;
    display: block;
    margin-top: -60px;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    font-size: 0;
}

.indexform {
    margin-top: 55px;
}
.indexforminpt {
    margin-right: 132px;
    margin-bottom: 50px;
}
.indexforminpt input{
    border: none;
    border-bottom: 1px solid #c9c9c9;
    width: 490px;
    font-size: 16px;
    color: #919191;
    text-indent: 32px;
    padding: 12px 0;
}
.indexforminpt:nth-child(2),.indexforminpt:nth-child(4)
{
    margin-right: 0;
}
.form-user,.form-tel,.form-wechat,.form-cate,.form-mes {
    padding-top: 12px;
    background-size: 21px;
    width: 21px;
    height: 25px;
    position: absolute;
}
.form-user {
    background: url(../images/icon-form-user.png) center no-repeat;
}
.form-tel {
    background: url(../images/icon-form-tel.png) center no-repeat;
}
.form-wechat {
    background: url(../images/icon-form-wechat.png) center no-repeat;
}
.form-cate {
    background: url(../images/icon-form-cate.png) center no-repeat;
}
.form-mes {
    background: url(../images/icon-form-mes.png) center no-repeat;
}
.formcatelists {
    position: relative;
    font-size: 16px;
    color: #919191;
    margin-top: -35px;
    margin-left: 100px;
}
.formcatelists a {
    font-size: 16px;
    color: #919191;
}
.formcatelists a.on {
    color: #2588d9;
}
.indexformtextarea {
    font-size: 16px;
    color: #919191;
}
.formtxtarealabe {
    margin-left: 30px;
    padding-top: 8px;
}
.indexformtextarea textarea {
    border: none;
    border-bottom: 1px solid #c9c9c9;
    outline: none;
    font-size: 16px;
    color: #919191;
    margin-top: 50px;
    width: 100%;
    padding: 5px;
    resize: none;
    overflow: hidden;
}
.indexformbtn {
    width: 100%;
    text-align: center;
}
.indexformbtn button {
    outline: none;
    background: #2588d9;
    border: 1px solid #2588d9;
    color: #fff;
    font-size: 20px;
    padding: 15px 74px;
    margin: 50px 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.indexformbtn button:hover {
    background: #fff;
    color: #2588d9;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
/*检测治理end*/

/*检测开始*/
.detestimg {
    text-align: center;
    margin-top: 40px;
    position: relative;
    display: block;
}
.detestimg img {
    width: 828px;
}
.decell2 {
    width: 276px;
    height: 364px;
    position: relative;
    display: block;
    margin-right: 6px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.decell2:hover {
    background: #2588d9;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
}
.decell2:nth-child(4)
{
    margin-right: 0;
}
.decimg2 {
    width: 100%;
}
.aboutimg .decimg2 img {
    width: 276px;
    height: 268px;
}
.decell2:hover .dectit2 {
    color: #fff;
}
.dectit2 {
    color: #333;
    font-size: 20px;
    margin-top: 20px;
    margin-left: 15px;
    padding-bottom: 8px;
}
.decell2:hover .decstit2 {
    color: #fff;
}
.decstit2 {
    margin-top: 5px;
    font-size: 14px;
    color: #888;
    margin-left: 15px;
}
.decell2:hover .decnum1,.decell2:hover .decnum2,.decell2:hover .decnum3,.decell2:hover .decnum4{
    background-size: 100px 43px;
    width: 100px;
    height: 43px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.decell2:hover .decnum1{
    background: url(../images/de-num1.png) no-repeat center;
}
.decell2:hover .decnum2{
    background: url(../images/de-num2.png) no-repeat center;
}
.decell2:hover .decnum3{
    background: url(../images/de-num3.png) no-repeat center;
}
.decell2:hover .decnum4{
    background: url(../images/de-num4.png) no-repeat center;
}

.de-gas-list li {
    width: 562px;
    height: 92px;
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.de-gas-list li:nth-child(4)
{
    margin-bottom: 0;
}
.de-gas-list li a .tit {
    font-size: 22px;
    color: #666;
    width: 80px;
    text-align: center;
    height: 40px;
    margin-top: 25px;
    border-right: 1px solid #ccc;
    line-height: 40px;
}
.de-gas-list li a .minicell {
    margin-left: 15px;
    line-height: 25px;
    margin-top: 20px;
}
.de-gas-list li a .minicell .stit, .de-gas-list li a .minicell .words {
    font-size: 12px;
    color: #888;
}
.de-gas-list li:hover {
    background: #2588d9;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
}
.de-gas-list li:hover a .tit {
    border-right: 1px solid #fff;
}
.de-gas-list li:hover a .tit,.de-gas-list li:hover a .minicell .stit, .de-gas-list li:hover a .minicell .words
{
    color: #fff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.de-stand-tit {
    font-size: 24px;
    color: #333;
}
.de-stand-words {
    font-size: 15px;
    color: #888;
    line-height: 25px;
    margin-bottom: 30px;
}

.de-zysb {
    width: 100%;
    display: block;
    position: relative;
}
.de-zysb li{
    width: 338px;
    height: 313px;
    background: none;
    margin-right: 8px;
    padding: 15px;
    text-align: center;
    float: left;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.de-zysb li:nth-child(3)
{
    margin-right: 0;
}
.zysbline,.zysbimg,.zysbtit {
    margin-bottom: 12px;
}
.zysbtit {
    font-size: 18px;
    color: #666;
}
.de-zysb li:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    background: #fff;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
}

.deindp li{
    width: 545px;
    height: 152px;
    float: left;
    position: relative;
    background: #f1f1f1;
    margin-right: 30px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;

}
.deindp li:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    background: #2588d9;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    top:-8px;
}
.deindp li:nth-child(2),.deindp li:nth-child(4),.deindp li:nth-child(6) {
    margin-right: 0;
}
.iconservice,.iconhome,.icontruck,.iconbottle,.iconfile,.iconpenciel {
    background: url(../images/icon-de-service.png) no-repeat center;
    background-size: 145px 100px;
    width: 145px;
    height: 100px;
}
.iconservice {
    background: url(../images/icon-de-service.png) no-repeat center;
}
.iconhome {
    background: url(../images/icon-de-home.png) no-repeat center;
}
.icontruck {
    background: url(../images/icon-de-truck.png) no-repeat center;
}
.iconbottle {
    background: url(../images/icon-de-bottle.png) no-repeat center;
}
.iconfile {
    background: url(../images/icon-de-file.png) no-repeat center;
}
.iconpenciel {
    background: url(../images/icon-de-penciel.png) no-repeat center;
}
.deindp li:hover .iconservice {
    background: url(../images/icon-de-service-sel.png) no-repeat center;
}
.deindp li:hover .iconhome {
    background: url(../images/icon-de-home-sel.png) no-repeat center;
}
.deindp li:hover .icontruck {
    background: url(../images/icon-de-truck-sel.png) no-repeat center;
}
.deindp li:hover .iconbottle {
    background: url(../images/icon-de-bottle-sel.png) no-repeat center;
}
.deindp li:hover .iconfile {
    background: url(../images/icon-de-file-sel.png) no-repeat center;
}
.deindp li:hover .iconpenciel {
    background: url(../images/icon-de-penciel-sel.png) no-repeat center;
}
.indpinfo {
    width: 325px;
    word-break: break-all;
    position: relative;
    margin-left: 45px;
}
.indpinfo .tit{
    font-size: 22px;
    color: #666;
    margin-top: 30px;
}
.iconline {
    background: url(../images/icon-de-greyline.png) no-repeat center;
    background-size: 46px 1px;
    width: 46px;
    height: 1px;
}
.deindp li:hover .iconline {
    background: url(../images/icon-de-whiteline.png) no-repeat center;
}
.indpinfo .des {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
    line-height: 22px;
}
.deindp li:hover .tit, .deindp li:hover .des{
    color: #fff;
}

.preparebg {
    background: url(../images/preparebg.png) no-repeat center;
    width: 100%;
    height: 666px;
}

.depreparelists li{
    color: #666;
    font-size: 14px;
    width: 100%;
    height: 55px;
    margin-bottom: 60px;
}
.preparetit {
    color: #2588d9;
    font-size: 30px;
    height: 55px;
    border-left: 1px solid #2588d9;
    width: 80px;
    text-align: center;
    line-height: 55px;
}
.preparecont {
    width: 342px;
    line-height: 20px;
    margin-top: 13px;
}


/*---------------------------------关于我们开始----------------------------*/
.ab-blue-box {
    width: 488px;
    height: 392px;
    position: relative;
    border: 2px solid #2588d9;
}
.ab-companypic {
    width: 510px;
    height:370px;
    position: relative;
    overflow: hidden;
    margin: 12px 0 0 -480px;
}
.ab-companyinfo {
    position: relative;
    text-indent: 28px;
    font-size: 14px;
    color: #666;
    width: 538px;
    overflow: hidden;
    word-break: break-all;
    line-height: 30px;
}
.ab-companyinfo div{
    margin-bottom: 12px;
}

.brandinfo {
    position: relative;
    display: block;
    margin-top: 30px;
}
.brandinfo  li {
    border-top: 1px dashed #ececec;
    margin-bottom: 30px;
}
.bdinfo-head {
    margin-top: 60px;
    border-left: 2px solid #2588d9;
    padding-left: 15px;
}
.bdinfo-tit {
    font-size: 24px;
    color: #333;
}
.bdinfo-stit {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}
.bdinfo-mid {
    margin-top: 30px;
 color: #666;  line-height: 30px;    font-size: 14px;
}
.bdinfo-mid .bdinfo-mid-fr{   color: #666;  text-indent: 28px;line-height: 40px; text-indent: 28px;   font-size: 16px; width:510px; padding-top:15px; font-weight:normal;}
.bdinfo-mid  .bdinfo-mid-fl{ width:510px; overflow:hidden; height:340px; position:relative;}
.bdinfo-mid  .bdinfo-mid-fl img{ width:100%;-moz-box-shadow: 5px 5px 3px #888888; /* 老的 Firefox */
box-shadow: 5px 5px 3px #888888; box-sizing:border-box}
.bdinfo-mid-fl .honor1-prev,.bdinfo-mid-fl .honor2-prev{ position:absolute; z-index:1000; top:150px; right:0;

    background: url(http://m.jntkzl.com/skin/tkzl/images/index-service-next.png); background-color:#0b6fb3;
    width: 36px;
    height: 36px;
	display:none;  transition: all 1s;cursor:pointer
}
.bdinfo-mid-fl .honor1-next,.bdinfo-mid-fl .honor2-next{width: 36px; height: 36px; position:absolute; z-index:1000; top:150px; left:0;
	 background: url(http://m.jntkzl.com/skin/tkzl/images/index-service-prev.png); background-color:#0b6fb3;display:none;  transition: all 1s;cursor:pointer}
.bdinfo-mid-fl:hover .honor1-next,.bdinfo-mid-fl:hover .honor1-prev,.bdinfo-mid-fl:hover .honor2-next,.bdinfo-mid-fl:hover .honor2-prev{ display:block;  transition: all 1s;}	 
.honoelightbox {
    margin-left: 98px;
    width: 500px;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hlbtit {
    font-size: 24px;
    color: #333;
}
.hlbitem {
    margin-top: 36px;
}
.hlbeg {
    width: 242px;
    margin-right: 50px;
}
.hlbeg img {
    width: 242px;
    height: 169px;
}
.hlbge-tit {
    margin-top: 15px;
    width: 166px;
    overflow: hidden;
    word-break: break-all;
    font-size: 14px;
    color: #666;
    margin-left: 38px;
    line-height: 25px;
}
.hlblist {
    margin-top: 50px;
    position: relative;
    text-align: center;
}
.hlblist .hlbeg {
    margin-bottom: 30px;
}

.hlbreportlist {
    margin-top: 60px;
    position: relative;
    text-align: center;
}
.hlbreeg {
	 
        margin-right:15px;
    margin-bottom: 10px;
	min-height:335px;
	text-align:center;

	
}
.hlbreeg .hlbreeg-img{ height: 277px;	overflow:hidden;}
.hlbreeg img {
	height:100%;
	width:auto;
    border: 1px solid #ccc;
}
.hlbreeg-tit {
    width: 100%;
    color: #696969;
    font-size: 14px;
    word-break: break-all;
	text-align:center;
	
    line-height: 35px;
}

.peoplelist li {
    border-bottom: 1px dashed #ececec;
    padding-bottom: 60px;
    padding-top: 60px;
}
.malitem {
    width: 460px;
    position: relative;
    display: block;
    overflow: hidden;
    word-break: break-all;
    text-align: left;
}
.maname {
    color: #333;
    font-size: 26px;
    margin-bottom: 15px;
}
.maposition {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}
.maline {
    margin-bottom: 56px;
}
.mapeo {
    margin-bottom: 36px;
    color: #555;
    font-size: 20px;
}
.mahonorli {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}
.maritem {
    width: 480px;
    position: relative;
    display: block;
    overflow: hidden;
    word-break: break-all;
    text-align: left;
}
.marmore {
    word-break: break-all;
    position: relative;
    display: block;
    overflow: hidden;
    width: 460px;
}
.maritem .mahonorli {
    line-height: 36px;
}

.hiscont {
    font-size: 14px;
    color: #777;
    word-break: break-all;
    overflow: hidden;
    line-height: 36px;
    padding-bottom: 60px;
    border-bottom: 1px dashed #ececec;
}
.hisitem {
    border-bottom: 1px dashed #ececec;
    position: relative;
    display: block;
    overflow: hidden;
    font-size: 14px;
    color: #777;
    line-height: 28px;
    height: 80px;
}
.histime {
    font-size: 20px;
    color: #666;
}
.histime,.hisarr,.hisinfo {
    margin-top: 25px;
}
.hisarr {
    margin-left: 18px;
}
.hisarr .hisicon-arrow {
    background: url(../images/history-arrow.png) no-repeat center;
    width: 33px;
    height: 14px;
}
.hisinfo {
    margin-left: 20px;
}

/*---------------------------------关于我们结束--------------------------------*/


/*-------------------------------产品中心开始--------------------------------*/
.vcover {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.vimg img{
    width: 100%;
    transition: all 1s ease;
}
.vcover:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20),
    2px 0 3px 0 rgba(0, 0, 0, 0.20),
    0 3px 20px 0 rgba(0, 0, 0, 0.20);
    -webkit-box-shadow:-2px 0 13px 0 rgba(0, 0, 0, 0.20),
    2px 0 13px 0 rgba(0, 0, 0, 0.20),
    0 3px 100px 0 rgba(0, 0, 0, 0.20);
}
.vimg:hover img{
    transform: scale(1.1);
}
.vicon-play {
    position: absolute;
    z-index: 55;
    left: 517px;
    top:226px;
}

.prolist {
    margin-top: 37px;
    position: relative;
    display: block;
    overflow: hidden;

}
.proitemlf {

    font-size: 0;
    display: block;
    overflow: hidden;
    width: 372px;
  
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}


.proitemrt {
    width: 636px;
    position: relative;
    overflow: hidden;
}

.proitemcell {
    text-align: center;
}
.proimg{
    width: 317px;
    height: 367px;
    border: 1px solid #888;
	margin-bottom:10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;

}  
.proitemcell .pro_img{ width:100%; height:273px; overflow:hidden; text-align:center;}
.proitemcell .pro_img img{ height:273px;}
.proitemcell .tit{
    color: #333;
    font-size: 16px;
    margin-top: 10px;
   
}
.proitemcell .stit{
    color: #888;
    font-size: 12px;
    margin-top: 20px;
  
}

			

.pro-knowdetail {
    display: none;
    position: relative;
    margin-left: 24px;
    width: 270px;
    height: 50px;
    margin-top: -40px;
    padding-top: 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    background: #fff;
}
.proitemcell:hover .pro-knowdetail {
    display: block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.proimg:hover{
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    box-shadow:-2px 0 15px 0 rgba(0, 0, 0, 0.08) inset,
    2px 0 15px 0 rgba(0, 0, 0, 0.08) inset,
    0 3px 20px 0 rgba(0, 0, 0, 0.08) inset;
}
    /*视频容器*/
.cljv {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88;
    display: none;
}
.cljv .v-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 700px;
    height: 400px;
    background-color: #000;
    margin: auto;
}
.cljv .v-new .close {
    position: absolute;
    right: 33px;
    top: 18px;
    width: 27px;
    height: 27px;
    background: url(../images/icon-close.png) no-repeat center;
    cursor: pointer;
}

.nav-product {
    position: fixed;
    top:80px;
    left: 0;
    z-index: 996;
    width: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.nav-prolist {
    height: 45px;
}
.nav-prolist li {
    display: inline-block;
    margin-right: 40px;
    line-height: 45px;
}
.nav-prolist li a {
    font-size: 14px;
    color: #aaa;
}
.nav-prolist li a:hover {
    color: #777;
}
.nav-prolist li a.active {
    color: #777;
}
.nav-proshop {
    margin-top: 12px;
    position: relative;
    vertical-align: middle;
    text-align: left;
}
.nav-proshop a {
    color: #aaa;
    font-size: 14px;
}
.proshopline {
    margin: 4px 10px;
}
.nav-proshop a:hover {
    color: #777;
}
.icon-jd {
    background: url(../images/icon-jd.png) no-repeat center;
    width: 21px;
    height: 22px;
    margin-left: 8px;
    vertical-align: middle;
}
.nav-proshop a:hover .icon-jd {
    background: url(../images/icon-jd-sel.png) no-repeat center;
}
.icon-tmall {
    background: url(../images/icon-tmall.png) no-repeat center;
    width: 21px;
    height: 22px;
    margin-left: 8px;
    vertical-align: middle;
}
.nav-proshop a:hover .icon-tmall {
    background: url(../images/icon-tmall-sel.png) no-repeat center;
}

.factorbg {
    background: url(../images/factorbg.png) center no-repeat;
    width: 100%;
    height: 800px;
}

.factortit {
    color: #fff;
    font-size: 40px;
    font-weight: 100;
    margin-top: 80px;
}

.factorstit {
    font-size: 18px;
    font-weight: 100;
    color: #b1d8f7;
    width: 580px;
    word-break: break-all;
    overflow: hidden;
    margin-top: 66px;
    line-height: 38px;
}

.carprolist li {
    display: inline-block;
    margin-right: 136px;
    width: 450px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.carprolist li img {
    width: 450px;
}

.carprotit {
    color: #3e3e3e;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 30px;
}
.carprodesc {
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.barelf {
    width: 300px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #dedede;
    padding-top: 50px;
    font-size: 20px;
    color: #555;
}
.barelf div {
    margin-left: 70px;
}
.barert {
    width: 700px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #dedede;
    margin-left: 120px;
    padding-top: 50px;
}
.barert-item .tit {
    font-size: 16px;
    color: #555;
    margin-left: 30px;
    width: 180px;
}
.barert-item .stit {
    font-size: 14px;
    color: #919191;
    margin-left: 30px;
    width: 180px;
    margin-bottom: 90px;
    margin-top: 26px;
    line-height: 30px;
}

.barenotice {
    margin-left: 70px;
    font-size: 14px;
    color: #999;
}

.barenolist {
    margin-top: 35px;
    margin-bottom: 55px;
    margin-left: 70px;
}
.barenolist li {
    display: inline-block;
    margin-right: 80px;
}
.barenolist li .tit {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/*---------------产品中心副标题-------------------------*/
.newpro-nav {
    position: fixed;
    z-index: 666;
    left:0;
    top:-127px;
    width: 100%;
    background: rgba(255,255,255,0.78);
}
.newprolist {
    position: relative;
    height: 73px;
}
.newprolist img {
    vertical-align: middle;
}
.newprolist li {
    display: inline-block;
    margin-right: 30px;
    margin-top: 18px;
}
.newprolist li a {
    color: #555;
    font-size: 16px;
}
.newprolist li a:hover, .newprolist li a.active {
    color:  #2588d9;
}
.newprolist .newlogo {
    margin-right: 80px;
}
.newproshop {
    position: relative;
    height: 73px;
    line-height: 73px;
}
.newproshop div  {
    margin-left: 20px;
}
.newproshop img {
    vertical-align: middle;
}
.newproshop a {
    font-size: 14px;
    color: #777;
}
.newproshop a:hover {
    color: #2588d9;
}

/*----------------滚屏-----------------*/
.section {
    width: 100%;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.section1 {
    background: url(../images/mb-section1.png) no-repeat center #1e1e1e;
    width: 100%;
    height: 100%;
}
.section1 .btit , .section2 .btit, .section3 .btit, .section4 .btit {
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: #fffefe;
    position: relative;
    margin-top: 180px;
    font-weight: 100;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    transition: all 0.7s;
}
.ballwords {
    width: 998px;
    margin: 5px auto;
    text-align: center;
    font-size: 18px;
    color: #ccc;
    position: relative;
    margin-top: 25px;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    transition: all 0.7s;
}
.ballimg {
    position: absolute;
    bottom: -600px;
    left: 34%;
    transition: all 1s;
    width: 35%;
}
.ballimg img {
    width: 100%;
}
.ballimg2 {
    position: absolute;
    bottom: -600px;
    left: 34%;
    transition: all 1s;
    width: 32%;
}
.ballimg2 img {
    width: 100%;
}
.section2 {
    background: url(../images/mb-section1.png) no-repeat center #1e1e1e;
    width: 100%;
    height: 100%;
}

.colum2-3 {
    margin: 50px auto;
    width: 100%;
    text-align: center;
    position: relative;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    transition: all 0.7s;
}
.colum2-3 li {
    display: inline-block;
    width: 310px;
    border-right: 1px solid #999;
    padding: 0 40px;
}
.colum2-3 li:nth-child(3)
{
    border-right: none;
}
.colum2-3 .subtit {
    color: #fffefe;
    font-size: 20px;
    font-weight: 200;
}
.colum2-3 .subtit span {
    font-size: 40px;
}
.colum2-3 .subinfo {
    font-size: 16px;
    color: #ccc;
    width: 265px;
    overflow: hidden;
    word-break: break-all;
    line-height: 32px;
    margin-left: 22px;
    margin-top: 10px;
}

.section3 {
     background: url(../images/mb-section1.png) no-repeat center #1e1e1e;
     width: 100%;
     height: 100%;
 }
.section4 {
    background: url(../images/mb-section1.png) no-repeat center #1e1e1e;
    width: 100%;
    height: 100%;
}
.mb-step {
    width: 100%;
    margin: 60px auto;
    text-align: center;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    transition: all 0.7s;
    z-index: 30;
}
.mb-circle {
    position: absolute;
    width: 50%;
    left: 25%;
    z-index: 5;
    bottom: -600px;
    transition: all 1s;
}
.mb-circle img {
    width: 100%;
}
.mb-vertical-pic {
    position: absolute;
    width: 35%;
    left: 32%;
    z-index: 15;
    bottom: -600px;
    transition: all 1s;
}
.mb-vertical-pic img {
    width: 100%;
}
.mb-hand {
    position: absolute;
    width: 18%;
    left: 43%;
    bottom: -800px;
    z-index: 20;
    transition: all 1s;
}
.mb-hand img {
    width: 100%;
}
/*光触媒A*/
.cata-a-1 {
    width: 100%;
    height: 100%;
    FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#fff,endColorStr=#e9e9e9) !important; /*IE 6 7 8*/
    background: -ms-linear-gradient(top, #fff,  #e9e9e9) !important;        /* IE 10 */
    background:-moz-linear-gradient(top,#fff,#e9e9e9) !important;/*火狐*/
    background:-webkit-gradient(linear, 0% 0%, 0% 100%,from(#fff), to(#e9e9e9)) !important;/*谷歌*/
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#e9e9e9)) !important;      /* Safari 4-5, Chrome 1-9*/
    background: -webkit-linear-gradient(top, #fff, #e9e9e9) !important;   /*Safari5.1 Chrome 10+*/
    background: -o-linear-gradient(top, #fff, #e9e9e9) !important;  /*Opera 11.10+*/
}
.catatit {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #888;
    position: relative;
    margin-top: 160px;
    font-weight: 100;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    transition: all 0.7s;
}
.catapic1 {
    width: 30.5%;
    position: absolute;
    bottom: 0;
    left: -30%;
    z-index: 20;
    transition: all 1s;
}

.catapic1 img {
    width: 100%;
}
.catapic2 {
    width: 32%;
    position: absolute;
    bottom: -4%;
    left: 138%;
    z-index: 20;
    transition: all 1s;
}

.catapic2 img {
    width: 100%;
}

.cata-a-2 {
    width: 100%;
    height: 100%;
    FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=1,startColorStr=#fff,endColorStr=#e9e9e9) !important; /*IE 6 7 8*/
    background: -ms-linear-gradient(left, #fff,  #e9e9e9) !important;        /* IE 10 */
    background:-moz-linear-gradient(left,#fff,#e9e9e9) !important;/*火狐*/
    background:-webkit-gradient(linear, 100% 0%, 0% 0%,from(#fff), to(#e9e9e9)) !important;/*谷歌*/
    background: -webkit-gradient(linear, 100% 0%, 0% 0%, from(#fff), to(#e9e9e9)) !important;      /* Safari 4-5, Chrome 1-9*/
    background: -webkit-linear-gradient(left, #fff, #e9e9e9) !important;   /*Safari5.1 Chrome 10+*/
    background: -o-linear-gradient(left, #fff, #e9e9e9) !important;  /*Opera 11.10+*/
}
.big-cataimg {
    width: 36%;
    position: absolute;
    top: 16%;
    left: 250%;
    z-index: 20;
    transition: all 1s;
}
.big-cataimg img {
    width: 100%;
}
.cata2-instruct {
    position: absolute;
    left: -125%;
    top: 23%;
    transition: all 1s;
}

.cata2-instruct li {
    font-size: 20px;
    font-weight: 100;
    color: #888;
    list-style: disc;
    margin-bottom: 40px;
}
.cata2-instruct li.cata-tit {
    font-size: 40px;
    list-style: none;
    margin-bottom: 50px;
}

.cata-a-3 {
    width: 100%;
    height: 100%;
    FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=1,startColorStr=#e9e9e9,endColorStr=#fff) !important; /*IE 6 7 8*/
    background: -ms-linear-gradient(left, #e9e9e9,  #fff) !important;        /* IE 10 */
    background:-moz-linear-gradient(left,#e9e9e9,#fff) !important;/*火狐*/
    background:-webkit-gradient(linear, 100% 0%, 0% 0%,from(#e9e9e9), to(#fff)) !important;/*谷歌*/
    background: -webkit-gradient(linear, 100% 0%, 0% 0%, from(#e9e9e9), to(#fff)) !important;      /* Safari 4-5, Chrome 1-9*/
    background: -webkit-linear-gradient(left, #e9e9e9, #fff) !important;   /*Safari5.1 Chrome 10+*/
    background: -o-linear-gradient(left, #e9e9e9, #fff) !important;  /*Opera 11.10+*/
}

.cata3-img {
    position: absolute;
    left: -66%;
    top: 16%;
    transition: all 1s;
    width: 36%;
}

.cata3-img img {
    width: 100%;
}
.cata3-instruct {
    position: absolute;
    left: -140%;
    top:20%;
    transition: all 1s;
}

.cata3-instruct li {
    font-size: 22px;
    font-weight: 100;
    color: #888;
    margin-bottom: 60px;
}

.cata3-instruct li.cata-tit {
    font-size: 40px;
    list-style: none;
    margin-bottom: 50px;
}

.cata3-bt {
    text-align: center;
    width: 100px;
    padding: 0 10px;
    border-right: 1px solid #888;
    border-left: 1px solid #888;
    line-height: 22px;
}
.cata3-st {
    margin-top: 30px;
    font-size: 16px;
}


    /*--动画-----*/
.active .btit, .active .ballwords, .active .colum2-3, .active .mb-step, .active .catatit  {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transition-delay: 0.6s;
}
.active .ballimg {
    bottom: -2%;
    transition-delay: 0.7s;
}
.active .ballimg2 {
    bottom: -2%;
    transition-delay: 0.7s;
}
.active .mb-hand {
    bottom: -4%;
    transition-delay: 1.3s;

}
.active .mb-vertical-pic {
    bottom: -3%;
    transition-delay: 1s;
}
.active .mb-circle {
    bottom: -4%;
    transition-delay: 0.7s;
}
.active .catapic2 {
    left: 38%;
    transition-delay: 0.7s;
}
.active .catapic1 {
    left: 30%;
    transition-delay: 0.7s;
}
.active .big-cataimg {
    left: 53%;
    transition-delay: 0.7s;
}
.active .cata2-instruct {
    left: 18%;
    transition-delay: 0.7s;
}
.active .cata3-instruct {
    left: 45%;
    transition-delay: 0.7s;
}
.active .cata3-img {
    left: 6%;
    transition-delay: 0.7s;
}


/*---------------动画结束----------------*/

/*-----导航按钮重写样式----------*/
#fp-nav ul li, .fp-slidesNav ul li {
    margin: 15px !important;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    height: 12px !important;
    width: 12px !important;
    border: 0 !important;
    margin: 0 !important;
    background: url(../images/cata-icon.png) center no-repeat;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    background: url(../images/cata-icon-sel.png) center no-repeat;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    background: url(../images/cata-icon-sel.png) center no-repeat;
}
/*-------------------------------产品中心结束--------------------------------*/


/*-------------案例   新闻 共用部分--------------*/
.conlist {
    background: #fff;
    z-index: 18;
    position: relative;
    overflow: hidden;
}
.conlist-lf {
    width: 205px;
    margin: 45px 50px 0 45px;
}
.conlist-tit {
    position: relative;
    margin-bottom: 50px;
}
.conlist-tit .contit1 {
    font-size: 24px;
    color: #333;
}
.conlist-tit .contit2 {
    font-size: 18px;
    color: #bbb;
}

.conlist-nav li {
    position: relative;
    /*height: 60px;*/
    border-top: 1px solid #ddd;
    line-height: 60px;
}
.conlist-nav li:nth-child(1)
{
    border-top: none;
}
.conlist-nav li a {
    font-size: 14px;
    color: #888;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: inline-block;
    width: 190px;
    height: 24px;
    line-height: 24px;
}
.conlist-nav li a.active {
    color: #333;
    margin-left: 5px;
    border-left: 2px solid #2588d9;
    padding-left: 15px;
}
.conlist-nav li:hover a {
    border-left: 2px solid #2588d9;
    padding-left: 15px;
    transform: translate(15px, 0);
    -ms-transform: translate(15px, 0);
    -webkit-transform: translate(15px, 0);
    -o-transform: translate(15px, 0);
    -moz-transform: translate(15px, 0);
}
.conlist-nav li:hover a.active {
    color: #333;
    margin-left: 5px;
    border-left: 2px solid #2588d9;
    padding-left: 15px;
}
.conlist-rt {
    width: 850px;
    min-height: 1024px;
    position: relative;
    overflow: hidden;
    margin-top: 165px;
}
.conlist-nav li:hover.hasSubNav .conlist-subnav {
    display: block;
}
.conlist-subnav.active {
    display: block;
}
.conlist-subnav.cc .cls-items a {
    color: #333;
}
.conlist-nav li:hover .conlist-subnav .cls-items a {
    color: #888;
    border: none;
    transform: translate(6px, 0);
    -ms-transform: translate(6px, 0);
    -webkit-transform: translate(6px, 0);
    -o-transform: translate(6px, 0);
    -moz-transform: translate(6px, 0);
}
.conlist-subnav {
    overflow: hidden;
    position: relative;
    text-indent: 4px;
    display: none;
    margin-top: -10px;
    padding-bottom: 10px;
}
.cls-items {
    position: relative;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
}
.conlist-nav li .cls-items a:hover {
    color: #333 !important;
}
.conlist-nav li .cls-items a {
    border: none;
    color: #888;
    font-size: 13px;
    display: inline-block;
}

/*--------------内容详情页面---------------*/
.show-detail {
    margin-top: 60px;

}
.showlf {
    position: relative;
    width: 760px;
    overflow: hidden;

}
.showtit {
    font-size: 20px;
    color: #333;
	margin-top:20px; text-align:center;
	border-bottom:1px dotted #f3f3f3;
	padding-bottom:15px;
}
.showtime {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
.bllf {
    border-left: 2px solid #2588d9;
    padding-left: 10px;
}
.show-parts {
    margin-top: 25px;
    width: 100%;
    border-bottom: 1px dashed #ececec;
    overflow: hidden;
    padding-bottom: 10px;
}
.show-parts a {
    line-height: 12px;
    height: 12px;
    font-size: 12px;
    color: #666;
}
.show-parts a span, .show-parts a:hover {
    color: #2588d9;
}
.showcontent {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    word-break: break-all;
    width: 100%;
    min-height: 600px;
}

.showcontent p {
    font-size: 16px;
    line-height: 30px;
}
.showcontent img{ max-width:90%; text-align:center;}
.show-turn {
    margin-top: 40px;
    border-top: 1px dashed #ececec;
    padding-top: 30px;
}
.show-turn div {
    margin-bottom: 20px;
}
.show-turn a {
    font-size: 15px;
    color: #888;
}
.show-turn a:hover {
    color: #2588d9;
}
.showrt {
    position: relative;
    width: 300px;
    overflow: hidden;
}

.showtitbtn {
    width: 80px;
    font-size: 13px;
    color: #fff;
    background: #2588d9;
    text-align: center;
    padding: 8px 0;
}

.show-hot {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
.show-hot li {
    padding-top: 25px;
    border-bottom: 1px dashed #ececec;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.show-hot-cover {
    width:90%;
    font-size: 0;
	height:180px; overflow:hidden;
}
.show-hot li:hover .show-hot-cover img {
    transform: scale(1.1, 1.1);
    transition: transform 1s ease 0s;
}
.show-hot-cover img {
    width: 100%;
    height: auto;
	min-height:180px;
    transform: translateZ(0px);
    transition: transform 1s ease 0s;
}
.show-hot-info {

    margin-top: 10px;
}
.show-hot li:hover .tit, .show-hot li:hover .more {
    color: #555;
}
.show-hot-info .tit {
    color: #999;
    font-size: 16px;
    width: 256px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show-hot-info .time {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}
.more-eye {
    background: url(../images/icon-eye.png) center no-repeat;
    width: 15px;
    height: 9px;
    margin-left: 16px;
    margin-right: 4px;
}

.show-hot li:hover .more-arrow , .rtactive a:hover .more-arrow {
    background: url(../images/icon-mini-arrow-sel.png) center no-repeat;
}
.more-arrow {
    background: url(../images/icon-mini-arrow.png) center no-repeat;
    width: 4px;
    height: 8px;
    margin-left: 8px;
}
.rtactive {
    margin-top: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ececec;
    margin-bottom: 20px;
}
.rtactive a:hover img{
    transform: scale(1.1, 1.1);
    transition: transform 1s ease 0s;
}
.rtactiveimg {
    width: 430px;
    overflow: hidden;
    transform: translateZ(0px);
    transition: transform 1s ease 0s;
    font-size: 0;
}
.rtactiveimg img {
    width: 100%;
}
.rtactiveinfo {
    margin-top: 15px;

}
.rtactiveinfo .t1 {
    font-size: 16px;
    color: #999;
}
.rtactiveinfo .t2 {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rtactive .more {
    position: relative;
    margin-right: 8px;
    margin-top: 22px;
    font-size: 14px;
    color: #999;
}
.rtactive a:hover .more ,.rtactive a:hover .rtactiveinfo .t1{
    color: #555;
}


/*------------联系我们-----------------*/
#map {
    width: 100%;
    height: 400px;
}
.contactcontain {
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 108px;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    margin-bottom: 20px;
}
.contact-list {
    margin: 20px 50px;
}
.contact-list li {
    float: left;
    width: 212px;
}

.ctbox {
    margin-left: 12px;
}
.contact-list li .ct1 {
    font-size: 16px;
    color: #333;
}

.contact-list li .ct2 {
    width: 130px;
    position: relative;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
    line-height: 18px;
}
.ctline {
    margin: 5px 28px;
}



/*-----------------新闻中心-------------------*/
.conlist-news {
    position: relative;
    overflow: hidden;
}
.conlist-news li {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px dashed #ececec;
    overflow: hidden;
    position: relative;
}
.news-cover {
    width: 212px;
    height: 160px;
    overflow: hidden;
    font-size: 0;
	 margin-right: 50px;
}
.news-cover img {
    width: 100%;
	min-height:160px;
}

.news-info {
    width: 400px;
    word-break: break-all;
    overflow: hidden;
    margin-top: 25px;
}
.newsintit {
    font-size: 18px;
    color: #888;
}

.newsindesc {
    color: #888;
    font-size: 13px;
    margin-top: 36px;
    line-height: 20px;
}
.conlist-news .news-time {
    margin-top: 50px;
    color: #888;
    font-size: 22px;
}
.newlistarrow{
    margin-top: 30px;
    margin-left: 100px;
}
.newlistarrow i {
    display: none;
    background: url(../images/icon-newslist-arrow.png) center no-repeat;
    width: 21px;
    height: 13px;
}
.conlist-news li:hover .newlistarrow i {
    display: block;
}
.conlist-news li:hover .newsintit, .conlist-news li:hover .news-time {
    color: #555;
}



/*-----------------------招商加盟---------------------------------*/
.join-content p{
    font-size: 14px;
    color: #888;
    line-height: 28px;
}
.join-content div {
    margin: 30px 0;
}
.joinc-img {
    width: 100%;
    font-size: 0;
}
.joinc-img img {
    width: 100%;
    vertical-align: middle;
}
.join-longline {
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed #ececec;
}

.joinc-tit {
    font-size: 18px;
    color: #666;
}
.joinegp {
    margin-left: 12px;
}

.join3tit {
    font-size: 18px;
    color: #666;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}
.join3line {
    width: 20px;
    height: 3px;
    margin-top: 0 !important;
    border-bottom: 2px solid #2588d9;
    margin-bottom: 12px !important;
}
.join-content li {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed #ececec;
}

.join4num {
    font-size: 66px;
    color: #eee;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.join4process {
    margin-left: 15px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.join4tit {
    font-size: 18px;
    color: #666;
    margin-top: 15px !important;
    margin-bottom: 16px !important;
}
.join4detail {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 690px;
    overflow: hidden;
    word-break: break-all;
}

.join6-content p {
    color: #888;
    font-size: 14px;
    line-height: 36px;
}
.join6-content .join-longline {
    margin: 30px 0;
}

.join6-table {
    width: 100%;
    border: 2px solid #000;
    text-align: center;
    line-height: 45px;
    font-size: 15px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 30px;
}
.join6-table td {
    border-left: 2px solid #000;
    border-top: 2px solid #000;
}


/*--------------------------分页样式--------------------------------*/

.pageBox {text-align: center;}
.pageBox a {background: #aaa;display:inline-block;margin-right:10px;color: #fff;width:34px;height:34px;font:bold 14px/34px arial;}
.pageBox a:hover,.pageBox a:active{background:#3aa9f2;color: #FFFFFF;text-decoration: none;}
.pageBox .cur { background: #3aa9f2;border: 1px solid #3aa9f2;text-decoration: none;}
.pageBox a.cur {color: #fff;}
.pageBox .disabled {width: 79px;}

.article-list-page {
    width: 780px;
    position: relative;
    margin: 40px auto;
    overflow: hidden;
    text-align: center;
}
.article-list-page li {
    display: inline-block;
    margin-right: 15px;
}
.article-list-page li a, .article-list-page li.first.hidden a, .article-list-page li.last.hidden a  {
    background: #aaa;
    color: #fff;
    display: inline-block;
    padding: 8px 12px;
}
.article-list-page li a:hover, .article-list-page li.selected a {
    background: #2b87d2;
}
.article-list-page li.first a,.article-list-page li.last a  {
    background: #2b87d2;
}


/*-----------返回成功提示-----------------*/
#mes_success,#mes_repeat,#mes_limit {
    background: rgba(0,0,0,0.77);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 11111;
    top: 0;
    right: 0;
    display: none;
}
.success_box {
    width: 30%;
    height: 160px;
    position: absolute;
    background: #fff;
    left: 35%;
    top:50%;
    margin-top: -100px;
}
.success_tit {
    position: relative;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-left: 10%;
}
.success_notice {
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    margin-left: 10%;
}
.success_btn {
    position: relative;
    float: right;
    margin-top: 20px;
    line-height: 30px;
    margin-right: 10%;
    width: 95px;
    height: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    background: #2588d9;
    text-align: center;
    vertical-align: middle;
}


/*-----------乐语左侧隐藏----------*/
.doyoo_pan_icon_inner {
    display: none !important;
}
#doyoo_panel {
    display: none !important;
    z-index: -5;
}


/*----------------首页加盟商风采++++----------------*/
.joinstylebg {
    background: url(../images/joinstylebg.jpg) no-repeat center;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}
.joinstylescroll {
    position: relative;
    overflow: hidden;
    width: 1120px;
    margin: 0 auto;
}
.joinstylescroll .swiper-slide {
    width: 260px;
    height: 350px;
    background: #fff;
    z-index:555;
    transition: 0.3s all ease-in-out;
}
.joinstylescroll .swiper-slide:hover {
    background: #2588d9;
    box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -moz-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
    -webkit-box-shadow:-2px 0 3px 0 rgba(0, 0, 0, 0.20), /*左边阴影*/
    2px 0 3px 0 rgba(0, 0, 0, 0.20), /*右边阴影*/
    0 3px 20px 0 rgba(0, 0, 0, 0.20); /*底边阴影*/
}
.joinstylescroll .swiper-slide .jscover {
	   width: 260px;
    height: 280px;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
}
.joinstylescroll .swiper-slide .jscover img {
    width:100%;
    height:auto;
}
.joinstylescroll .swiper-slide:hover .jscover{
    margin: 10px 7px;
}
.joinstylescroll .swiper-slide:hover .jscover  {
    width: 246px;
    height: 266px;
}
.joinstylescroll .swiper-slide:hover .jscoverline {
    opacity: 1;
}
.joinstylescroll .swiper-slide .jscoverline {
    position: absolute;
    top:20px;
    opacity: 0;
    transition: 0.5s all ease-in-out;
}
.joinstylescroll .swiper-slide:hover .jstitle {
    color: #fff;
}
.joinstylescroll .swiper-slide .jstitle {
    font-size: 16px;
    color: #333;
    transition: 0.5s all ease-in-out;
    width: 220px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    left: 15px;
    bottom: 26px;
}
.joinstylescroll .swiper-slide:hover .jstime {
    color: #9cd6ff;
}
.joinstylescroll .swiper-slide .jstime {
    font-size: 14px;
    color: #666;
    transition: 0.5s all ease-in-out;
    position: absolute;
    left: 15px;
    bottom: 20px;
}

.joinstyle-button-prev {
    background: url(../images/honorprev.png) center no-repeat;
    background-size: 37px 37px;
    position: absolute;
    width: 37px;
    height: 37px;
    margin-top: 280px;
    left: 120px;
    cursor: pointer;
}
.joinstyle-button-prev:hover {
    background: url(../images/honorprev-c.png) center no-repeat;
}
.joinstyle-button-next {
    background: url(../images/honornext.png) center no-repeat;
    background-size: 37px 37px;
    position: absolute;
    width: 37px;
    height: 37px;
    margin-top: -225px;
    cursor: pointer;
    right: 120px;
}
.joinstyle-button-next:hover {
    background: url(../images/honornext-c.png) center no-repeat;
}

#cnzz_stat_icon_1260153866 a {
    color: #999;
    position: absolute;
    bottom: 10px;
    left: 345px;
}
/*------------------------面包屑---------------------*/
.breadcrumb {
    font-size: 14px;
    color: #666;
    line-height: 14px;
    height: 14px;
    display: block;
    overflow: hidden;
    margin-top: 90px;
    margin-bottom: 45px;
    border-bottom: 1px dashed #ececec;
    padding-bottom: 10px;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb a:hover, .breadcrumb a span {
    color: #2588d9;
}
.elli_title {
    width: 420px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/*--------------------------- 优特派尔新增 -------------------------------------*/
.pro-utp {
    margin-top: 90px;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.puimg img{
    width: 100%;
    transition: all 1s ease;
    z-index: -1;
}
.pro-utp:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.puimg:hover img {
    transform: scale(1.05);
}
.pu-btn {
    display: inline-block;
    width: 169px;
    height: 49px;
    color: #2588d9;
    font-size: 19px;
    border: 1px #2588d9 solid;
    background: transparent;
    border-radius: 24px;
    position: absolute;
    z-index: 60;
    right: 0;
    margin-top: 448px;
    margin-right: 155px;
    cursor: pointer;
    transition: all 1s ease;
}

.pro-utp:hover .pu-btn {
    background: #2588d9;
    color: #fff;
}

/*---------------- 详细页 -----------------*/
.utbig-container {
    width: 1270px;
    margin: 0 auto;
    position: relative;
}
.ut-container {
    width: 1120px;
    margin: 0 auto;
    position: relative;
}
.utbanner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 125px;
}
.utbanner_nomargin {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ut1bg {
    background: url(../images/ut1-bg-new.png) right no-repeat #f0f0f0;
    width: 100%;
    height: 840px;
}
.ut1-blue {
    width: 100%;
    height: 288px;
    background-color: rgba(25, 87, 203, 0.74);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.ut1-title {
    background: url(../images/ut1.png) no-repeat left;
    width: 413px;
    height: 241px;
    position: relative;
    margin-top: 240px;
}
.ut1-pro {
    z-index: 12;
    position: absolute;
    margin-top: -275px;
    margin-left: 465px;
}
.ut1-link {
    position: relative;
    margin-top: 35px;
}
.ut1-link a {
    width: 226px;
    height: 56px;
    background-color: #fff;
    display: inline-block;
    color: #3e68ba;
    font-size: 25px;
    border-radius: 30px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 56px;
    font-weight: 300;
}
.ut1-link a i {
    margin-left: 25px;
    font-size: 30px;
    transition: 0.3s all ease;
}
.ut2bg {
    background: url(../images/ut4.png) no-repeat center #fff;
    width: 100%;
    height: 825px;
}
.ut2img {
    display: block;
    margin-top: 40px;
}
.ut3bg {
    background: url(../images/ut7.png) no-repeat center #eee;
    width: 100%;
    height: 642px;
}
.ut3-title {
    background: url(../images/ut5.png) no-repeat left;
    width: 475px;
    height: 358px;
    position: relative;
    padding-top: 180px;
}
.ut3-pro {
    background: url(../images/ut6.png) no-repeat left;
    width: 599px;
    height: 690px;
    position: absolute;
    margin-left: 665px;
    margin-top: -388px;
    z-index: 888;
}
.ut34br {
    background: #ccd5db;
    width: 100%;
    height: 210px;
}
.ut4bg {
    background: #ccd5db;
    width: 100%;
    height: 930px;
}
.ut4img-1, .ut4img-2, .ut4img-3 {
    margin: 0 auto;
    display: block;
}
.ut4img-2 {
    margin-top: 20px;
}
.ut4img-3 {
    margin-top: 30px;
}
.ut5bg {
    background: url(../images/ut12.png) no-repeat center #eee;
    width: 100%;
    height: 816px;
}
.ut5img1 {
    margin-top: 100px;
}
.ut5img2 {
    margin-left: 25px;
    margin-top: 50px;
}
.ut6bg {
    background: url(../images/ut16.png) no-repeat center #eee;
    width: 100%;
    height: 1023px;
}
.ut6img-1, .ut6img-2 {
    margin: 0 auto;
    display: block;
}
.ut6img-1 {
    margin-top: 60px;
}
.ut6img-2 {
    margin-top: 50px;
}
.ut7bg {
    background: url(../images/ut19.png) no-repeat center #eee;
    width: 100%;
    height: 795px;
}
.ut7img-1, .ut7img-2 {
    margin: 0 auto;
    display: block;
}
.ut7img-1 {
    margin-top: 70px;
}
.ut7img-2 {
    margin-top: 60px;
}
.ut7bg-nav {
    background: #363432;
    height: 195px;
    width: 100%;
}
.ut7-list li {
    float: left;
    width: 280px;
    height: 195px;
    border-left: 1px solid #dbd2c8;
    text-align: center;
}
.ut7-list li:nth-child(4) {
    border-right: 1px solid #dbd2c8;
}
.ut7l-tit {
    color: #e0c8ac;
    font-size: 22px;
    font-weight: 200;
    margin-top: 40px;
}
.ut7l-des {
    margin: 0 auto;
    width: 200px;
    overflow: hidden;
    word-break: break-all;
    color: #b9b4b2;
    font-size: 14px;
    font-weight: 200;
    margin-top: 20px;
    line-height: 28px;
}
.ut8bg {
    background: url(../images/ut20-silver.png) no-repeat center #eee;
    width: 100%;
    height: 960px;
}
.ut8img {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: 180px;
    margin-left: -210px;
    z-index: 0;
}
.ut8-btn {
    width: 220px;
    margin-left: 992px;
    margin-top: -280px;
    position: relative;
    z-index: 666;
}
.ut8-btn a {
    width: 60px;
    height: 150px;
    display: inline-block;
    z-index: 666;
}
.ut9bg {
    background: #fff;
    width: 100%;
    height: 860px;
}
.ut9-proinfo {
    display: block;
    margin: 0 auto;
    margin-top: 125px;
}