.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

a, .transition, .g-head .wal, :before, img {
    -webkit-transition: All .5s ease;
    transition: All .5s ease;
}

.zoomImg {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

    .zoomImg:before {
        position: absolute;
        top: 0;
        left: -90%;
        z-index: 2;
        display: block;
        content: "";
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .zoomImg:hover:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }

    .zoomImg:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .zoomImg img {
        width: 100%;
    }

a:hover .zoomImg:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

a:hover .zoomImg img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
}

body {
    font-size: .14rem;
    font-family: Arial,"微软雅黑";
    color: #333;
    -webkit-text-size-adjust: none;
    opacity: 0;
}

    body.show {
        opacity: 1;
    }

a {
    color: #333;
    text-decoration: none;
    outline: none;
}

    a:active {
        star: expression(this.onFocus=this.blur());
    }

    a:link {
        text-decoration: none;
        outline: none;
    }

    a:visited {
        text-decoration: none;
        outline: none;
    }

    a:hover {
        text-decoration: none;
        color: #1b54a6;
        outline: none;
    }

li {
    list-style: outside none;
}

li{list-style-type: none}

h1 {
    font-size: 16px;
}

h2, h3, h4, h5 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

textarea, input {
    background: transparent;
    font-size: 12px;
    font-family: Arial,"微软雅黑";
    color: #888;
    outline: none;
    border: 0;
}

em {
    font-style: normal;
}

