﻿@charset "UTF-8";
/*主色调*/
/*文字文本*/
/*单行省略号*/
/*多行省略号*/
/**清除浮动**/
html {
    font-size: 100px;
}

@media (min-width: 992px) and (max-width: 1920px) {
    html {
        font-size: calc(100px - ((1920px - 100vw) / 100));
    }
}

@media (max-width: 992px) {
    html {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50px;
    }
}

* {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

input, textarea {
    outline: none;
    resize: none;
    -webkit-appearance: none;
}

    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #999;
    }

li {
    list-style: none;
}

span, em, i {
    font-style: normal;
    /*display: inline-block;*/
}

body {
    font-family: "PingFang SC","Microsoft YaHei","Source Han Sans",Sans-serif;
    background-color: #fff;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*定位*/
.pos-r {
    position: relative;
}

/* 清除浮动 */
.clear:after {
    content: "";
    clear: both;
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
}

/*滚动条*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button:vertical {
    display: none;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.5);
}

    ::-webkit-scrollbar-thumb:vertical:hover {
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.35);
    }

    ::-webkit-scrollbar-thumb:vertical:active {
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.38);
    }

/* my */
body {
    font-size: 0.14rem;
    color: #333;
    line-height: 1;
    background-color: #fff;
}

.bg-white {
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.color {
    color: #002f87 !important;
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 0.9rem;
    height: 0.9rem;
    background: url("/assets/image/play.png") no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
}

.wp {
    width: 82vw;
    min-width: 82vw;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s;
}

    .wp:after {
        content: "";
        clear: both;
        display: block;
        visibility: hidden;
        width: 0;
        height: 0;
    }

.ct {
    width: 66.666666%;
    margin-left: auto;
    margin-right: auto;
}

.mobile {
    display: none !important;
}

.pc {
    display: block !important;
}

.full {
    width: 100%;
}

.dan {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

.img-box img {
    width: 100%;
}

.img-box:hover .play {
    -webkit-transform: translate(-50%, -50%) scale(1.02, 1.02);
    transform: translate(-50%, -50%) scale(1.02, 1.02);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
}

.con-win {
    width: 1200px;
    margin: 0 auto;
}

.app-header .text {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 30%;
    -webkit-transform: translate(62%, -50%);
    transform: translate(62%, -50%);
}

    .app-header .text h1 {
        display: block;
        font-size: .72rem;
        color: #000000;
        margin-bottom: .70rem;
        font-weight: 500;
    }

    .app-header .text span {
        display: block;
        font-size: .16rem;
        color: #3d3d3d;
        line-height: .3rem;
    }

.app-menu .en {
    position: relative;
    border-bottom: none !important
}

    .app-menu .en:before, .app-menu .en:after {
        content: '';
        position: absolute;
        height: 1px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #777777;
    }

    .app-menu .en:before {
        width: 0;
        transition: .36s ease;
        background: transparent;
    }

.menu-item:hover .en:before, .menu-link.on .en:before {
    z-index: 10;
    width: 100%;
    background: #002f87;
}

.menu-link:hover .en, .menu-link:hover .zh {
    color: #002f87
}

@media (max-width: 1440px) {
    .wp {
        width: 90vw;
        min-width: 90vw;
    }

    .ct {
        width: 80%;
    }

    .con-win {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .con-win {
        width: 90%;
    }

    .wp {
        width: 100%;
        min-width: 100%;
    }

    .ct {
        width: 100%;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }

    .play {
        width: 0.88rem;
        height: 0.88rem;
    }

    .mobile {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .app-header .text {
        width: 50%;
        -webkit-transform: translate(8%, -50%);
        transform: translate(8%, -50%);
    }

        .app-header .text h1 {
            font-size: .4rem;
            margin-bottom: .2rem;
        }

        .app-header .text span {
            font-size: .28rem;
            line-height: .36rem;
        }
}

.app-header {
    position: relative;
}

    .app-header .img-box {
        width: 100%;
    }

        .app-header .img-box img {
            -o-object-fit: cover;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        .app-header .img-box img {
            min-height: 5.8rem;
        }

    .app-header .h-img {
        display: block;
        width: 100%;
    }

    .app-header .page-num {
        position: absolute;
        right: 0.3rem;
        bottom: 0.25rem;
        font-size: 0.15rem;
        color: #fff;
        z-index: 5;
    }

        .app-header .page-num .cur {
            font-size: 0.28rem;
        }

@media (max-width: 992px) {
    .app-header {
        margin-top: 0.88rem;
    }

        .app-header .img-box img {
            min-height: auto;
        }
}

.app-menu {
    transition: all 0.2s;
}

    .app-menu .arrow {
        display: inline-block;
        vertical-align: middle;
    }

@media (min-width: 992px) {
    .enSite {
        right: 1.2rem;
        top: -.5rem;
    }

    .app-menu {
        position: absolute;
        top: 2%;
        bottom: 6%;
        left: 5.4%;
        z-index: 100;
    }

        .app-menu .logo {
            max-width: 1.25rem;
            height: 13%;
        }

        .app-menu nav, .app-menu .menu-list {
            display: flex;
            height: 87%;
            flex-direction: column;
            justify-content: space-between;
            color: #777;
            font-size: 0.14rem;
            width: 100%;
            overflow: auto;
        }

            .app-menu nav::-webkit-scrollbar, .app-menu .menu-list::-webkit-scrollbar {
                height: 0;
                width: 0;
            }

            .app-menu nav .on, .app-menu .menu-list .on {
                color: #002f87;
            }

                .app-menu nav .on .en, .app-menu .menu-list .on .en {
                    border-color: #002f87;
                }

        .app-menu .menu-item {
            padding-right: 0.45rem;
        }

        .app-menu .en, .app-menu .other {
            padding: 0.05rem 0;
            font-size: 0.12rem;
            line-height: 0.14rem;
            border-bottom: 1px solid #777777;
            transition: all .36s ease-in-out;
        }

        .app-menu .zh {
            padding: 0.1rem 0;
            line-height: 1;
        }

        .app-menu .arrow {
            width: 0.1rem;
        }
}

@media (max-width: 992px) {
    .app-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 1.1rem;
        box-shadow: 0 -1px 0 0 #d7d7d7 inset;
        background-color: #fff;
        padding: 0 0.3rem;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
    }

        .app-menu .logo {
            height: 60%;
        }

            .app-menu .logo img {
                display: block;
                height: 100%;
                width: auto;
            }

        .app-menu nav, .app-menu .menu-list {
            position: absolute;
            top: 1.08rem;
            left: 0;
            right: 0;
            width: 100%;
            height: auto;
            background-color: #fff;
            max-height: 0;
            transition: all 0.4s ease-in-out;
            overflow-y: auto;
            -webkit-transform-origin: top;
            transform-origin: top;
            -ms-scroll-chaining: none;
            overscroll-behavior: contain;
            border-bottom: 1px solid #efefef;
            box-shadow: 0 10px 5px 0 rgba(115, 115, 115, 0.12);
        }

            .app-menu nav::-webkit-scrollbar, .app-menu .menu-list::-webkit-scrollbar {
                height: 0;
                width: 0;
            }

            .app-menu nav a, .app-menu nav .menu-link, .app-menu .menu-list a, .app-menu .menu-list .menu-link {
                display: block;
                padding: 0 0.3rem;
                box-sizing: border-box;
                height: 0.88rem;
                line-height: 0.88rem;
                font-size: 0.28rem;
                transition: all 0.3s;
            }

                .app-menu nav a.on, .app-menu nav .menu-link.on, .app-menu .menu-list a.on, .app-menu .menu-list .menu-link.on {
                    color: #002f87;
                }

                .app-menu nav a:active, .app-menu nav a:hover, .app-menu nav .menu-link:active, .app-menu nav .menu-link:hover, .app-menu .menu-list a:active, .app-menu .menu-list a:hover, .app-menu .menu-list .menu-link:active, .app-menu .menu-list .menu-link:hover {
                    background-color: #efefef;
                    text-indent: 2px;
                }

        .app-menu .zh, .app-menu .other {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            opacity: 0;
            -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
            transition-property: opacity,-webkit-transform;
            transition-property: transform,opacity;
            transition-property: transform,opacity,-webkit-transform;
            transition-duration: 0.25s;
        }

        .app-menu .menu-item:nth-child(1) .zh, .app-menu .menu-item:nth-child(1) .other {
            transition-delay: 0.05s;
        }

        .app-menu .menu-item:nth-child(2) .zh, .app-menu .menu-item:nth-child(2) .other {
            transition-delay: 0.1s;
        }

        .app-menu .menu-item:nth-child(3) .zh, .app-menu .menu-item:nth-child(3) .other {
            transition-delay: 0.15s;
        }

        .app-menu .menu-item:nth-child(4) .zh, .app-menu .menu-item:nth-child(4) .other {
            transition-delay: 0.2s;
        }

        .app-menu .menu-item:nth-child(5) .zh, .app-menu .menu-item:nth-child(5) .other {
            transition-delay: 0.25s;
        }

        .app-menu .menu-item:nth-child(6) .zh, .app-menu .menu-item:nth-child(6) .other {
            transition-delay: 0.3s;
        }

        .app-menu .menu-item:nth-child(7) .zh, .app-menu .menu-item:nth-child(7) .other {
            transition-delay: 0.35s;
        }

        .app-menu .menu-item:nth-child(8) .zh, .app-menu .menu-item:nth-child(8) .other {
            transition-delay: 0.4s;
        }

        .app-menu .menu-item:nth-child(9) .zh, .app-menu .menu-item:nth-child(9) .other {
            transition-delay: 0.45s;
        }

        .app-menu .menu-item:nth-child(10) .zh, .app-menu .menu-item:nth-child(10) .other {
            transition-delay: 0.5s;
        }

        .app-menu .menu-item:nth-child(11) .zh, .app-menu .menu-item:nth-child(11) .other {
            transition-delay: 0.55s;
        }

        .app-menu .en {
            display: none;
        }

        .app-menu .arrow {
            width: 0.2rem;
        }

        .app-menu .m-btn span {
            display: block;
            width: 0.45rem;
            height: 0.04rem;
            background-color: #002f87;
            -webkit-transform-origin: right center;
            transform-origin: right center;
            transition: all 0.2s;
        }

            .app-menu .m-btn span ~ span {
                margin-top: 0.1rem;
            }

        .app-menu.on nav, .app-menu.on .menu-list {
            max-height: calc(100vh - 0.88rem);
        }

            .app-menu.on nav a ~ a, .app-menu.on nav .menu-link ~ .menu-link, .app-menu.on .menu-list a ~ a, .app-menu.on .menu-list .menu-link ~ .menu-link {
                box-shadow: 0px 1px 0 #eee inset;
            }

        .app-menu.on .zh, .app-menu.on .other {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            opacity: 1;
            -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
        }

        .app-menu.on .m-btn span {
            width: 0.4rem;
        }

            .app-menu.on .m-btn span:nth-child(1) {
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

            .app-menu.on .m-btn span:nth-child(2) {
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
                opacity: 0;
                width: 0;
            }

            .app-menu.on .m-btn span:nth-child(3) {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
}

.app-menu .menu-child {
    display: none;
}

.menu-childs .menu-child {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #f9f9f9;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 15%;
    display: none;
    justify-content: center;
    align-items: center;
    -webkit-animation: fadeIn 0.3s;
    animation: fadeIn 0.3s;
}

    .menu-childs .menu-child.show {
        display: flex;
    }

.menu-childs .two-list {
    width: 16%;
    margin-right: 0.3rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding: 0 0.2rem;
    max-height: 100%;
    overflow: auto;
    position: relative;
    box-sizing: border-box;
}

    .menu-childs .two-list::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .menu-childs .two-list:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        left: 0.09rem;
        width: 1px;
        background-color: #e0e0e0;
        z-index: 1;
    }

    .menu-childs .two-list dl:nth-of-type(1) {
        padding-top: 1rem
    }

    .menu-childs .two-list dl {
        width: 100%;
    }

    .menu-childs .two-list dt {
        font-size: 0.2rem;
        color: #222;
        margin-bottom: 0.2rem;
    }

    .menu-childs .two-list dd {
        font-size: 0.13rem;
        line-height: 1.4;
        padding: 0.05rem;
        color: #777777;
        transition: all .2s linear;
        margin: 0 auto
    }

        .menu-childs .two-list dd:hover, .menu-childs .two-list dd.on {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

    .menu-childs .two-list .thumbnail {
        margin-bottom: 0.1rem;
        max-width: 100%;
        height: 1.3rem;
    }

        .menu-childs .two-list .thumbnail img {
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .menu-childs .two-list .dit-p {
        position: relative;
    }

        .menu-childs .two-list .dit-p span {
            width: 100%;
            display: block;
        }

        .menu-childs .two-list .dit-p::after {
            content: '';
            display: block;
            width: 0.06rem;
            height: 0.06rem;
            background-color: #c9c9c9;
            border-radius: 50%;
            position: absolute;
            left: -0.15rem;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .menu-childs .two-list .dit-p.d-tit::after {
            width: 0.14rem;
            height: 0.14rem;
            left: -0.1rem;
            background-color: #002f87;
        }

.menu-childs .all-text .two-list dd {
    padding-top: 0.3rem;
}

    .menu-childs .all-text .two-list dd:hover {
        box-shadow: none;
    }

        .menu-childs .all-text .two-list dd:hover span {
            text-decoration: underline;
            color: #002f87;
        }

.menu-childs .all-text .two-list dl {
    height: 50%;
}

@media (max-width: 992px) {
    .menu-childs {
        display: none;
    }

    .menu-parent .menu-link {
        position: relative;
    }

        .menu-parent .menu-link::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0.3rem;
            background: url("/assets/image/menu_arrow_m.png") no-repeat center;
            background-size: contain;
            width: 0.32rem;
            height: 0.32rem;
            margin-top: -0.16rem;
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            transition: all 0.3s;
        }

    .app-menu .menu-child {
        text-indent: 0.5em;
        background: #f9f9f9;
        max-height: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
        opacity: 0.3;
        transition: all 0.4s;
        display: block;
        overflow: hidden;
    }

    .app-menu .two-list .thumbnail {
        display: none;
    }

    .app-menu .two-list dt {
        display: block;
        padding: 0 0.3rem;
        box-sizing: border-box;
        height: 0.44rem;
        line-height: 0.44rem;
        font-size: 0.28rem;
        transition: all 0.3s;
        background: #efefef;
        color: #aaa;
    }

    .menu-parent.open .menu-child {
        max-height: 1000px;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        opacity: 1;
    }

    .menu-parent.open .menu-link {
        position: relative;
    }

        .menu-parent.open .menu-link::after {
            -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
        }
}

@-webkit-keyframes fadeIn {
    from {
        display: none;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        opacity: 0;
    }

    to {
        display: block;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        display: none;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        opacity: 0;
    }

    to {
        display: block;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        opacity: 0;
    }
}

.app-footer {
    background-color: #f2f2f2;
    font-size: 0.13rem;
    padding-top: 0.6rem;
    padding-bottom: 0.2rem;
}

    .app-footer a {
        transition: all 0.3s;
        position: relative;
    }

        .app-footer a:hover {
            text-decoration: underline;
        }

        .app-footer a:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -19%;
            height: 13%;
            width: 100%;
            -webkit-transform-origin: center right;
            -ms-transform-origin: center right;
            transform-origin: center right;
            -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
            transform: scaleX(0);
            background: #002f87;
            background: rgba(0, 47, 135, 0.55);
            -webkit-transition: -webkit-transform .3s ease-in-out;
            transition: -webkit-transform .3s ease-in-out;
            transition: transform .3s ease-in-out;
            transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        }

        .app-footer a:hover {
            text-decoration: none;
        }

            .app-footer a:hover:before {
                -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                transform: scaleX(1);
                -webkit-transform-origin: center left;
                -ms-transform-origin: center left;
                transform-origin: center left;
            }

    .app-footer .menu-group {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #dddddd;
    }

        .app-footer .menu-group:after {
            content: "";
            clear: both;
            display: block;
            visibility: hidden;
            width: 0;
            height: 0;
        }

        .app-footer .menu-group h3 {
            font-size: 0.16rem;
            color: #222;
            padding-bottom: 0.3rem;
        }

        .app-footer .menu-group .menu-list li {
            padding-bottom: 0.15rem;
            color: #666666;
        }

        .app-footer .menu-group section {
            float: left;
            width: calc(100% / 6);
        }

    .app-footer .web-info {
        padding-top: 0.15rem;
        color: #999999;
        line-height: 1.8;
    }

        .app-footer .web-info a {
            margin: 0 0.1rem;
        }

    .app-footer .support a {
        margin: 0;
    }

.friend-link {
    position: relative;
}

    .friend-link .name, .friend-link .links li {
        width: 100%;
        height: 0.32rem;
        line-height: 0.32rem;
        background-color: #e6e6e6;
        font-size: 0.13rem;
        box-sizing: border-box;
        padding: 0 0.1rem;
        color: #666;
        cursor: pointer;
    }

    .friend-link .name {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .friend-link .name i {
            display: inline-block;
            width: 0;
            height: 0;
            border-width: 7px 7px 0;
            border-style: solid;
            border-color: #666 transparent transparent;
            /*灰 透明 透明 */
            position: relative;
            transition: all 0.5s ease-in-out;
        }

    .friend-link .links li {
        border-top: 1px solid #ddd;
    }

    .friend-link .links a {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: normal;
    }

    .friend-link .links {
        position: absolute;
        top: 0.32rem;
        left: 0;
        width: 100%;
        max-height: 0rem;
        overflow: auto;
        z-index: 1;
        transition: all .6s;
    }

    .friend-link:hover .links {
        display: block;
        max-height: 1.6rem;
    }

    .friend-link:hover .name i {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

@media (max-width: 992px) {
    .app-footer {
        padding: 0.9rem 0 0.4rem;
    }

        .app-footer .menu-group section {
            width: 50%;
            padding-bottom: 0.85rem;
        }

            .app-footer .menu-group section h3 {
                font-size: 0.36rem;
                padding-bottom: 0.5rem;
            }

            .app-footer .menu-group section li {
                font-size: 0.26rem;
                color: #666666;
            }

                .app-footer .menu-group section li ~ li {
                    padding-top: 0.3rem;
                }

        .app-footer .web-info {
            font-size: 0.24rem;
        }

    .friend-link .name, .friend-link .links li {
        height: 0.55rem;
        line-height: 0.55rem;
        font-size: 0.26rem;
        padding: 0 0.15rem;
    }

    .friend-link .links li {
        padding-top: 0 !important;
    }

    .friend-link .links {
        top: 0.55rem;
        max-height: 0;
    }

    .friend-link:hover .links {
        max-height: 2.75rem;
    }

    .header-main-img {
        margin-top: 1.1rem
    }
}

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: #fff;
    display: none;
    border-bottom: 1px solid #f1f1f1;
}

    .header-top .ct {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-top .logo {
        width: 125px;
        flex-shrink: 0;
        height: 80px;
        display: flex;
        align-items: center;
    }

        .header-top .logo a {
            display: inline-block;
        }

    .header-top .nav-list {
        width: 100%;
        margin-left: 100px;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
    }

    .header-top .nav-item {
        padding: 0 10px;
        height: 78px;
        border-bottom: 2px solid transparent;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

        .header-top .nav-item.on, .header-top .nav-item:hover {
            color: #002f87;
            border-bottom: 2px solid #002f87;
        }

    .header-top .menu-child {
        height: 760px;
        top: 80px;
    }

    .header-top .nav-item:hover .show-flex {
        display: flex;
    }

    .header-top .menu-link {
        display: flex;
        align-items: center;
        height: 78px;
    }

        .header-top .menu-link .arrow {
            margin-left: 6px;
            +
        }

.login-item {
    border-color: transparent !important;
}

@media (max-width: 1200px) {
    .header-top .nav-list {
        margin-left: 10px;
        font-size: 15px;
    }

    .header-top .nav-item {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none !important;
    }
}



.app-partner {
    padding-top: 60px;
    padding-bottom: 40px;
}

    .app-partner .partner-tit {
        text-align: center;
    }

.partner-list li {
    float: left;
    width: 20%;
    height: auto;
    box-sizing: border-box;
    padding: 8px;
}

    .partner-list li img {
        display: block;
        width: 100%;
        height: auto;
    }


@media (max-width: 1200px) {
    .partner-list li {
        width: 25%;
    }
}


@media (max-width: 992px) {
    .partner-list li {
        width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .partner-list li {
        width: 50%;
    }
}


/*修改footer*/
.app-footer .menu-group section {
    width: 15%;
}

.app-footer .menu-group .web-info {
    float: left;
    width: 25%;
    padding-right: 10px;
    box-sizing: border-box;
}

.app-footer .menu-group {
    padding-bottom: 30px;
}

.app-footer .yq-link {
    position: absolute;
    bottom: 30px;
    right: 0;
    z-index: 1;
}

.app-footer .logo-info a::before {
    content: none;
}

.app-footer .logo-img {
    display: inline-block;
    width: 125px;
    height: auto;
    margin: 0 !important;
}

.app-footer .auto-img {
    height: auto;
    width: 100%;
}

.app-footer .other-web {
    display: inline-block;
    width: 44px;
    height: 44px;
    margin-left: 10px;
}

    .app-footer .other-web img {
        width: 100%;
        height: 100%;
    }

.app-footer .tel-title {
    color: #333;
    font-size: 18px;
    margin-top: 6px;
}

.app-footer .tel-num {
    font-size: 22px;
    color: #002f87;
    margin-top: 8px;
    line-height: 1.4;
}

.app-footer .other-info {
    margin-top: 3px;
    color: #666
}

.friend-link {
    max-width: 180px;
}

@media (max-width: 992px) {
    .app-footer .menu-group section {
        width: 50%;
    }

    .app-footer .menu-group .web-info {
        width: 50%;
    }

    .app-footer .yq-link {
        position: static;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .app-footer .menu-group section {
        width: 100%;
    }

    .app-footer .menu-group .web-info {
        margin-bottom: 30px;
        width: 100%;
    }

    .app-footer .yq-link {
        position: static;
        width: 100%;
    }
}

/*合作伙伴*/
.app-partner .page {
    padding-top: 1rem;
    font-size: 0;
    text-align: center;
}
.app-partner .page .item {
    display: inline-block;
    margin: 0 0.05rem;
    width: 0.48rem;
    height: 3px;
    background-color: #ebebeb;
    transition: all 0.3s;
}
    .app-partner .page .item.on {
        background-color: #002f87;
    }
.app-partner .partner-item {
    display: inline-block;
    width: 32.5%;
    height: auto;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

    .app-partner .partner-item a {
        border: 2px solid #f0f0f0
    }

    .app-partner .partner-item a, .app-partner .partner-item img {
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    .app-partner .partner-item img {
        object-fit: contain;
    }

@media (max-width: 480px) {
    .app-partner .partner-item {
        display: inline-block;
        width: 49%;
        margin-bottom: 16px;
    }
}

.app-partner-page {
    padding-top: 100px;
}
    .app-partner-page .item {
        float: left;
        width: 20%;
        box-sizing: border-box;
        padding:10px;
    }
    .app-partner-page .item img{
        border: 1px solid #f1f1f1;
    }
@media (max-width: 992px) {
    .app-partner-page .item {
        width: 25%;
    }
}
@media (max-width: 768px) {
    .app-partner-page .item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .app-partner-page .item {
        width: 100%;
    }
}