@charset "UTF-8";
/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 5px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(255, 0, 0, 0.4);
    }

html, body {
    overflow-x: hidden;
    background: #F3F5F9;
}

.header {
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
    position: fixed;
    background: linear-gradient(180deg, #07396F -118%, rgba(7, 31, 58, 0) 100%);
    z-index: 6;
    transition: all ease-in 0.3s;
}

.home-banner-item {
    position: relative;
    width: 100%;
}

.home-banner-bottom {
    position: absolute;
    bottom: 0;
    left: 20px;
    /*width:100%;*/
}

.play-video {
    width: 48px;
}

.banner-title {
    font-size: 30px;
    color: #FFFFFF;
    /*height: 42px;*/
    line-height: 42px;
    margin-top: 12px;
}

    .banner-title.en {
        font-size: 28px;
    }

.banner-desc {
    font-size: 14px;
    color: #FFFFFF;
    height: 20px;
    line-height: 20px;
    opacity: 0.6;
    margin-top: 8px;
    margin-bottom: 48px;
}

.home-banner {
    width: 100%;
    position: relative;
}

.banner-btn-box {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

    .banner-btn-box a {
        display: block;
    }

        .banner-btn-box a:hover {
            opacity: 0.9;
        }

    .banner-btn-box .btn-001 {
        position: absolute;
        left: 0;
        bottom: 72px;
        color: #fff;
        /*background: #376bae;*/
        background: linear-gradient(90deg, #2e83dc, #376bae);
        width: 172px;
        height: 52px;
        line-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 6px;
        font-size: 18px;
    }

.btn-002 {
    position: absolute;
    left: 225px;
    bottom: 72px;
    color: #0b5cd6;
    border: 1px solid #0b5cd6;
    width: 172px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    box-shadow: 0 0 2px rgba(84, 141, 226, 0.5), 0 0 2px rgba(84, 141, 226, 0.5), 0 0 2px rgba(84, 141, 226, 0.5);
}

.banner-btn-box .btn-001.purple {
    /*background: #7d0ca2;*/
    background: linear-gradient(90deg, #7d0ca2, #ca73dd);
}

.banner-btn-box .btn-002.purple {
    color: #7d0ca2;
    border: 1px solid #7d0ca2;
    box-shadow: 0 0 2px rgba(183, 98, 202, 0.5), 0 0 2px rgba(183, 98, 202, 0.5), 0 0 2px rgba(183, 98, 202, 0.5);
}

.banner-btn-box .btn-001.orange {
    /*  background: #bf3c13;*/
    background: linear-gradient(90deg, #f143be,#f04683 70%, #ef483b);
}

.banner-btn-box .btn-002.orange {
    color: #bf3c13;
    border: 1px solid #bf3c13;
    box-shadow: 0 0 2px rgba(234, 131, 99, 0.5), 0 0 2px rgba(234, 131, 99, 0.5), 0 0 2px rgba(234, 131, 99, 0.5);
}


.btn-arow img {
    width: 20px;
    height: 20px;
    margin-left: 6px;
}

.header {
    background: rgba(0, 0, 0, 0.3);
    height: 60px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

    .header.fixed {
        background: #010a37;
    }

        .header.fixed .login-register-menu a {
            color: #000;
        }

        .header.fixed .menu a {
            color: #ffffff;
        }

        .header.fixed .menu-split-line {
            background: rgba(0, 0, 0, 0.5);
        }


.menu-split-line {
    width: 1px;
    height: 18px;
    background: #fff;
}

.logo {
    width: 90px;
    margin-left: 240px;
}

    .logo img {
        width: 100%;
    }


.btn_round {
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    font-size: 14px !important;
}

.btn_normal {
    border: 1px solid #3e92ff;
    color: #3e92ff !important;
    /* font-size: 14px !important; */
}

.btn_primary {
    background: linear-gradient(135deg, #2c60a3 0%, #01A7FF 100%) !important;
    color: #fff !important;
}


.menu {
    display: flex;
}

    .menu li {
        margin-right: 42px;
        height: 60px;
        position: relative;
    }

        .menu li > a {
            color: #fff;
            font-size: 16px;
            position: relative;
            display: block;
            line-height: 60px;
        }

            .menu li > a:after {
                background: #0680F1;
                content: "";
                width: 0;
                height: 2px;
                display: block;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0px;
                transition: all 0.3s;
            }

        .menu li:hover > a {
            color: #0680F1 !important;
        }

            .menu li:hover > a:after {
                width: 60px;
            }

.login-register-menu {
    margin-right: 156px;
}

    .login-register-menu a {
        color: #fff;
        margin-left: 30px;
        font-size: 16px;
    }

        .login-register-menu a:first-child {
            margin-left: 0px;
        }

        .login-register-menu a:hover {
            opacity: 0.8;
        }

.home-part1 {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}

.home-part1-list {
    position: relative;
    width: 390px;
    height: 212px;
}

.home-p1-card-bj {
    position: absolute;
    z-index: 0;
}

.home-p1-pic {
    position: absolute;
    right: 0;
    top: -52px;
    z-index: 2;
}

.home-part1-card {
    position: relative;
    z-index: 1;
}

    .home-part1-card > div {
        display: flex;
        align-items: center;
        height: 34px;
        margin-top: 32px;
    }

        .home-part1-card > div > img {
            width: 34px;
            margin: 0 16px 0 32px;
        }

        .home-part1-card > div h3 {
            color: #1A4CB0;
            font-size: 30px;
        }

.card02 h3 {
    color: #3D2B8F !important;
}

.card03 h3 {
    color: #266099 !important;
}

.home-part1-card p {
    margin: 0 22px;
    margin-top: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    box-sizing: border-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #555;
}

.home-part1-line {
    margin: 40px 110px;
    height: 2px;
    background: #E4E6E7;
}

.home-part2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .home-part2 .home-part2-title {
        font-size: 40px;
        font-weight: 600;
        line-height: 50px;
        color: #333;
        position: relative;
    }

        .home-part2 .home-part2-title p {
            position: relative;
            z-index: 1;
        }

        .home-part2 .home-part2-title .home-part2-title-bj {
            position: absolute;
            top: 62%;
            width: 100%;
            height: 20px;
            opacity: 0.3;
            background: #8FABCD;
            z-index: 0;
        }

    .home-part2 .home-part2-desc {
        font-size: 22px;
        line-height: 34px;
        color: #888;
        margin-top: 14px;
        margin-bottom: 80px;
    }

.home-part2-card {
    margin: 0 30px;
    height: 332px;
    border-radius: 17px;
    background: linear-gradient(180deg, #F3F6FB 0%, #FEFEFF 100%);
    box-shadow: 0px 13px 11px 0px rgba(239, 244, 248, 0.7), inset 0px 2px 0px 0px #FFFFFF;
    display: flex;
    justify-content: center;
}

    .home-part2-card .card-list {
        width: 209px;
        border-radius: 17px;
        margin: 20px 50px;
        padding: 39px 0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .home-part2-card .card-list.hover {
            background: #FFFFFF;
            box-shadow: 0px 13px 11px 0px rgba(239, 244, 248, 0.7), inset 0px 2px 0px 0px #FFFFFF;
        }

        .home-part2-card .card-list:hover {
            background: #FFFFFF;
            box-shadow: 0px 13px 11px 0px rgba(239, 244, 248, 0.7), inset 0px 2px 0px 0px #FFFFFF;
        }

        .home-part2-card .card-list img {
            display: block;
            margin: 0 auto;
            width: 100px;
            height: 117px;
        }

        .home-part2-card .card-list h3 {
            color: #1F2429;
            margin-top: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .home-part2-card .card-list .count-num {
            text-align: center;
            font-size: 60px;
            height: 60px;
            line-height: 60px;
            display: block;
        }

        .home-part2-card .card-list p {
            text-align: center;
            font-size: 26px;
            color: #1F2429;
        }

        .home-part2-card .card-list .unit1 {
            font-size: 22px;
            color: #1F2429;
            position: relative;
            margin-top: -5px;
            display: block;
            height: 22px;
            line-height: 5px;
        }

        .home-part2-card .card-list .unit2 {
            position: relative;
            margin-top: -5px;
            display: block;
            font-size: 22px;
            color: #1F2429;
            height: 22px;
            line-height: 5px;
        }
/*.home-part4 .p4-count-box .unit3 {
    position: relative;
    margin-top: -5px;
    display: inline-block;
    font-size: 66px;
    color: #1F2429;
    height: 60px;
    line-height: 60px;
}
*/




.home-part3-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 70px 0 57px;
}

    .home-part3-title .title-item {
        margin: 0 38px;
        font-size: 22px;
        cursor: pointer;
        color: #283445;
        position: relative;
    }

        .home-part3-title .title-item.active {
            color: #0279FF;
        }

        .home-part3-title .title-item::after {
            display: block;
            content: '';
            position: absolute;
            bottom: -26px;
            height: 4px;
            width: 0%;
            background: #377DFF;
            border-radius: 2px;
            transition: all 0.3s;
            left: 50%;
            transform: translateX(-50%);
        }

        .home-part3-title .title-item:hover {
            color: #0279FF;
        }

            .home-part3-title .title-item:hover::after {
                width: 100%;
            }

        .home-part3-title .title-item.active::after {
            width: 100%;
        }

.home-part3-banner {
    position: relative;
}

.home-part3-list-con {
    position: relative;
}

.part3-list-bj {
    width: 100%;
}

    .part3-list-bj img {
        width: 76%;
    }

.home-part3-item-con {
    position: absolute;
    left: 30%;
    top: 0;
    right: 190px;
    color: #fff;
}

    .home-part3-item-con .item-con-left {
        margin-top: 142px;
        width: 45%;
    }

        .home-part3-item-con .item-con-left h3 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 32px;
        }

        .home-part3-item-con .item-con-left p {
            font-size: 16px;
            color: #fff;
            line-height: 32px;
        }

            .home-part3-item-con .item-con-left p:last-child {
                margin-top: 0px;
            }

    .home-part3-item-con img {
        margin-top: 100px;
    }

.swiper-btn, .swiper-btn a {
    width: 122px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    background: #0279FF;
    margin-top: 30px;
}

    .swiper-btn:hover, .swiper-btn a:hover {
        opacity: 0.8;
    }

.home-part03-pic {
    position: absolute;
    right: 190px;
    top: 100px;
    width: 35%;
}

.container {
    position: relative;
}

.home-part4-wrap {
    width: 100%;
    background: url(../images/home-part4-bj.png) no-repeat;
    padding-top: 144px;
    padding-bottom: 155px;
    margin-top: 60px;
}

.home-part4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .home-part4 .home-part4-title {
        font-size: 40px;
        font-weight: 600;
        line-height: 50px;
        color: #333;
        position: relative;
    }

        .home-part4 .home-part4-title p {
            position: relative;
            z-index: 1;
        }

        .home-part4 .home-part4-title .home-part4-title-bj {
            position: absolute;
            top: 62%;
            width: 100%;
            height: 20px;
            opacity: 0.3;
            background: #8FABCD;
            z-index: 0;
        }

    .home-part4 .home-part4-desc {
        font-size: 16px;
        line-height: 34px;
        color: #333333;
        margin-top: 70px;
        margin-bottom: 110px;
        width: 1060px;
    }

    .home-part4 .p4-count-box {
        display: flex;
        align-items: baseline;
        width: 800px;
        justify-content: space-between;
    }

        .home-part4 .p4-count-box .p4-count-item {
            display: flex;
            align-items: baseline;
            height: 60px;
        }

        .home-part4 .p4-count-box h4 {
            height: 60px;
            line-height: 66px;
            font-size: 80px;
            font-weight: bold;
            color: #000000;
        }

        .home-part4 .p4-count-box label {
            font-size: 20px;
            display: inline-block;
            margin: 0 3px;
            color: #000000;
        }

        .home-part4 .p4-count-box span {
            height: 34px;
            font-size: 16px;
            color: #333;
            display: block;
            position: relative;
            line-height: 5px;
        }

.home-part5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../images/p5-bj.jpg) no-repeat;
    padding: 0 144px;
    padding-top: 80px;
    padding-bottom: 60px;
}

    .home-part5 .home-part5-title {
        font-size: 40px;
        font-weight: 600;
        line-height: 50px;
        color: #fff;
        position: relative;
    }

        .home-part5 .home-part5-title p {
            position: relative;
            z-index: 1;
        }

        .home-part5 .home-part5-title .home-part5-title-bj {
            position: absolute;
            top: 62%;
            width: 100%;
            height: 20px;
            opacity: 0.3;
            background: #8FABCD;
            z-index: 0;
        }

    .home-part5 .p5-honor-wrap {
        width: 100%;
        overflow: hidden;
    }

    .home-part5 .p5-honor-box {
        margin-top: 60px;
    }

    .home-part5 .p5-honor-item {
        width: 20%;
        transition: 300ms;
        transform: scale(0.8);
    }

        .home-part5 .p5-honor-item img {
            width: 100%;
        }

        .home-part5 .p5-honor-item.swiper-slide-active, .home-part5 .p5-honor-item.swiper-slide-duplicate-active {
            transform: scale(1);
        }

.home-part6 {
    background: url(../images/p6-bj.jpg) no-repeat;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 100px;
}

    .home-part6 h4 {
        height: 66px;
        font-size: 35px;
        line-height: 66px;
        color: #333333;
        margin: 0 auto;
        margin-bottom: 60px;
        text-align: center;
    }

    .home-part6 .home-p6-con {
        width: 759px;
        position: relative;
        margin: 0 auto;
    }

        .home-part6 .home-p6-con .p6-con-left {
            width: 600px;
            background: #1E3995;
            border-radius: 30px;
            height: 508px;
        }

            .home-part6 .home-p6-con .p6-con-left .p6-con-left-con {
                padding-left: 30px;
                padding-top: 55px;
            }

            .home-part6 .home-p6-con .p6-con-left h3 {
                color: #fff;
                font-size: 32px;
                margin-bottom: 20px;
            }

            .home-part6 .home-p6-con .p6-con-left p {
                font-size: 16px;
                color: #fff;
                width: 280px;
                margin-bottom: 128px;
            }

            .home-part6 .home-p6-con .p6-con-left label {
                font-size: 16px;
                color: #fff;
                margin-top: 10px;
                display: block;
            }

    .home-part6 .p6-con-right {
        position: absolute;
        right: 0;
        top: 30px;
        padding: 40px;
        border-radius: 20px;
        box-sizing: border-box;
        width: 380px;
        height: 448px;
        background: url(../images/p6-card-bj.png);
    }

        .home-part6 .p6-con-right .form-item {
            margin-bottom: 20px;
        }

        .home-part6 .p6-con-right label {
            font-size: 16px;
            color: #333;
            height: 16px;
            line-height: 16px;
            margin-bottom: 8px;
            display: block;
        }

            .home-part6 .p6-con-right label em {
                color: #FF0000;
            }

        .home-part6 .p6-con-right input {
            width: 300px;
            height: 40px;
            line-height: 40px;
            border-radius: 4px;
            opacity: 0.7;
            background: #FFFFFF;
            box-sizing: border-box;
            border: 1px solid #E6E6E6;
            text-indent: 10px;
        }

        .home-part6 .p6-con-right .form-login-btn {
            width: 300px;
            font-size: 16px;
            line-height: 40px;
            color: #FFFFFF;
            height: 40px;
            border-radius: 20px;
            background: #1A3798;
            margin-top: 30px;
            text-align: center;
            cursor: pointer;
        }

            .home-part6 .p6-con-right .form-login-btn:hover {
                opacity: 0.8;
            }

        .home-part6 .p6-con-right .form-rigister-btn {
            width: 300px;
            font-size: 16px;
            line-height: 40px;
            color: #1A3798;
            height: 40px;
            border-radius: 20px;
            background: rgba(220, 228, 255, 0.5);
            margin-top: 10px;
            text-align: center;
            cursor: pointer;
        }

            .home-part6 .p6-con-right .form-rigister-btn:hover {
                opacity: 0.9;
            }

        .home-part6 .p6-con-right .weixin-login {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 56px;
            line-height: 56px;
            display: flex;
            cursor: pointer;
            justify-content: center;
            opacity: 0.8;
            background: #E4EAFB;
            align-items: center;
            border-radius: 0 0 20px 20px;
        }

            .home-part6 .p6-con-right .weixin-login span {
                font-size: 16px;
                color: #333333;
                margin-left: 14px;
                display: inline-block;
            }

            .home-part6 .p6-con-right .weixin-login img {
                width: 40px;
                height: 33px;
            }

        .home-part6 .p6-con-right .forget-box {
            display: flex;
            justify-content: space-between;
        }

            .home-part6 .p6-con-right .forget-box .auto-login {
                display: flex;
                align-items: center;
                cursor: pointer;
            }

                .home-part6 .p6-con-right .forget-box .auto-login span {
                    width: 14px;
                    height: 14px;
                    background: #FFFFFF;
                    border: 1px solid #E6E6E6;
                    border-radius: 50%;
                    display: block;
                    margin-right: 6px;
                    position: relative;
                }

                    .home-part6 .p6-con-right .forget-box .auto-login span.active::after {
                        position: absolute;
                        width: 8px;
                        height: 8px;
                        border-radius: 4px;
                        background: #0279FF;
                        display: block;
                        content: '';
                        left: 3px;
                        top: 3px;
                    }

                .home-part6 .p6-con-right .forget-box .auto-login p {
                    font-size: 16px;
                    color: #333;
                }

            .home-part6 .p6-con-right .forget-box .forget-psd a {
                font-size: 16px;
                color: #333;
            }

.footer {
    width: 100%;
    background: url(../images/footer-bj.jpg) no-repeat;
    padding-bottom: 20px;
}

    .footer .footer-con {
        width: 1118px;
        /* height: 234px; */
        margin: 0 auto;
        padding: 48px 0;
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-logo-con {
        width: 145px;
    }

        .footer .footer-logo-con .footer-logo {
            width: 145px;
        }

        .footer .footer-logo-con .footer-erweima {
            width: 104px;
            margin: 0 auto;
            margin-top: 19px;
        }

    .footer .di_nav {
        width: 510px;
        display: flex;
        justify-content: space-between;
    }

        .footer .di_nav a {
            display: block;
            color: #FFFFFF;
            font-size: 14px;
            margin-bottom: 14px;
        }

            .footer .di_nav a:hover {
                opacity: 0.9;
                text-decoration: underline;
            }

    .footer .home-concat-con {
        width: 344px;
        color: #fff;
    }

        .footer .home-concat-con .home-concat-title {
            color: #FFFFFF;
            font-size: 18px;
        }

        .footer .home-concat-con .home-concat-list {
            margin-top: 14px;
            font-size: 14px;
            color: #A3ABC2;
        }

    .footer .footer-line {
        width: 100%;
        height: 1px;
        background: #4B5570;
    }

    .footer .copy_cc {
        margin-top: 20px;
        text-align: center;
        color: #A3ABC2;
        font-size: 14px;
    }

.expandUp2 {
    animation-name: expandUp2;
    -webkit-animation-name: expandUp2;
    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes expandUp2 {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    0% {
        transform: translateY(50%) scale(0.6) scaleY(0.4);
    }

    60% {
        transform: translateY(-7%) scaleY(1.12);
    }

    75% {
        transform: translateY(3%);
    }

    100% {
        transform: translateY(0%) scale(1) scaleY(1);
    }
}

.search-pop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    display: none;
}

.search-result-header {
    display: flex;
    padding: 12px 20px;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}

    .search-result-header.search-result-header2 {
        padding: 12px 0px;
    }

.search-result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    border-radius: 10px;
    opacity: 1;
    background: #F8F8F8;
    padding: 0px 16px;
    width: 100%;
}

.search-input {
    width: 100%;
    height: 20px;
    font-size: 14px;
}

input {
    outline: none;
    background: none;
    border: 0;
}

.search-close {
    width: 24px;
    height: 24px;
    margin-left: 16px;
}

.search-expend-icon {
    width: 20px;
    height: 20px;
}

.serach-input-box {
    width: 299px;
    height: 36px;
    border-radius: 10px;
    opacity: 1;
    background: #F8F8F8;
}

.h90 {
    height: 90px;
}

.search-part {
    background: #fff;
    padding: 0 20px 30px;
}

    .search-part h3 {
        height: 24px;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        color: #000000;
    }

.search-resul-total {
    height: 16px;
    opacity: 1;
    font-size: 12px;
    line-height: 16px;
    color: #8D8D8D;
    margin-top: 20px;
}

.search-result-list-box {
    /*height:400px;
  overflow-y:scroll;*/
    min-height: 400px;
}

.search-result-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

    .search-result-list:active {
        opacity: 0.8;
    }

    .search-result-list .result-img {
        width: 100px;
        margin-left: 13px;
        border-radius: 4px;
    }

    .search-result-list h2 {
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        color: #000000;
        margin-bottom: 4px;
    }

    .search-result-list p {
        word-break: break-all;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        /* 这里是超出几行省略 */
        height: 60px;
        font-size: 12px;
        line-height: 20px;
        color: #8D8D8D;
    }

        .search-result-list p span {
            color: #2DB3D0;
            /* 情摘要详情摘要详情摘要，详情摘要详情摘要详情最多3行... */
        }

.culture_big_pic {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.culture-part-desc h2 {
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #2DB3D0;
}

.culture-part-desc p {
    opacity: 0.6;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0em;
    color: #000000;
    margin-top: 4px;
    margin-bottom: 20px;
}

.culture-part {
    padding: 60px 20px;
    background: #F8F8F8;
}

    .culture-part h3 {
        height: 24px;
        opacity: 1;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        color: #000000;
        margin-bottom: 30px;
    }

    .culture-part .culture_small_pic {
        margin-top: 20px;
        width: 100%;
        position: relative;
    }

        .culture-part .culture_small_pic img {
            width: 100%;
        }

    .culture-part .culture_small_con {
        /*width: 100%;*/
        position: absolute;
        left: 16px;
        top: 0px;
        color: #FFFFFF;
        font-size: 12px;
    }

        .culture-part .culture_small_con h4 {
            height: 24px;
            line-height: 24px;
            opacity: 1;
            font-size: 16px;
            font-weight: normal;
            margin-top: 29px;
        }

        .culture-part .culture_small_con .culture_small_con_line {
            margin: 10px 0;
            width: 24px;
            height: 0px;
            border: 2px solid #2DB3D0;
        }

        .culture-part .culture_small_con p {
            height: 18px;
            font-size: 12px;
            color: #FFFFFF;
        }

.welfare-title-box {
    width: 100%;
    display: flex;
    height: 34px;
    /*justify-content:space-between;*/
}

    .welfare-title-box.en {
        justify-content: space-between;
    }

        .welfare-title-box.en .welfare-title {
            margin-right: 0px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
        }

    .welfare-title-box .welfare-title {
        height: 24px;
        font-size: 16px;
        opacity: 0.8;
        color: #000000;
        font-weight: 400;
        margin-right: 50px;
        position: relative;
    }

        .welfare-title-box .welfare-title:last-child {
            margin-right: 0px;
        }

        .welfare-title-box .welfare-title span {
            position: absolute;
            margin-left: 50%;
            left: -32px;
            width: 0px;
            border: 2px solid #2DB3D0;
            bottom: -10px;
            display: none;
            transition: all .3s ease-in;
        }

        .welfare-title-box .welfare-title.active {
            opacity: 1;
            color: #2DB3D0;
        }

            .welfare-title-box .welfare-title.active span {
                display: block;
                width: 60px;
            }

.welfare-con-box {
    margin-top: 20px;
}

    .welfare-con-box p {
        font-size: 14px;
        line-height: 30px;
        /* 字1 */
        color: #000000;
    }

.welfare-img {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 2px;
    box-sizing: border-box;
}

.culture-part2 {
    padding: 60px 0px;
    background-color: #2B68A8;
    background-image: url(../images/join/cultrue_bj.jpg);
    background-size: cover;
}

    .culture-part2 .culture-part2-top {
        padding: 0 20px;
        margin-top: 130px;
    }

        .culture-part2 .culture-part2-top p {
            min-height: 120px;
            font-size: 20px;
            line-height: 40px;
            color: #FFFFFF;
        }

        .culture-part2 .culture-part2-top a {
            display: block;
            font-size: 14px;
            color: #FFFFFF;
            width: 127px;
            line-height: 40px;
            height: 40px;
            border-radius: 8px;
            background: #2DB3D0;
            text-align: center;
            margin: 30px auto;
        }

.group-con-box img {
    width: 100%;
}

.culture-swiper-wrap {
    width: 80%;
    margin: 0 auto;
}

.culture-swiper2 {
    width: 100%;
    height: 460px;
}

.team2-person-box {
    box-sizing: border-box;
}

.team2-person-item {
    width: 100%;
    /*height:400px;*/
    background: #fff;
    transition: all 1s;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 16px 20px;
}

    .team2-person-item .team2-person-item-title {
        display: flex;
        height: 44px;
    }

        .team2-person-item .team2-person-item-title img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .team2-person-item .team2-person-item-title h3 {
            height: 24px;
            line-height: 42px;
            font-size: 16px;
            font-weight: normal;
            color: #2DB3D0;
        }

        .team2-person-item .team2-person-item-title p {
            height: 14px;
            line-height: 14px;
            opacity: 0.5;
            font-size: 12px;
            line-height: 14px;
            color: #000000;
            margin-top: 2px;
            display: none;
        }

    .team2-person-item .team2-person-item-line {
        margin: 10px 0;
        width: 100%;
        height: 0px;
        border: 0.5px solid #2DB3D0;
    }

    .team2-person-item .team2-person-item-con {
        height: 86%;
        overflow-y: scroll;
    }

        .team2-person-item .team2-person-item-con p {
            font-size: 14px;
            line-height: 28px;
            color: #000000;
        }

.culture-swiper2.swiper-container {
    overflow: visible;
}

.team2-person-box .swiper-slide {
    background: #fff;
    -webkit-transform: scale(0.8);
    opacity: 0.7;
}

    .team2-person-box .swiper-slide.swiper-slide-active {
        background: #fff;
        -webkit-transform: scale(1);
        opacity: 1;
    }

#team2Swiper-pagination {
    bottom: -45px;
}

    #team2Swiper-pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: .1;
    }

    #team2Swiper-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #fff;
    }

#group-swiper {
    overflow: visible;
    width: 86%;
    position: relative;
    margin-left: 0px;
}

#group-pagination {
    bottom: -45px;
}

    #group-pagination .swiper-pagination-bullet {
        background: #2DB3D0;
        opacity: .1;
    }

    #group-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #2DB3D0;
    }

