﻿@charset "utf-8";
.both {
    width: 100%;
}

.wrap {
    width: 1200px;
    /* display: flex;
    justify-content: space-between;*/
}

.wi580 {
    width: 580px;
}

.wi600 {
    width: 600px;
}


/*页面*/

.clearfix::before,
.clearfix::after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.top {
    line-height: 57px;
    width: 500px;
}

.top a {
    margin-right: 27px;
    float: left;
    font-size: 15px;
    color: #333333;
}

.top a:hover {
    text-decoration: underline;
}

.logo {
    width: 510px;
    height: 57px;
    /*background: url(../images/logo.png) no-repeat center;*/
}

.code {
    width: 131px;
    height: 28px;
    display: block;
    float: right;
    margin-top: 16px;
    /*background: url(../images/code.png) no-repeat center;*/
}

.top1 {
    width: 393px;
    height: 20px;
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
}


/*.logo{width: 272px; height: 62px; background: url(../images/logo.png) no-repeat center;}*/

.top1 a {
    color: #fff;
}


/*顶部*/

.nav {
    /*border-top: 1px solid #c0c0c0;*/
}

.navtab {
    margin: 0 19px;
    position: relative;
    float: left;
    cursor: pointer;
}

.navtab:first-child {
    margin-left: 11px;
}

.navtab:nth-child(8) {
    margin-right: 0;
}

.navtab p {
    position: relative;
    z-index: 2;
}

.navtab p a:before {
    border: 2px solid #eeeeee;
    bottom: -56px;
    left: -4px;
    content: " ";
    display: block;
    margin: 0px auto;
    position: relative;
    // -webkit-transition: all 280ms ease-in-out;
    // transition: all 280ms ease-in-out;
    width: 0;
    opacity: 0;
}

.navtab p a {
    display: block;
    text-align: center;
    height: 60px;
    padding: 0 20px;
    line-height: 53px;
    font-size: 16px;
    color: #fff;
}

