
.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color:;
    position: relative;
}

    .mobile-inner img {
    }

    .mobile-inner p {
        color: #676767;
        line-height: 25px;
        font-size: 16px;
        padding-bottom: 30px;
        padding-right: 30px;
        padding-left: 30px;
        margin: 0px;
    }

.mobile-inner-header {
    background-color: rgb(255,255,255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

    .mobile-inner-header-icon:hover {
        background-color: rgba(255,255,255,0.2);
        cursor: pointer;
    }

    .mobile-inner-header-icon span {
        position: absolute;
        left: calc((100% - 25px) / 2);
        top: calc((100% - 1px) / 2);
        width: 25px;
        height: 1px;
        background-color: rgb(199,34,27);
    }

        .mobile-inner-header-icon span:nth-child(1) {
            transform: translateY(4px) rotate(0deg);
        }

        .mobile-inner-header-icon span:nth-child(2) {
            transform: translateY(-4px) rotate(0deg);
        }

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224,27%,35%,.6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

    .mobile-inner-nav a {
        border-bottom: solid 1px rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        color: #fff;
        transition: all 0.5s;
    }

    .mobile-inner-nav dl {
        display: none;
    }

        .mobile-inner-nav dl dd {
            line-height: 33px;
            text-decoration: none;
            text-indent: 3em;
            font-size: 16px;
            color: #FFFFFF;
            border-bottom: solid 1px rgba(255,255,255,0.3);
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            font-weight: 300;
            font-size: 14px;
        }

    .mobile-inner-nav li {
        border-bottom: solid 1px rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        line-height: 53px;
        text-indent: 20px;
    }

    .mobile-inner-nav h2.h2tit {
        line-height: 50px;
        text-decoration: none;
        text-indent: 2em;
        font-size: 16px;
        color: #FFFFFF;
        border-bottom: solid 1px rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        font-weight: 300;
    }

        .mobile-inner-nav h2.h2tit a {
            color: #FFFFFF;
        }

    .mobile-inner-nav a {
        border-bottom: none;
    }

    .mobile-inner-nav li {
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: returnToNormal;
        animation-name: returnToNormal;
    }

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";
@charset "UTF-8";

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

    .animated.infinite {
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        animation-duration: 2s;
    }

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,9%,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

body, h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li, th, td, p, blockquote, pre, form, fieldset, legend, input, button, textarea, hr, span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html, body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: " " !important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

input[type="button"], input[type="submit"], input[type="reset"] {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

    a:active {
        star: expression(this.onFocus=this.blur());
    }

img {
    border: 0px;
    vertical-align: middle;
}



li {
    list-style: none;
}



* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}



a:visited {
    text-decoration: none;
}



a:hover {
    text-decoration: none;
}



a:active {
    text-decoration: none;
}





.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}



html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}



html {
    -webkit-tap-highlight-color: transparent;
}



body {
    -webkit-overflow-scrolling: touch;
}



* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}