.search-menu-height {
    width: 100%;
    height: 90px;
    background: #FFF;
}

.search-label {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

    .search-label span {
        padding: 4px 8px;
        border-radius: 4px;
        background: #f1efef;
        color: #666;
        margin-right: 15px;
        font-size: 12px;
    }

        .search-label span:active {
            opacity: 0.8;
        }

.scroll_part_nav_wrap {
    width: 100%;
    height: 48px;
}

.home-banner-container {
    position: relative;
}

.noly-for-txt {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}

/*# sourceMappingURL=style.css.map */
.login-register-menu .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-register-menu .user-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url('../images/user-avatar.svg') center/cover no-repeat;
    border-radius: 50%;
    margin-right: 6px;
}

.login-register-menu .user-name {
    font-weight: 600;
    color: #f7f7f7;
    font-size: 15px;
    margin-right: 8px;
}

.btn_logout {
    /* background: #ffffffa6 !important; */
    color: #e1dede !important;
    border: 1px solid #86898b;
    padding: 4px 12px;
    font-size: 12px !important;
    transition: background 0.2s, color 0.2s;
    height: 28px !important;
    line-height: 18px !important;
    border-radius: 7px !important;
}

    .btn_logout:hover {
        background: #0067a5;
        color: #fff;
    }
/*字体大小*/
.f_12 {
    font-size: 12px;
}