.navtab p a:after {
    /*content: url(../images/navout.png);*/
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.navtab .one:after {
    content: "";
}

.navtab:hover .one:after {
    content: "";
}

.navtab p a img {
    margin-left: 5px;
}

.navtab .active a {
    color: #0069b9;
}

.navtab:hover a {
    color: #ffffff;
}

.navtab:hover p a:before {
    width: 100%;
    opacity: 1;
}

.navtab:hover p a:after {
    /*content: url(../images/navon.png);*/
}

.navtab:hover p a {
    color: #00bacb;
    background: #eeeeee;
}

.on a {
    color: #00bacb;
}


/*这里是我2级标题的效果*/

.navtabUlLi p a:before {
    border: 2px solid #eeeee;
    bottom: -56px;
    left: -4px;
    content: " ";
    display: block;
    margin: 0px auto;
    position: relative;
    // -webkit-transition: all 280ms ease-in-out;
    // transition: all 280ms ease-in-out;
    width: 0;
    opacity: 0;
}

.wnav2-1 {
    display: none;
    position: absolute;
    z-index: 2;
    // background: rgb(81, 206, 225);
    background-color: rgb(81, 206, 225, 0.7);
    width: 104px;
}

.wnav2 {
    display: none;
    position: absolute;
    z-index: 2;
    // background: rgb(81, 206, 225);
    background-color: rgb(81, 206, 225, 0.7);
    width: 109px;
}

.wnav3 {
    display: none;
    position: absolute;
    z-index: 2;
    // background: rgb(81, 206, 225);
    background-color: rgb(81, 206, 225, 0.7);
    width: 205px;
}

.wnav2 li,
.wnav3 li,
.wnav2-1 li {
    padding: 7px 15px 7px 15px;
}

.wnav2 li a,
.wnav3 li a {
    height: 23px;
    line-height: 23px;
    display: inline-block;
}

.wnav2 li:hover a,
.wnav3 li:hover a,
.wnav2-1 li:hover a {
    display: inline-block;
    height: 23px;
    line-height: 22px;
    border-bottom: 2px solid #fff;
}

.wnav2 li a,
.wnav3 li a,
.wnav2-1 li:hover a {
    // border-bottom: 3px solid rgb(81, 206, 225);
}


/* 动画*/

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
    50% {
        opacity: 0.5;
        -webkit-transform: translate3d(1%, -30%, 0);
        transform: translate3d(1%, -30%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft-1 {
    -webkit-animation: fadeInLeft 2s ease 0s both;
    animation: fadeInLeft 2s ease 0s both;
}

@keyframes fadeInLeftUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
    50% {
        opacity: 0.5;
        -webkit-transform: translate3d(1%, 30%, 0);
        transform: translate3d(1%, 30%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftUp-1 {
    -webkit-animation: fadeInLeftUp 2s ease 0s both;
    animation: fadeInLeftUp 2s ease 0s both;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0%, -100%, 0);
        transform: translate3d(0%, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown-1 {
    -webkit-animation: fadeInDown 2s ease 0s both;
    animation: fadeInDown 2s ease 0s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0%, 100%, 0);
        transform: translate3d(0%, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp-1 {
    -webkit-animation: fadeInUp 2s ease 0s both;
    animation: fadeInUp 2s ease 0s both;
}

@keyframes fadeInRightUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
    50% {
        opacity: 0.5;
        -webkit-transform: translate3d(-1%, 30%, 0);
        transform: translate3d(-1%, 30%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightUp-1 {
    -webkit-animation: fadeInRightUp 2s ease 0s both;
    animation: fadeInLeftUp 2s ease 0s both;
}

@keyframes fadeInRightDwon {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
    50% {
        opacity: 0.5;
        -webkit-transform: translate3d(-1%, -30%, 0);
        transform: translate3d(-1%, -30%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightDwon-1 {
    -webkit-animation: fadeInRightDwon 2s ease 0s both;
    animation: fadeInRightDwon 2s ease 0s both;
}

.fadeInLefts-1 {
    -webkit-animation: fadeInLefts 2s ease 0s both;
    animation: fadeInLefts 2s ease 0s both;
}

@keyframes fadeInLefts {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0%, 0);
        transform: translate3d(-100%, 0%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}


/*2018.10.23 首页改*/

.indexPart2 {
    // background: #f5f5f5;
}

.indexPart2 .indexJournalism {
    width: 600px;
    background: #fff;
    height: 336px;
}

.indexPart2 .indexResource {
    width: 580px;
    height: 336px;
    background: #fff;
}

.indexPart2 .indexJournalism h3 {
    font-size: 17px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    /*padding-left: 5px;*/
}

.indexJournalism .indexOneboxnote h3 {
    line-height: 15px;
    height: 15px;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.indexCentre {
    // background: #f5f5f5;
    height: 380px;
    /*padding-top: 48px;*/
}

.indexCentre .todayFrontBage {
    width: 264px;
    background: #f0f0f0;
    margin: 0 15px;
}

.indexCentre .todayFrontBageImg {
    display: inline-block;
    margin-right: 12px;
}

.indexCentre .todayFrontBageTxt {
    color: #444444;
}

.indexCentre .todayFrontBage ul li {
    padding: 20px 12px;
}

.indexCentre .todayFrontBage ul li div {
    cursor: pointer;
}

.indexCentre .todayFrontBage ul li:hover {
    background: rgba(245, 254, 254, 1);
}

.expertPerson {
    color: #666666;
}

.indexCentre .todayFrontBage .todayFrontactivate {
    background: rgba(245, 254, 254, 1);
}

.indexResourcecoIco {
    background: #1cbed6;
}

.indexResourcecoIco ul li {
    cursor: pointer;
}

.indexResourcecoIco .resourceLiImg1,
.indexResourcecoIco .resourceLiImg2,
.indexResourcecoIco .resourceLiImg3,
.indexResourcecoIco .resourceLiImg4,
.indexResourcecoIco .resourceLiImg5 {
    display: none;
}

.resourceExpert {
    width: 267px;
    margin-top: 43px;
}

.indexScience {
    width: 250px;
    ;
}

.resourceExpert h3 {
    display: inline-block;
    line-height: 30px;
    border-bottom: 3px solid #1cbed6;
    font-size: 17px;
    font-weight: bold;
}

.resourceExpertPerson {
    line-height: 40px;
}

.resourceExpertPerson span {
    font-size: 16px;
    font-weight: bold;
}

.resourceExpertPerson i {
    font-weight: bold;
}

.titleScience {
    font-size: 16px;
    color: #666666;
}

.titleScience1 {
    color: #888888;
}

.indexResourcecoIco ul li {
    line-height: 38px;
    padding: 9px 11px;
}

.menu .slideBoxer .swiper-slide img {
    width: 100%;
}

.toper {
    // background: #00bacb;
}

.toper_top {
    color: #ffffff;
    line-height: 70px;
}

.toper_top a {
    color: #1dafbd;
    font-size: 16px;
    border-right: 2px solid #00bacb;
    padding-right: 14px;
    display: inline-block;
    line-height: 18px;
}

.border_bottom {
    border-bottom: 1px solid #c0c0c0;
}

.onebg1 {
    background: url(../img/index/black.png) no-repeat center;
}

.onebgIndex {
    background: url(../img/index/activity-4.png) no-repeat center;
}

.wrap-1000 {
    width: 1000px;
}

.mt158 {
    margin-top: 158px;
}

.mt78 {
    margin-top: 78px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml33 {
    margin-left: 32px;
}

.onebox {
    width: 316px;
    float: left;
    /*padding-bottom: 20px;*/
    position: relative;
    height: 377px;
    margin-left: 26px;
}

.oneboximg,
.indexOneboximg {
    width: 514px;
    float: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.indexOneboximg {
    width: 300px;
}

.oneboximg p,
.indexOneboximg p {
    width: 95%;
    position: absolute;
    bottom: 0;
    height: 50px;
    color: #ffffff;
    line-height: 56px;
    background: #000000;
    /* text-align: center; */
    /* margin-left: 20px; */
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*这里是图片放大缩小的代码*/

.oneboximg img,
.indexOneboximg img {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
}

.oneboximg img:hover,
.indexOneboximg img:hover {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.indexNews {
    text-align: right;
}

.indexNews a {
    color: #919191;
}

.indexNews a:hover {
    color: #00bacb;
}

.indexNews a img {
    margin-left: 3px;
}

.journalismL {
    float: left;
    width: 316px;
    height: 391px;
    margin-left: 100px;
}

.journalismL2 {
    background: url(../img/index/journalism.2.png) no-repeat center;
}

.journalismL2 p {
    font-size: 18px;
    // float: left;
    text-align: center;
}

.journalismL2p1,
.journalismL2p2 {
    background: #fff;
    text-align: center;
    line-height: 39px;
    width: 120px;
    border-radius: 5px;
    opacity: 0.8;
}

.journalismL2p1 {
    margin: 28px 9px 9px 25px;
}

.journalismL2p3 {
    margin: 9px 9px 9px 25px;
    ;
}

.journalismL2p1 img,
.journalismL2p2 img {
    margin-top: 5px;
}

.journalismL2p2 {
    margin: 28px 28px 9px 9px;
}

.journalismL2p4 {
    margin: 9px 28px 9px 9px;
}

.journalismL3 {
    background: url(../img/index/journalism.3.png) no-repeat center;
}

.journalismL3 p {
    font-size: 18px;
    line-height: 50px;
    margin-left: 50px;
    margin-bottom: 16px;
    background: #fff;
    margin-right: 50px;
    border-radius: 5px;
    opacity: 0.8;
}

.journalismL3 p img {
    margin: 0 14px 0 35px;
}

.journalismL3p1 {
    margin-top: 20px;
    line-height: 50px;
}

.journalismL2 h2 {
    margin: 17px 0 0 30px;
    font-weight: bold;
}

.journalismL3 h2 {
    margin: 17px 0 0 36px;
}

.journalismL1 {
    height: 120px;
    margin-top: 10px;
    margin-right: 10px;
    color: #cccccc;
    cursor: pointer;
    background: #fff;
}

.onenav {
    position: absolute;
    text-align: center;
    line-height: 168px;
    top: 0;
    width: 75px;
    height: 168px;
    margin-top: 6px;
    cursor: pointer;
}

.twolink {
    width: 96px;
    height: 26px;
    display: inline-block;
    line-height: 26px;
    text-align: center;
    border-radius: 15px;
    background: #e5e5e5;
    color: #3762c5;
    font-size: 14px;
}

.twobg .onebox .oneboximg p {
    background: #3762c5;
}

.twobg .onebox {
    border-bottom: 2px solid #3762c5;
}

.oneboximg img {
    width: 520px;
}

.indexOneboximg img {
    width: 300px;
}

.oneboximg1 .morefont {
    line-height: 20px;
    height: 36px;
    padding: 10px 1%;
    width: 98%;
}

.layer {
    width: 90%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    line-height: 26px;
    padding: 5%;
    -webkit-transition: all 1000ms ease-out;
    transition: all 1000ms ease-out;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
}

#onebox1:hover .layer {
    top: 0;
}

#onebox1 h2 {
    font-weight: bold;
    margin: 17px 0 0 18px;
}

#onebox1 p {
    font-size: 18px;
}

#onebox1 .onebox1P {
    line-height: 71px;
    margin-top: 33px;
    background: #fff;
    padding-left: 45px;
    padding-right: 45px;
    width: 221px;
    border-radius: 5px;
    margin-left: 3px;
    opacity: 0.8;
}

#onebox1 {
    background: url(../img/index/journalism.1.png) no-repeat center;
}

#onebox1 .onebox1P1 {
    line-height: 71px;
    margin-top: 33px;
    background: #fff;
    padding-left: 45px;
    padding-right: 45px;
    width: 221px;
    border-radius: 5px;
    margin-left: 3px;
    opacity: 0.8;
}

#onebox1 .onebox1P2 {
    line-height: 71px;
    margin-top: 33px;
    background: #fff;
    padding-left: 45px;
    padding-right: 45px;
    width: 221px;
    border-radius: 5px;
    margin-left: 3px;
    opacity: 0.8;
}

#onebox1 .onebox1P img,
#onebox1 .onebox1P1 img,
#onebox1 .onebox1P2 img {
    margin-right: 30px;
}

.foot {
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #d0d0d0;
    margin-top: 50px;
    background: #00bacb;
}

.footbox {
    padding: 60px 0;
    /*background-color: #ffffff;*/
    color: #fff;
    background: #00bacb;
}

.mt24 {
    margin-top: 20px;
}

.bor-right {
    border-right: 1px solid #999999;
}

.footleft {
    width: 220px;
    height: 124px;
    border-right: 1px solid #fff;
}

.footmid {
    width: 410px;
    height: 124px;
    padding: 0 76px;
    font-size: 12px;
    border-right: 1px solid #fff;
}

.footright {
    width: 330px;
    height: 124px;
    margin-left: 70px;
}

.footright div {
    width: 292px;
}

.footright span {
    float: left;
    margin-bottom: 10px;
    font-size: 12px;
}

.footright span a {
    margin-left: 3px;
}

.ml47 {
    margin-left: 40px;
}

.footright a:hover {
    text-decoration: underline;
    color: #3762c5;
}

.footright a {
    color: #fff;
}

.footer {
    /*background: #3762c5;*/
    color: #ffffff;
    height: 72px;
    line-height: 72px;
}

.historyleft {
    width: 99px;
}

.historyleft li {
    height: 33px;
    line-height: 33px;
    font-size: 13px;
    text-align: center;
    text-indent: 0;
}

.activityOnebox {
    width: 372px;
    float: left;
    padding-bottom: 20px;
    position: relative;
    margin-top: 5px;
    /*height: 376px;*/
    margin-bottom: 5px;
    -webkit-box-shadow: #ccc 0px 0px 10px;
    margin-left: 14px;
    margin-right: 14px;
    -moz-box-shadow: #ccc 0px 0px 10px;
}

.activityOnebox .oneboximg {
    width: 372px;
}

.activityOnebox .oneboximg img {
    width: 372px;
    height: 230px;
}

.oneboxnoteTop {
    width: 372px;
    /*height: 235px;*/
}

.oneboxnoteTop p {
    margin-left: 20px;
    margin-right: 20px;
}

.oneboxnoteTop a:hover {
    background: #fff;
    color: #00bacb;
}

.ljxq1,
.ljxq11,
.ljxq2,
.ljxq21,
.ljxq3,
.ljxq31 {
    display: inline-block;
}

.ljxq11,
.ljxq21,
.ljxq31 {
    display: none;
}

.oneboxnoteA1,
.oneboxnoteA2,
.oneboxnoteA3 {
    display: inline-block;
    width: 329px;
    margin-top: 40px;
    border: 1px solid #fff;
    text-align: right;
    margin-right: 20px;
}

.oneboxnote,
.indexOneboxnote {
    float: left;
    height: 173px;
    margin-top: 20px;
    overflow: hidden;
    /*font-size: 16px;*/
}


/*.indexOneboxnote h3 {*/


/*line-height: 15px;*/


/*}*/

.oneboxnoteTop {
    width: 372px;
}

.oneboxnoteA {
    color: #00bacb;
    width: 72px;
    margin-left: 247px;
}


/*联系我们*/

.relationMap img {
    // background: url(../img/index/relation.png) no-repeat center;height: 439px;
    width: 100%;
}

.roomMap {
    margin-top: -3px;
}

.weTxt {
    color: #00babc;
}

.E20H2 {
    margin-left: 20px;
    margin-top: 54px;
}

.E20H2 h2 {
    color: #00babc;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 45px;
}

.E20H2 p {
    margin-bottom: 10px;
    font-size: 16px;
    width: 254px;
}

.E20Wide {
    width: 352px;
    margin-top: 74px;
    margin-left: 74px;
    float: left;
}

.E20Map {
    float: right;
    width: 672px;
    height: 433px;
    margin-top: 46px;
    background: url(../img/index/relation-3.png) no-repeat center;
    ;
}

.E20Plat {
    margin-top: 56px;
    height: 250px;
}

.E20Plat p {
    margin-bottom: 63px;
}

.nickname {
    float: left;
    margin-left: 376px;
}

.nickname input {
    position: relative;
    top: 30px;
    left: -36px;
    border: 1px solid #e0e0e0;
    height: 28px;
    width: 205px;
    padding: 0 10px;
}

.cellphone {
    float: left;
    margin-left: -20px;
}

.cellphone input {
    position: relative;
    top: 30px;
    left: -36px;
    border: 1px solid #e0e0e0;
    height: 28px;
    width: 205px;
    padding: 0 10px;
}

.leave {
    margin-left: 374px;
}

.leave textarea {
    width: 466px;
    height: 74px;
    margin-top: 10px;
}

.submit {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 100px;
}


/*精彩活动*/

.splendidMap img {
    // background: url(../img/index/splendid.png) no-repeat center;height: 439px;
    width: 100%;
}


/*科技前沿*/

.scienceMap img {
    // background: url(../img/index/science.png) no-repeat center;height: 439px;
    width: 100%;
    height: 100%;
}

.scienceLeading ul li {
    height: 200px;
    background: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.scienceLeading ul li:hover {
    background: #eeeeee;
}

.scienceLeading ul li:hover .LeadingCharacter {
    border-left: 3px solid #00bacb;
}

.LeadingImg {
    float: left;
    margin-top: 14px;
    margin-left: 56px;
}

.LeadingDiv {
    float: left;
    margin-top: 14px;
    margin-left: 30px;
}

.LeadingDiv h3 {
    margin-top: 20px;
}

.LeadingCharacter {
    border-left: 3px solid #fff;
    margin-top: 5px;
    color: #888888;
}

.LeadingCharacter p {
    padding: 0px 10px 10px 10px;
    margin-top: 10px;
}

.LeadingCharacter div {
    padding: 0 10px 0px 10px;
    /*这解开是会出现三个点*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    width: 784px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/*分页*/

.Ch {
    margin: 20px 0;
    font-size: 12px;
    text-align: center;
}

.Ch a,
.Ch button,
.Ch input,
.Ch label,
.Ch span {
    margin-right: 5px;
    display: inline-block;
}

.Ch input {
    width: 31px;
    height: 20px;
    padding: 0;
    text-align: center;
    vertical-align: bottom;
}

.Ch button {
    background: #09f;
    width: 25px;
    height: 20px;
    border: none;
    border-radius: 4px;
    color: #fff;
    line-height: 20px;
    cursor: pointer;
}

.Ch a {
    display: inline-block;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    color: #808080;
    /*border: 1px solid #ddd;*/
    line-height: 22px;
    padding: 0 5px;
}

.Ch a.Ch_Paging_choose {
    /*background: #09f;*/
    /*border: 1px solid #09f;*/
    color: #42c4c6;
}

.Ch a.Ch_paging_next,
.Ch a.Ch_paging_prev {
    border: none;
}

.Ch a.Ch_paging_first,
.Ch a.Ch_paging_last {
    border: none;
}


/*新闻中心*/

.journalismCenterMap img {
    // background: url(../img/index/center.png) no-repeat center;height: 439px;
    width: 100%;
    height: 100%;
}

#todayHear {
    background: #eeeeee;
}

.splendidActivity,
.Science {
    width: 250px;
    border-left: 3px solid #00bacb;
}

.splendidActivity h3,
.Science h3 {
    margin-left: 20px;
    font-size: 21px;
}

.newsphoto h3 {
    float: left;
    font-size: 21px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    color: #fff;
}

.newsphoto p {
    width: 80px;
    height: 5px;
    background: #00bacb;
    margin: 0 auto;
    margin-top: 30px;
}

.indexPart2:hover .newsphoto h3 a {
    color: #444444;
}

.policyClick {
    float: left;
    height: 50px;
    width: 132px;
    line-height: 50px;
    font-size: 20px;
    background: #009dab;
    border-left: 2px solid #009dab;
    border-right: 1px solid #009dab;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.superviseClick {
    float: left;
    height: 50px;
    width: 132px;
    line-height: 50px;
    font-size: 20px;
    border-left: 1px solid #009dab;
    border-right: 2px solid #009dab;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.bazaarClick,
.scienceClick,
.itemClick,
.solutionClick {
    float: left;
    height: 50px;
    width: 160px;
    line-height: 50px;
    font-size: 20px;
    border-left: 1px solid #009dab;
    border-right: 1px solid #009dab;
    text-align: center;
    color: #fff;
    cursor: pointer;
}


/*.indexPart2:hover .indexResource .resourceExpert a p {*/


/*color: #444444;*/


/*}*/

.indexPart2 .indexResource .resourceDetailDiv1 .resourceExpert a p {
    color: #888888;
}

.indexPart2:hover .indexJournalism .indexOneboxnoteExpert h3 {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv1 h3 a {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv1 .resourceExpert a p {
    color: #888888;
}

.indexPart2:hover .indexResource .resourceDetailDiv2 h3 a {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv3 h3 a {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv4 h3 a {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv5 h3 a {
    color: #444444;
}

.indexPart2:hover .indexResource .resourceDetailDiv2 a p {
    color: #888888;
}

.indexPart2:hover .indexResource .resourceDetailDiv4 a p {
    color: #888888;
}

.indexPart2:hover .indexResource .resourceDetailDiv4 p a {
    color: #888888;
}

.indexPart2:hover .indexResource .resourceDetailDiv5 p a {
    color: #888888;
}

.newsphoto span {
    float: right;
}

.todayNews ul li {
    float: left;
    width: 600px;
    height: 160px;
}

.todayCharacter {
    width: 365px;
    padding-right: 20px;
}

.todayCharacter i {
    color: #00bacb;
}

.todayCharacter p {
    color: #919191;
    line-height: 20px;
}

.todayCharacter h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
    margin-bottom: 5px;
}

.todayDetails:hover {
    color: #00bacb;
}

.DetailsYimg {
    margin-left: 5px;
}

.todayDetails:hover .DetailsYimg {
    display: none;
    margin-left: 5px;
}

.DetailsXimg {
    display: none;
}

.todayDetails:hover .DetailsXimg {
    margin-left: 5px;
    display: inline-block;
}

.todayCharacterBelowL,
.todayCharacterBelowR {
    width: 580px;
    padding-right: 20px;
}

.classifyCatalogue {
    width: 156px;
}

.classifyCatalogue p {
    text-align: center;
    background: #eeeeee;
    border-top: 1px solid #fff;
    line-height: 39px;
    font-size: 18px;
}

.classifyCatalogue p:hover {
    background: #00bacb;
    color: #fff;
}

.classifyCatalogue p:hover a {
    color: #fff;
}

.classifyCataLi i {
    // color: #c3c3c3;
    // display: block;
    // margin-left: 16px;
    // margin-top: 10px;
    color: #c3c3c3;
    margin-left: 16px;
    margin-top: 10px;
    float: right;
    margin-right: 30px;
}

.classifyCataLi h2 {
    display: inline-block;
    color: #3c689a;
    margin-top: 13px;
    font-weight: bold;
    font-size: 18px;
}

.classifyCataLi span img {
    margin-top: -9px;
    margin-right: 10px;
}

.classifyCataLi div {
    height: 90px;
    width: 805px;
}

.classifyCataLi div:hover {
    background: #f3f3f3;
    padding-left: 23px;
}

.classifyCataLi div:hover h2 {
    color: #607fa7;
}

.classifyCataLi p {
    margin-top: 5px;
    width: 1172px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.knowG {
    float: right;
    margin-top: 13px;
    margin-right: 36px;
    color: #919191;
}

.clearfixY {
    display: none;
}

.clearfixHear:hover a {
    color: #00babc;
}

.clearfixHear:hover a .clearfixY {
    display: block;
    display: inline-block;
}

.clearfixHear:hover a .clearfixZ {
    display: none;
}


/*资源中心*/

.resourceMap img {
    width: 100%;
}

.expertLi {
    // width: 286px;
    width: 209px;
}

.expertLi ul li {
    line-height: 85px;
    font-size: 16px;
    padding-left: 37px;
    border: 1px solid #b5b5b5;
    background: #f0f0f0;
    cursor: pointer;
}

.expertIntroduce {
    display: none;
}

.experCss1,
.experCss2,
.experCss3 {
    height: 393px;
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    width: 865px;
    padding: 47px 62px 0 62px;
}

#expertLi1 {
    border-right: 1px solid #fff;
    background: #fff;
    border-left: 2px solid #00bacb;
    color: #00bacb;
}

.experCss1 ul li,
.experCss2 ul li,
.experCss3 ul li {
    width: 260px;
    margin: 0 14px;
}

.experCss1 p,
.experCss2 p,
.experCss3 p {
    color: #888888;
}

.experCssName {
    // width: 120px;
    margin-top: 20px;
    // border-bottom: 2px solid #c3c3c3;
    margin-bottom: 15px;
}

.experCssName span {
    font-size: 18px;
    margin-right: 30px;
    color: #444444;
}

.experCssName i {
    color: #c3c3c3;
}

.Athread {
    background: #b5b5b5;
    display: inline-block;
    height: 181px;
    margin-left: 207px;
    width: 1px;
}

.libraryImg {
    height: 295px;
    width: 358px;
    margin-left: 4px;
    margin-right: 55px;
    margin-top: 27px;
}

.libraryImg:nth-child(3) {
    margin-right: 4px;
}

.libraryImg .oneboxnote {
    width: 305px;
    height: 30px;
    font-size: 16px;
    margin-left: 20px;
    color: #666666;
    line-height: 30px;
    border-left: 2px solid #00bacb;
    padding-left: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.libraryImg .oneboximg {
    width: 358px;
}

.lightspot {
    // background: url(../img/index/resource-4.png) no-repeat center;
}

.p5-picture {
    background: url(../img/index/resource-5.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture:hover {
    background: url(../img/index/resource-5-1.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture:hover .p5-picture .introduce {
    opacity: 1;
}

.p5-picture1 {
    background: url(../img/index/resource-6.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture1:hover {
    background: url(../img/index/resource-6-1.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture2 {
    background: url(../img/index/resource-7.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture2:hover {
    background: url(../img/index/resource-7-1.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture3 {
    background: url(../img/index/resource-8.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture3:hover {
    background: url(../img/index/resource-8-1.png) no-repeat center;
    width: 298px;
    height: 382px;
}

.p5-picture-1 {
    padding-top: 1px;
    height: 325px;
}

.p5-picture-1 p {
    width: 30px;
    height: 5px;
    background: #fff;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 35px;
}

.p5-picture-1 h2 {
    font-size: 33px;
    color: #fff;
    margin-top: 210px;
}

.introduce {
    width: 162px;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
    opacity: 0;
}

.p5-span-img {
    margin-left: -62px;
}

.p5-span-img1 {
    margin-left: 202px
}

.p5-span-img2 {
    margin-left: 170px;
}

.p5-top {
    margin-bottom: 10px;
}

.p5-pictureCK {
    line-height: 50px;
    width: 146px;
    margin: 0 auto;
    border: 1px solid #fff;
    margin-top: 30px;
    display: none;
}

.p5-pictureCK a {
    color: #fff;
}

.lightspot .p5-pictureCK a {
    color: #fff;
}

.p5-picture:hover .p5-pictureCK {
    display: block;
}

.p5-picture1:hover .p5-pictureCK {
    display: block;
}

.p5-picture2:hover .p5-pictureCK {
    display: block;
}

.p5-picture3:hover .p5-pictureCK {
    display: block;
}

.firmYlibrar {
    background: #2d2e35;
    height: 342px
}

.firmYlibrar .firmDotLi li {
    background: #2d2e35;
    display: inline-block;
}

.firmLibraryR {
    width: 513px;
    height: 480px;
}

.firmDot {
    text-align: left;
    /*margin-left: 42px;*/
}

.member p span {
    color: #00bacb;
    border: 2px solid #00bacb;
    display: inline-block;
    padding: 10px 28px 10px 28px;
    border-radius: 5px;
}

.firmDot .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    display: inline-block;
    /*border-radius: 100%;*/
    background: #fff;
    opacity: .2;
    border-radius: 25px;
}

.firmDot .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00babc;
}

.firmDotLi h1,
.firmDotLi p {
    color: #fff;
}

.firmDotP {
    background: #00bacb;
    height: 4px;
    width: 80px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.libraryJS {
    // height:330px;
    height: 317px;
}


/*全部新闻*/

.allSolid {
    // border-bottom: 1px solid #bfbfbf;
    // padding-bottom: 10px;
}

.allLeading h3 {
    margin-left: 13px;
}

.allLeading {
    margin-top: 10px;
}

.allLeading div {
    width: 100%;
}

.allLeadingUL ul li {
    height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
}


/*整体解决方案中心*/

.overallScheme img {
    // background: url(../img/index/overallScheme.png) no-repeat center;height: 439px;
    width: 100%;
    height: 100%;
}

.overallCentre {
    text-indent: 34px;
    line-height: 30px;
    color: #444444;
    font-size: 17px;
}

.location span {
    margin-right: 85px;
    font-size: 18px;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    border-bottom: 2px solid #00bacb;
}

.location i,
.location p {
    font-size: 17px;
    color: #222222;
}

.location p {
    height: 25px;
    line-height: 25px;
}

.location .hope {
    padding-top: 19px;
}

.askCategory {
    background: #e0f7f7;
    height: 300px;
    margin-top: 38px;
}

.darkSpan {
    margin-left: 205px;
    height: 406px;
}

.darkSpan span a,
.changeSpan span a,
.dirtSpan span a {
    color: #fff;
}

.darkSpan span {
    position: absolute;
    margin-top: -60px;
    font-size: 18px;
    margin-left: 16px;
}

.darkSpan p {
    position: absolute;
    margin-top: -23px;
    font-size: 18px;
    margin-left: 16px;
    background: #00babc;
    width: 80px;
    height: 4px;
    display: none;
}

.clearfix1 {
    height: 430px;
    padding-top: 10px;
}

.changeSpan,
.dirtSpan {
    margin-left: 107px;
}

.dirtSpan {
    margin-top: 80px;
}

.changeSpan span {
    position: absolute;
    margin-left: 20px;
    margin-top: -51px;
    font-size: 18px;
}

.changeSpan p {
    position: absolute;
    margin-left: 20px;
    margin-top: -15px;
    font-size: 18px;
    background: #00babc;
    width: 80px;
    height: 4px;
    display: none;
}

.dirtSpan span {
    position: absolute;
    margin-left: 20px;
    margin-top: -52px;
    font-size: 18px;
}

.dirtSpan p {
    position: absolute;
    margin-left: 20px;
    margin-top: -15px;
    font-size: 18px;
    background: #00babc;
    width: 80px;
    height: 4px;
    display: none;
}

.darkSpan1,
.darkSpan2,
.darkSpan3:hover {
    cursor: pointer;
}

.darkSpan .darkSpan1:hover p,
.changeSpan .darkSpan2:hover p,
.dirtSpan .darkSpan3:hover p {
    display: block;
}

.darkSpan .darkSpan1:hover,
.changeSpan .darkSpan2:hover,
.dirtSpan .darkSpan3:hover {
    box-shadow: darkgrey 0px 0px 15px 0px;
}

.onebg1Ul {
    margin-top: 70px;
}

.tu1 {
    float: left;
    position: relative;
    height: 195px;
    width: 167px;
    margin-left: 28px;
}

.tu1 .oneboximg {
    width: 200px;
    text-align: center;
    line-height: 200px;
}

.tu1 .oneboximg img {
    height: 150px;
    width: 150px;
}

.big,
.big2,
.big3,
.big4,
.big5,
.big6 {
    display: none;
}

.bigTu img {
    margin-top: -10px;
    width: 240px;
    height: 240px;
    margin-left: -20px;
}

.bigTu {
    width: 200px;
    text-align: center;
    line-height: 200px;
}


/*黑臭水体整体解决方案中心*/

#settingImgBT {
    // background: url(../img/blackSolveCentre/7-7.png) no-repeat center;
    padding-bottom: 36px;
}

.blackCentre img {
    background: url(../img/blackSolveCentre/blackSolveCentre.png) no-repeat center;
    width: 100%;
}

.resolveFile ul li {
    width: 310px;
    height: 210px;
    float: left;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
    margin-left: 68px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.resolveFile ul li:hover {
    // background: #f5f5f5;
    background-color: rgba(255, 255, 255, 0.7);
}

.resolveFile ul li:hover {
    // background: #f5f5f5;
    background-color: rgba(255, 255, 255, 0.7);
}

.resolveFile ul li p {
    text-align: center;
    color: #666666;
    margin: 4px;
    font-size: 12px;
}

.resolveFile ul li h3 {
    margin-bottom: 14px;
    margin-top: 6px;
}

.resolveFile ul li:hover h3 {
    color: #00babc;
}

.settingImg,
.settingImg2,
.settingImg3,
.settingImg4,
.settingImg5,
.settingImg6 {
    height: 70px;
    width: 70px;
    display: inline-block;
    padding: 14px;
}

.settingImg {
    background: url(../img/blackSolveCentre/1.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg {
    background: url(../img/blackSolveCentre/1-1.png) no-repeat center;
}

.settingImg2 {
    background: url(../img/blackSolveCentre/2.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg2 {
    background: url(../img/blackSolveCentre/2-2.png) no-repeat center;
}

.settingImg3 {
    background: url(../img/blackSolveCentre/3.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg3 {
    background: url(../img/blackSolveCentre/3-3.png) no-repeat center;
}

.settingImg4 {
    background: url(../img/blackSolveCentre/4.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg4 {
    background: url(../img/blackSolveCentre/4-4.png) no-repeat center;
}

.settingImg5 {
    background: url(../img/blackSolveCentre/5.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg5 {
    background: url(../img/blackSolveCentre/5-5.png) no-repeat center;
}

.settingImg6 {
    background: url(../img/blackSolveCentre/6.png) no-repeat center;
}

.resolveFile ul li:hover .settingImg6 {
    background: url(../img/blackSolveCentre/6-6.png) no-repeat center;
}

.superficialY {
    position: fixed;
    right: 0;
    top: 36%;
    text-align: center;
    width: 165px;
    height: 230px;
    background: #e8edf3;
    z-index: 3;
    border-radius: 5px;
}

#superficialY1 {
    position: fixed;
    right: 0;
    top: 36%;
    text-align: center;
    width: 344px;
    height: 244px;
    z-index: 3;
    border-radius: 5px;
}

.superficialY div a p {
    text-align: center;
    margin: 0 auto;
    background: url(../img/blackSolveCentre/blackAdvertising-3.png) no-repeat center;
    /* line-height: 23px; */
    border-radius: 10px;
    color: #fff;
    width: 130px;
    height: 28px;
}

.superficialY div a #indexFJ {
    text-align: center;
    margin: 0 auto;
    background: url(../img/index/indexFJ.jpg) no-repeat center;
    line-height: 34px;
    border-radius: 5px;
    color: #fff;
    width: 190px;
    height: 38px;
}

.superficialY h4 {
    line-height: 80px;
    font-size: 16px;
}

.superficialWipeTwp {
    text-align: right;
    margin-top: -90px;
}

.superficialY .superficialDiv {
    padding: 18px 13px 20px 13px;
}

.superficialWipe1 {
    cursor: pointer;
    // background: url(../img/blackSolveCentre/blackAdvertising-1.png) no-repeat center;
}

.superficialWipe1:hover {
    background: url(../img/blackSolveCentre/blackAdvertising-2.png) no-repeat center;
}

.superficialWipe {
    margin-top: -19px;
}

.superficialDiv {
    padding: 0 13px 0 13px;
    color: #444444;
}

.detailsUl {
    background: #f5f5f5;
}

.detailsBorder {
    border-bottom: 1px solid #bfbfbf;
}

.detailsUl p span,
.scienceSpan p span {
    margin-left: 16px;
    font-size: 18px;
    color: #000;
}

.detailsBorder .detailsUlBlack {
    margin-top: 10px;
    margin-bottom: 10px;
}

.detailsBorder .detailsUlBlack ul li {
    float: left;
    width: 386px;
    height: 286px;
}

.detailsBorder .detailsUlBlack ul li h3 {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 40px;
}

.detailsBorder .detailsUlBlack ul li p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    color: #222222;
    width: 320px;
    margin: 0 auto;
    text-align: center;
}

.detailsBorder .detailsUlBlack .detailsUlBlackDiv {
    text-align: center;
    border-right: 1px solid #bfbfbf;
    height: 160px;
}

.detailsBorder .detailsUlBlack .detailsUlBlackDiv img {
    height: 160px;
    width: 120px;
}

.detailsBorder .detailsUlBlack ul li:last-child .detailsUlBlackDiv {
    border-right: 1px solid #f5f5f5;
}

.detailsUlDiv {
    width: 866px;
    height: 178px;
}

.detailsUl h4,
.scienceSpan h4 {
    font-size: 15px;
    color: #000;
    line-height: 35px;
}

.detailsUl p,
.scienceSpan p {
    line-height: 23px;
    color: #666666;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.todayNewsLi ul li {
    width: 580px;
}

.todayNewsLi .todayCharacter {
    padding-right: 0px;
}

.todayNewsLi1,
.todayNewsLi2 {
    border-bottom: 1px solid #9e9e9e;
    margin-right: 20px;
}

.todayNewsLi3,
.todayNewsLi4 {
    margin-right: 20px;
    width: 580px;
    margin-top: 30px;
}


/*专家库*/

.specialistBank img {
    width: 100%;
}

.oneboxExpert,
.indexoneboxExpert {
    width: 520px;
    padding-bottom: 20px;
    position: relative;
    height: 200px;
    margin-left: 0px;
}

.indexoneboxExpert {
    width: 300px;
    padding-left: 5px;
    padding-bottom: 0px;
    height: 0px;
}

.oneboxnoteExpert,
.indexOneboxnoteExpert {
    width: 514px;
    float: left;
    height: 173px;
    margin-top: 20px;
    overflow: hidden;
    font-size: 16px;
}

.indexOneboxnoteExpert {
    margin-top: 8px;
    width: 300px;
}

.oneboxnoteExpert h1 {
    font-size: 20px;
    font-weight: bolder;
    width: 100%;
}

.oneboxnoteExpert p,
.indexOneboxnoteExpert p {
    color: #999999;
    font-size: 12px;
    line-height: 17px;
    margin-top: 5px;
}

.oneboxnoteAExpert,
.indexOneboxnoteAExpert,
.oneboxnoteAExpert,
.indexMore,
.indexScienceMore,
.indexProductMore,
.indexProductCase {
    display: inline-block;
    width: 100px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid #00bacb;
    color: #00bacb;
    margin-left: 0px;
    border-radius: 5px;
}

.indexOneboxnoteAExpert {
    margin-top: 8px;
    line-height: 25px;
}

.oneboxnoteAExpert:hover,
.indexOneboxnoteAExpert:hover {
    color: #fff !important;
    background: #00bacb;
}

.indexMore {
    margin-top: 40px;
    line-height: 25px;
}

.indexScienceMore {
    margin-top: 72px;
    line-height: 25px;
}

.indexProductMore {
    margin-top: 54px;
    line-height: 25px;
}

.indexProductCase {
    margin-top: 92px;
    line-height: 25px;
}

.indexMore:hover,
.indexScienceMore:hover,
.indexProductMore:hover,
.indexProductCase:hover {
    color: #fff !important;
    background: #00bacb;
}

.journalismLExpert {
    float: right;
    width: 600px;
    height: 410px;
    margin-left: 0px;
}

.newsInformationTopExpert {
    display: inline-block;
    width: 468px;
    height: 120px;
    margin-right: 10px;
}

.newsInformationTopExpert h3 {
    color: #222222;
}

.monthExpert {
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 44px;
    margin-left: 20px;
    margin-top: 13px;
}

.dayExpert {
    margin-left: 20px;
}

.newsInformationExpert {
    margin-top: 24px;
    font-size: 20px;
    color: #000;
}

.ExpertJournalism,
.ExpertTitle {
    // background: #f5f5f5;
}

.swiper-container,
.swiper-containerVery {
    width: 1200px;
    /*height: 390px;*/
    padding-top: 20px;
}

.swiper-slide,
.swiper-slideVery {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    /*display: flex;*/
    /*-webkit-box-pack: center;*/
    /*-ms-flex-pack: center;*/
    /*-webkit-justify-content: center;*/
    /*justify-content: center;*/
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*-webkit-align-items: center;*/
    align-items: center;
    text-align: left;
}

.swiper-slide h3 {
    color: #00babc;
    text-align: left;
    margin: 7px 0 7px;
    font-size: 16px;
}

.swiper-slideVery h3 {
    color: #00babc;
    text-align: left;
    margin: 10px 0 10px;
    font-size: 24px;
}

.swiper-slide div p {
    color: #666666;
    font-size: 12px;
}

.swiper-slideVery div p {
    color: #666666;
}

.swiper-button-prev {
    left: 1156px;
    right: auto;
    top: 23px;
    height: 20px;
    width: 20px;
    /*background: url(../img/specialistBank/1.png) no-repeat center;*/
}

.swiper-button-prev:hover {
    /* background: url(../img/specialistBank/1-1.png) no-repeat center;*/
}

.swiper-button-next {
    right: 0px;
    left: auto;
    top: 23px;
    height: 20px;
    width: 20px;
    /* background: url(../img/specialistBank/2.png) no-repeat center;*/
}

.swiper-button-next:hover {
    /*  background: url(../img/specialistBank/2-2.png) no-repeat center;*/
}


/*专家库上面的是老版本*/


/*专家库下面的是新版本专家库2019/4/24修改*/

.specialistAlter .side {
    width: 350px;
    height: 944px;
    background: #eef5f6;
}

.specialistAlter .specialist {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 8px;
    text-align: center;
    background: #54b0bd;
    width: 300px;
    margin: 0 auto;
    border-radius: 5px;
    line-height: 60px;
    margin-top: 21px;
    cursor: pointer;
}

.specialistAlter .seek {
    color: #fff;
    text-align: center;
    background: #54b0bd;
    width: 300px;
    margin: 0 auto;
    line-height: 118px;
    height: 118px;
    margin-top: 30px;
}

.specialistAlter .seek input {
    height: 45px;
    width: 180px;
    padding-left: 10px;
    padding-right: 36px;
    font-size: 15px;
    margin-left: 14px;
}

.specialistAlter .seek span {
    position: relative;
    height: 20px;
    top: 0px;
    left: -28px;
    cursor: pointer;
}

.specialistAlter .cutting,
.specialistAlter .industry,
.specialistAlter .search {
    display: none;
}

.specialistAlter .famous,
.specialistAlter .cutting,
.specialistAlter .industry,
.specialistAlter .search {
    width: 820px;
    background: #eef5f6;
}

.specialistAlter .famous ul li,
.specialistAlter .cutting ul li,
.specialistAlter .industry ul li,
.specialistAlter .search ul li {
    float: left;
    width: 160px;
    height: 221px;
    margin: 30px 22px 30px 23px;
    text-align: center;
    font-size: 12px;
    color: #727373;
}

.specialistAlter .figure {
    width: 824px;
    background: #eef5f6;
}

.specialistAlter .figure li h3 {
    text-align: center;
    width: 160px;
    line-height: 35px;
    color: #067c8d;
    font-weight: bold;
}

.specialistAlter .figure li p {
    white-space: normal;
    text-align: center;
    // width: 160px;
}

// .specialistAlter .figure #figure a {
// 	border-radius: 0px;
// 	border: 1px solid #067c8d;
// }
// .specialistAlter .figure #figure a :hover{
// 	background:#067c8d;
// }

/*专家介绍*/

.professorImg {
    width: 248px;
    border: 2px solid #00babc;
    margin: 0 40px 0 98px;
}

.professorMessage p {
    line-height: 35px;
}

.professorMessage h3 {
    font-weight: bold;
    height: 30px;
    width: 160px;
    line-height: 30px;
    border-bottom: 2px solid #666666;
    font-size: 19px;
}

.personageResume {
    height: 53px;
    line-height: 53px;
    font-size: 18px;
}

.personageResume p {
    margin-left: 20px;
    line-height: 30px;
}

.personageResumeP {
    background: #6cc4e4;
    height: 230px;
    padding: 30px;
}

.personageResumeP p {
    line-height: 35px;
    color: #444444;
}

.photoIndividual li {
    float: left;
    margin: 40px;
    box-shadow: darkgrey 0px 0px 30px 3px;
}


/*技术库*/

.scienceBank img {
    width: 100%;
}

.query input {
    border: 2px solid #00bacb;
    padding: 2px 20px 2px 8px;
    ;
}

.query span {
    position: relative;
    right: 30px;
    background: url(../img/specialistBank/3.png) no-repeat center;
    display: inline-block;
    height: 15px;
    width: 24px;
    cursor: pointer;
}

.query span:hover {
    background: url(../img/specialistBank/3-3.png) no-repeat center;
}

.expertBank {
    // background: #f7f7f7;
}

.experCssArt1 {
    border-right: 1px solid #fff;
}

.experCssArt1,
.experCssArt2,
.experCssArt3 {
    height: 229px;
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    // width: 850px;
    width: 928px;
    padding: 10px 32px 20px 30px;
    background: #fff;
}

.experCssArt3 {
    // width: 888px;
    // padding: 10px 12px 20px 12px;
    width: 980px;
    padding: 10px 5px 20px 5px;
}

.waterNape {
    border-bottom: 2px solid #bfbfbf;
    height: 39px;
}

.expertWire .waterNape .active1 {
    border-bottom: 2px solid #00babc;
}

.expertWire {
    background: #fff;
}

#expertLi2 {
    border-right: 1px solid #fff;
    background: #fff;
    border-left: 4px solid #00bacb;
    color: #00bacb;
}

.experCssArt1 ul li,
.experCssArt2 ul li,
.experCssArt3 ul li {
    width: 150px;
    border-radius: 25px;
    text-align: center;
    background: #f5f5f5;
    margin: 10px 10px 10px 10px;
    line-height: 35px;
}

.experCssArt1Li ul li,
.experCssArt2Li ul li {
    width: 176px;
}

.experCss2Li ul li {
    width: 149px;
}

.experCssWire1 ul li,
.experCssWire2 ul li {
    width: 165px;
}

#active11Li li {
    width: 217px;
}

.experCssArt1 ul li:hover,
.experCssArt2 ul li:hover,
.experCssArt3 ul li:hover {
    background: #e0f7f7;
}

.expertWire .expertLi ul li {
    padding-left: 0px;
}

.expertWire .expertLi li img {
    padding-left: 18px;
    padding-right: 18px;
}

.expertWire .expertLi .expertLi2 img {
    margin-top: -7px;
}

.expertWire .expertLi .expertLi3 img {
    margin-top: -10px;
}

.sewageTechnology ul li {
    float: left;
    text-align: center;
    width: 298px;
    height: 52px;
    line-height: 52px;
    /*background: #eeeeee;*/
    border: 1px solid #aaaaaa;
}

.TechnologyList ul li {
    float: left;
    text-align: center;
    width: 298px;
    height: 176px;
    line-height: 52px;
    /*background: #eeeeee;*/
    border: 1px solid #aaaaaa;
}

.TechnologyTopic ul li {
    background: #eeeeee;
}

.TechnologyListImg img {
    margin-top: 21px;
}

// .TechnologyListDetails li span {
// 	text-align: left;
//     margin-left: 15px;
//     display: block;
//     color: #666666;
//     font-size: 17px;
//     font-weight: bold;
//     line-height: 30px;
//     margin-bottom: 13px;
//     margin-top: 10px;
//     overflow: hidden;
//     text-overflow: ellipsis;
//     white-space: nowrap;
// }
.TechnologyListDetails li p {
    margin-left: 15px;
    line-height: 20px;
    color: #666666;
    margin-right: 15px;
}

.sideP p {
    text-align: center;
}

.sideP p img {
    margin-right: 18px;
}


/*技术介绍*/

.technologyBetween {
    background: #e0e0e0;
    /*padding: 30px;*/
    padding-top: 30px;
    padding-bottom: 30px;
}

.technologyBetween .divL {
    word-break: normal;
    width: 351px;
}

.technologyBetween .span1 {
    line-height: 25px;
    width: 230px;
    background: #fff;
    display: inline-block;
    padding: 0 10px;
    text-align: left;
}

.technologyBetween .divR {
    word-break: normal;
    width: 351px;
    /*height: 50px;*/
}

.technologyBetween .span2 {
    line-height: 25px;
    width: 230px;
    background: #fff;
    display: inline-block;
    padding: 0 10px;
    text-align: left;
}

.technologyBetween .span3 {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    line-height: 25px;
    width: 611px;
}

.technologyBetween .techniqueFruit {
    width: 830px;
    margin: 0 auto;
}

.technologyBetween ul li {
    float: left;
    width: 323px;
    margin: 0px 30px;
    line-height: 53px;
}

.technologyBetween ul .closeWord {
    width: 740px;
}

.theoryP1,
.theoryP2,
.theoryP3 {
    padding: 0 218px;
}

.technologyBetween .theoryP2Img img {
    margin-top: 10px;
}

.divjstj {
    margin: 0 auto;
    border: 1px solid #a2a2a2;
    background: #fff;
    padding: 5px;
    width: 764px;
}

.divjstj1 {
    margin: 0 auto;
    padding: 5px;
    width: 764px;
}

.divjstj1 img {
    margin-top: 10px;
    margin-bottom: 10px;
}

.divjstj1 div {
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    border: none;
}

td {
    border: solid #000 1px;
}

.theoryP1 textarea {
    width: 754px;
    height: 53px;
}

.theoryP1Referral {
    margin: 0 218px;
    border: 1px solid #a2a2a2;
    background: #fff;
    padding: 5px;
}

.theoryP2 textarea {
    width: 754px;
    height: 116px;
}

.theoryP3 textarea {
    width: 754px;
    height: 60px;
}

.technologyBetween p .present {
    width: 70px;
    display: inline-block;
    background: #00babc;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
}


/*技术库详情联系方式*/

.technologyBetween .contact {
    width: 830px;
    margin: 0 auto;
    margin-top: 30px;
}

.technologyBetween .contact li {
    float: left;
    width: 323px;
    margin: 7px 30px;
    line-height: 53px
}

.technologyBetween .contact li .contactdivL {
    word-break: normal;
    width: 323px;
}

.technologyBetween .contact li .contactdivR {
    word-break: normal;
    width: 323px;
}

// 技术详情改5-20 用的结构是产品详情的
.productDetailsDIV .technologyChangeMaturity {
    border: 1px solid #e4e4e4;
}

.productDetailsDIV .technologyChangeMaturity .maturityTXT {
    display: none;
}

.productDetailsDIV .detailsXQ .technologyApplicationTXT {
    display: none;
}


/*企业库*/

.enterpriseBank img {
    width: 100%;
}

hill #expertLi3 {
    width: 285px;
    height: 86px;
    border-bottom: 0;
    border-left: 0;
    border-right: 1px solid #b5b5b5;
    background: #f7f7f7;
}

#Technology_list ul {
    background: #f2f2f2;
    height: 178px;
}

#Technology_list ul:nth-child(odd) {
    background: #fff;
}

.TechnologyTopic {
    height: 54px;
}


/*企业介绍*/

.theoryP4 {
    padding: 0 218px;
}

.theoryP4 textarea {
    width: 754px;
    height: 200px;
}

.theoryP5 {
    width: 754px;
    height: 200px;
    background: #fff;
    text-align: center;
    margin: 30px auto;
}


/*案例库*/

.caseBank img {
    width: 100%;
}

#expertLi31 {
    // background: #f7f7f7;
    //    height: 86px;
    //    border-bottom: 1px solid #f7f7f7;
    //    border-left: 1px solid #f7f7f7;
    background: #fff;
    height: 86px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}

.CaseLi li {
    width: 225px !important;
}


/*案例介绍*/

.state p {
    color: #666666;
    width: 689px;
    /*height: 30px;*/
    line-height: 30px;
    font-size: 16px;
    word-wrap: break-word;
}

.stateImg {
    margin: 0px 30px 30px 30px;
}

.caseParticular {
    border-radius: 5px;
    background: #baeaea;
    margin-top: 40px;
    margin-bottom: 40px;
}

.caseParticular .caseParticularWater {
    font-weight: bold;
    font-size: 16px;
    margin: 40px;
    border-radius: 5px;
}

.waterNape ul .waterNape1 {
    float: left;
    width: 169px;
    background: #fff;
    margin: 5px 0px 10px 0px;
    line-height: 34px;
    border-radius: 0px;
    position: relative;
    border-bottom: 2px solid #fff;
}

.waterNape {
    border-bottom: 2px solid #bfbfbf;
    height: 39px;
}

.waterNape ul .waterNape1:hover {
    background: #fff;
    cursor: pointer;
}

.waterNapeBetails .experCssArt1,
.waterNapeBetails .experCssArt2 {
    // width: 892px;
    // padding: 10px 10px 20px 10px;
    width: 980px;
    padding: 10px 5px 20px 5px;
}

.waterNapeBetails .waterNape .active {
    border-bottom: 2px solid #bfbfbf;
}

.waterNapeBetails .waterNape .active1 {
    border-bottom: 2px solid #00babc;
}

.active2 img,
.active3 img,
.active3 img,
.active4 img,
.active5 img,
.active6 img,
.active7 img {
    display: none;
}

.active12,
.active13,
.active14,
.active15,
.active16 {
    display: none;
}

.waterNapeBetails .waterNape .active img {
    position: absolute;
    bottom: -7px;
    left: 50%;
}


/*产品库*/

.productBank img {
    width: 100%;
}

.productClassify {
    height: 330px;
    padding-bottom: 30px;
}

.productClassify .productClassifyLi ul li,
.productClassify .productClassifyLi {
    height: 80px;
}

.productClassifyLi {
    border: 1px solid #b5b5b5;
}

.productClassifyLi i {
    display: inline-block;
    line-height: 80px;
    margin: 0 30px;
}

.productClassifyLi ul li a {
    display: inline-block;
    background: #e7e7e7;
    line-height: 20px;
    padding: 10px;
    border-radius: 10px;
}

.productClassifyLi i a {
    display: inline-block;
    line-height: 30px;
    padding: 0 10px;
    background: #e7e7e7;
    border-radius: 10px;
}

.productClassifyLi1,
.productClassifyLi2,
.productClassifyLi3,
.productClassifyLi4,
.productClassifyLi5,
.productClassifyLi6,
.productClassifyLi7,
.productClassifyLi8,
.productClassifyLi9,
.productClassifyLi10,
.productClassifyLi11,
.productClassifyLi12,
.productClassifyLi13,
.productClassifyLi14,
.productClassifyLi15,
.productClassifyLi16,
.productClassifyLi7,
.productClassifyLi18,
.productClassifyLi19,
.productClassifyLi20 {
    background: #f0f0f0;
}

.equipmentTitle {
    height: 80px;
    line-height: 80px;
    width: 200px;
    text-align: center;
    border-right: 1px solid #b5b5b5;
    border-left: 3px solid #f0f0f0;
}

.equipmentTitleImg2,
.equipmentTitleImg4,
.equipmentTitleImg6,
.equipmentTitleImg8,
.equipmentTitleImg10,
.equipmentTitleImg12,
.equipmentTitleImg14,
.equipmentTitleImg16,
.equipmentTitleImg18,
.equipmentTitleImg19,
.equipmentTitleImg20 {
    display: none;
}

.TechnologyListImgP p {
    margin-right: 15px;
}

.superficialZ {
    position: fixed;
    right: 0;
    top: 30%;
    text-align: center;
    width: 300px;
    height: 260px;
    background: #8eedee;
    z-index: 3;
    border-radius: 5px;
}

.superficialZ div a p {
    text-align: center;
    width: 190px;
    margin: 0 auto;
    background: #00babc;
    line-height: 34px;
    border-radius: 5px;
    color: #fff;
}

.superficialZ h4 {
    line-height: 60px;
    font-size: 16px;
    margin-top: 20px;
}

.superficialDiv {
    padding: 0 13px 0 13px;
}

.superficialZ div span {
    height: 66px;
    line-height: 66px;
    width: 90px;
    background: #ccf7f7;
    margin: 15px 10px 30px 10px;
    border-radius: 5px;
    display: inline-block;
}

.libraryDetails {
    margin: 0 auto;
    width: 1200px;
}


/*两山理论*/

.hill img {
    width: 100%;
}

.hillOverallCentre {
    color: #666666;
}

.threeMap .threeMap1 {
    background: url(../img/overallBlackOdor/hill-2.png) no-repeat center;
    width: 600px;
    height: 389px;
}

.threeMap .threeMap2 {
    height: 389px;
    width: 258px;
    background: #f9f9f9;
    margin-left: 35px;
}

.threeMap .threeMap3 {
    height: 389px;
    width: 258px;
    background: #f9f9f9;
}

.threeMap .threeMap2 div {
    height: 209px;
    width: 258px;
    background: url(../img/overallBlackOdor/hill-3.png) no-repeat center;
}

.threeMap .threeMap3 div {
    height: 209px;
    width: 258px;
    background: url(../img/overallBlackOdor/hill-4.png) no-repeat center;
}

.threeMap2:hover div {
    background: url(../img/overallBlackOdor/hill-3-3.png) no-repeat center;
}

.threeMap3:hover div {
    background: url(../img/overallBlackOdor/hill-4-4.png) no-repeat center;
}

.threeMap .threeMap2 h2,
.threeMap .threeMap3 h2 {
    color: #444444;
    font-size: 22px;
    margin-bottom: 20px;
}

.threeMap2:hover h2,
.threeMap3:hover h2 {
    color: #00babc;
}

.belowColour h3 {
    font-size: 19px;
}

.belowColour div {
    width: 48px;
    border-top: 2px solid #00bacb;
    margin-top: 5px;
}

.abstract .abstract1 {
    width: 208px;
    height: 270px;
    margin-top: 26px;
    background: url(../img/overallBlackOdor/hill-5.png) no-repeat center;
}

.abstract .abstract2 {
    margin-top: 26px;
    margin-left: 42px;
    color: #313131;
}

.abstract2 span {
    font-size: 18px;
    margin-right: 23px;
    color: #313131;
}

.abstract2 div {
    margin-top: 25px;
    width: 770px;
    word-wrap: break-word;
    color: #313131;
    line-height: 20px;
}

.hillCase {
    background: url(../img/overallBlackOdor/hill-6.png) no-repeat center;
}

.belowColour1 {
    margin: 70px 100px 83px 60px;
    height: 334px;
    width: 408px;
    background: url(../img/overallBlackOdor/hill-7.png) no-repeat center;
}

.belowColour2 {
    margin-top: 96px;
}

.belowColour2 h3 {
    font-size: 18px;
}

.belowColour2 p {
    font-size: 16px;
    color: #222424;
    margin-top: 36px;
}

.belowColour2 div {
    word-wrap: break-word;
    width: 555px;
    color: #666666;
    line-height: 23px;
}


/*技术评估*/

.assess img {
    width: 100%;
}

.slideshowBelowDiv {
    background: url(../img/assess/5.png) no-repeat center;
    height: 98px;
}

.slideshowBelowTop {
    background: url(../img/assess/6.png) no-repeat center;
    height: 69px;
}

.slideshowBelowText {
    text-indent: 25px;
    word-break: break-all;
    padding-top: 32px;
    line-height: 25px;
    color: #00babc;
    margin-left: 5px;
    margin-right: 5px;
}

.slideshowBelowTop .slideshowBelowText {
    padding-top: 27px;
}

.government1 {
    background: #00babc;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    margin-top: 23px;
    width: 83px;
    font-size: 15px;
    color: #fff;
}

.bankBusiness {
    width: 490px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 16px;
    margin-left: 20px;
    line-height: 20px;
}

.bankBusiness h4 {
    font-weight: bold;
}

.government2 {
    margin-top: 32px;
}

.artMapCharacter {
    background: #f5f5f5;
}

.assessStandard1,
.assessStandard2,
.assessStandard3 {
    margin: 47px 0 50px 0;
    width: 254px;
    height: 318px;
    background: #17b6be;
    opacity: 0.5;
}

.assessStandard1 {
    margin-left: 120px;
    /*background:url(../img/assess/1.png) no-repeat center ;*/
}

.assessStandard3 {
    margin-right: 120px;
    margin-left: 0px;
}

.assessStandard2 {
    margin-left: 99px;
    margin-right: 99px;
}

.assessStandard1 span,
.assessStandard2 span,
.assessStandard3 span {
    display: flex;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-left: 93px;
}

.assessStandard1 p,
.assessStandard2 p,
.assessStandard3 p {
    margin-left: 18px;
    margin-top: 5px;
    margin-right: 18px;
    color: #fff;
}

.assessStandard3 p {
    margin-top: 0px;
    text-align: center;
}

.assessStandard3 span {
    margin-bottom: 5px;
}

.gjx {
    height: 490px;
    width: 450px;
    background: url(../img/assess/assess-2.png) no-repeat center;
}

.ffl {
    height: 490px;
    width: 550px;
    background: url(../img/assess/assess-1.png) no-repeat center;
}

.gjx p {
    margin-left: 24px;
    line-height: 25px;
    font-size: 17px;
}

.gjx h3,
.ffl h3 {
    font-weight: bold;
}

.ffl ul {
    margin-left: 24px;
}

.ffl ul li img {
    margin-right: 4px;
}

.ffl ul li {
    width: 110px;
    font-size: 25px;
    line-height: 25px;
    color: #666666;
}


/*系统规划*/

.methodology p img {
    margin-top: -10px;
}

.methodology p span {
    font-size: 25px;
}

.methodologyH3 {
    border-left: 3px solid #00bacb;
    margin: 18px 24px;
    display: inline-block;
}

.methodology div h3 {
    margin-left: 20px;
    font-size: 18px;
}

.methodology div p {
    color: #666666;
    padding-left: 23px;
}


/*专项施治*/

.SpecialTreats img {
    width: 100%;
}

.providingImg {
    height: 346px;
    background: url(../img/assess/SpecialTreats-1.png) no-repeat center;
}

.providingImg div p {
    width: 453px;
    color: #666666;
}

.providingImgL,
.providingImgR {
    margin-top: 125px;
}

.providingImgL p {
    text-align: right;
}

.providingImgR p {
    text-align: left;
}

.providingImgP {
    margin-top: -52px;
}


/*智慧化支撑*/

.IntelligentSupport img {
    width: 100%;
}

.pageSeven .swiper-pagination-bullets {
    bottom: 40px;
}

.pageSeven .swiper-pagination-bullet-active {
    background: #00bacb;
}


/* pages */

.pages {
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: #666666;
    clear: both;
}

.pages a:link,
.pages a:visited,
.pages a:active {
    background: #FFFFFF;
    border: #DDDDDD 1px solid;
    padding: 6px;
    text-decoration: none;
}

.pages a:hover {
    background: #258CFF;
    border: #258CFF 1px solid;
    color: #FFFFFF;
    padding: 6px;
    text-decoration: none;
}

.pages strong {
    background: #258CFF;
    padding: 6px;
    border: #258CFF 1px solid;
    color: #FFFFFF;
}

.pages_inp {
    width: 32px;
    border: #DDDDDD 1px solid;
    color: #666666;
    padding: 4px;
    text-align: center;
}

.pages_btn {
    width: 32px;
    border: #FF6600 1px solid;
    color: #FFFFFF;
    padding: 4px 6px;
    background: #FF6600;
    font-weight: bold;
    font-size: 11px;
}

.pages label {
    background: #FFFFFF;
    border: #DDDDDD 1px solid;
    color: #666666;
    padding: 6px 6px;
}

.pages label em {
    color: red;
    font-weight: bold;
    font-style: normal;
}

.pages label span {
    font-weight: bold;
}

.pages cite {
    font-style: normal;
}

// 新闻列表改版 class==journalismLitAlter
// .journalismLitAlter{
// 	width: 1200px;
//     margin: 0 auto;
// }
.journalismLitAlterBA,
.currentAddressBA,
.m3BA {
    background: #eef5f6;
}

.currentAddressBA .nav {
    margin-left: 100px;
}

.m3BA {
    margin-top: -20px;
}

.journalismLitAlter {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.journalismLitAlterLI {
    border-right: 2px solid #000;
}

.journalismLitAlter ul li {
    width: 137px;
    float: left;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.journalismLitAlter .clearfix {
    margin-left: 175px;
    margin-right: 175px;
}

.journalismLitAlter ul li a {
    font-size: 17px;
    color: #000 !important;
}

.journalismLitAlter .journalismLitAlterLI .zf001:hover,
.journalismLitAlter .journalismLitAlterLI .zc001:hover,
.journalismLitAlter .journalismLitAlterLI .js001:hover,
.journalismLitAlter .journalismLitAlterLI .xm001:hover,
.journalismLitAlter .journalismLitAlterLI .xm001:hover,
.journalismLitAlter .journalismLitAlterLI .fbdc001:hover {
    color: #58c9d6 !important;
}

.currentAddress {
    border-top: 2px solid #e0e0e0;
    width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.journalismLitAlterTitle {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.journalismLitAlterTitle h1 {
    font-weight: bold;
    background: #fff;
    padding-bottom: 20px;
}

.infoTitle {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
    background: #fff;
    padding-top: 20px;
}

.head-txt,
.related {
    width: 1200px;
    margin: 0 auto;
}

.currentAddressBAABq {
    color: #00457c;
}

.Newslink {
    width: 1000px;
    margin: 0 auto;
}

.Newslink ul li {
    line-height: 25px;
}

.Newslink ul li:hover a {
    color: #00babc
}

.m3BA div #content #article div div p img {
    margin-left: 0px;
}

// 产品详情
// .productDetailsDIV {
// 	background: #efefef !important;
// }
.productDetails {
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #fff;
}

.productDetailsH3 {
    color: #00babc;
    height: 40px;
    line-height: 40px;
    font-size: 19px;
}

.detailsPT {
    font-size: 16px;
    font-weight: bold;
    width: 68px;
    margin-left: 0px;
    border-bottom: 2px solid #00b6b7;
    margin-top: 10px;
    padding-bottom: 7px;
}

// .detailsULLI ul li {
// 	width: 49%;
//     float: left;
//     border: 1px solid #e3e3e3;
//     background: #fff;
//     word-wrap:break-word;
// }
.detailsULLI .detailsDIV span {
    width: 578px;
    padding: 10px;
    display: block;
    word-wrap: break-word;
    word-break: break-all;
    overflow: hidden;
    float: left;
}

.detailsULLI .detailsDIV ul li {
    // float: left;
    //    width: 544px;
    // width: 30%;
    border: 1px solid #e4e4e4;
    padding: 27px;
}

.detailsULLI .detailsTLCP ul li {
    float: left;
    width: 240px;
    border: 1px solid #e4e4e4;
    padding: 20px;
    margin-right: 24px;
    background: #fff;
}

.detailsULLI .detailsTLCP ul li h3 {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 10px;
}

.detailsULLI .detailsTLCP ul li p {
    color: #747474;
}

.detailsULLI {
    margin-bottom: 50px;
}

// 产品详情
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.productDetailsDIV {
    background: #fff;
}

.lbtu {
    background: #fff;
    padding-bottom: 30px;
    padding-top: 30px;
}

.productCP {
    float: right;
    border: 1px solid #e5e7e7;
    border-radius: 5px;
    background: #fff;
    width: 641px;
    padding: 38px;
}

.productCP h3 {
    font-size: 20px;
    color: #5e5e5e;
}

.detailsXQ {
    width: 95.5%;
    text-align: justify;
    text-justify: newspaper;
    word-break: break-all;
    float: left;
    padding: 27px;
    line-height: 26px;
    font-size: 16px;
}

.btn,
.btn-green,
.btn-blue,
.btn-red {
    color: #FFFFFF;
    font-size: 14px;
    width: 100px;
    line-height: 32px;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
}

.btn {
    background: #FFFFFF;
    border: #DDDDDD 1px solid;
    color: #333333;
}

.btn:hover {
    background: #D9D9D9;
    border: #CDCDCD 1px solid;
}

.btn-green {
    background: #1AAD19;
    border: #18A117 1px solid;
    color: #FFFFFF;
}

.btn-green:hover {
    background: #179B16;
    border: #159014 1px solid;
}

.btn-blue {
    background: #007AFF;
    border: #1E74D0 1px solid;
    color: #FFFFFF;
}

.btn-blue:hover {
    background: #0569D5;
}

.btn-red {
    background: #F8F8F8;
    border: #C6C6C6 1px solid;
}

.btn-red:hover {
    background: #CE3C39;
    border: #BF3835 1px solid;
    color: #FFFFFF;
}


/* 2019-10新版首页改*/

.newsphotoSlideshow .newsphotoLeft {
    width: 400px;
    height: 330px;
    float: left;
    margin-top: 12px;
    margin-bottom: 10px;
}

.newsphotoSlideshow .newsphotoRight {
    float: left;
    margin-top: 12px;
    margin-left: 12px;
    width: 786px;
    border: 1px solid #d7d7d7;
    height: 326px;
    margin-bottom: 12px;
}

.newsphotoSlideshow .newsphotoTXT {
    background: #00bacb;
    height: 50px;
    line-height: 50px;
    padding-left: 24px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    font-weight: 600;
}

.newsphotoSlideshow .newsphotoTXT a {
    color: #fff;
}

.newsphotoSlideshow .imgBelowTXT {
    background: #00bacb;
    height: 50px;
    line-height: 50px;
    padding-left: 24px;
    padding-right: 24px;
    background: #eeeeee;
    color: #666666;
    font-size: 14px;
}

.newsphotoSlideshow .swiper-container-horizontal>.swiper-pagination-bullets {
    /* bottom: 48px;*/
    bottom: 60px;
}

.newsphotoSlideshow .title_cn {
    text-align: center;
    font-weight: 700;
    font-size: 30px
}

.newsphotoSlideshow #new_box {
    width: 100%;
    padding: 50px 0;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 0
}

.newsphotoSlideshow .newtel {
    height: 50px;
    font-family: 微软雅黑;
    font-size: 18px;
    color: #666;
    background: #00bacb;
}

.newsphotoSlideshow .new_telst {
    width: 850px;
    margin: 0 auto;
    position: relative;
    top: 6px;
    text-align: center
}

.newsphotoSlideshow .new_telst li {
    width: 94px;
    line-height: 45px;
    text-align: center;
    float: left;
    display: inline;
    font-family: 微软雅黑;
    cursor: pointer;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    margin-top: -5px;
}

.newsphotoSlideshow .new_telst li.newon {
    color: #71c5cf;
    background: #fff;
    border-radius: 5px 5px 0 0;
}

.newsphotoSlideshow .new_telst li.newon a {
    color: #71c5cf;
    font-size: 18px;
}

.newsphotoSlideshow .new_telst li a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.newsphotoSlideshow .new_telst b {
    display: inline-block;
    width: 0;
    height: 0;
    margin-top: -3px;
    border-style: solid dashed dashed dashed;
    border-width: 9px;
    border-color: #217af0 #fff #fff #fff;
    overflow: hidden;
    zoom: 1;
    font-size: 0
}

.newsphotoSlideshow .new_lst {
    height: 277px;
    position: relative;
    overflow: hidden;
}

.newsphotoSlideshow .new_lst ul {
    position: absolute;
    left: 0
}

.newsphotoSlideshow .new-wrap .show {
    display: block
}

.newsphotoSlideshow li.new_cnlf {
    width: 746px;
    height: 44px;
    line-height: 44px;
    margin-left: 20px;
    border-bottom: 1px dashed #d7d7d7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newsphotoSlideshow li.new_cnlf p {
    width: 100%
}

.newsphotoSlideshow p.newlf_tel a {
    color: #217af0;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    display: block
}

.newsphotoSlideshow p.newlf_tel a:hover {
    color: #c33
}

.newsphotoSlideshow p.newlf_tx {
    font-size: 14px;
    line-height: 26px;
    color: #999;
    height: 105px;
    overflow: hidden
}

.newsphotoSlideshow li.new_cnrf {
    float: right;
    width: 820px;
    margin-left: 10px
}

.newsphotoSlideshow .newrf_lst dd {
    width: 368px;
    height: 85px;
    border: 1px solid #e4e4e4;
    float: left;
    margin-left: 35px;
    margin-bottom: 20px
}

.newsphotoSlideshow p.new_rq {
    width: 65px;
    height: 65px;
    background: #969393;
    float: left;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 15px;
    font-family: Arial, Helvetica, sans-serif
}

.newsphotoSlideshow p.new_rq span {
    display: block;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    line-height: 35px;
    padding-top: 5px
}

.newsphotoSlideshow p.newrf_tx {
    float: left;
    width: 270px;
    margin-top: 8px
}

.newsphotoSlideshow p.newrf_tx a {
    color: #333;
    font-size: 14px;
    display: block;
    line-height: 30px
}

.newsphotoSlideshow p.newrf_tx span {
    display: block;
    font-size: 12px;
    color: #999;
    height: 60px;
    overflow: hidden
}

.newsphotoSlideshow .newrf_lst dd:hover {
    width: 366px;
    height: 83px;
    border: 2px solid #217af0;
    box-shadow: 0 0 15px rgba(37, 125, 242, .27)
}

.newsphotoSlideshow .newrf_lst dd:hover p.newrf_tx a {
    color: #217af0
}

.newsphotoSlideshow .newrf_lst dd:hover p.new_rq {
    background: #217af0;
    margin-top: 9px;
    margin-left: 9px
}

.newsphotoSlideshow .newrf_lst dd:hover p.newrf_tx {
    margin-top: 7px
}

.newsphotoSlideshow .mr0 {
    margin-right: 0
}

.VersionTwo .new_telst li {
    width: 123px;
}

.VersionTwo .new_lst_cn {
    float: left;
}

.VersionTwo .new_lst_cn .new_cnlf {
    width: 260px;
    float: left;
    margin: 3px;
    margin-left: 15px;
    margin-right: 15px;
    height: 110px;
}

.VersionTwo .new_telst p a {
    color: #fff;
}

.versionsThree .versionsThreeleft {
    float: left;
    width: 870px;
    margin-right: 12px;
    margin-bottom: 12px;
    border: 1px solid #d7d7d7;
}

.versionsThree .versionsThreeleft p span a {
    color: #fff;
}

.versionsThree .versionsThreeleft div {
    background: url(../img/index/newsphotoSlideshow-9.png) no-repeat center;
    height: 170px;
}

.versionsThree .versionsThreeleft p,
.versionsThreeWonderful .versionsThreeleft p {
    background: #00bacb;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.versionsThreeWonderful .versionsThreeleft p a {
    color: #fff;
}

.versionsThree .versionsThreeleft ul li {
    float: left;
    margin-left: 64px;
    margin-right: 64px;
    margin-top: 23px;
    margin-bottom: 23px;
}

.versionsThree .versionsThreeleft ul li img:hover {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.versionsThree .versionsThreeleft ul li img {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
}

.versionsThree .versionsThreeright {
    float: left;
    border: 1px solid #d7d7d7;
    height: 220px;
    margin-bottom: 12px;
}

.versionsThree .versionsThreeright p {
    background: #00bacb;
    width: 314px;
    height: 50px;
    line-height: 50px;
}

.versionsThree .versionsThreeright p span {
    margin-left: 23px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.wxtubiao1 {
    display: none;
    position: absolute;
    top: 37px;
    left: -29px
}

.wxtuBiao {
    cursor: pointer;
}

.versionsThreeright ul li {
    line-height: 76px;
    margin-top: 16px;
    width: 105px;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

.versionsThreeWonderful .versionsThreeleft {
    float: left;
    width: 870px;
    margin-right: 12px;
    margin-bottom: 35px;
    border: 1px solid #d7d7d7;
    height: 255px;
}

.versionsThreeWonderful li.new_cnlf {
    width: 830px;
    height: 38px;
    line-height: 38px;
    margin-left: 20px;
    border-bottom: 1px dashed #d7d7d7;
}

.versionsThreeWonderful .platform p {
    background: #00bacb;
    width: 291px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding-left: 23px;
}

.versionsThreeWonderful .versionsThreeright {
    float: left;
    border: 1px solid #d7d7d7;
    height: 255px;
    margin-bottom: 35px;
}

.versionsThreeWonderful .versionsThreeright .thePlatform {
    background: #ecfdff;
    height: 205px;
    padding-left: 12px;
    padding-right: 12px;
}

.versionsThreeWonderful .versionsThreeright .thePlatform p {
    width: 105px;
    color: #666666;
    text-align: center;
    line-height: 30px;
}

.versionsThreeWonderful .versionsThreeleft ul li {
    border-right: 1px dashed #d7d7d7;
    float: left;
    margin-left: 38.5px;
    margin-top: 16px;
    padding-right: 38.5px;
}

.versionsThreeWonderful .versionsThreeleft ul li p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 191px;
    background: #edefed;
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 100;
}

.newsphotoSlideshow .swiper-pagination-bullet-active {
    background: #00bacb;
}

.newsphotoSlideshow .ResultRecommended {
    margin-top: 0;
    width: 314px;
    height: 288px;
}

.newsphotoSlideshow .ResultRecommended .ResultRecommendedDiv {
    border: 1px solid #d7d7d7;
    margin-bottom: 12px;
}

.newsphotoSlideshow .ResultRecommended .ResultRecommendedDiv p {
    background: #00bacb;
    width: 291px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding-left: 23px;
}

.exhibitionZ {
    float: left;
    width: 260px;
}

.exhibitionY {
    float: left;
    width: 930px;
}

.exhibitionZli ul li {
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.citiesSX {
    background: #00bacb;
    color: #fff;
}

.technology1 {
    height: 54px;
    border-bottom: 1px solid #bfbfbf;
    line-height: 63px;
    margin-left: 20px;
    width: 890px;
}

.technology1 h3 {
    color: #00bacb;
    font-weight: bold;
    width: 890px;
}

.technologyDiv li {
    width: 890px;
    margin: 0 auto;
    border-bottom: 1px solid #bfbfbf;
}

.technologyDiv li .LeadingImg {
    margin-top: 20px;
    margin-left: 10px;
}

.technologyDiv li .LeadingDiv {
    width: 640px;
    margin-left: 10px;
    margin-top: 20px;
}

.technologyDiv li .LeadingDiv h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 650px;
}

.technologyDiv li .LeadingDiv .LeadingCharacter div {
    width: 630px;
}

.shuangbai {
    margin-top: 15px;
}

.shuangbaiTitle {
    font-size: 28px;
    font-weight: 1000;
    color: #fff;
    background: #035CF4;
    line-height: 60px;
    text-align: center;
}

.lianmeng-show {
    position: relative;
    border: 1px solid red;
    background: #F2FBFC;
    min-height: 200px;
    max-height: 377px;
    overflow: hidden;
}

.lianmeng_company {
    width: 200px;
    float: left;
    margin: 10px;
    margin-left: 15px;
    margin-right: 15px;
    height: 33px;
    border: 1px dashed #d7d7d7;
    border-radius: 5px;
}


/* banner */

.bannerBox {
    margin: 0 auto 10px;
}

.bannerBox img {
    width: 100%;
}


/*新闻*/

#swiper3 ul li a {
    display: block;
    width: 100%;
}

.swiper-pagination-bullet-active {
    background: #00bacb;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    /* background: #1b94d2; */
    background: #fff;
    opacity: 1;
}


/*广告*/

.ad {
    width: 1200px;
    margin: 10px auto 20px;
}

.ad img {
    width: 100%;
}


/*联盟发起单位*/

.union {
    width: 1200px;
    margin: 0 auto;
}

.unionTop {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: url('/img/shuangbai-images/moduleBg.png') no-repeat center;
    background-size: 100%;
    display: flex;
    align-items: center;
}

.unionTop img {
    margin-left: 20px;
}

.unionTop a {
    margin-left: 140px;
    color: #ffffff;
    display: flex;
}

.unionTop a p {
    font-size: 20px;
    font-weight: 600;
}

.unionTop a span {
    font-size: 12px;
    margin-left: 10px;
    margin-top: 3px;
}

.unionCompany {
    padding: 40px;
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
}

.unionCompany li {
    width: 200px;
    margin-bottom: 20px;
    margin-right: 30px;
}

.unionCompany li:nth-child(5n) {
    margin-right: 0px;
}

.unionCompany li a img {
    width: 100%;
    height: 66px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    border: 2px dashed #0068B7;
}


/*企业申报*/

.companyDeclare {
    width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    /*  height: 80px;
    line-height: 80px;*/
    /* background: url('/img/shuangbai-images/biaoganBg.png') no-repeat center;
    background-size: 100%;
    position: relative; */
}

.companyDeclare ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.companyDeclare ul li {
    width: 50%;
    position: relative;
    margin-bottom: 6px;
}

.companyDeclare ul li a {
    display: block;
    width: 100%;
}

.companyDeclare ul li span {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -18.5px;
    display: block;
    padding: 8px 15px;
    border-radius: 10px;
    background: #ffffff;
    color: #0270d9;
    font-size: 16px;
    font-weight: 600;
}


/* .companyDeclare h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    text-align: center;
}

.companyDeclare a {
    position: absolute;
    right: 150px;
    top: 50%;
    margin-top: -20.5px;
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    background: #ffffff;
    color: #0270d9;
    font-size: 16px
} */


/* 标杆风采 */

.benchmark {
    width: 1200px;
    margin: 25px auto;
}

.benchTop {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: url('/img/shuangbai-images/moduleBg.png') no-repeat center;
    background-size: 100%;
    display: flex;
    align-items: center;
}

.benchTop img {
    margin-left: 20px;
}

.benchTop a {
    margin-left: 140px;
    color: #ffffff;
    display: flex;
}

.benchTop a p {
    font-size: 20px;
    font-weight: 600;
}

.benchmarkCont {
    padding: 20px;
    margin: 0 auto;
    background: #f2fbfc;
    display: flex;
}


/* 导航 */

.benchmarkNav {
    width: 240px;
    margin-right: 25px;
}

.benchmarkNav li {
    font-size: 20px;
    font-weight: 500;
    color: #fefefe;
    padding: 15px 0;
    text-align: center;
    background: url('/img/shuangbai-images/icon/benchBtn.png') no-repeat center;
    background-size: 100%;
    margin-bottom: 15px;
}

.benchmarkNav li:last-child {
    margin-bottom: 0;
}

.benchmarkNav .benchActive {
    width: 250px;
    background: url('/img/shuangbai-images/icon/benchActive1.png') no-repeat center;
    background-size: 100%;
}


/* 列表 */

.benchmarkList {
    width: 875px;
    display: none;
    position: relative;
    overflow: hidden;
    padding: 20px 15px 0px;
    background: linear-gradient(to bottom right, #00a09d 0%, #0279cf 50%, #0359f7 100%);
}

.benchmarkList ul {
    /* width: 100%;*/
    display: flex;
    flex-wrap: nowrap;
    padding: 0 15px;
    overflow: hidden;
    position: absolute;
    left: 0;
}

.benchmarkList ul li {
    /* width: 33%;*/
    background: none;
    margin-bottom: 5px;
    text-align: center;
    /* background: url('./image/biaoganSolid.png') no-repeat right;*/
}

.benchmarkList ul li a {
    display: block;
    width: 210px;
    margin: 0 40px 30px;
}

.benchmarkList ul li a:last-child {
    margin-bottom: 0;
}

.benchmarkList ul li a img {
    width: 100%;
    height: 140px;
}

.benchmarkList ul li a p {
    font-size: 14px;
    color: #919494;
    padding: 5px 15px;
    background: #f2fbfc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.benchmarkList .benchmarkPrev {
    position: absolute;
    width: 30px;
    height: 40px;
    left: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/left.png') no-repeat center;
}

.benchmarkList .benchmarkNext {
    position: absolute;
    width: 30px;
    height: 40px;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/right.png') no-repeat center;
}


/*专家团队*/

.expertTeam {
    width: 1200px;
    margin: 0 auto 25px;
}

.expertTeamTop {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: url('/img/shuangbai-images/moduleBg.png') no-repeat center;
    background-size: 100%;
    display: flex;
    align-items: center;
}

.expertTeamTop img {
    margin-left: 20px;
}

.expertTeamTop a {
    margin-left: 140px;
    color: #ffffff;
    display: flex;
}

.expertTeamTop a p {
    font-size: 20px;
    font-weight: 600;
}

.expertCont {
    border: 1px solid #d7d7d7;
    padding: 20px;
    margin: 0 auto;
    background: #f2fbfc;
    display: flex;
}


/* 导航 */

.expertNav {
    width: 240px;
    margin-right: 25px;
}

.expertNav li {
    font-size: 20px;
    font-weight: 500;
    color: #fefefe;
    padding: 15px 0;
    text-align: center;
    background: url('/img/shuangbai-images/icon/benchBtn.png') no-repeat center;
    background-size: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.expertNav li:last-child {
    margin-bottom: 0;
}

.expertNav .expertActive {
    width: 250px;
    background: url('/img/shuangbai-images/icon/benchActive1.png') no-repeat center;
    background-size: 100%;
}


/* 列表 */

.expertList {
    width: 875px;
    display: none;
    position: relative;
    overflow: hidden;
    padding: 15px 15px 0px;
    background: linear-gradient(to bottom right, #00a09d 0%, #0279cf 50%, #0359f7 100%);
}

.expertList ul {
    /* width: 100%;*/
    display: flex;
    flex-wrap: nowrap;
    padding: 0 15px;
    overflow: hidden;
    position: absolute;
    left: 0;
}

.expertList ul li {
    /*  width: 33%;*/
    background: none;
    margin-bottom: 5px;
    text-align: center;
}

.expertList ul li a {
    display: block;
    /* width: 290px;*/
    width: 217.5px;
}

.expertList ul li a img {
    /* width: 110px; */
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.expertList ul li a h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 10px 0 5px;
}

.expertList ul li a p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 2px;
    padding: 0 20px;
    /*超出两行显示省略号*/
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.expertList .expertPrev {
    width: 30px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/left.png') no-repeat center;
    cursor: pointer;
}

.expertList .expertNext {
    width: 30px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/right.png') no-repeat center;
    cursor: pointer;
}


/*热点活动*/

.hotActivity {
    width: 1200px;
    margin: 0 auto 50px;
}

.activityTop {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: url('/img/shuangbai-images/moduleBg.png') no-repeat center;
    background-size: 100%;
    display: flex;
    align-items: center;
}

.activityTop img {
    margin-left: 20px;
}

.activityTop a {
    margin-left: 140px;
    color: #ffffff;
    display: flex;
}

.activityTop a p {
    font-size: 20px;
    font-weight: 600;
}

.activityCont {
    border: 1px solid #d7d7d7;
    padding: 20px;
    margin: 0 auto;
    background: #f2fbfc;
    display: flex;
}


/* 导航 */

.activityNav {
    width: 240px;
    margin-right: 25px;
}

.activityNav li {
    font-size: 20px;
    font-weight: 500;
    color: #fefefe;
    padding: 15px 0;
    text-align: center;
    background: url('/img/shuangbai-images/icon/benchBtn.png') no-repeat center;
    background-size: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.activityNav li:last-child {
    margin-bottom: 0;
}

.activityNav .activityActive {
    width: 250px;
    background: url('/img/shuangbai-images/icon/benchActive1.png') no-repeat center;
    background-size: 100%;
}


/* 列表 */

.activityList {
    width: 875px;
    display: none;
    padding: 15px 15px 0px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #00a09d 0%, #0279cf 50%, #0359f7 100%);
}

.activityList ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    padding: 0 15px;
    overflow: hidden;
    position: absolute;
    left: 0;
}

.activityList ul li {
    /* width: 30%;*/
    background: none;
    margin-bottom: 5px;
    text-align: center;
}

.activityList ul li a {
    display: block;
    width: 210px;
    margin: 0 40px;
}

.activityList ul li a img {
    width: 100%;
    height: 140px;
}

.activityList ul li a p {
    font-size: 14px;
    color: #919494;
    padding: 5px 15px;
    background: #f2fbfc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activityList .activityPrev {
    position: absolute;
    width: 30px;
    height: 40px;
    left: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/left.png') no-repeat center;
    cursor: pointer;
}

.activityList .activityNext {
    position: absolute;
    width: 30px;
    height: 40px;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    background: url('/img/shuangbai-images/icon/right.png') no-repeat center;
    cursor: pointer;
}


/*上一页*/

.pages .prev {
    background: #eeeeee !important;
    margin-right: 3px;
}


/*下一页*/

.pages .next {
    background: #eeeeee !important;
    margin-left: 3px;
}

.pages strong {
    background: #067c8d;
    padding: 8px;
    border: none;
    color: #FFFFFF;
}

.pages a:link,
.pages a:visited,
.pages a:active {
    background: #eef5f6;
    border: #81bcc5 2px solid;
    padding: 6px;
}

.pages a:hover {
    background: #067c8d;
    padding: 8px;
    border: none;
}

.pages a {
    margin: 0 1px;
}


/*底部*/

.footerWrap {
    width: 100%;
    background: #00bacb;
}

.footerBox {
    width: 1200px;
    margin: 0 auto;
    padding: 70px 0 25px;
    font-size: 12px;
    color: #fffefe;
}

.footerTop {
    display: flex;
    align-items: center;
}

.footerLeft {
    padding: 0 40px 0 10px;
}

.footerLeft img {}

.footerCenter {
    padding: 0 110px 0 100px;
    border-right: 1px solid #fffefe;
    border-left: 1px solid #fffefe;
}

.footerCenter p {
    margin-bottom: 20px;
}

.footerCenter p:last-child {
    margin-bottom: 0px;
}

.footerRight {
    width: 340px;
    padding: 0 80px 0 40px;
}

.footerRight ul {
    display: flex;
    flex-wrap: wrap;
}

.footerRight ul li {
    margin-right: 49px;
    margin-bottom: 20px;
}

.footerRight ul li a {
    color: #fffefe;
}

.footerRight ul li span {
    margin-right: 4px;
}

.footerCode {
    margin-top: 10px;
}

.footerCode img {
    width: 100%;
}

.footerBottom {
    margin-top: 40px;
    text-align: center;
}


/*标杆申报标杆*/

.biaoGan {
    display: block;
    width: 100%;
    position: relative;
}

.biaoGan img {
    width: 100%;
}

.biaoGan a {
    display: block;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -18.5px;
    display: block;
    padding: 8px 15px;
    border-radius: 10px;
    background: #ffffff;
    color: #0270d9;
    font-size: 16px;
    font-weight: 600;
}