@keyframes rotate {

    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {

    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {

    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {

    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {

    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

    .xuanzhuan img {
        display: block;
        width: 100%;
    }



.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.wrap {
    max-width: 100%;
    margin: auto;
    padding: 0px 15px;
    width: 1230px;
}



.top {
    background: #EBEBEB;
}

    .top .h1tit {
        float: left;
        line-height: 45px;
        font-size: 14px;
        font-family:  ;
        font-weight: 400;
        color: #666666;
        padding-left: 25px;
        background: url(../images/gb.png) no-repeat left center;
    }

    .top .right {
        float: right;
    }

    .top .tel {
        float: left;
        line-height: 45px;
        font-size: 14px;
        font-family:  ;
        font-weight: 400;
        color: #666666;
        padding-left: 24px;
        background: url(../images/tel.png) no-repeat left center;
    }

        .top .tel strong {
            font-size: 18px;
            color: #0166B3;
        }

    .top .link {
        float: left;
        margin-left: 10px;
    }

        .top .link a {
            float: left;
            margin-left: 17px;
            padding-left: 21px;
            line-height: 45px;
            font-size: 14px;
            font-family:  ;
            font-weight: 400;
            color: #666666;
            background: url(../images/wx.png) no-repeat left;
        }

            .top .link a:nth-child(2) {
                background: url(../images/wb.png) no-repeat left;
            }

    .top .lan {
        float: left;
        position: relative;
        font-size: 14px;
        font-family:  ;
        font-weight: 400;
        color: #666666;
        margin-top: 8px;
        margin-left: 22px;
    }

        .top .lan .h2tit {
        }

        .top .lan.cn .h2tit {
            width: 97px;
            height: 30px;
            background: rgba(1, 102, 179, 0);
            border: 1px solid #CBCBCB;
            border-radius: 2px;
            font-size: 14px;
            font-family:  ;
            font-weight: 400;
            color: #666666;
            padding-left: 46px;
            line-height: 30px;
            cursor: pointer;
            position: relative;
            background: url(../images/cn.png) no-repeat 6px center;
        }

            .top .lan.cn .h2tit:after {
                content: "";
                position: absolute;
                height: 100%;
                width: 8px;
                right: 7px;
                top: 0px;
                background: url(../images/down.png) no-repeat center center;
            }

        .top .lan:hover dl {
            visibility: visible;
            opacity: 1;
            top: 30px;
            z-index: 5;
        }

        .top .lan dl {
            position: absolute;
            width: 100%;
            text-align: center;
            top: 30px;
            border: 1px solid #CBCBCB;
            border-top: none;
            visibility: hidden;
            opacity: 0;
            z-index: -1;
            top: 40px;
        }

            .top .lan dl a {
                display: block;
                line-height: 30px;
                background: #ebebeb;
                color: #000;
                font-size: 12px;
            }

    .top * {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s;
    }





.head {
    z-index: 44;
    position: relative;
}

    .head .logo {
        float: left;
    }

        .head .logo img {
            margin-top: 10px;
            height: 80px;
        }

    .head .right {
        float: right;
    }

        .head .right li {
            float: left;
            position: relative;
            margin-left: 27px;
        }

            .head .right li .h2tit {
            }

                .head .right li .h2tit a {
                    font-size: 16px;
                    font-family:  ;
                    font-weight: 400;
                    color: #666666;
                    display: block;
                    line-height: 100px;
                    position: relative;
                    padding: 0px 5px;
                }

            .head .right li:hover dl {
                visibility: visible;
                opacity: 1;
                top: 100px;
                z-index: 5;
            }

            .head .right li dl {
                position: absolute;
                top: 122px;
                left: 50%;
                -o-transform: translate(-50%, 0%);
                -webkit-transform: translate(-50%, 0%);
                -moz-transform: translate(-50%, 0%);
                -ms-transform: translate(-50%, 0%);
                transform: translate(-50%, 0%);
                width: 320px;
                text-align: center;
                -webkit-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                -moz-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                -o-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                -ms-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                visibility: hidden;
                opacity: 0;
                z-index: -1;
                top: 120px;
                background: #fff;
            }

                .head .right li dl dd {
                    float: left;
                    width: 50%;
                }

                    .head .right li dl dd:hover {
                        background: #0166B3;
                    }

                        .head .right li dl dd:hover a {
                            color: #fff;
                        }

                    .head .right li dl dd a {
                        display: block;
                        line-height: 35px;
                        color: #666;
                    }

    .head * {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s;
    }

    .head .right li:hover .h2tit a,
    .head .right li.current .h2tit a {
        color: #0166B3
    }

        .head .right li:hover .h2tit a:after,
        .head .right li.current .h2tit a:after {
            width: 100%;
        }



    .head .right li .h2tit a:after {
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        transition: all 0.4s;
        width: 0;
        height: 2px;
        background: #0166B3;
        content: "";
        position: absolute;
        top: 63%;
        left: 50%;
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }





.banner {
}

    .banner img {
        display: block;
        width: 100%;
    }



    .banner .swiper-button-next,
    .banner .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: url(../images/left.png) no-repeat center center;
        background-size: 100%;
    }

    .banner .swiper-button-next {
        background: url(../images/right.png) no-repeat center center;
        background-size: 100%;
    }

    .banner .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #FFFFFF;
        border-radius: 50%;
        margin: 0px 5px;
        opacity: 1;
    }

        .banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: #0166B3
        }





.titlemodel {
    text-align: center;
}

    .titlemodel .text {
        display: inline-block;
        vertical-align: middle;
        background: url(../images/title.png) no-repeat 76% bottom;
        padding-bottom: 25px;
    }

        .titlemodel .text .en {
            font-size: 40px;
            font-family:  ;
            font-weight: bold;
            color: #EBEBEB;
            line-height: 1;
            text-transform: uppercase;
        }

        .titlemodel .text .cn {
            font-size: 30px;
            font-family:  ;
            font-weight: bold;
            color: #282828;
            line-height: 1;
            margin-top: -8px;
        }

.section_1 {
    padding-top: 80px;
    background: url(../images/c.png) no-repeat center 109%;
    padding-bottom: 60px;
}

    .section_1 .tab {
        padding-top: 53px;
    }

        .section_1 .tab .hd {
            /* line-height: 120px; */
            background: #EBEBEB;
            text-align: center;
        }

            .section_1 .tab .hd a:after {
                position: absolute;
                top: 0%;
                left: 50%;
                -o-transform: translate(-50%, 0%);
                -webkit-transform: translate(-50%, 0%);
                -moz-transform: translate(-50%, 0%);
                -ms-transform: translate(-50%, 0%);
                transform: translate(-50%, 0%);
                height: 9px;
                content: "";
                width: 0px;
                background: #0166B3
            }

            .section_1 .tab .hd a:after,
            .section_1 .tab .hd a {
                -webkit-transition: all 0.4s;
                -o-transition: all 0.4s;
                -moz-transition: all 0.4s;
                -ms-transition: all 0.4s;
                transition: all 0.4s;
            }

                .section_1 .tab .hd a:hover,
                .section_1 .tab .hd a.current {
                    background: #fff;
                    -webkit-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                    -moz-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                    -o-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                    -ms-box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                    box-shadow: 0px 12px 24px rgba(68, 68, 68, .1);
                }

                    .section_1 .tab .hd a:hover:after,
                    .section_1 .tab .hd a.current:after {
                        width: 100%;
                    }

                .section_1 .tab .hd a:nth-child(1) span {
                    background: url(../images/i1.png) no-repeat left center;
                }

                .section_1 .tab .hd a:nth-child(2) span {
                    background: url(../images/i2.png) no-repeat left center;
                }



                .section_1 .tab .hd a:nth-child(3) span {
                    background: url(../images/i3.png) no-repeat left center;
                }



            .section_1 .tab .hd a {
                position: relative;
                float: left;
                width: 33.333%;
                line-height: 120px;
                height: 120px;
                font-size: 20px;
                font-family:  ;
                font-weight: bold;
                color: #282828;
            }

            .section_1 .tab .hd span {
                display: inline-block;
                padding: 0px 40px;
            }

        .section_1 .tab .bd {
            padding-top: 42px;
            /* background: url(../images/bg.png) no-repeat center bottom; */
        }

            .section_1 .tab .bd .model {
            }

                .section_1 .tab .bd .model li {
                    float: left;
                    width: 25%;
                }

                .section_1 .tab .bd .model .con a {
                    color: inherit !important;
                    line-height: 25px;
                }

                .section_1 .tab .bd .model .con:hover * {
                    color: #fff !important;
                }

                .section_1 .tab .bd .model .con:hover a {
                    color: #fff !important;
                }

                .section_1 .tab .bd .model .con *,
                .section_1 .tab .bd .model .con {
                    display: block;
                }

                .section_1 .tab .bd .model .con {
                    height: 185px;
                    overflow: hidden;
                    border-right: 1px solid #E4E4E4;
                    border-bottom: 1px solid #E4E4E4;
                    padding: 30px;
                }

            .section_1 .tab .bd .title {
                font-size: 18px;
                font-family:  ;
                font-weight: bold;
                color: #282828;
                padding-left: 0px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .section_1 .tab .bd .dec {
                font-size: 14px;
                font-family:  ;
                font-weight: 400;
                color: #666666;
                margin-top: 15px;
                height: 50px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }

            .section_1 .tab .bd .model .con a.more {
                width: 100px;
                height: 30px;
                background: rgba(0, 0, 0, 0);
                border: 1px solid #ffffff;
                border-radius: 15px;
                text-align: center;
                line-height: 29px;
                font-size: 14px;
                font-family:  ;
                font-weight: 400;
                color: #FFFFFF !important;
            }

    .section_1 .more0 {
        display: block;
        margin: auto;
        margin-top: 56px;
        width: 144px;
        height: 36px;
        background: #0166B3;
        border-radius: 5px;
        text-align: center;
        line-height: 36px;
        font-size: 14px;
        font-family:  ;
        font-weight: normal;
        color: #FFFFFF;
    }





    .section_1 .tab .bd .icon1 .con .title {
        background: url(../images/ic1.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon2 .con .title {
        background: url(../images/ic2.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon3 .con .title {
        background: url(../images/ic3.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon4 .con .title {
        background: url(../images/ic4.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon5 .con .title {
        background: url(../images/ic5.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon6 .con .title {
        background: url(../images/ic6.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon7 .con .title {
        background: url(../images/ic7.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon8 .con .title {
        background: url(../images/ic8.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon1:hover .con .title {
        background: url(../images/ichover1.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon2:hover .con .title {
        background: url(../images/ichover2.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon3:hover .con .title {
        background: url(../images/ichover3.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon4:hover .con .title {
        background: url(../images/ichover4.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon5:hover .con .title {
        background: url(../images/ichover5.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon6:hover .con .title {
        background: url(../images/ichover6.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon7:hover .con .title {
        background: url(../images/ichover7.png) no-repeat left center;
    }

    .section_1 .tab .bd .icon8:hover .con .title {
        background: url(../images/ichover8.png) no-repeat left center;
    }





    .section_1 .tab .bd .model .icon5 a,
    .section_1 .tab .bd .model .icon6 a,
    .section_1 .tab .bd .model .icon7 a,
    .section_1 .tab .bd .model .icon8 a {
        border-bottom: none
    }

    .section_1 .tab .bd .model * {
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        transition: all 0.4s;
    }

    .section_1 .tab .bd .model .con:hover {
        background: #0166B3
    }

    .section_1 .tab .bd a:hover .title {
        color: #fff
    }

    .section_1 .tab .bd a:hover .dec {
        color: #fff
    }



.section_2 {
    background: #0166B3;
    padding: 70px 0;
    padding-bottom: 0;
}

    .section_2 .list {
        zoom: 1;
        overflow: hidden;
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

        .section_2 .list li:nth-child(4n) {
            margin-right: 0px;
        }

        .section_2 .list li {
            /* float: left; */
            /* width: calc((100% - 60px)/4); */
            /* margin-right: 20px; */
        }

            .section_2 .list li a,
            .section_2 .list li a * {
                display: block;
            }

            .section_2 .list li a {
            }

            .section_2 .list li .imgbox:hover img {
                -webkit-transform: scale(1.05,1.05);
                -o-transform: scale(1.05,1.05);
                -moz-transform: scale(1.05,1.05);
                -ms-transform: scale(1.05,1.05);
                transform: scale(1.05,1.05);
            }

            .section_2 .list li .imgbox {
                overflow: hidden;
            }

                .section_2 .list li .imgbox img {
                    width: 100%;
                }

            .section_2 .list li .content1 {
                line-height: 57px;
                height: 57px;
                background: #282828;
                padding: 0px 30px;
                padding-right: 20px;
            }

            .section_2 .list li .title {
                float: left;
                font-size: 16px;
                font-family:  ;
                font-weight: 400;
                color: #FFFFFF;
            }

            .section_2 .list li .r {
                width: 100px;
                height: 30px;
                background: rgba(0, 0, 0, 0);
                border: 1px solid #E4E4E4;
                border-radius: 5px;
                float: right;
                line-height: 28px;
                text-align: center;
                color: #fff;
                margin-top: 14px;
            }

            .section_2 .list li .content2 {
                font-size: 14px;
                font-family:  ;
                font-weight: 100;
                color: #FFFFFF;
                line-height: 20px;
                padding: 10px;
                padding-bottom: 30px;
            }

    .section_2 .list2 li .num em {
        font-style: normal;
        font-size: 45px;
        font-family: Impact;
        font-weight: 400;
        color: #FFFFFF;
        position: absolute;
        right: -6px;
        top: -13px;
    }

    .section_2 .list2 {
        background: url(../images/bg2.jpg) no-repeat center center;
        background-size: cover;
        padding-top: 60px;
        padding-bottom: 50px;
    }

        .section_2 .list2 li:nth-child(4) {
            border-right: none;
        }

        .section_2 .list2 li {
            float: left;
            width: 25%;
            text-align: center;
            color: #fff;
            border-right: 1px solid rgba(255, 255, 255, 0.6);
        }

            .section_2 .list2 li .num {
                font-size: 60px;
                font-family: Impact;
                font-weight: 400;
                color: #FFFFFF;
                display: inline-block;
                position: relative;
                padding: 0px 20px;
            }

            .section_2 .list2 li .title {
                font-size: 18px;
                font-family:  ;
                font-weight: bold;
                color: #FFFFFF;
                line-height: 36px;
            }

            .section_2 .list2 li .dec {
                font-size: 14px;
                font-family:  ;
                font-weight: 400;
                color: #FFFFFF;
                line-height: 24px;
                text-align: left;
                width: 200px;
                max-width: 100%;
                margin: auto;
            }

    .section_2 .en {
        opacity: .1;
    }

    .section_2 .cn {
        color: #fff !important;
    }

.section_3 {
    padding-top: 93px;
}

    .section_3 .list {
        margin-top: 62px;
        zoom: 1;
        overflow: hidden;
        background: url(../images/bg3.jpg) no-repeat center center;
        background-size: cover;
    }

        .section_3 .list li {
            float: left;
            width: 20%;
            text-align: center;
        }

            .section_3 .list li .dec a {
                color: inherit;
            }

            .section_3 .list li .cons *,
            .section_3 .list li .cons {
                display: block;
            }

            .section_3 .list li .cons {
                height: 600px;
                position: relative;
            }

            .section_3 .list li .text {
                position: absolute;
                top: 50%;
                left: 50%;
                -o-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                width: 100%;
            }

            .section_3 .list li .en {
                font-size: 30px;
                font-family:  ;
                font-weight: 400;
                color: rgba(255, 255, 255, 0.1);
                text-transform: uppercase;
                line-height: 1;
            }

            .section_3 .list li .cn {
                font-size: 30px;
                font-family:  ;
                font-weight: bold;
                color: #FFFFFF;
                line-height: 1;
                padding-top: 20px;
            }

            .section_3 .list li.current .content,
            .section_3 .list li:hover .content {
                top: 50%;
                opacity: 1;
                background: rgba(1, 102, 179, 0.8);
            }



            .section_3 .list li.current .text,
            .section_3 .list li:hover .text {
                top: 60%;
                opacity: 0;
            }





            .section_3 .list li .content {
                position: absolute;
                top: 50%;
                left: 50%;
                -o-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                width: 100%;
                top: 60%;
                opacity: 0;
                height: 100%;
                display: -webkit-box;
                display: -moz-box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .section_3 .list li .text2 {
            }

            .section_3 .list li .cn2 {
                font-size: 30px;
                font-family:  ;
                font-weight: bold;
                color: #FFFFFF;
                line-height: 1;
                padding-top: 20px;
            }

            .section_3 .list li .cons a {
                color: #fff;
            }

            .section_3 .list li .en2 {
                font-size: 30px;
                font-family:  ;
                font-weight: 400;
                color: rgba(255, 255, 255, 0.1);
                text-transform: uppercase;
                line-height: 1;
            }

            .section_3 .list li .line {
                width: 144px;
                height: 1px;
                background: #FFFFFF;
                margin: auto;
                position: relative;
                margin-top: 27px;
                margin-bottom: 35px;
            }

                .section_3 .list li .line i {
                    width: 9px;
                    height: 9px;
                    background: #FFFFFF;
                    border-radius: 50%;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    -o-transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    -moz-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
                }

            .section_3 .list li .more {
                width: 100px;
                height: 30px;
                background: rgba(0, 0, 0, 0);
                border: 1px solid #E4E4E4;
                border-radius: 15px;
                margin: 0px auto;
                margin-top: 25px;
                line-height: 30px;
                color: #fff;
            }

            .section_3 .list li .dec {
                width: 128px;
                font-size: 16px;
                font-family:  ;
                font-weight: 400;
                color: #FFFFFF;
                margin: 0 auto;
                text-align: left;
                line-height: 1.6;
                max-width: 100%;
            }

            .section_3 .list li:hover .center {
                opacity: 1;
            }

            .section_3 .list li .center {
                opacity: 0;
                width: 169px;
                height: 169px;
                background: url(../images/more3.png) no-repeat center 30px rgba(1, 102, 179, 0.8);
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 50%;
                -o-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                text-align: center;
                font-size: 24px;
                font-family:  ;
                font-weight: 400;
                color: #FFFFFF;
                padding-top: 106px;
                line-height: 1;
            }

    .section_3 * {
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        transition: all 0.4s;
    }



.section_4 {
    padding-top: 70px;
}

    .section_4 .hd {
        margin-top: 42px;
        text-align: center;
    }

        .section_4 .hd a:hover,
        .section_4 .hd a.current {
            background: #0166B3
        }

            .section_4 .hd a:hover span,
            .section_4 .hd a.current span {
                color: #fff
            }

        .section_4 .hd a {
            display: inline-block;
            width: 153px;
            line-height: 49px;
            border-radius: 10px;
        }

    .section_4 .hd {
        margin-bottom: 40px;
    }

        .section_4 .hd a span {
            display: block;
            font-size: 18px;
            font-family:  ;
            font-weight: 400;
            color: #282828;
            text-align: left;
            padding-left: 52px;
            background-position: 10px center !important;
        }

        .section_4 .hd a:nth-child(1) span,
        .section_4 .hd a:nth-child(1) span {
            background: url(../images/u1.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(1):hover span,
        .section_4 .hd a:nth-child(1).current span {
            background: url(../images/uhover1.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(2) span,
        .section_4 .hd a:nth-child(2) span {
            background: url(../images/u2.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(2):hover span,
        .section_4 .hd a:nth-child(2).current span {
            background: url(../images/uhover2.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(3) span,
        .section_4 .hd a:nth-child(3) span {
            background: url(../images/u3.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(3):hover span,
        .section_4 .hd a:nth-child(3).current span {
            background: url(../images/uhover3.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(4) span,
        .section_4 .hd a:nth-child(4) span {
            background: url(../images/u4.png) no-repeat left center;
        }

        .section_4 .hd a:nth-child(4):hover span,
        .section_4 .hd a:nth-child(4).current span {
            background: url(../images/uhover4.png) no-repeat left center;
        }

    .section_4 .bd {
    }

    .section_4 .bd {
        margin-bottom: 50px;
    }

        .section_4 .bd .model {
            position: relative;
            padding: 0px 90px;
        }

        .section_4 .bd .imgbox {
            padding: 8px;
            background: #fff;
        }

            .section_4 .bd .imgbox img {
                width: 100%;
            }

        .section_4 .bd .title {
            font-size: 16px;
            font-family:  ;
            font-weight: 400;
            color: #282828;
            padding-top: 20px;
            padding-bottom: 20px;
            line-height: 1;
            text-align: center;
        }

        .section_4 .bd .list {
            background: #EBEBEB;
            padding: 12px;
        }

        .section_4 .bd .swiper-button-next {
            background: url(../images/right2.png) no-repeat center center;
            background-size: 100%;
        }

        .section_4 .bd .swiper-button-prev {
            background: url(../images/left2.png) no-repeat center center;
            background-size: 100%;
        }

        .section_4 .bd .swiper-button-next,
        .section_4 .bd .swiper-button-prev {
            width: 67px;
            height: 67px;
        }

    .section_4 .bd {
        position: relative;
        height: 330px;
    }

        .section_4 .bd .model {
            width: 100%;
            visibility: hidden;
            opacity: 0;
            z-index: -1;
            top: 60px;
            position: absolute;
            left: 0px;
        }

            .section_4 .bd .model.current {
                visibility: visible;
                opacity: 1;
                top: 0px;
                z-index: 5;
            }

.section_5 {
    background: url(../images/mg.png) no-repeat center center;
    background-size: cover;
    color: #fff;
    padding-bottom: 37px;
}

    .section_5 .left {
        float: left;
        font-size: 25px;
        font-family: Source Han Sans CN;
        font-weight: normal;
        color: #FFFFFF;
        width: 525px;
        margin-left: 52px;
        padding-top: 58px;
    }

        .section_5 .left p {
            float: left;
            width: 50%;
            padding-left: 30px;
            background: url(../images/dot.png) no-repeat left center;
        }



    .section_5 .right {
        float: right;
        width: 382px;
        height: 132px;
        background: rgba(50, 151, 228, 0);
        border: 2px solid #FFFFFF;
        border-radius: 10px;
        margin-top: 31px;
        padding-top: 10px;
        padding-left: 43px;
        font-size: 30px;
        line-height: 1;
    }

        .section_5 .right p {
            font-size: 30px;
            font-family: Source Han Sans CN;
            font-weight: bold;
            color: #FFFFFF;
            text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.35);
        }

            .section_5 .right p:nth-child(1) {
                font-size: 24px;
                padding-left: 60px;
                background: url(../images/tel4.png) no-repeat left center;
                line-height: 57px;
                margin-left: 20px;
            }

        .section_5 .right strong {
            font-size: 38px;
        }

.section_6 {
    padding-top: 59px;
}

    .section_6 .hd {
        margin-top: 49px;
        text-align: center;
        margin-bottom: 40px;
    }

        .section_6 .hd a {
            display: inline-block;
            width: 159px;
            text-align: center;
            font-size: 20px;
            color: #282828;
            line-height: 50px;
            border-radius: 10px;
        }

            .section_6 .hd a:hover,
            .section_6 .hd a.current {
                background: #0166B3;
                color: #fff;
            }

    .section_6 .bd {
    }

        .section_6 .bd .model {
        }

            .section_6 .bd .model .left {
                float: left;
                width: 37.6%;
            }

            .section_6 .bd .model .right {
                float: right;
                width: 62.4%;
            }

            .section_6 .bd .model .left img {
                height: 280px;
            }

            .section_6 .bd .model .right img {
                height: 160px;
            }

            .section_6 .bd .model li:nth-child(4) .imgbox,
            .section_6 .bd .model li:nth-child(3) .imgbox {
                display: none;
            }

            .section_6 .bd .model li:nth-child(4),
            .section_6 .bd .model li:nth-child(3) {
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;
            }

                .section_6 .bd .model li:nth-child(3) .title,
                .section_6 .bd .model li:nth-child(4) .title {
                    margin-top: 0px;
                }

            .section_6 .bd .model li {
                float: left;
                width: calc((100% - 60px)/2);
                margin-left: 30px;
                padding-bottom: 17px;
                margin-bottom: 16px;
                border-bottom: 1px solid #E4E4E4;
            }

            .section_6 .bd .model a * {
                display: block;
            }

            .section_6 .bd .model a {
                display: block;
            }

        .section_6 .bd .imgbox {
            position: relative;
            overflow: hidden;
        }

        .section_6 .bd .title:hover {
            color: #0166B3
        }

        .section_6 .bd .imgbox img:hover {
            -webkit-transform: scale(1.05,1.05);
            -o-transform: scale(1.05,1.05);
            -moz-transform: scale(1.05,1.05);
            -ms-transform: scale(1.05,1.05);
            transform: scale(1.05,1.05);
        }

        .section_6 .bd .imgbox img {
            width: 100%;
        }

        .section_6 .bd .time {
            width: 88px;
            /* height: 68px; */
            background: rgba(40, 40, 40, 0.6);
            position: absolute;
            left: 0px;
            top: 0px;
            text-align: center;
        }

        .section_6 .bd .day {
            font-size: 36px;
            font-family:  ;
            font-weight: bold;
            color: #FFFFFF;
            line-height: 1;
            padding-top: 9px;
        }

        .section_6 .bd .year {
            font-size: 16px;
            font-family:  ;
            font-weight: bold;
            color: #FFFFFF;
            line-height: 1;
            padding-bottom: 9px;
        }

        .section_6 .bd .title {
            font-size: 18px;
            font-family:  ;
            font-weight: bold;
            color: #282828;
            margin-top: 30px;
            margin-left: 7px;
            margin-right: 7px;
            line-height: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .section_6 .bd .dec {
            margin-top: 12px;
            margin-left: 7px;
            margin-right: 7px;
            font-size: 14px;
            font-family:  ;
            font-weight: 400;
            color: #666666;
            line-height: 24px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            height: 52px;
        }

    .section_6 .more2 {
        width: 144px;
        text-align: center;
        background: #0166B3;
        border-radius: 17px;
        display: block;
        margin: auto;
        color: #fff;
        margin-top: 60px;
        margin-bottom: 90px;
        line-height: 36px;
    }

.section_7 {
    background: url(../images/section_7.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 70px;
}

    .section_7 .title {
        font-size: 30px;
        font-family:  ;
        font-weight: bold;
        color: #FFFFFF;
        padding-top: 93px;
        padding-bottom: 61px;
        text-align: center;
    }

    .section_7 .list1 {
        zoom: 1;
        overflow: hidden;
        text-align: center;
    }

        .section_7 .list1 li {
            float: left;
            width: 33.333%;
        }

            .section_7 .list1 li img {
            }

    .section_7 .tit {
        font-size: 18px;
        font-family:  ;
        font-weight: normal;
        color: #FFFFFF;
        padding-top: 18px;
        padding-bottom: 56px;
        line-height: 1;
    }

    .section_7 .content1 {
        width: 1116px;
        margin: auto;
        max-width: 100%;
        zoom: 1;
        overflow: hidden;
    }

    .section_7 .model {
        float: left;
        width: 33.3%;
    }

    .section_7 .s1 {
        font-size: 18px;
        color: #FFFFFF;
        float: left;
        width: 57px;
        line-height: 45px;
    }

    .section_7 .s2 {
        width: 272px;
        height: 45px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        float: left;
        padding: 0px 21px;
        color: #fff;
        width: calc(100% - 90px);
    }

    .section_7 textarea {
        width: 1116px;
        margin: auto;
        max-width: 100%;
        display: block;
        margin-top: 34px;
        display: block;
        height: 129px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        padding: 10px;
        color: #fff;
    }

    .section_7 .send {
        width: 169px;
        height: 40px;
        background: #0166B3;
        border-radius: 19px;
        display: block;
        margin: auto;
        margin-top: 44px;
        border: none;
        color: #fff;
        cursor: pointer;
    }



.footer {
}

    .footer .block1 {
        padding-top: 57px;
        background: #0166B3;
        color: #fff;
        padding-bottom: 54px;
    }

    .footer .nav {
        float: left;
    }

        .footer .nav li {
            float: left;
            margin-right: 0px;
        }

    .footer .h2tit {
        font-size: 16px;
        font-family:  ;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
    }

        .footer .h2tit a {
            color: #fff;
        }

    .footer dl dd a {
        font-size: 14px;
        color: #fff;
        line-height: 27px;
    }

    .footer .infor {
        float: left;
        padding-left: 17px;
    }

    .footer .tel {
        line-height: 32px;
        margin-top: 26px;
        font-size: 30px;
        padding-left: 40px;
        background: url(../images/tel6.png) no-repeat left center;
        margin-bottom: 9px;
    }

    .footer .dec {
        font-size: 14px;
        font-family:  ;
        font-weight: 400;
        max-width: 300px;
        color: #FFFFFF;
        line-height: 24px;
    }

    .footer .ewm {
        float: right;
        text-align: center;
    }

        .footer .ewm img {
        }

    .footer .tit {
        padding-top: 13px;
        line-height: 1;
    }

    .footer .block2 {
        font-size: 14px;
        font-family:  ;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
        background: #282828;
        padding-top: 38px;
        padding-bottom: 38px;
    }

        .footer .block2 a {
            color: #fff;
        }

.section_6 .bd .model *,
.section_4 .bd .model,
.section_2 .list li a * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}



.section_1 .tab .bd .model li:nth-child(4n) a {
    border-right: none
}



.showalermo {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    cursor: pointer;
    background: rgba(255,255,255,.8);
}

    .showalermo .center {
        position: absolute;
        top: 50%;
        left: 50%;
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #fff;
        text-align: center;
        padding: 10px;
    }

        .showalermo .center img {
        }

    .showalermo .title {
    }





.mobile-inner-nav li.current .h2tit {
    background: url(../images/right3.png) no-repeat 90% center;
    background-size: 20px
}

.mobile-inner-nav li:nth-child(1) .h2tit {
    background: none !important
}



.bottom_bar {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: #006158;
    background: -webkit-linear-gradient(top,#282828,#000000);
    background: linear-gradient(top,#89e639,#6db92b);
    z-index: 88888;
}

    .bottom_bar ul li {
        float: left;
        width: 25%;
        height: 50px;
        text-align: center;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .bottom_bar ul li a {
            color: #fff;
            font-size: 12px;
        }

            .bottom_bar ul li a img {
                display: block;
                height: 20px;
                margin: 0px auto;
                font-size: 2rem;
            }



.section_1 .tab .bd .dec a {
    display: inline !important;
}



.banner .swiper-button-next, .banner .swiper-button-prev {
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.banner:hover .swiper-button-next, .banner:hover .swiper-button-prev {
    opacity: 1;
}

.ce_zs {
}

.ce_zs
