@charset "UTF-8";

/* CSS Document */


/*头部开始*/

.topBox {
    min-width: 1340px;
    width: 100%;
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.topBox .divR {
    position: relative;
    z-index: 99
}

.logo {
    height: 68px;
    overflow: hidden;
    margin-top: 16px;
    margin-left: 40px;
}

.logo img {
    display: block;
    height: 68px;
}


/*头部结束*/


/*menu开始*/

.menuDl dd {
    float: left;
    position: relative;
}

.menuDl dd .a1 {
    display: block;
    height: 100px;
    padding: 0 40px;
    overflow: hidden;
    line-height: 100px;
    color: #333333;
    font-weight: bold;
    font-size: 15px;
}

.menuDl dd.hover .a1 {
    background: #f6ab00;
    color: #fff
}

.menuDl dd .div_a {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    display: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
}

.menuDl dd .div_a a {
    display: block;
    overflow: hidden;
    padding: 5px;
    line-height: 28px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.menuDl dd .div_a a:hover {
    background: #f6ab00;
    color: #fff
}

.searchBt {
    width: 25px;
    height: 25px;
    background: url(../images/searchbt.png) no-repeat center center;
    cursor: pointer;
    margin: 35px 20px 0 15px;
}

.oaBt {
    display: block;
    height: 100px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    color: #666;
    line-height: 100px;
    padding: 0 15px 0 10px;
    border-left: 1px solid #eeeeee;
}

.menuBt {
    width: 100px;
    height: 100px;
    background: #eeeeee url(../images/menubt.png) no-repeat center center;
    cursor: pointer;
}

.topBoxH {
    clear: both;
    height: 100px;
}


/*menu结束*/

@media(max-width:1680px) {
    .logo {
        margin-left: 5px
    }
    .searchBt {
        margin: 35px 20px 0 15px;
    }
    .menuBt {
        width: 50px
    }
    .menuDl dd .a1 {
        padding: 0 15px;
    }
    .menuDl dd .div_a {
        width: 130%;
        left: -15%;
    }
}

@media(max-width:1440px) {
    .menuDl dd .a1 {
        padding: 0 8px;
    }
}


/*indexBanner开始*/

.bannerSlide {
    overflow: hidden;
    position: relative;
}

.bannerSlide .bt {
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 9;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    cursor: pointer;
}

.bannerSlide .bt.prev {
    left: 30px;
    background-image: url(../images/icon1.png)
}

.bannerSlide .bt.next {
    right: 30px;
    background-image: url(../images/icon2.png)
}

.bannerSlide .hd {
    width: 100%;
    height: 47px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    text-align: center;
}

.bannerSlide .hd ul {
    display: inline-block
}

.bannerSlide .hd ul li {
    float: left;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 100%;
    margin: 0 11px;
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.bannerSlide .hd ul li.on {
    width: 5px;
    height: 5px;
    margin-top: 1px;
}

.bannerSlide .hd ul li:after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -6px;
    transform: scale(0);
    transform-origin: center center;
    transition-duration: 0.3s;
}

.bannerSlide .hd ul li.on:after {
    transform: scale(1)
}

.bannerSlide .hd ul li:before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -14px 0 0 -14px;
    transform: scale(0);
    transform-origin: center center;
    transition-duration: 0.3s;
}

.bannerSlide .hd ul li.on:before {
    transform: scale(1)
}

.bannerBg {
    width: 1920px;
    height: 160px;
    background: url(../images/bg1.png) no-repeat center center;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -960px;
    z-index: 9;
}

.bannerDl dd {
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: ant 3s 1;
    -webkit-animation: ant 3s 1;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    transform: scale(1);
    -webkit-transform: scale(1);
}


/*动画*/

@keyframes ant {
    from {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }
    to {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


/* Safari and Chrome */

@-webkit-keyframes ant {
    from {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    to {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}


/*indexBanner 结束*/

.wrapC {
    padding: 0 10.67%
}

@media(max-width:1366px) {
    .wrapC {
        padding: 0 5.5%
    }
}

.wrapC_h93 {
    clear: both;
    padding-top: 6.1589%
}

.wrapC_h100 {
    clear: both;
    padding-top: 6.6225%
}

.wrapC_h115 {
    clear: both;
    padding-top: 7.6158%
}

.wrapC_h75 {
    clear: both;
    padding-top: 4.9688%
}

.ixBoxT {
    clear: both;
    /* height: 62px; */
    background-position: left center;
    background-repeat: no-repeat;
}


/*第一通栏start*/

.ixBox1 {
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ixBox1:after {
    content: "";
    display: block;
    width: 56.35%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.ixBox1:before {
    content: "";
    display: block;
    width: 43.65%;
    height: 100%;
    background: #fafafa;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.ixBox1L {
    width: 58.23%;
}

.ixBox1L_h40 {
    clear: both;
    padding-top: 4.5454%
}

.ixBox1L_h68 {
    clear: both;
    padding-top: 7.7272%
}

.ixBox1L .txt {
    overflow: hidden;
    margin-right: 15.34%;
    font-size: 14px;
    line-height: 26px;
    color: #787878;
    height: 104px;
}

.ixMore {
    display: block;
    width: 180px;
    height: 45px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    box-shadow: 0 1px 3px #c9e2f4
}

.ixMore:hover {
    box-shadow: 0 3px 10px #c9e2f4
}

.ixMore span {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    padding-right: 41px;
    color: #666666;
    font-size: 14px;
    background: url(../images/icon5.png) no-repeat right center;
}

.ixBox1C {
    position: relative;
}

.ixBox1R {
    width: 41.77%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.ixBox1RDl {
    padding-left: 50px
}

.ixBox1RDl dd {
    float: left;
    width: 50%;
    overflow: hidden;
    text-align: center;
    padding: 4.7244% 0;
}

.ixBox1RDl dd .divC {
    display: inline-block;
    min-width: 105px;
}

.ixBox1RDl dd .divC .divT {
    clear: both;
    height: 60px;
    overflow: hidden;
}

.ixBox1RDl dd .divC .divT span {
    float: left;
    display: block;
    color: #063e8a;
    font-size: 44px;
    font-weight: bold;
    line-height: 60px;
    /*transform:scale(0.9,1.2);*/
    font-family: "zwp";
}

.ixBox1RDl dd .divC .divT i {
    float: left;
    line-height: 82px;
    color: #063e8a;
    font-size: 14px;
    font-style: normal;
    margin-left: 5px;
}

.ixBox1RDl dd .divC .divT2 {
    clear: both;
    height: 28px;
    overflow: hidden;
    text-align: left;
    color: #666666;
    font-size: 14px;
    line-height: 28px;
}


/*第一通栏end*/


/*第二通栏start*/

.ixBox2 {
    overflow: hidden;
    background: #edf6fd url(../images/bg1.jpg) no-repeat right bottom;
    background-size: auto 78.75%;
}

.ixBox2L {
    width: 38.7417%;
    overflow: hidden;
}

.ixBox2L_90 {
    clear: both;
    padding-top: 5%
}

.ixBox2L_40 {
    clear: both;
    padding-top: 10.3896%
}

.ixBox2LSldie {
    overflow: hidden
}

.ixBox2LDl dd {
    overflow: hidden;
}

.ixBox2LDl dd .divT {
    clear: both;
    height: 42px;
    overflow: hidden;
    line-height: 42px;
    color: #4c4c4c;
    font-size: 20px;
}

.ixBox2LDl dd .txt {
    clear: both;
    height: 286px;
    font-size: 14px;
    overflow: hidden;
    color: #787878;
    line-height: 24px;
}

.ixBox2LSldie .btBox {
    clear: both;
    overflow: hidden;
}

.ixBox2LSldie .btBox .bt {
    float: left;
    width: 68px;
    height: 68px;
    overflow: hidden;
    border-radius: 100%;
    border: 1px solid #e0e2e3;
    margin-right: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    transition-duration: 0.3s;
    cursor: pointer;
}

.ixBox2LSldie .btBox .bt:hover {
    background-color: #e0e2e3
}

.ixBox2LSldie .btBox .bt.prev {
    background-image: url(../images/icon6.png)
}

.ixBox2LSldie .btBox .bt.next {
    background-image: url(../images/icon7.png)
}


/**/

.ixBox2R {
    width: 54.3046%;
    overflow: hidden;
}

.ixBox2RDl dd {
    float: left;
    width: 50%;
    overflow: hidden;
}

.ixBox2RDl dd a {
    display: block;
    overflow: hidden;
    margin: 0 10px;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 3px;
}

.ixBox2RDl dd a:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 59.6153%;
}

.ixBox2RDl dd a .ddC {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ixBox2RDl dd a .ddC .divT {
    clear: both;
    overflow: hidden;
    padding-left: 11.5384%;
    height: 30px;
    line-height: 30px;
    color: #444444;
    font-size: 16px;
    transition-duration: 0.3s;
}

.ixBox2RDl dd a:hover .ddC .divT {
    color: #fff
}

.ixBox2RDl dd a .ddC .divT2 {
    clear: both;
    overflow: hidden;
    padding-left: 11.5384%;
    height: 90px;
    line-height: 28px;
    color: #999999;
    font-size: 14px;
    transition-duration: 0.3s;
}

.ixBox2RDl dd a:hover .ddC .divT2 {
    color: #ffffff
}

.ixBox2RDl dd a .ddC .divT3 {
    clear: both;
    overflow: hidden;
    padding-left: 11.5384%;
    height: 45px;
    line-height: 45px;
    color: #cccccc;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    transition-duration: 0.3s;
}

.ixBox2RDl dd a:hover .ddC .divT3 {
    color: #ffffff
}

.ixBox2RDl dd a .icon {
    width: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    transition-duration: 0.3s;
}

.ixBox2RDl dd a .icon span {
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

.ixBox2RDl dd a .icon.icon1 span {
    background-image: url(../images/ixbox2_icon1.png)
}

.ixBox2RDl dd a .icon.icon2 span {
    background-image: url(../images/ixbox2_icon2.png)
}

.ixBox2RDl dd a .icon.icon3 span {
    background-image: url(../images/ixbox2_icon3.png)
}

.ixBox2RDl dd a .icon.icon4 span {
    background-image: url(../images/ixbox2_icon4.png)
}

.ixBox2RDl dd a .icon.icon5 span {
    background-image: url(../images/ixbox2_icon5.png)
}

.ixBox2RDl dd a .icon.icon6 span {
    background-image: url(../images/ixbox2_icon6.png)
}

.ixBox2RDl dd a .icon.icon7 span {
    background-image: url(../images/ixbox2_icon7.png)
}

.ixBox2RDl dd a .icon.icon8 span {
    background-image: url(../images/ixbox2_icon8.png)
}

.ixBox2RDl dd a .icon.icon9 span {
    background-image: url(../images/ixbox2_icon9.png)
}

.ixBox2RDl dd a:hover .icon.icon1 span {
    background-image: url(../images/ixbox2_icon1h.png)
}

.ixBox2RDl dd a:hover .icon.icon2 span {
    background-image: url(../images/ixbox2_icon2h.png)
}

.ixBox2RDl dd a:hover .icon.icon3 span {
    background-image: url(../images/ixbox2_icon3h.png)
}

.ixBox2RDl dd a:hover .icon.icon4 span {
    background-image: url(../images/ixbox2_icon4h.png)
}

.ixBox2RDl dd a:hover .icon.icon5 span {
    background-image: url(../images/ixbox2_icon5h.png)
}

.ixBox2RDl dd a:hover .icon.icon6 span {
    background-image: url(../images/ixbox2_icon6h.png)
}

.ixBox2RDl dd a:hover .icon.icon7 span {
    background-image: url(../images/ixbox2_icon7h.png)
}

.ixBox2RDl dd a:hover .icon.icon8 span {
    background-image: url(../images/ixbox2_icon8h.png)
}

.ixBox2RDl dd a:hover .icon.icon9 span {
    background-image: url(../images/ixbox2_icon9h.png)
}

.ixBox2RDl dd a:hover .icon {
    width: 120%
}

.ixBox2RDl dd a .icon:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}

.ixBox2RDl dd a .icon:before {
    content: "";
    display: block;
    width: 200%;
    padding-top: 200%;
    position: absolute;
    top: 0;
    left: 0;
    background: #f6f6f6;
    border-radius: 100%;
    transition-duration: 0.3s;
}

.ixBox2RDl dd a:hover .icon:before {
    background: #f6ab00;
}


/*第二通栏end*/


/*第三通栏begin*/

.ixBox3 {
    clear: both;
    overflow: hidden;
    position: relative;
}

.ixBox3T {
    position: absolute;
    left: 0;
    top: 5.7291%;
    width: 100%;
    z-index: 99;
}

.ixBox3Slide {
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.ixBox3Slide .bt {
    display: block;
    width: 66px;
    height: 66px;
    text-align: center;
    line-height: 172px;
    font-size: 16px;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.3) url(../images/icon8.png) no-repeat center center;
    position: absolute;
    top: 50%;
    margin-top: -33px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    transition-duration: 0.3s;
    display: none;
}

.ixBox3Slide .bt:hover {
    background: rgba(246, 171, 0, 0.3) url(../images/icon8.png) no-repeat center center;
}

.ixBox3Slide .bt:after {
    content: "";
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -12px;
    left: -13px;
    cursor: pointer;
}

.ixBox3Dl {
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 0.5s;
}

.ixBox3Dl dd {
    overflow: hidden;
    padding-right: 20px;
    position: relative;
    float: left;
    transition-duration: 0.5s;
}

.ixBox3Dl a {
    display: block;
    position: relative;
    height: 100%;
}

.ixBox3Dl dd .divBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ixBox3Dl dd .divBg i {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.ixBox3Dl dd .divC {
    position: absolute;
    bottom: 11.2987%;
    left: 0;
    z-index: 9991;
    padding-left: 20px;
    transition: 0.4s;
}

.ixBox3Dl dd.activeW .divC {
    padding-left: 16.8724%
}

.ixBox3Dl dd .divC .divT {
    clear: both;
    height: 55px;
    line-height: 55px;
    color: #ffffff;
    font-size: 22px;
}

.ixBox3Dl dd .divC .divT2 {
    height: 13px;
    background: url(../images/ixmore.png) no-repeat left center;
}


/*第三通栏end*/


/*第四通栏start*/

.ixBox4 {
    clear: both;
    overflow: hidden;
    background: #fff;
}

.ixBox4TSlide {
    clear: both;
    height: 135px;
    position: relative;
    z-index: 1;
}

.ixBox4TSlide:after {
    content: "";
    width: 1920px;
    height: 1px;
    background: #cccccc;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -960px;
    z-index: -1;
}

.ixBox4TSlide .bd {
    height: 135px;
    overflow: hidden;
    position: relative;
}

.ixBox4TSlide .bd:after {
    content: "";
    display: block;
    width: 1px;
    height: 58px;
    background: url(../images/ixbox4icon3.png) no-repeat center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ixBox4TSlide .bd:before {
    content: "";
    display: block;
    width: 1px;
    height: 58px;
    background: url(../images/ixbox4icon3.png) no-repeat center center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.ixBox4TDl {
    position: absolute;
    left: 0;
    bottom: 1px;
    height: 134px;
    transition-duration: 0.5s;
}

.ixBox4TDl dd {
    width: 126px;
    height: 134px;
    background-position: center bottom;
    background-repeat: no-repeat;
    float: left;
    position: relative;
}

.ixBox4TDl dd.bg1 {
    background-image: url(../images/ixbox4icon1.png)
}

.ixBox4TDl dd.bg2 {
    background-image: url(../images/ixbox4icon2.png)
}

.ixBox4TSlide .bt {
    display: block;
    width: 25px;
    height: 18px;
    background: url(../images/ixbox4icon4.png) no-repeat center center;
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    right: -25px;
    display: none;
}

.ixBox4TSlide .bt:hover {
    background: url(../images/ixbox4icon4h.png) no-repeat center center;
}

.ixBox4TDl dd span {
    display: block;
    position: absolute;
    left: 5px;
    right: 5px;
    line-height: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.3s;
}

.ixBox4TDl dd:hover span {
    color: #f6ab00;
    font-weight: bold;
    font-size: 16px;
}

.ixBox4TDl dd.hover span {
    color: #f6ab00;
    font-weight: bold;
    font-size: 16px;
}

.ixBox4TDl dd.bg1 span {
    top: 0;
}

.ixBox4TDl dd.bg2 span {
    bottom: 65px;
}

.ixBox4CSlide {
    clear: both;
    position: relative;
}

.lc-swiper-btn .bt {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 11;
    outline: none;
}

.lc-swiper-btn .bt.prev {
    left: 30px;
    background-image: url(../images/icon9.png)
}

.lc-swiper-btn .bt.prev:hover {
    background-image: url(../images/icon9h.png)
}

.lc-swiper-btn .bt.next {
    right: 30px;
    background-image: url(../images/icon10.png)
}

.lc-swiper-btn .bt.next:hover {
    background-image: url(../images/icon10h.png)
}

.ixBox4CSlide .swiper-slide a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.ixBox4CSlide .swiper-slide a .pic {
    overflow: hidden;
    padding-top: 66.129%;
    position: relative;
}

.ixBox4CSlide .swiper-slide a .pic img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ixBox4CSlide .swiper-slide a .pic:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition-duration: 0.3s;
}

.ixBox4CSlide .swiper-slide a:hover .pic:after {
    opacity: 1
}

.ixBox4CSlide .swiper-slide a span {
    display: block;
    width: 100%;
    height: 84px;
    line-height: 84px;
    text-align: center;
    overflow: hidden;
    padding-top: 40px;
    color: #ffffff;
    font-size: 22px;
    background: url(../images/icon11.png) no-repeat center top;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -45px;
    z-index: 2;
    opacity: 0;
    transition-duration: 0.3s;
}

.ixBox4CSlide .swiper-slide a:hover span {
    opacity: 1
}


/*第四通栏end*/


/*第五通栏begin*/

.ixBox5 {
    clear: both;
    overflow: hidden;
    background: #fafafa;
}

.ixBox5T {
    clear: both;
    overflow: hidden;
}

.ixBox5T .ixBoxT {
    clear: none;
    width: 250px;
}

.ixBox5T_a a {
    float: left;
    width: 160px;
    height: 50px;
    overflow: hidden;
    line-height: 50px;
    text-align: center;
    background: #ebebeb;
    margin-left: 10px;
    border-radius: 50px;
    color: #666666;
    font-size: 14px;
    transition-duration: 0.3s;
}

.ixBox5T_a a.hover {
    background: #1a5987;
    color: #fff
}

.ixBox5T_a a:hover {
    background: #1a5987;
    color: #fff
}

a.ixBox5More {
    display: block;
    width: 160px;
    height: 50px;
    overflow: hidden;
    line-height: 50px;
    text-align: center;
    background: #ebebeb;
    margin-left: 10px;
    border-radius: 50px;
    color: #666666;
    font-size: 14px;
    transition-duration: 0.3s;
}

a.ixBox5More:hover {
    background: #1a5987;
    color: #fff
}

.wrapC_h60 {
    clear: both;
    padding-top: 3.9735%
}

.ixBox5L {
    width: 44.3708%;
    height: 572px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.ixBox5L .pic {
    clear: both;
    height: 335px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ixBox5L_txt {
    clear: both;
    overflow: hidden;
    padding: 0 30px;
}

.ixBox5L_txt .divT {
    clear: both;
    height: 38px;
    overflow: hidden;
    line-height: 38px;
    color: #444444;
    font-weight: bold;
    font-size: 16px;
}

.ixBox5L:hover .ixBox5L_txt .divT {
    color: #f7b842
}

.ixBox5L_txt .divT2 {
    clear: both;
    height: 25px;
    overflow: hidden;
    line-height: 25px;
    color: #f6ab00;
    font-size: 18px;
    transform-origin: left center;
    font-family: "zwp"
}

.ixBox5L_txt .txt {
    clear: both;
    height: 48px;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.ixBox5L_txt .divT3 {
    height: 30px;
    background: url(../images/icon12.png) no-repeat left center;
}

.ixBox5R {
    width: 54.3046%;
    height: 572px;
}

.ixBox5RDl dd {
    height: 128px;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    transition-duration: 0.3s;
}

.ixBox5RDl dd:hover {
    box-shadow: 0 5px 10px #faf0d7
}

.ixBox5RDl dd a {
    display: block;
    overflow: hidden;
}

.ixBox5RDl dd a .day {
    width: 128px;
    height: 128px;
    overflow: hidden;
    transition-duration: 0.3s;
    border-right: 1px solid #fafafa;
}

.ixBox5RDl dd a:hover .day {
    background: #f6ab00
}

.ixBox5RDl dd a .day span {
    display: block;
    height: 37px;
    line-height: 37px;
    overflow: hidden;
    margin-top: 32px;
    text-align: center;
    color: #999999;
    font-size: 36px;
    font-family: "zwp";
    transition-duration: 0.3s;
}

.ixBox5RDl dd a:hover .day span {
    color: #fff
}

.ixBox5RDl dd a .day em {
    display: block;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    text-align: center;
    color: #999999;
    font-size: 18px;
    font-style: normal;
    font-family: "zwp";
    transition-duration: 0.3s;
}

.ixBox5RDl dd a:hover .day em {
    color: #fff
}

.ixBox5RDl dd a .divR {
    overflow: hidden;
    padding: 0 4.878%;
}

.ixBox5RDl dd a .divR .divT {
    clear: both;
    height: 32px;
    margin-top: 32px;
    line-height: 32px;
    overflow: hidden;
    font-size: 16px;
    color: #444444;
    font-weight: bold;
}

.ixBox5RDl dd a .divR .divT2 {
    clear: both;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    font-size: 14px;
    color: #666666;
}


/*第五通栏end*/


/*第六通栏begin*/

.ixBox6 {
    clear: both;
    overflow: hidden;
    position: relative;
}

.ixBox6 .bg {
    width: 100%;
    padding-top: 4.6875%;
    background: url(../images/icon13.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.ixBox6Dl dd {
    float: left;
    width: 33.3333%;
    overflow: hidden;
}

.ixBox6Dl dd a {
    display: block;
    overflow: hidden;
    position: relative;
}

.ixBox6Dl dd a .pic {
    clear: both;
    padding-top: 42.1875%;
    position: relative;
    overflow: hidden;
}

.ixBox6Dl dd a .pic img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ixBox6Dl dd a .txt {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: 1;
    transition-duration: 0.3s;
}

.ixBox6Dl dd a:hover .txt {
    bottom: 25%;
}

.ixBox6Dl dd a .txt .divT {
    clear: both;
    overflow: hidden;
    height: 29px;
    line-height: 29px;
    text-align: center;
    color: #ffffff;
    font-family: "Arial";
    font-size: 18px;
}

.ixBox6Dl dd a .txt .divT2 {
    clear: both;
    overflow: hidden;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}


/*第六通栏end*/


/*底部开始*/

.footer {
    clear: both;
    background: #42474b;
    height: 115px;
    line-height: 115px;
    color: #c7c7c7;
    font-size: 13px;
}

.footer a {
    color: #c7c7c7;
}

.footer a:hover {
    color: #f6ab00;
}

.footer span {
    padding-right: 40px;
}
/* 	
.footer .div2 {
    padding-left: 9.2715%
}*/

.mobileBt {
    width: 35px;
    height: 35px;
    margin-top: 40px;
    background: url(../images/icon3.png) no-repeat center center;
    position: relative;
    cursor: pointer;
}

.wxBt {
    width: 35px;
    height: 35px;
    margin-top: 40px;
    background: url(../images/icon4.png) no-repeat center center;
    position: relative;
    cursor: pointer;
}

.ewmBox {
    width: 120px;
    height: 125px;
    background: url(../images/ewmbg.png) no-repeat center center;
    position: absolute;
    left: 50%;
    margin-left: -60px;
    top: -130px;
    z-index: 11;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.3s;
}

.mobileBt:hover .ewmBox {
    top: -125px;
    visibility: visible;
    opacity: 1;
}

.wxBt:hover .ewmBox {
    top: -125px;
    visibility: visible;
    opacity: 1;
}

.ewmBox img {
    display: block;
    width: 120px;
    height: 120px;
}


/*底部结束*/


/*
-----------------------------首页样式end-----------------------------
*/


/*
-----------------------------频道页start-----------------------------
*/


/*
-----------------------------频道页end-----------------------------
*/


/*内页框架开始*/


/*内页banner*/

.subBanner {
    clear: both;
    padding-top: 23.4375%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}


/*.subBanner:after{
    content: "";
    display: block;
    width:100%;
    height:54px;
    position: absolute;
    bottom:0;
    left:0;
    background:url(../images/bg1_2.png) no-repeat center 1px;
}*/

.subBannerC {
    width: 100%;
    height: 98px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -89px;
    z-index: 1;
}

.subBannerT {
    height: 98px;
    overflow: hidden;
    line-height: 98px;
    position: relative;
    color: #fff;
    font-size: 36px;
}

.subBannerT:after {
    content: "";
    display: block;
    width: 31px;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}


/*内页导航*/

.navBox {
    clear: both;
    height: 80px;
    background: #fff;
    overflow: hidden;
}

.navBox .wrapC {
    padding: 0;
    margin: 0 10.67%
}

@media(max-width:1366px) {
    .navBox .wrapC {
        padding: 0;
        margin: 0 5.5%
    }
}

.nav {
    margin: 0 -10px;
    overflow: hidden;
}

.navC {
    position: relative;
    transition-duration: 0.3s;
}

.nav a {
    /*float: left;*/
    height: 80px;
    overflow: hidden;
    line-height: 80px;
    font-size: 16px;
    color: #333333;
    margin: 0 10px;
    position: relative;
}

.nav a:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #f6ab00;
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}

.nav a.hover {
    color: #f6ab00
}

.nav a.ct {
    color: #f6ab00
}

.nav a:hover {
    color: #f6ab00
}

.nav a.hover:after {
    display: block
}

.nav a:hover:after {
    display: block
}

.navPrev {
    position: absolute;
    display: block;
    left: -40px;
    height: 80px;
    width: 20px;
    top: 0;
    background: url(../images/xleft.png) center center no-repeat;
    display: none;
}

.navNext {
    display: block;
    position: absolute;
    right: -40px;
    height: 80px;
    width: 20px;
    top: 0;
    background: url(../images/xright.png) center center no-repeat;
    display: none;
}


/*内页外结构开始*/

.pageBox {
    overflow: hidden;
    background: #f5f5f5;
}

.pageBoxC {
    background: #fff;
    overflow: hidden;
    padding: 50px;
}

.minH {
    min-height: 300px
}


/*内页外结构结束*/


/*当前位置开始*/


/*当前位置结束*/


/*页码开始*/

.page {
    padding: 30px 0;
    text-align: center;
    clear: both;
    font-size: 14px;
}

.page a {
    display: inline-block;
    overflow: hidden;
    width: 38px;
    height: 38px;
    color: #999999;
    line-height: 38px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #e2e2e2;
    margin: 0 3px;
}

.page span {
    display: inline-block;
    padding: 6px 2px;
    position: relative;
    top: -15px;
}

.page a:hover {
    background: #1a5987;
    border: 1px solid #1a5987;
    color: #fff;
}

.page a.hover {
    background: #1a5987;
    border: 1px solid #1a5987;
    color: #fff;
}

.page input {
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    border: 1px solid #e6e6e6;
    position: relative;
    top: -2px;
}

.page input.pageDetail {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 3px;
    color: #999999;
    position: relative;
    top: -13px;
}

.page label {
    color: #999999;
    position: relative;
    top: -11px;
}

.page input.page_bnt {
    border: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    background: none;
    color: #999999;
    position: relative;
    top: -13px;
}

.page a div {
    width: 38px;
    height: 38px;
    background-position: center center;
    background-repeat: no-repeat;
}

.page a.firstPage div {
    background-image: url(../images/firstpage.png)
}

.page a.prevPage div {
    background-image: url(../images/prevpage.png)
}

.page a.nextPage div {
    background-image: url(../images/nextpage.png)
}

.page a.lastPage div {
    background-image: url(../images/lastpage.png)
}

.page a.firstPage:hover div {
    background-image: url(../images/firstpageh.png)
}

.page a.prevPage:hover div {
    background-image: url(../images/prevpageh.png)
}

.page a.nextPage:hover div {
    background-image: url(../images/nextpageh.png)
}

.page a.lastPage:hover div {
    background-image: url(../images/lastpageh.png)
}

.page a.firstPage.disabled {
    background: #E2E2E2;
}

.page a.prevPage.disabled {
    background: #E2E2E2;
}

.page a.nextPage.disabled {
    background: #E2E2E2;
}

.page a.lastPage.disabled {
    background: #E2E2E2;
}

.page a.firstPage.disabled div {
    background-image: url(../images/firstpage.png)
}

.page a.prevPage.disabled div {
    background-image: url(../images/prevpage.png)
}

.page a.nextPage.disabled div {
    background-image: url(../images/nextpage.png)
}

.page a.lastPage.disabled div {
    background-image: url(../images/lastpage.png)
}


/*页码结束*/


/*内页框架结束*/

.searchBox {
    width: 100%;
    height: 108px;
    overflow: hidden;
    background-color: rgba(234, 234, 234, 0.9);
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 1;
    display: none;
}

.searchC {
    width: 960px;
    height: 40px;
    margin: 0 auto;
    margin-top: 34px;
    background-color: #fff;
    overflow: hidden;
}

.searchC input {
    float: left;
    width: 900px;
    height: 40px;
    overflow: hidden;
    line-height: 40px;
    padding-left: 20px;
    border: none;
    background: none;
    color: #666;
    font-size: 14px;
}

.searchC a {
    float: right;
    width: 40px;
    height: 40px;
    background-image: url(../images/searchbth.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #f6ab00;
}


/**/

.webMap {
    width: 405px;
    height: 100%;
    overflow: hidden;
    background: #fff;
    position: fixed;
    right: -100%;
    top: 0px;
    z-index: 99999;
}

.webMapBg {
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    filter: progid: DXImageTransform.Microsoft.gradient( GradientType=0, startColorstr='#50000000', endColorstr='#50000000');
}

.webMapCont {
    position: relative;
    overflow: hidden;
}

.webMapScroll {
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 120px);
    position: relative;
}

.webMapTop {
    background: #0e76bd;
    padding: 0px 20px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.closeMap {
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background: url(../images/close_h.png) no-repeat center center;
    background-size: 25px auto;
    margin-top: 20px;
}

.webMapTit {
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    line-height: 80px;
}

.webMapMenu {
    overflow: hidden;
    padding: 10px 20px 20px 20px;
}

.webMapMenuBox {
    padding: 7px 0px;
    overflow: hidden;
    border-bottom: 1px solid #f2f2f2;
}

.webMap_dl {
    overflow: hidden;
    margin-right: -15px;
}

.webMapMenuBox:last-child {
    border-bottom: none;
}

.webMapTopMenu {
    overflow: hidden;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    text-align: left;
    color: #333;
    font-weight: bold;
}

.webMapTopMenu a {
    color: #333;
}

.webMap_dl dd {
    float: left;
    display: inline;
    margin-right: 15px;
    overflow: hidden;
    height: 25px;
    line-height: 25px;
}

.webMap_dl dd a {
    font-size: 14px;
    color: #999;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.webMapTopMenu a:hover,
.webMap_dl dd a:hover {
    color: #1d2388;
}

.busineDiv .banShadow {
    opacity: 0.5;
}

.webMapOther {
    overflow: hidden;
    border-top: 5px solid #ddd;
    padding: 10px 20px;
    text-align: center;
    font-size: 0px;
}

.webGroupTit {
    padding-left: 20px;
}

.webGroup {
    overflow: hidden;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    margin-right: -15px;
}

.webGroup a {
    color: #666;
    float: left;
    margin-right: 15px;
    font-size: 14px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.webGroup a:hover {
    color: #d6000f;
}

.webMapOther .webCenter {
    display: inline-block;
    overflow: hidden;
}

.webMapOther .webMapMenuBox {
    border: none;
}


/**/

.emalBt {
    display: block;
    width: 45px;
    height: 45px;
    background: url(../images/emal.png) no-repeat center center;
    margin: 0 auto;
}


/**/

.bnrWave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    z-index: 3
}

.bnrWave .wave1 {
    display: block;
    position: absolute;
    bottom: -2px;
    height: 54px;
    left: 0;
    width: 100%;
    background: url(../images/a1.png) repeat-x 0 bottom;
    z-index: 99;
}

.bnrWave .wave2 {
    display: block;
    position: absolute;
    bottom: 0;
    height: 54px;
    left: 0;
    width: 100%;
    background: url(../images/a2.png) repeat-x 0 bottom;
    z-index: 99;
}


/**/

.historyList {
    overflow: hidden;
}

.historyList dd {
    overflow: hidden;
    height: 150px;
    line-height: 150px;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}

.historyList dd span {
    float: left;
    display: inline;
    overflow: hidden;
    margin-right: 48px;
    width: 172px;
    height: 150px;
    line-height: 150px;
    font-size: 48px;
    color: #163162;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}

.historyList dd span em {
    width: 9px;
    height: 9px;
    float: right;
    display: block;
    border: 4px solid #d8d9d9;
    border-radius: 50%;
    margin-top: 68px;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
}

.historyList dd a {
    display: block;
    overflow: hidden;
}

.historyList dd .text {
    margin: 62px 0;
    /* height: 50px; */
    overflow: hidden;
}

.historyList dd .text .textDd {
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    font-size: 14px;
    color: #666666;
}

.historyList dd .text em {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #777;
    float: left;
    display: inline;
    margin: 10px 10px 0 0;
}

.historyList dd:hover {
    background: #f0f6fd;
}

.historyList dd:hover span {
    color: #f8b551;
}

.historyList dd:hover span em {
    color: #f8b551;
    border: 4px solid #f8b551;
}

@media(max-width:1600px) {
    .ixBox2RDl dd a .icon {
        transform: scale(0.5);
        transform-origin: right bottom;
    }
    .ixBox2RDl dd a:hover .icon {
        width: 240%
    }
}
.ixBoxT p{
    font-size: 18px;
    text-transform:uppercase
}
.ixBoxT h3{
    margin-top: 10px;
    font-size: 26px;
    font-weight: 400;
    color: #555;
}
.clearfix a:hover{
    color:#1a5987;
}
.right-text h3{
    font-weight: 400;
}
.clearfix .hide{
    display: none;
}
.page a[class*="prev"]{
    background-image: url(../images/firstPage.png);
    background-position: center center;
background-repeat: no-repeat;
}
.page a[class*="next"]{
    background-image: url(../images/lastPage.png);
    background-position: center center;
background-repeat: no-repeat;
}