img {
    vertical-align: middle;
    max-width: 100%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.wal {
    max-width: 15rem;
    margin: 0 auto;
}

@font-face {
    font-family: "iconfont";
    src: url("//at.alicdn.com/t/font_2640790_5c5uugdfwpo.woff2?t=1625488719772") format("woff2"),url("//at.alicdn.com/t/font_2640790_5c5uugdfwpo.woff?t=1625488719772") format("woff"),url("//at.alicdn.com/t/font_2640790_5c5uugdfwpo.ttf?t=1625488719772") format("truetype");
}

.iconfont {
    font-family: "iconfont";
}

@font-face {
    font-family: "DINPro-Bold";
    src: url(../images/DINPro-Bold.woff2) format("woff2"),url(../images/DINPro-Bold.woff) format("woff"),url(../images/DINPro-Bold.ttf) format("truetype"),url(../images/DINPro-Bold.eot) format("embedded-opentype"),url(../images/DINPro-Bold.svg) format("svg");
    font-weight: normal;
    font-style: normal;
}

.g-headD {
    height: .85rem;
}

.g-head {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 .1rem rgba(0,0,0,.1);
}

    .g-head .wal {
        height: .85rem;
        position: relative;
        max-width: 100%;
    }

    .g-head a.logo {
        display: block;
        position: absolute;
        z-index: 5;
        left: .2rem;
        top: 0;
        bottom: 0;
        width: 1.89rem;
        background: url(../images/logo.png) center no-repeat;
        background-size: 100%;
    }

    .g-head .side {
        position: absolute;
        top: 0;
        right: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: .24rem;
    }

        .g-head .side .tel {
            padding: 0 .28rem;
            color: #1b54a6;
        }

            .g-head .side .tel:hover {
                color: #06c;
            }

        .g-head .side .btn {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 2.3rem;
            height: .85rem;
            line-height: 1em;
            background: #1b54a6;
            color: #fff;
        }

            .g-head .side .btn:hover {
                background: #06c;
            }

            .g-head .side .btn img {
                width: .28rem;
                margin-right: .15rem;
            }

    .g-head .navA {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
    }

        .g-head .navA i {
            font-family: "iconfont";
            font-style: normal;
            font-size: .2rem;
        }

    .g-head .g-nav {
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -5.6rem;
    }

        .g-head .g-nav ul {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .g-head .g-nav a.name {
            display: block;
            height: .85rem;
            line-height: .85rem;
            font-size: .16rem;
            color: #333;
            position: relative;
            padding: 0 .23rem;
        }

            .g-head .g-nav a.name:before {
                content: "";
                display: block;
                position: absolute;
                left: 50%;
                bottom: 0;
                right: 50%;
                height: .07rem;
                background: #1b54a6;
                opacity: 0;
            }

            .g-head .g-nav a.name.on {
                color: #1b54a6;
            }

                .g-head .g-nav a.name.on:before {
                    left: 0;
                    right: 0;
                    opacity: 1;
                }

        .g-head .g-nav .foot {
            display: none;
        }

@media screen and (min-width: 800px) {
    .g-head .g-nav li {
        position: relative;
    }

        .g-head .g-nav li .list {
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 2.05rem;
            padding-top: 0;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

            .g-head .g-nav li .list:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                right: -1px;
                bottom: 0;
                border-left: #3365ac solid 1px;
                border-right: #3365ac solid 1px;
            }

            .g-head .g-nav li .list dl {
                position: relative;
                z-index: 2;
            }

            .g-head .g-nav li .list a {
                display: block;
                padding: 0 .02rem 0 .2rem;
                font-size: .14rem;
                line-height: .48rem;
                height: .48rem;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                color: #fff;
            }

                .g-head .g-nav li .list a:hover {
                    background: #009943;
                }

            .g-head .g-nav li .list:hover {
                background: #1b54a6 url(../images/bg.png) center top repeat-x;
                background-size: auto .08rem;
            }

        .g-head .g-nav li:hover a.name {
            color: #1b54a6;
        }

            .g-head .g-nav li:hover a.name:before {
                left: 0;
                right: 0;
                opacity: 1;
            }

    .pc-nav-bg {
        position: fixed;
        z-index: 40;
        left: 0;
        top: -3rem;
        right: 0;
        background: rgba(27,84,166,.8);
        height: 3.05rem;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }

        .pc-nav-bg:after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            height: .08rem;
            background: url(../images/bg.png) center repeat-x;
            background-size: auto 100%;
        }

    body.pc-nav-show .g-head .g-nav li .list {
        opacity: 1;
        visibility: visible;
        height: 3.05rem;
        padding-top: .2rem;
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }

    body.pc-nav-show .pc-nav-bg {
        opacity: 1;
        visibility: visible;
        top: .85rem;
    }
}

.g-foot {
    border-top: #333 solid .12rem;
    background: #1b54a6;
    padding: 0 .65rem;
    color: #fff;
}

    .g-foot a {
        color: #fff;
    }

        .g-foot a:hover {
            color: #009943;
        }

    .g-foot .wal {
        min-height: 1.71rem;
        max-width: 100%;
        position: relative;
    }

    .g-foot .content {
        line-height: .3rem;
        padding: .25rem 0;
    }

        .g-foot .content p {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .g-foot .content p img {
                margin: 0 .06rem 0 .14rem;
            }

    .g-foot .ewm {
        width: 1.12rem;
        text-align: center;
        position: absolute;
        top: .21rem;
        right: 0;
    }

        .g-foot .ewm .name {
            line-height: 1em;
            padding-top: .06rem;
            margin-left: -0.3rem;
            margin-right: -0.3rem;
        }

    .g-foot .list {
        position: absolute;
        top: 0;
        width: 8.2rem;
        right: 0;
        padding-right: 1.2rem;
    }

        .g-foot .list .name {
            font-size: .18rem;
            padding: .22rem 0 .2rem 0;
        }

        .g-foot .list ul {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .g-foot .list li {
            padding-right: .20rem;
        }

.topA {
    display: block;
    width: .4rem;
    height: .4rem;
    background: #fff url(../images/top.png) center no-repeat;
    background-size: 75%;
    border-radius: .05rem;
    position: fixed;
    z-index: 40;
    bottom: .2rem;
    right: .1rem;
    opacity: 0;
    visibility: hidden;
}

    .topA.show {
        opacity: 1;
        visibility: visible;
    }

@media screen and (max-width: 1300px)and (min-width: 800px) {
    body {
        font-size: .18rem;
    }

    .g-head .g-nav a.name {
        font-size: .2rem;
        padding: 0 .12rem;
    }

    .g-foot .wal {
        min-height: 2rem;
    }

    .g-foot .content {
        line-height: .36rem;
        font-size: .16rem;
    }

    .g-foot .list {
        width: 9rem;
    }

        .g-foot .list .name {
            font-size: .2rem;
        }

        .g-foot .list li {
            padding-right: .2rem;
        }
}

@media screen and (max-width: 800px) {
    html {
        font-size: 50px;
    }

    body {
        font-size: .24rem;
    }

    .wal {
        margin: 0 .6rem;
    }

    body.navShow {
        overflow: hidden;
    }

        body.navShow .g-head .head {
            background: #1b54a6;
        }

        body.navShow .g-head a.navA i:nth-child(1) {
            display: none;
        }

        body.navShow .g-head a.navA i:nth-child(2) {
            display: block;
        }

        body.navShow .g-head .g-nav {
            right: 0;
            left: 0;
        }

    .g-head {
        box-shadow: 0 0 .1rem rgba(0,0,0,.1);
    }

        .g-head .wal {
            height: 1.05rem;
        }

        .g-head a.logo {
            left: 0;
            width: 2.22rem;
        }

        .g-head .side {
            display: none;
        }

        .g-head .navA {
            right: -0.3rem;
            opacity: 1;
            visibility: visible;
            color: #333;
        }

            .g-head .navA i {
                font-family: "iconfont";
                font-style: normal;
                font-size: .34rem;
            }

                .g-head .navA i:nth-child(2) {
                    display: none;
                }

        .g-head .g-nav {
            position: fixed;
            bottom: 0;
            right: -100%;
            left: 100%;
            top: 1.05rem;
            overflow-y: auto;
            background: rgba(27,84,166,.95);
            -webkit-transition: all .5s ease;
            transition: all .5s ease;
            margin-left: 0;
        }

            .g-head .g-nav ul {
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                height: calc(100vh - 5rem);
                overflow-x: hidden;
                overflow-y: auto;
                padding: 0 .4rem;
                display: block;
            }

            .g-head .g-nav li {
                margin-left: 0;
                width: 100%;
                border-bottom: rgba(255,255,255,.1) solid 1px;
            }

            .g-head .g-nav a.name {
                font-size: .3rem;
                color: #fff;
                padding: 0 .2rem;
                height: 1rem;
                line-height: 1rem;
            }

                .g-head .g-nav a.name:before {
                    display: none;
                }

                .g-head .g-nav a.name.on {
                    color: #fff;
                }

            .g-head .g-nav li.s-nav-li a.name:after {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                right: .2rem;
                font-family: "iconfont";
            }

            .g-head .g-nav li.s-nav-li.open a.name:after {
                content: "";
            }

            .g-head .g-nav .list {
                border-top: rgba(255,255,255,.3) solid 1px;
                padding: .2rem 0 .2rem .2rem;
                display: none;
            }

                .g-head .g-nav .list dl {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-flex-wrap: wrap;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    margin-right: -0.45rem;
                }

                .g-head .g-nav .list dd {
                    min-width: 25%;
                    padding-right: .3rem;
                }

                .g-head .g-nav .list a {
                    display: block;
                    color: #fff;
                    line-height: .6rem;
                    font-size: .24rem;
                }

            .g-head .g-nav .foot {
                position: absolute;
                z-index: 5;
                left: 0;
                bottom: .5rem;
                right: 0;
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -webkit-flex-direction: column;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: center;
                -webkit-align-items: center;
                -ms-flex-align: center;
                align-items: center;
            }

                .g-head .g-nav .foot a {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -webkit-justify-content: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    width: 4.4rem;
                    height: 1.3rem;
                    color: #fff;
                    font-size: .36rem;
                }

                    .g-head .g-nav .foot a img {
                        width: .45rem;
                        margin-right: .2rem;
                    }

                    .g-head .g-nav .foot a.btn {
                        border: #fff solid 1px;
                        background: #1b54a6;
                        height: 1.07rem;
                    }

                        .g-head .g-nav .foot a.btn img {
                            width: .36rem;
                        }

        .g-head.on .wal {
            height: .8rem;
        }

        .g-head.on a.logo {
            width: 1.7rem;
        }

        .g-head.on .navA i {
            font-size: .28rem;
        }

        .g-head.on .g-nav {
            top: .8rem;
        }

    .g-foot {
        padding: 0;
    }

        .g-foot .wal {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
        }

        .g-foot .content {
            line-height: .47rem;
            padding: 0 0 .25rem 0;
            font-size: .2rem;
        }

        .g-foot .ewm {
            width: 2.27rem;
            position: relative;
            top: 0;
        }

            .g-foot .ewm .name {
                padding: .15rem 0 .5rem 0;
                font-size: .26rem;
            }

        .g-foot .list {
            position: static;
            top: 0;
            width: 100%;
            padding-right: 0;
        }

            .g-foot .list .name {
                font-size: .36rem;
                padding: .55rem 0 .45rem 0;
            }

            .g-foot .list ul {
                display: none;
            }
}

@media screen and (max-width: 550px) {
    .wal {
        margin: 0 .25rem;
    }
}

.ellipsis, .service a .name, .side-news .list a, .p-nav a em, .index-news2 .list a, .index-service .list li a .name, .index-news .col-2 .list a, .index-notice .list a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index-flash {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .index-flash li {
        background: center no-repeat;
        background-size: cover;
    }

        .index-flash li .wal {
            height: 7rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: #fff;
            text-align: center;
        }

        .index-flash li h2 {
            font-size: .6rem;
            line-height: 1em;
            text-shadow: 0 .03rem .07rem rgba(0,0,0,.22);
            padding-bottom: .15rem;
        }

        .index-flash li .content {
            max-width: 8.9rem;
            border-top: #fff solid 1px;
            font-size: .28rem;
            padding: .15rem 0 .95rem 0;
            text-shadow: 0 .03rem .07rem rgba(0,0,0,.22);
            position: relative;
        }

            .index-flash li .content .line {
                position: absolute;
                left: 0;
                top: -1px;
                height: 1px;
                background: #009943;
            }

        .index-flash li .more a {
            width: 1.93rem;
            display: block;
            line-height: .41rem;
            border: 1px solid #fff;
            border-radius: 8px;
            color: #fff;
        }

            .index-flash li .more a:hover {
                background: #009943;
                border-color: #009943;
                color: #fff;
            }

    .index-flash .dots {
        position: absolute;
        z-index: 5;
        left: 0;
        right: 0;
        bottom: .23rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .index-flash .dots span {
            background: #fff;
            border-radius: .04rem;
            margin: 0 .05rem;
            width: .48rem;
            height: .08rem;
            -webkit-transition: all .5s ease;
            transition: all .5s ease;
        }

            .index-flash .dots span.swiper-pagination-bullet-active {
                background: #009943;
            }

.index-notice {
    background: #f6f6f6;
    padding: 0 0 0 .65rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .2rem;
}

    .index-notice h2 {
        color: #1b54a6;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        font-size: .2rem;
        line-height: 1em;
    }

    .index-notice a.more {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 2.3rem;
        line-height: .85rem;
        height: .85rem;
        text-align: center;
        background: #1b54a6;
        color: #fff;
    }

        .index-notice a.more:hover {
            background: #06c;
        }

        .index-notice a.more span {
            display: none;
        }

    .index-notice .arrow {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 1.41rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: .85rem;
        overflow: hidden;
    }

        .index-notice .arrow a {
            height: .425rem;
            background: center no-repeat;
            background-size: .38rem;
            display: block;
        }

            .index-notice .arrow a.prev {
                background-color: #06c;
                background-image: url(../images/prev38.png);
            }

            .index-notice .arrow a.next {
                background-color: #009943;
                background-image: url(../images/next38.png);
            }

    .index-notice .list {
        width: 100%;
        height: .85rem;
        overflow: hidden;
        position: relative;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

        .index-notice .list li {
            padding: 0 .5rem 0 .1rem;
        }

        .index-notice .list a {
            display: block;
            height: .85rem;
            line-height: .85rem;
            padding-right: 1.35rem;
            max-width: 12.27rem;
            position: relative;
        }

            .index-notice .list a .time {
                position: absolute;
                top: 0;
                right: 0;
            }

.index-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 .65rem .9rem .65rem;
}

    .index-news .title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: .72rem 0 .54rem 0;
    }

        .index-news .title h2 {
            font-size: .24rem;
            line-height: 1em;
            position: relative;
            margin-right: .39rem;
        }

            .index-news .title h2:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                bottom: -0.1rem;
                right: 0;
                height: .02rem;
                background: #1b54a6;
            }

        .index-news .title ul {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

            .index-news .title ul li {
                font-size: .24rem;
                line-height: 1em;
                position: relative;
                margin-right: .39rem;
                -webkit-transition: color .5s ease;
                transition: color .5s ease;
                font-weight: bold;
                cursor: pointer;
            }

                .index-news .title ul li:before {
                    content: "";
                    display: block;
                    position: absolute;
                    left: 50%;
                    bottom: -0.1rem;
                    right: 50%;
                    opacity: 0;
                    height: .02rem;
                    background: #1b54a6;
                }

                .index-news .title ul li:hover {
                    color: #1b54a6;
                }

                .index-news .title ul li.on:before {
                    left: 0;
                    right: 0;
                    opacity: 1;
                }

        .index-news .title .en {
            height: .16rem;
            line-height: .16rem;
            font-size: .16rem;
            text-transform: uppercase;
            color: #999;
            border-left: #999 solid 1px;
            padding-left: .28rem;
        }

        .index-news .title a.more {
            display: block;
            background: url(../images/jia13.svg) center no-repeat;
            background-size: 100%;
            width: .13rem;
            position: absolute;
            top: .72rem;
            right: 0;
            height: .24rem;
        }

            .index-news .title a.more:hover {
                background-image: url(../images/jia13on.svg);
            }

    .index-news .col-1 {
        width: 56.5625vw;
    }

        .index-news .col-1 .list {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

            .index-news .col-1 .list a {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                color: #fff;
            }

                .index-news .col-1 .list a .zoomImg {
                    width: 31.875vw;
                    -webkit-box-flex: 0;
                    -webkit-flex: 0 0 auto;
                    -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
                    margin-right: 1px;
                    overflow: hidden;
                    position: relative;
                }

                    .index-news .col-1 .list a .zoomImg img {
                        width: 100%;
                        height: 4.34rem;
                    }

                .index-news .col-1 .list a .col {
                    background: #1b54a6;
                    width: 100%;
                    -webkit-box-flex: 0;
                    -webkit-flex: 0 1 auto;
                    -ms-flex: 0 1 auto;
                    flex: 0 1 auto;
                    padding: 0 .35rem;
                }

                    .index-news .col-1 .list a .col h5 {
                        padding: .2rem .35rem .26rem .35rem;
                        margin-right: -0.35rem;
                        margin-left: -0.35rem;
                        background: #009943;
                        color: #fff;
                        font-size: .2rem;
                        line-height: 1.8em;
                    }

                    .index-news .col-1 .list a .col .content {
                        min-height: 2.35rem;
                        line-height: .36rem;
                        text-align: justify;
                        padding: .32rem 0;
                        text-indent: 2em;
                    }

                    .index-news .col-1 .list a .col .more {
                        border: #fff solid 1px;
                        width: 1.93rem;
                        height: .48rem;
                        margin-left: auto;
                        border-radius: .06rem;
                        background: url(../images/img56.png) center no-repeat;
                        background-size: .56rem;
                        -webkit-transition: all .5s ease;
                        transition: all .5s ease;
                        cursor: pointer;
                    }

                        .index-news .col-1 .list a .col .more:hover {
                            background-color: #009943;
                            border-color: #009943;
                        }

        .index-news .col-1 .dots {
            position: absolute;
            z-index: 5;
            left: .18rem;
            bottom: .18rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
            -ms-flex-align: end;
            align-items: flex-end;
        }

            .index-news .col-1 .dots span {
                margin-right: .06rem;
                height: .23rem;
                width: .05rem;
                border-radius: .03rem;
                background: #1b54a6;
                -webkit-transition: all .5s ease;
                transition: all .5s ease;
            }

                .index-news .col-1 .dots span.swiper-pagination-bullet-active {
                    background: #009943;
                    height: .38rem;
                }

    .index-news .col-2 {
        width: 32.03125vw;
    }

        .index-news .col-2 .list ul {
            margin-top: -0.24rem;
            margin-bottom: -0.24rem;
        }

        .index-news .col-2 .list a {
            display: block;
            height: .6rem;
            line-height: .6rem;
            position: relative;
            font-size: .16rem;
            padding: 0 1.18rem 0 .16rem;
        }

            .index-news .col-2 .list a:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 50%;
                width: .04rem;
                height: .04rem;
                background: #1b54a6;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                border-radius: .01rem;
            }

            .index-news .col-2 .list a em {
                position: absolute;
                top: 0;
                right: 0;
                color: #999;
                -webkit-transition: color .5s ease;
                transition: color .5s ease;
            }

                .index-news .col-2 .list a em.em-2 {
                    display: none;
                }

            .index-news .col-2 .list a:hover em {
                color: #666;
            }

.news-head {
    padding: 0;
}

    .news-head .col-1 {
        width: 100%;
    }

        .news-head .col-1 .list a .zoomImg {
            width: 50%;
        }

        .news-head .col-1 .dots {
            width: 50%;
            left: 0;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

.index-service {
    background: url(../images/index-service.jpg) center no-repeat;
    background-size: cover;
    min-height: 6.53rem;
    text-align: center;
    color: #fff;
    padding: 0 .65rem;
}

    .index-service h2 {
        position: relative;
        padding: .75rem 0 .1rem 0;
        font-size: .24rem;
        line-height: 1em;
    }

        .index-service h2:before {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            bottom: 0;
            width: .4rem;
            height: .02rem;
            background: #fff;
            margin-left: -0.2rem;
        }

    .index-service .msg {
        line-height: .36rem;
        padding: .4rem 0;
        min-height: 1.57rem;
    }

    .index-service .list ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: -0.63rem;
    }

    .index-service .list li {
        width: 25%;
        padding: 0 0 .63rem .63rem;
    }

        .index-service .list li a {
            display: block;
            position: relative;
            background: #fff;
            color: #1b54a6;
        }

            .index-service .list li a .zoomImg:after {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                border: #fff solid .02rem;
            }

            .index-service .list li a .ico {
                width: 1.18rem;
                background: rgba(27,84,166,.9);
                border-radius: 50%;
                position: absolute;
                z-index: 5;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                top: .68rem;
            }

            .index-service .list li a .name {
                font-size: .24rem;
                line-height: .65rem;
                height: .65rem;
            }

            .index-service .list li a:hover {
                background: #009943;
                color: #fff;
            }

.index-news2 {
    padding: 0 .65rem .9rem .65rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .index-news2 .title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: .9rem 0 .3rem 0;
    }

        .index-news2 .title h2 {
            font-size: .24rem;
            line-height: 1em;
            position: relative;
            margin-right: .39rem;
        }

            .index-news2 .title h2:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                bottom: -0.1rem;
                right: 0;
                height: .02rem;
                background: #1b54a6;
            }

        .index-news2 .title .en {
            height: .16rem;
            line-height: .16rem;
            font-size: .16rem;
            text-transform: uppercase;
            color: #999;
            border-left: #999 solid 1px;
            padding-left: .28rem;
        }

        .index-news2 .title a.more {
            display: block;
            background: url(../images/jia13.svg) center no-repeat;
            background-size: 100%;
            width: .13rem;
            position: absolute;
            top: .9rem;
            right: 0;
            height: .24rem;
        }

            .index-news2 .title a.more:hover {
                background-image: url(../images/jia13on.svg);
            }

    .index-news2 .col {
        width: 5.19rem;
    }

    .index-news2 .list {
        padding-bottom: .24rem;
    }

        .index-news2 .list a {
            display: block;
            height: .4rem;
            line-height: .4rem;
            position: relative;
            font-size: .16rem;
            padding: 0 1.18rem 0 .16rem;
        }

            .index-news2 .list a:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 50%;
                width: .04rem;
                height: .04rem;
                background: #1b54a6;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                border-radius: .01rem;
            }

            .index-news2 .list a em {
                position: absolute;
                top: 0;
                right: 0;
                color: #999;
                -webkit-transition: color .5s ease;
                transition: color .5s ease;
            }

                .index-news2 .list a em.em-2 {
                    display: none;
                }

            .index-news2 .list a:hover em {
                color: #666;
            }

    .index-news2 .list-2 a {
        padding-left: .32rem;
        background: url(../images/img20.png) left center no-repeat;
        background-size: .2rem;
    }

        .index-news2 .list-2 a:before {
            display: none;
        }

        .index-news2 .list-2 a:hover {
            background-image: url(../images/img20on.png);
        }

    .index-news2 .zoomImg {
        border-radius: .06rem;
    }

.foot-link {
    background: #f6f6f6;
    min-height: .85rem;
    padding: .25rem .15rem .25rem .65rem;
    line-height: .35rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .foot-link .name {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .foot-link ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .foot-link li {
        padding-right: .36rem;
    }

.page-banner-wrapper {
    height: 3.5rem;
    overflow: hidden;
    position: relative;
}

.page-banner {
    background: center no-repeat;
    background-size: cover;
    height: 3.5rem;
}

    .page-banner .title {
        color: #fff;
        height: 3.5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 22.1875vw;
    }

        .page-banner .title .en {
            font-family: "DINPro-Bold";
            font-size: .64rem;
            letter-spacing: .03rem;
            text-transform: uppercase;
            line-height: 1em;
        }

        .page-banner .title h2 {
            font-size: .24rem;
            font-weight: 400;
            line-height: 1em;
            padding-top: .2rem;
        }

.p-nav {
    border-bottom: #dadada solid 1px;
    height: .61rem;
}

    .p-nav ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .p-nav li {
        padding: 0 1px;
    }

    .p-nav a {
        display: block;
        font-size: .16rem;
        height: .61rem;
        line-height: .6rem;
        text-align: center;
        width: 1.9rem;
        position: relative;
    }

        .p-nav a em {
            display: block;
            height: .6rem;
            padding: 0 .1rem;
        }

        .p-nav a:hover, .p-nav a.on {
            background: #009943;
            color: #fff;
        }

            .p-nav a.on:after {
                content: "";
                display: block;
                position: absolute;
                left: 50%;
                bottom: -0.06rem;
                width: .2rem;
                height: .2rem;
                background: #009943;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                margin-left: -0.1rem;
            }

.p-title {
    padding: .7rem 0 .5rem 0;
}

    .p-title h2 {
        font-size: .3rem;
        line-height: 1em;
    }

    .p-title .en {
        font-size: .18rem;
        line-height: 2em;
        color: #999;
        text-transform: uppercase;
        position: relative;
        padding: .15rem 0 .1rem 0;
    }

        .p-title .en:before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            width: .8rem;
            height: .04rem;
            background: #1b54a6;
        }

.about-1 .content {
    font-size: .16rem;
    line-height: .36rem;
    text-align: justify;
    margin-bottom: .36rem;
}

.about-1 .container {
    margin-bottom: .36rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .about-1 .container h5 {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        line-height: 4.06rem;
        text-align: center;
        color: #fff;
        background: -webkit-linear-gradient(11deg, #1B54A6, #009943);
        background: linear-gradient(79deg, #1B54A6, #009943);
        font-size: .48rem;
        font-weight: 400;
    }

    .about-1 .container .img {
        width: 5.96rem;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

        .about-1 .container .img img {
            width: 100%;
            height: 4.06rem;
        }

.about-2 .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem .55rem 1rem .55rem;
}

.about-2 .col {
    width: 4.07rem;
}

    .about-2 .col h3 {
        margin-bottom: .14rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: .99rem;
        background: #9a885e;
        color: #fff;
        border-radius: .05rem;
        font-size: .3rem;
        font-weight: 400;
        line-height: 1em;
    }

        .about-2 .col h3 img {
            width: .7rem;
            margin-right: .06rem;
        }

    .about-2 .col ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: .27rem;
    }

    .about-2 .col li {
        width: 2rem;
        height: .6rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        border-radius: .05rem;
        font-size: .18rem;
        background: #dad7d0;
        margin-bottom: .11rem;
        line-height: .24rem;
    }

    .about-2 .col .list-2 h3 {
        background: #098363;
    }

    .about-2 .col .list-2 li {
        background: #c6efe4;
    }

    .about-2 .col .list-3 h3 {
        background: #1a56a3;
    }

    .about-2 .col .list-3 li {
        background: #d1e1f6;
    }

    .about-2 .col .list-4 h3 {
        background: #1496a9;
    }

    .about-2 .col .list-4 li {
        background: #b9e9f0;
    }

    .about-2 .col .list-5 h3 {
        background: #939932;
    }

    .about-2 .col .list-5 li {
        background: #d7d9b7;
    }

    .about-2 .col .list-6 h3 {
        background: #c90;
    }

    .about-2 .col .list-6 li {
        background: #f4e8c2;
    }

    .about-2 .col .list-7 h3 {
        background: #b05e3d;
    }

    .about-2 .col .list-7 li {
        background: #f0dbd2;
    }

    .about-2 .col .list-8 h3 {
        background: #7d7d7d;
    }

    .about-2 .col .list-8 li {
        background: #d8d8d8;
    }

.page-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news {
    padding-top: .6rem;
}

    .news li {
        border-bottom: #e1e1e1 solid 1px;
    }

        .news li a {
            display: block;
            position: relative;
            padding: .36rem 0 .36rem 1.34rem;
            min-height: 2.05rem;
        }

            .news li a .time {
                position: absolute;
                left: .06rem;
                top: .36rem;
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -webkit-flex-direction: column;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: end;
                -webkit-align-items: flex-end;
                -ms-flex-align: end;
                align-items: flex-end;
                color: #999;
            }

                .news li a .time b {
                    font-size: .34rem;
                    line-height: 1em;
                }

                .news li a .time div {
                    font-size: .2rem;
                    border-top: #ccc solid 1px;
                    padding-top: .2rem;
                    margin-top: .2rem;
                    line-height: 1em;
                }

            .news li a h5 {
                font-size: .18rem;
                line-height: .36rem;
            }

            .news li a .info {
                line-height: .36rem;
                color: #999;
                padding-bottom: .1rem;
            }

            .news li a .content {
                line-height: .36rem;
                color: #333;
            }

.w985 {
    width: 9.85rem;
}

.p-num {
    padding: .6rem 0 .9rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .p-num a {
        margin: 0 .08rem;
        width: .47rem;
        height: .43rem;
        line-height: .41rem;
        border: #e5e5e5 solid 1px;
        text-align: center;
        font-size: .16rem;
        color: #999;
    }

        .p-num a:hover, .p-num a.on {
            background: #1b54a6;
            border-color: #1b54a6;
            color: #fff;
        }

        .p-num a.arrow {
            font-family: "iconfont";
            width: .7rem;
            font-size: .2rem;
        }

.side-news {
    width: 3.9rem;
    padding: 1rem 0;
}

    .side-news .form {
        position: relative;
        background: #ebebeb;
        padding: .02rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .side-news .form .name {
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            width: 1.12rem;
            text-align: center;
        }

        .side-news .form .input {
            width: 100%;
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
            flex: 0 1 auto;
            background: #fff;
        }

            .side-news .form .input input::-webkit-input-placeholder {
                color: #999;
            }

            .side-news .form .input input::-moz-placeholder {
                color: #999;
            }

            .side-news .form .input input:-moz-placeholder {
                color: #999;
            }

            .side-news .form .input input:-ms-input-placeholder {
                color: #999;
            }

            .side-news .form .input textarea::-webkit-input-placeholder {
                color: #999;
            }

            .side-news .form .input textarea::-moz-placeholder {
                color: #999;
            }

            .side-news .form .input textarea:-moz-placeholder {
                color: #999;
            }

            .side-news .form .input textarea:-ms-input-placeholder {
                color: #999;
            }

            .side-news .form .input input {
                width: 100%;
                height: .56rem;
                line-height: .56rem;
                font-size: .14rem;
                padding: 0 .15rem;
                color: #333;
            }

        .side-news .form .submit {
            position: absolute;
            top: 0;
            right: 0;
            width: .6rem;
            height: .6rem;
            background: url(../images/btn32.png) center no-repeat;
            background-size: .32rem;
        }

            .side-news .form .submit:hover {
                background-image: url(../images/img32on.png);
            }

            .side-news .form .submit input {
                width: 100%;
                height: .6rem;
                cursor: pointer;
            }

    .side-news .title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: .55rem 0 .3rem 0;
    }

        .side-news .title h2 {
            font-size: .24rem;
            line-height: 1em;
            position: relative;
            margin-right: .39rem;
        }

            .side-news .title h2:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                bottom: -0.1rem;
                right: 0;
                height: .02rem;
                background: #1b54a6;
            }

        .side-news .title .en {
            height: .16rem;
            line-height: .16rem;
            font-size: .16rem;
            text-transform: uppercase;
            color: #999;
            border-left: #999 solid 1px;
            padding-left: .28rem;
        }

        .side-news .title a.more {
            display: block;
            background: url(../images/jia13.svg) center no-repeat;
            background-size: 100%;
            width: .13rem;
            position: absolute;
            top: .55rem;
            right: 0;
            height: .24rem;
        }

            .side-news .title a.more:hover {
                background-image: url(../images/jia13on.svg);
            }

    .side-news .list {
        padding-bottom: .24rem;
    }

        .side-news .list a {
            display: block;
            height: .4rem;
            line-height: .4rem;
            position: relative;
            font-size: .16rem;
            padding: 0 1.18rem 0 .16rem;
        }

            .side-news .list a:before {
                content: "";
                display: block;
                position: absolute;
                left: 0;
                top: 50%;
                width: .04rem;
                height: .04rem;
                background: #1b54a6;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                border-radius: .01rem;
            }

            .side-news .list a em {
                position: absolute;
                top: 0;
                right: 0;
                color: #999;
                -webkit-transition: color .5s ease;
                transition: color .5s ease;
            }

                .side-news .list a em.em-2 {
                    display: none;
                }

            .side-news .list a:hover em {
                color: #666;
            }

    .side-news .zoomImg {
        border-radius: .06rem;
    }

.news-show {
    padding-top: 1rem;
}

    .news-show h2.title {
        font-size: .26rem;
        line-height: .43rem;
        border-bottom: #e1e1e1 solid 1px;
        padding-bottom: .12rem;
        margin-bottom: .18rem;
    }

    .news-show .info {
        padding-bottom: .6rem;
    }

        .news-show .info dl {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .news-show .info dd {
            padding-right: .3rem;
            color: #999;
        }

    .news-show .content {
        font-size: .16rem;
        line-height: .35rem;
        text-align: justify;
    }

        .news-show .content p {
            padding-bottom: .1rem;
        }

        .news-show .content .img {
            text-align: center;
            padding-bottom: .4rem;
        }

.p-num2 {
    padding: .2rem 0 1rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .p-num2 a {
        height: .94rem;
        border-top: #e1e1e1 solid 1px;
        border-bottom: #e1e1e1 solid 1px;
    }

        .p-num2 a.arrow {
            width: 50%;
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
            flex: 0 1 auto;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            font-size: .16rem;
            line-height: .3rem;
        }

            .p-num2 a.arrow.prev {
                padding-right: .24rem;
            }

            .p-num2 a.arrow.next {
                padding-left: .24rem;
            }

            .p-num2 a.arrow div {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
            }

                .p-num2 a.arrow div p {
                    width: 100%;
                    -webkit-box-flex: 0;
                    -webkit-flex: 0 1 auto;
                    -ms-flex: 0 1 auto;
                    flex: 0 1 auto;
                }

                .p-num2 a.arrow div em {
                    -webkit-box-flex: 0;
                    -webkit-flex: 0 0 auto;
                    -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
                }

        .p-num2 a.menu {
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            width: .94rem;
            border-left: #e1e1e1 solid 1px;
            border-right: #e1e1e1 solid 1px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: #e1e1e1;
            font-size: .24rem;
        }

            .p-num2 a.menu:hover {
                color: #1b54a6;
            }

.service {
    padding: .7rem 0 0 0;
}

    .service ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -0.25rem;
        margin-bottom: -0.4rem;
    }

    .service li {
        width: 25%;
        padding: 0 0 .4rem .25rem;
    }

    .service a {
        display: block;
        background: #eee;
    }

        .service a .name {
            height: .6rem;
            line-height: .6rem;
            font-size: .16rem;
            border-top: #fff solid 1px;
            text-align: center;
        }

        .service a:hover {
            background: #1b54a6;
            color: #fff;
        }

.customer {
    padding-bottom: 1.2rem;
    font-size: .16rem;
}

    .customer .p-title {
        padding: 1rem 0 .38rem 0;
    }

    .customer .content {
        line-height: .36rem;
        text-indent: 2em;
        text-align: justify;
        padding-bottom: .38rem;
    }

    .customer .form ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .customer .form li {
        width: 4.7rem;
        padding-bottom: .32rem;
        position: relative;
    }

        .customer .form li .input {
            border: #dcdcdc solid 1px;
            min-height: .68rem;
        }

            .customer .form li .input input::-webkit-input-placeholder {
                color: #666;
            }

            .customer .form li .input input::-moz-placeholder {
                color: #666;
            }

            .customer .form li .input input:-moz-placeholder {
                color: #666;
            }

            .customer .form li .input input:-ms-input-placeholder {
                color: #666;
            }

            .customer .form li .input textarea::-webkit-input-placeholder {
                color: #666;
            }

            .customer .form li .input textarea::-moz-placeholder {
                color: #666;
            }

            .customer .form li .input textarea:-moz-placeholder {
                color: #666;
            }

            .customer .form li .input textarea:-ms-input-placeholder {
                color: #666;
            }

            .customer .form li .input input, .customer .form li .input textarea {
                width: 100%;
                height: .66rem;
                line-height: .66rem;
                font-size: .16rem;
                padding: 0 .16rem;
                color: #333;
            }

            .customer .form li .input textarea {
                height: 2.7rem;
                padding: .2rem .16rem;
                line-height: .26rem;
            }

        .customer .form li.li_01 {
            width: 100%;
        }

        .customer .form li.file .name {
            position: absolute;
            left: .16rem;
            top: 0;
            line-height: .68rem;
            color: #666;
        }

        .customer .form li.file p {
            position: absolute;
            right: .16rem;
            top: 0;
            line-height: .68rem;
            color: #999;
        }

        .customer .form li.file .input {
            position: relative;
            z-index: 5;
        }

            .customer .form li.file .input input {
                opacity: 0;
            }

        .customer .form li.lzm img {
            width: 1.3rem;
            position: absolute;
            top: .1rem;
            right: .2rem;
        }

    .customer .form .msg {
        color: #999;
        padding-bottom: .4rem;
        margin-top: -0.1rem;
    }

    .customer .form .submit {
        height: .68rem;
        background: #1b54a6;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }

        .customer .form .submit:hover {
            background: #06c;
        }

        .customer .form .submit input {
            width: 100%;
            height: .68rem;
            font-size: .18rem;
            color: #fff;
            cursor: pointer;
        }

.contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 11.72rem;
}

    .contact .list {
        width: 5rem;
    }

        .contact .list h2 {
            font-size: .24rem;
            line-height: 1em;
            padding-bottom: .4rem;
        }

        .contact .list li {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            padding-bottom: .3rem;
        }

            .contact .list li .ico {
                width: .56rem;
                -webkit-box-flex: 0;
                -webkit-flex: 0 0 auto;
                -ms-flex: 0 0 auto;
                flex: 0 0 auto;
            }

            .contact .list li p {
                font-size: .18rem;
                line-height: .3rem;
                padding-left: .13rem;
            }

    .contact .map {
        width: 5.9rem;
    }

.project {
    min-height: 5rem;
    position: relative;
    z-index: 5;
    top: -0.54rem;
}

    .project .project-box {
        background: #fff;
        min-height: 1rem;
        margin-bottom: .35rem;
        padding: 0 .55rem;
    }

    .project .project-1 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: .55rem;
    }

        .project .project-1 .zoomImg {
            width: 6.55rem;
        }

        .project .project-1 .col {
            width: 6.65rem;
        }

            .project .project-1 .col h2 {
                color: #1b54a6;
                font-size: .36rem;
                line-height: 1em;
                margin-bottom: .3rem;
            }

            .project .project-1 .col .content {
                line-height: .3rem;
                text-align: justify;
                letter-spacing: .01rem;
            }

                .project .project-1 .col .content a {
                    color: #1b54a6;
                }

                    .project .project-1 .col .content a:hover {
                        color: #06c;
                    }

    .project .news li a {
        padding-left: 3.71rem;
    }

        .project .news li a .zoomImg {
            width: 2.19rem;
            position: absolute;
            left: 1.18rem;
            top: .33rem;
        }

@media screen and (max-width: 1300px)and (min-width: 800px) {
    .index-news .title ul li {
        margin-right: .2rem;
    }

    .index-news .col-1 .list a .col {
        padding: 0 .25rem;
    }

        .index-news .col-1 .list a .col h5 {
            padding: .2rem .25rem .26rem .25rem;
            margin-right: -0.25rem;
            margin-left: -0.25rem;
            font-size: .18rem;
        }

        .index-news .col-1 .list a .col .content {
            min-height: 2rem;
            line-height: .3rem;
            padding: .25rem 0;
        }

    .index-news .col-2 {
        width: 33.3333333333vw;
    }

        .index-news .col-2 .list ul {
            margin-top: -0.1rem;
        }

        .index-news .col-2 .list a {
            height: .56rem;
            line-height: .56rem;
            font-size: .18rem;
        }

    .index-service .msg {
        font-size: .18rem;
    }

    .index-news2 .col {
        width: 4.7rem;
    }

    .index-news2 .list a {
        height: .5rem;
        line-height: .5rem;
        font-size: .18rem;
    }

    .p-nav a {
        font-size: .18rem;
    }

    .about-1 .content {
        font-size: .18rem;
    }

    .w985 {
        width: 10rem;
    }

    .p-num a {
        font-size: .18rem;
    }

    .side-news {
        width: 4.5rem;
    }

        .side-news .list a {
            height: .5rem;
            line-height: .5rem;
            font-size: .18rem;
        }

    .news-show .content {
        font-size: .18rem;
    }

    .p-num2 a {
        height: 1rem;
    }

        .p-num2 a.arrow {
            font-size: .17rem;
        }

        .p-num2 a.menu {
            width: 1rem;
        }

    .service a .name {
        font-size: .18rem;
        height: .7rem;
        line-height: .7rem;
    }

    .customer {
        font-size: .18rem;
    }

        .customer .form li {
            width: 4.9rem;
        }

            .customer .form li .input input, .customer .form li .input textarea {
                font-size: .18rem;
            }
}

@media screen and (max-width: 800px) {
    .index-flash li h2 {
        font-size: .52rem;
    }

    .index-flash li .content {
        max-width: 6.6rem;
    }

    .index-flash li .more a {
        line-height: .53rem;
    }

    .index-notice {
        padding: 0 1.5rem 0 .25rem;
        font-size: .3rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        position: relative;
        height: 1.55rem;
    }

        .index-notice h2 {
            font-size: .3rem;
            padding-top: .35rem;
        }

        .index-notice a.more {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: .7rem;
            line-height: .4rem;
            font-size: .24rem;
            position: absolute;
            top: 0;
            right: 0;
            height: 1.55rem;
        }

            .index-notice a.more em {
                display: none;
            }

            .index-notice a.more span {
                display: block;
            }

        .index-notice .arrow {
            width: .6rem;
            height: 1.55rem;
            position: absolute;
            top: 0;
            right: .7rem;
        }

            .index-notice .arrow a {
                height: .775rem;
            }

        .index-notice .list {
            height: .8rem;
        }

            .index-notice .list li {
                padding: 0;
            }

            .index-notice .list a {
                height: .8rem;
                line-height: .8rem;
                padding-right: 0;
            }

                .index-notice .list a .time {
                    display: none;
                }

    .index-news {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 0 .9rem 0;
    }

        .index-news .title {
            padding: .6rem .25rem .55rem .25rem;
        }

            .index-news .title h2 {
                font-size: .4rem;
            }

                .index-news .title h2:before {
                    height: .04rem;
                }

            .index-news .title ul li {
                font-size: .4rem;
            }

                .index-news .title ul li:before {
                    height: .04rem;
                }

            .index-news .title .en {
                display: none;
            }

            .index-news .title a.more {
                width: .2rem;
                top: .6rem;
                height: .4rem;
                right: .25rem;
            }

        .index-news .col-1 {
            width: 100%;
        }

            .index-news .col-1 .list a {
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }

                .index-news .col-1 .list a .zoomImg {
                    width: 100%;
                    margin-right: 0;
                    padding: 0 .25rem;
                }

                    .index-news .col-1 .list a .zoomImg img {
                        height: 5rem;
                    }

                .index-news .col-1 .list a .col {
                    width: 100%;
                    margin-top: .88rem;
                    position: relative;
                    padding: 0 .55rem .55rem;
                }

                    .index-news .col-1 .list a .col h5 {
                        padding: .3rem .3rem .26rem .3rem;
                        margin-right: 0;
                        margin-left: 0;
                        font-size: .32rem;
                        line-height: .5rem;
                        height: 1.71rem;
                        position: absolute;
                        left: .25rem;
                        right: .25rem;
                        top: -0.88rem;
                    }

                    .index-news .col-1 .list a .col .content {
                        line-height: .55rem;
                        font-size: .28rem;
                        padding: 1.25rem 0 .3rem 0;
                    }

                    .index-news .col-1 .list a .col .more {
                        height: .52rem;
                        background-size: .6rem;
                    }

            .index-news .col-1 .dots {
                left: .5rem;
                bottom: auto;
                top: 4.12rem;
                height: .65rem;
            }

                .index-news .col-1 .dots span {
                    height: .39rem;
                    width: .1rem;
                    border-radius: .05rem;
                    margin: 0 .05rem;
                }

                    .index-news .col-1 .dots span.swiper-pagination-bullet-active {
                        height: .65rem;
                    }

        .index-news .col-2 {
            width: 100%;
        }

            .index-news .col-2 .list {
                padding: 0 .25rem;
            }

                .index-news .col-2 .list a {
                    height: .8rem;
                    line-height: .8rem;
                    font-size: .3rem;
                }

                    .index-news .col-2 .list a em {
                        display: none;
                    }

                        .index-news .col-2 .list a em.em-2 {
                            display: block;
                        }

    .news-head {
        padding: 0;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

        .news-head .col-1 {
            width: 100%;
        }

            .news-head .col-1 .list a .zoomImg {
                width: 100%;
            }

            .news-head .col-1 .dots {
                width: 100%;
                left: 0;
            }

    .index-service {
        background: #1b54a6 url(../images/img750.jpg) center bottom no-repeat;
        background-size: 100%;
        padding: 0 .25rem .9rem .25rem;
    }

        .index-service h2 {
            font-size: .4rem;
            padding-bottom: .2rem;
        }

            .index-service h2:before {
                width: .64rem;
                height: .04rem;
                margin-left: -0.32rem;
            }

        .index-service .msg {
            line-height: .5rem;
            font-size: .26rem;
            padding: .4rem 0 .7rem 0;
            text-align: left;
        }

        .index-service .list ul {
            margin-left: -0.2rem;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .index-service .list li {
            width: 50%;
            padding: 0 0 .48rem .2rem;
        }

            .index-service .list li a .ico {
                width: 1rem;
                top: .58rem;
            }

            .index-service .list li a .name {
                font-size: .32rem;
                line-height: .7rem;
                height: .7rem;
            }

    .index-news2 {
        padding: 0 .25rem .9rem .25rem;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .index-news2 .title {
            padding: .6rem 0 .34rem 0;
        }

            .index-news2 .title h2 {
                font-size: .36rem;
            }

                .index-news2 .title h2:before {
                    bottom: -0.14rem;
                    height: .04rem;
                }

            .index-news2 .title .en {
                display: none;
            }

            .index-news2 .title a.more {
                width: .2rem;
                top: .6rem;
                height: .36rem;
            }

        .index-news2 .col {
            width: 100%;
        }

        .index-news2 .list a {
            height: .8rem;
            line-height: .8rem;
            font-size: .3rem;
        }

            .index-news2 .list a em {
                display: none;
            }

                .index-news2 .list a em.em-2 {
                    display: block;
                }

    .foot-link {
        display: none;
    }

    .page-banner-wrapper {
        height: 2.9rem;
    }

    .page-banner {
        height: 2.9rem;
    }

        .page-banner .title {
            height: 2.9rem;
        }

            .page-banner .title .en {
                font-size: .54rem;
            }

    .p-nav {
        height: .9rem;
    }

        .p-nav li {
            width: 25%;
            padding: 0;
        }

        .p-nav a {
            font-size: .26rem;
            height: .9rem;
            line-height: .9rem;
            width: 100%;overflow:hidden;
        }

    .p-title h2 {
        font-size: .36rem;
    }

    .p-title .en {
        font-size: .24rem;
    }

    .about-1 .content {
        font-size: .26rem;
        line-height: 1.8em;
    }

    .about-1 .container {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .about-1 .container .img {
            width: 100%;
        }

    .about-2 .row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: .5rem .45rem 1rem .45rem;
    }

    .about-2 .col {
        width: 100%;
    }

        .about-2 .col h3 {
            margin-bottom: .2rem;
            height: 1.2rem;
            font-size: .36rem;
        }

        .about-2 .col li {
            width: 2.95rem;
            height: .9rem;
            font-size: .26rem;
            margin-bottom: .15rem;
            line-height: .38rem;
        }

    .page-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .news li a {
        padding: .36rem 0 .36rem 1.34rem;
    }

        .news li a .time {
            left: 0;
            top: .4rem;
        }

            .news li a .time b {
                font-size: .38rem;
                line-height: 1em;
            }

            .news li a .time div {
                font-size: .24rem;
            }

        .news li a h5 {
            font-size: .28rem;
            line-height: .46rem;
        }

        .news li a .info {
            line-height: .46rem;
        }

        .news li a .content {
            line-height: .46rem;
        }

    .w985 {
        width: 100%;
    }

    .p-num a {
        margin: 0 .1rem;
        width: .6rem;
        height: .52rem;
        line-height: .5rem;
        font-size: .28rem;
    }

        .p-num a.arrow {
            width: 1rem;
            font-size: .32rem;
        }

    .side-news {
        width: 100%;
        padding: 0 0 1rem 0;
    }

        .side-news .form .name {
            width: 1.6rem;
            font-size: .26rem;
        }

        .side-news .form .input input {
            height: .7rem;
            line-height: .7rem;
            font-size: .24rem;
            padding: 0 .24rem;
        }

        .side-news .form .submit {
            width: .74rem;
            height: .74rem;
        }

            .side-news .form .submit input {
                height: .74rem;
            }

        .side-news .title {
            padding: .6rem 0 .34rem 0;
        }

            .side-news .title h2 {
                font-size: .36rem;
            }

                .side-news .title h2:before {
                    bottom: -0.14rem;
                    height: .04rem;
                }

            .side-news .title .en {
                display: none;
            }

            .side-news .title a.more {
                width: .2rem;
                top: .6rem;
                height: .36rem;
            }

        .side-news .list a {
            height: .8rem;
            line-height: .8rem;
            font-size: .3rem;
        }

            .side-news .list a em {
                display: none;
            }

                .side-news .list a em.em-2 {
                    display: block;
                }

    .news-show h2.title {
        font-size: .36rem;
        line-height: .54rem;
        padding-bottom: .24rem;
        margin-bottom: .2rem;
    }

    .news-show .info dl {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .news-show .info dd {
        min-width: 33%;
        line-height: 1.8em;
    }

    .news-show .content {
        font-size: .26rem;
        line-height: 1.8em;
    }

    .p-num2 {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        padding-right: 1rem;
        padding-top: 0;
    }

        .p-num2 a {
            height: 1.3rem;
        }

            .p-num2 a.arrow {
                width: 100%;
                font-size: .26rem;
                line-height: .44rem;
            }

                .p-num2 a.arrow.prev {
                    padding-right: 0;
                }

                .p-num2 a.arrow.next {
                    padding-left: 0;
                    border-top: 0;
                }

                .p-num2 a.arrow div em {
                    display: none;
                }

            .p-num2 a.menu {
                position: absolute;
                top: 0;
                right: 0;
                width: 1rem;
                font-size: .4rem;
                height: 2.6rem;
            }

    .service li {
        width: 50%;
    }

    .service a .name {
        height: .8rem;
        line-height: .8rem;
        font-size: .24rem;
        padding: 0 .15rem;
    }

    .customer {
        font-size: .24rem;
    }

        .customer .content {
            line-height: .48rem;
        }

        .customer .form li {
            width: 3.35rem;
        }

            .customer .form li .input input, .customer .form li .input textarea {
                height: .74rem;
                line-height: .74rem;
                font-size: .26rem;
                padding: 0 .24rem;
            }

            .customer .form li .input textarea {
                height: 4rem;
                padding: .25rem .24rem;
                line-height: .36rem;
            }

            .customer .form li.file {
                width: 100%;
            }

                .customer .form li.file .name {
                    left: .24rem;
                    font-size: .26rem;
                    line-height: .76rem;
                }

                .customer .form li.file p {
                    right: .24rem;
                    line-height: .76rem;
                }

            .customer .form li.lzm img {
                width: 1.5rem;
            }

        .customer .form .submit {
            height: .8rem;
        }

            .customer .form .submit input {
                height: .8rem;
                font-size: .28rem;
            }

    .contact {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .contact .list {
            width: 100%;
            padding-bottom: .4rem;
        }

            .contact .list h2 {
                font-size: .36rem;
            }

            .contact .list li {
                -webkit-box-align: start;
                -webkit-align-items: flex-start;
                -ms-flex-align: start;
                align-items: flex-start;
            }

                .contact .list li p {
                    font-size: .26rem;
                    line-height: .44rem;
                }

        .contact .map {
            width: 100%;
        }

    .project {
        top: -0.45rem;
    }

        .project .project-box {
            padding: 0 .25rem;
        }

        .project .project-1 {
            padding: .35rem .25rem;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .project .project-1 .zoomImg {
                width: 100%;
            }

            .project .project-1 .col {
                width: 100%;
                padding-top: .35rem;
            }

                .project .project-1 .col .content {
                    line-height: .44rem;
                }

        .project .news li a {
            padding: 3.6rem 0 .4rem 1.25rem;
        }

            .project .news li a .zoomImg {
                width: 5.2rem;
                left: 1.25rem;
                top: .4rem;
            }

                .project .news li a .zoomImg img {
                    height: 3rem;
                    width: 100%;
                }
}