.f_13 {
    font-size: 13px;
}

.f_14 {
    font-size: 14px;
}

.f_15 {
    font-size: 15px;
}

.f_16 {
    font-size: 16px;
}

.f_18 {
    font-size: 18px;
}

.f_20 {
    font-size: 20px;
}

.f_22 {
    font-size: 22px;
}

.f_24 {
    font-size: 24px;
}

.f_26 {
    font-size: 26px;
}

.f_28 {
    font-size: 28px;
}

.f_36 {
    font-size: 36px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.ml30 {
    margin-left: 30px;
}

.ml40 {
    margin-left: 40px;
}

.mr8 {
    margin-right: 8px;
}

.mr10 {
    margin-right: 10px;
}

.mr16 {
    margin-right: 16px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.op8 {
    opacity: 0.8;
}

.op6 {
    opacity: 0.6;
}

.op4 {
    opacity: 0.4;
}

.flex_row {
    display: flex;
    justify-content: space-between;
}

.fl {
    float: left;
}

.fr {
    float: right
}

.img_middle {
    vertical-align: middle;
    display: inline-block;
}

.sub_des {
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
}

.dropdown_box {
    width: 1000px;
    left: -50px;
    height: 0;
    transition: all 0.3s;
    background: #fff;
    padding: 0;
    box-shadow: 0px 16px 24px 0px rgba(227,234,252,0.3);
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    overflow: hidden;
}

    .dropdown_box.enter {
        height: 568px;
        padding: 32px 35px;
    }

    .dropdown_box .drop_side {
        width: 260px;
        height: 426px;
        border-radius: 12px;
        overflow: hidden;
        background: #F4F9FF;
        opacity: 0;
        transition: all 0.3s;
    }

        .dropdown_box .drop_side .ds_top {
            height: 204px;
            background: linear-gradient( 180deg, #e4f5ff 0%, #bbcbff 100%);
            text-align: center;
            padding-top: 22px;
        }

    .dropdown_box .ds_bottom {
        padding: 20px;
    }

        .dropdown_box .ds_bottom .sub_des {
            font-size: 12px;
            line-height: 18px;
            margin-top: 8px;
        }

.drop_menu {
    flex: 1;
    opacity: 0;
    transition: all 0.3s;
}

    .drop_menu .s_menu_item {
        width: 166px;
        height: 56px;
        border-radius: 8px;
        display: inline-block;
        position: relative;
        padding: 12px 0 0 50px;
        font-size: 14px;
        line-height: 18px;
    }

        .drop_menu .s_menu_item > img {
            width: 24px;
            position: absolute;
            left: 14px;
            top: 18px;
        }

        .drop_menu .s_menu_item .pro_title {
            display: block;
            font-weight: bold;
            color: #232121;
        }

        .drop_menu .s_menu_item .pro_des {
            font-size: 12px;
        }

        .drop_menu .s_menu_item:hover {
            background: #f5f6f8;
        }

            .drop_menu .s_menu_item:hover .pro_title {
                color: #0184FE;
            }

.dropdown_box.enter .drop_menu, .dropdown_box.enter .drop_side {
    opacity: 1;
}

.sol .dropdown_box {
    left: -168px;
}

    .sol .dropdown_box.enter {
        height: 485px;
    }


.menu li > a .arrow {
    width: 18px;
    height: 18px;
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -8px;
    vertical-align: middle;
    display: inline-block;
    background: url("../images/arrow_1.svg") 60% 40% no-repeat;
    transition: all 0.2s;
}

.menu li:hover > a .arrow {
    background: url("../images/arrow_2.svg") 60% 40% no-repeat;
    transform: rotate(90deg);
}


swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}
/*改变了颜色和加粗的样式*/
.swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L5%2C44l-4.2-4.2L18.6%2C22L0.8%2C4.2L5%2C0z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.transparent {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
}

#showBox {
    z-index: 100000;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    overflow: hidden;
    position: fixed;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    _position: absolute;
    _top: expression(documentElement.scrollTop-50);
    padding: 10px 15px 0;
    background-color: white;
}

.layerheader a.shopclose {
    background: url(/images/person/close.jpg) no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    float: right;
}

.layerheader b {
    font: bold 14px/20px "Microsoft Yahei";
    color: #565656;
}

.cont .suppliers {
    overflow: hidden;
    width: 340px;
    padding-top: 5px;
    font-size: 14px;
    color: #333;
    line-height: 20px;
    border: none;
    float: none;
    height: auto;
}

    .cont .suppliers li {
        padding-bottom: 15px;
    }

        .cont .suppliers li a.butYellow {
            color: #fffefe;
            text-decoration: none;
        }

.butYellow {
    height: 36px;
    line-height: 35px;
    width: 76px;
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin: 0px 20px 0px 0px;
    float: left;
    color: #000;
    text-decoration: none;
    background: url(/images/person/buttonimg20130522.gif) 0px -741px;
}

.noResults {
    color: #333333;
    line-height: 25px;
    padding: 15px;
    overflow: hidden;
    background: #ffffff;
    width: 1140px;
    margin: 10px auto 0;
    font-size: 12px;
}

    .noResults p {
        font-size: 14px;
        font-weight: bold;
    }


.keyList {
    padding: 12px 0 0 0;
    background: #ffffff;
    margin-bottom: 10px;
}

.KmarT {
    margin-top: 10px;
}


.keyList dl:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.keyList dl {
    padding: 0 20px;
}

    .keyList dl dt {
        float: left;
        line-height: 22px;
        width: 52px;
        font-size: 13px;
        color: #666666;
    }

    .keyList dl dd {
        float: left;
        width: 900px;
    }

        .keyList dl dd ul:after {
            content: ".";
            display: block;
            height: 0;
            visibility: hidden;
            clear: both;
        }

        .keyList dl dd ul li a {
            float: left;
            display: inline-block;
            padding: 0 8px;
            background: #dae7f0;
            font-size: 12px;
            line-height: 22px;
            height: 22px;
            border-radius: 11px;
            margin-bottom: 10px;
            margin-right: 10px;
            display: block;
            line-height: 22px;
            color: #00578F;
            padding-right: 16px;
            transition: none;
        }

            .keyList dl dd ul li a .close {
                background: url(/images/icon_close@2x.png) no-repeat right center;
                background-size: auto 12px;
                width: 10px;
                height: 10px;
                display: inline-block;
                right: -5px;
                position: relative;
            }

.keyList .sResult {
    padding: 0px 20px 10px;
    font-size: 13px;
    line-height: 18px;
    color: #666666;
}

    .keyList .sResult span {
        color: #000000;
        font-size: 15px;
    }
