@font-face {
    font-family: 'Source Han Sans CN';
    src: url('https://cdn.hpan.com.cn/web/Source_Han_Sans_SC_Normal_Normal.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Sans CN';
    src: url('https://cdn.hpan.com.cn/web/Source_Han_Sans_SC_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Sans CN';
    src: url('https://cdn.hpan.com.cn/web/Source_Han_Sans_SC_Medium_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Sans CN';
    src: url('https://cdn.hpan.com.cn/web/Source_Han_Sans_SC_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

}
a{
    text-decoration: none;
    color: #333333;
    transition: all 0.2s ease-in-out;
}
a:hover{
    color: #F2330C;
}
body {
    font-family:
            'Source Han Sans CN',
            -apple-system,
            BlinkMacSystemFont,
            'Segoe UI',
            Roboto,
            sans-serif;
    font-weight: 350;
    overflow-x: hidden;
    width: 100%
}
.btn-box{
    display: flex;
    justify-content: center;
}
.huopan-btn{
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background-color: #F2330C;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;

    &:hover{
        background-color: #FF4D29;
    }
}




.web-header {
    height: 84px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    .header-wrapper{
        height: 84px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1230px;
        width: 100%;
    }
    .header-left img{
        height: 28px;
    }
    .header-center{
        display: flex;
        justify-content: space-between;
        gap: 62px;
        .header-center-item{
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            &:hover{
                color: #F2330C;
            }
        }
    }

    .header-right{
        display: flex;
        justify-content: space-between;
        align-items: center;
        .header-right-logo{
            margin-right: 27px;
            width: 40px;
            line-height: 30px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            &:hover{
                color: #F2330C;
            }
        }
    }
}
.app-header{

    box-shadow: 0px 4px 13.9px 0px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    .header-wrapper{
        width: 100%;

        .header-content{
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;

            .header-left img{
                height: 28px;
            }
            .header-right{
                display: flex;
                align-items: center;
                .header-right-icon{
                    width: 24px;
                    height: 24px;
                    margin-left: 14px;
                    color: #333333;
                }
            }

        }

        .header-menu{
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;


            .header-menu-box{
                padding-top: 10px;
                background-color: #ffffff;
                .header-menu-item{
                    padding: 15px 20px;
                    &:hover{
                        color: #F2330C;
                    }
                    a{
                        cursor: pointer;
                        transition: all 0.2s ease-in-out;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }
                }
                .header-menu-btn{
                    display: flex;
                    justify-content: center;
                    padding-bottom: 18px;
                }
            }
            .mask{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 100vh;
                background-color: #00000080;
                z-index: -1;
                transition: all 0.2s ease-in-out;
            }
        }
        .header-menu.active {
            display: block;
            opacity: 1;
        }
    }
}
.app-header.active .header-right-icon{
    color: #F2330C !important;
}

@media screen and (max-width: 1000px) {
    .web-header{
        display: none ;
    }
    .web{
        display: none !important;
    }
    section.banner{
        padding: 0 44px;
        .banner-wrapper{
            padding-top: 46px;
            display: flex;
            flex-direction: column;

            .banner-left{
                .banner-left-title{
                    font-size: 32px;
                    font-weight: 700;
                    color: #333333;
                    text-align: center;
                    span{
                        color: #F2330C;
                    }
                }
                .banner-left-desc{
                    padding-top: 15px;
                    font-size: 18px;
                    font-weight: 400;
                    color: #333333;
                    text-align: center;
                    span{
                        color: #F2330C;
                        font-weight: 700;
                    }
                }

                .banner-left-btn{
                    padding-top: 26px;
                    display: flex;
                    justify-content: center;
                    button{
                        height: 40px;
                        width: 138px;
                        padding: 0 14px;
                        font-size: 14px;
                        font-weight: 500;
                        span{
                            line-height: 20px;
                        }
                    }
                }



            }
            .banner-right-content{
                margin-top: 20px;
                flex: 1;
                height: 400px;
                min-height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;

                .banner-right-content-wrapper{
                    position: relative;
                    width: 375px;
                    height: 400px;
                    .banner-1{
                        position: absolute;
                        top: 0;
                        left: 50%;
                        width: 43vw;
                        transform: translateX(-50%);
                        max-width: 200px;
                        z-index: 2;
                    }
                    .banner-2{
                        position: absolute;
                        top: 45px;
                        right: -20px;
                        width: 33vw;
                        max-width: 160px;
                        z-index: 1;
                    }
                    .banner-3{
                        position: absolute;
                        top: 45px;
                        left: -20px;
                        width: 33vw;
                        max-width: 160px;
                        z-index: 1;
                    }
                }

            }
        }
    }

    section.logo-box{
        display: flex;
        justify-content: center;
        height: 140px;
        .logo-box-wrapper{
            width: 100%;
            .logo-box-title{
                font-size: 16px;
                font-weight: 400;
                color: #BEC2C8;
                text-align: center;
            }
            .logo-group{
                display: flex;
                width: 100%;
                height: 80px;
                max-width: 100%;
                max-height: 100%;
                place-items: center;
                margin: 0px;
                padding: 10px;
                list-style-type: none;
                opacity: 1;
                mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
                overflow: hidden;

                .logo-group-content {
                    display: flex;
                    width: max-content;
                    animation: scroll-left 30s linear infinite;
                    .logo-set {
                        display: flex;
                    }
                    img {
                        height: 55px;
                        width: auto;
                        margin: 0 40px;

                    }



                }
            }
        }
    }
    section.page-af{
        padding-top: 60px;
        .page-af-box{
            .header-title{

            }
        }
        img{
            width: 100%;
        }
        .af-content{
            padding: 0 20px;
            margin-top: 42px;
            .content-flex{
                .af-content-text-box{
                    .af-content-text-title{
                        display: flex;
                        font-size: 24px;
                        font-weight: 700;
                        img{
                            width: 32px;
                            height: 32px;
                            margin-right: 8px;
                        }
                    }
                    .af-content-text{
                        padding-top: 24px;
                        .af-content-text-desc{
                            display: flex;
                            align-items: center;
                            img{
                                width: 16.7px;
                                height: 16.7px;
                                margin-right: 14px;
                            }
                            .text {
                                font-size: 12px;
                                font-weight: 400;
                                line-height: 20px;
                                color: #333333;
                                span{
                                    font-weight: 500;
                                    color: #F2330C;
                                }
                            }
                        }
                        .padding-top-20{
                            padding-top: 12px !important;
                        }
                    }
                }
                .af-content-img-box{
                    padding-top: 30px;
                    .af-content-img{
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                    .img-tip{
                        text-align: center;
                        font-size: 11px;
                        font-weight: 400;
                        line-height: 20px;
                        color: #333333;
                    }

                }
                .af-content-img-box-dc{
                    padding-top: 30px;
                    position: relative;
                    .af-content-img-r{
                        position: absolute;
                        width: 221px;
                        height: 100%;
                        object-fit: contain;
                        top: 92px;
                        right: -14px;
                    }
                }


            }

            .reverse{
                flex-direction: column-reverse;
            }


        }
        .btn-box{
            margin-top: 40px;
            .huopan-btn{
                height: 40px;width: 158px; font-size: 14px;
            }

        }
    }
    section.page-deal {
        padding: 60px 35px 0 35px;

        .deal-content{
            margin-top: 40px;
            border-radius: 12px;
            background: #F7F8FA;
            padding: 35px 15px 0 15px;
            text-align: center;
            position: relative;
            .deal-content-box{

                overflow: hidden;
                width: 100%;
                .deal-item-box{
                    display: flex;
                    transition: transform 0.5s ease;
                    img{
                        width: 100%;
                    }
                }

                .deal-item{
                    flex: 0 0 100%; /* 每个项占满容器宽度 */
                    /*padding: 20px;*/
                    /*min-height: 400px;*/
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    user-select: none;

                    .deal-item-title{
                        font-size: 24px;
                        font-weight: 700;
                        color: #333333;
                        span{
                            color: #F2330C;
                        }
                    }
                    .deal-item-desc{

                        font-size: 12px;
                        font-weight: 400;
                        line-height: 20px;
                        color: #333333;
                        padding: 13px 20px 0 20px;
                    }
                    .deal-content-img-container{
                        flex: 1;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                }

            }
            .switch-btn{
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background: #0000004D;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 66;
                color: #FFFFFF;
            }
            .switch-btn.disabled{
                color: #D4D4D4;
            }
            .switch-left{
                left: -15px;
            }
            .switch-right{
                right: -15px;
            }


        }
    }
    section.page-safety{
        padding: 60px 20px 0 20px;
        .safety-content{
            padding-top: 53px;
            .safety-banner{
                background-color: #FFF5F3;
                border-radius: 20px;
                padding: 20px;
                text-align: center;
                .safety-banner-title{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .safety-banner-icon{
                    width: 43px;
                    height: 43px;
                }
                .title{
                    padding-top: 5px;
                    font-size: 18px;
                    font-weight: 700;
                    color: #F2330C;
                }
                .desc{
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    color: #333333;
                    padding-top: 20px;
                    span{
                        font-weight: 500;
                        color: #F2330C;
                    }
                }
            }
            .safety-list{

                .safety-item{
                    padding-top: 18px;
                    .safety-item-content{
                        display: flex;
                        flex-direction: column;
                        background: #F7F8FA;
                        border-radius: 20px;
                        padding: 16px 22px;
                        align-items: center;
                        .safety-item-title{
                            display: flex;
                            align-items: center;
                        }
                        .safety-item-icon{
                            width: 34px;
                            height: 34px;
                            margin-right: 10px;
                        }
                        .title{
                            font-size: 16px;
                            font-weight: 700;
                            color: #F2330C;
                        }
                        .desc{
                            font-size: 12px;
                            font-weight: 400;
                            line-height: 20px;
                            color: #333333;
                            padding-top: 10px;
                        }
                    }
                }
            }

        }
    }
    section.page-faq{
        padding: 60px 20px 0 20px;
        display: flex;
        justify-content: center;
        .page-faq-box{
            max-width: 1230px;
            width: 100%;

            .faq-content{
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding-top: 60px;
                .faq-item{
                    padding: 30px;
                    border: 1px solid #E8E8E8;
                    border-radius: 20px;
                    transition: all 0.3s ease;
                    cursor: pointer;
                }
                .faq-item-f {
                    font-size: 18px;
                    font-weight: 700;
                    color: #333333;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                .icon{
                    transition: all 0.3s ease;
                    transform: rotate(180deg);
                }



                .fap-item-q{
                    font-size: 12px;
                    font-weight: 400;
                    color: #333333;
                    max-height: 0;
                    opacity: 0;
                    overflow: hidden;
                    transition: all 0.3s ease;
                    transform: translateY(-10px);
                    margin-top: 0;
                }
                .active{
                    border: 1px solid #F2330C;
                    .faq-item-f{
                        color: #F2330C;

                    }
                    .icon{
                        transform: rotate(0deg);
                    }
                    .fap-item-q{
                        max-height: 200px;
                        opacity: 1;
                        overflow: visible;
                        transform: translateY(0);
                        transition: all 0.4s ease;
                        margin-top: 12px;

                    }
                }

            }
        }
    }
    section.page-bv{
        padding: 84px 20px 0 20px;
        .page-bv-box{
            border-radius: 20px;
            background: #F2330C;
            padding-top: 44px;
            text-align: center;
            position: relative;
            overflow: hidden;
            .title{
                font-weight: 700;
                font-size: 26px;
                line-height: 26px;
                color: #ffffff;
            }
            .sub-title{
                font-weight: 400;
                font-size: 16px;
                line-height: 26px;
                color: #ffffff;
                padding-top: 9px;
            }
            .padding-top-40{
                padding-top: 23px;
            }
            .huopan-btn{
                height: 40px !important;
                color: #F2330C;
                background-color: #ffffff;
                width: 150px !important;
                margin: 0 auto;
            }

            .bv-bg{
                width: 87px;
                height: 84px;
                background-color: #FFFFFF1F;
                border-radius: 16px;
            }
            .bg-1{
                position: absolute;
                top: -6px;
                right: -30px;
            }
            .bg-2{
                position: absolute;
                top: 26px;
                right: 22px;
            }
            .bg-3{
                position: absolute;
                top: 95px;
                left: -4px;
            }
            .bg-4{
                position: absolute;
                top: 120px;
                left: -34px;
            }
            img{
                width: 100%;
                padding: 0 20px;
            }
        }

        .bv-logo-group {
            width: 100%;
            overflow: hidden; /* 隐藏溢出的内容 */
            position: relative;
            padding: 10px 0 20px 0;
        }

        .logo-scroll-container {
            display: flex;
            width: max-content; /* 让容器宽度适应内容 */
            animation: scrollHorizontal 20s linear infinite;
        }

        .scrolling-image {
            height: auto; /* 保持图片原始比例 */
            max-height: 45px; /* 根据实际需要调整 */
            object-fit: contain;
        }


    }
    section.footer{
        padding: 27px 20px 50px 20px;
        .footer-box{
            .footer-item{
                display: flex;
                align-items: center;
                justify-content: space-between;

                .footer-item-c{
                    font-size: 14px;
                    font-weight: 400;
                    color: #333333;
                }
            }
            .footer-link{
                padding-top: 23px;
                font-size: 14px;
                font-weight: 400;
                color: #333333;
            }

        }

    }

    .header-title{
        font-size: 32px;
        font-weight: 700;
        color: #333333;
        text-align: center;
        span{
            color: #F2330C;
        }
        .header-ic{
            width: 100px;
            height: 9px;
            background: #F2330C;
            border-radius: 20px;

            margin: 20px auto 0 auto;
        }
    }

    .content-flex{
        display: flex;
        flex-wrap: wrap;
    }
    .padding-top-185{
        margin-top: 85px !important;
    }
    .padding-top-200{
        margin-top: 95px !important;
    }
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    /* 无缝滚动动画 */
    @keyframes scrollHorizontal {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* 移动图片宽度的一半 */
        }
    }

}
@media screen and (min-width: 1000px) {
    .app-header{
        display: none ;
    }
    .app{
        display: none !important;
    }

    section.logo-box{
        display: flex;
        justify-content: center;
        height: 140px;
        .logo-box-wrapper{
            max-width: 1230px;
            .logo-box-title{
                font-size: 16px;
                font-weight: 400;
                color: #BEC2C8;

                text-align: center;
            }
            .logo-group{
                display: flex;
                width: 100%;
                height: 80px;
                max-width: 100%;
                max-height: 100%;
                place-items: center;
                margin: 0px;
                padding: 10px;
                list-style-type: none;
                opacity: 1;
                mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
                overflow: hidden;

                .logo-group-content {
                    display: flex;
                    width: max-content;
                    animation: scroll-left 30s linear infinite;
                    .logo-set {
                        display: flex;
                    }
                    img {
                        height: 55px;
                        width: auto;
                        margin: 0 40px;

                    }



                }
            }
        }
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    section.banner{
        display: flex;
        justify-content: center;
        height: 700px;
        .banner-wrapper{
            display: flex;
            padding-top: 175px;
            max-width: 1230px;
            width: 100%;
            .banner-left{
                width: 468px;
                .banner-left-title{
                    font-size: 52px;
                    font-weight: bold;
                    color: #333333;
                    margin-bottom: 12px;
                    span{
                        color: #F2330C;
                    }
                }
                .banner-left-desc{
                    font-size: 18px;
                    font-weight: 400;
                    color: #333333;
                    padding-bottom: 59px;
                    span{
                        color: #F2330C;
                        font-weight: 700;
                    }

                }
                .banner-left-btn button{
                    height: 50px;
                    width: 175px;
                }
            }
            .banner-right{
                position: relative;
                top:0;
                left: 0;
                .banner-1{
                    position: absolute;
                    top: -138px;
                    left: 40px;
                    z-index: 1;
                    width: 334px;
                }
                .banner-2{
                    position: absolute;
                    top: -70px;
                    left: 82px;
                    z-index: 3;
                    width: 260px;
                }
                .banner-3{
                    position: absolute;
                    top: -140px;
                    left: 218px;
                    z-index: 2;
                    width: 653px;
                }
            }
        }

    }
    section.page-af{
        padding-top: 120px;
        display: flex;
        justify-content: center;
        .page-af-box{
            max-width: 1230px;
            width: 100%;
            .af-content{
                padding-top: 120px;
                .af-content-text-box{
                    display: flex;
                    align-items: center;
                    .af-content-text-title{
                        font-size: 36px;
                        font-weight: 700;
                        color: #333333;
                        display: flex;
                        align-items: center;
                        img{
                            width: 40px;
                            margin-right: 11px;
                        }
                        span{
                            color: #F2330C;
                        }
                    }
                    .af-content-text{
                        margin-top: 40px;

                        .af-content-text-desc{
                            font-size: 20px;
                            font-weight: 400;
                            color: #333333;
                            display: flex;
                            .text{
                                width: 532px;

                            }
                            span{
                                color: #F2330C;
                                font-weight: 500;
                            }
                            img{
                                width: 24px;
                                height: 24px;
                                margin-right: 16px;
                                padding-top: 5px;
                            }
                        }
                    }

                }
                .af-content-img-box{
                    max-width: 522px;

                    .af-content-img{
                        max-width: 522px;
                    }
                }
                .af-content-img-box-dc{
                    position: relative;
                    max-width: 522px;
                    .af-content-img{
                        max-width: 522px;
                    }
                    .af-content-img-r{
                        position: absolute;
                        bottom: 15px;
                        right: -59px;
                        width: 313px;
                        height: 352px;
                    }
                }
            }

        }
    }

    section.page-deal {
        padding-top: 120px;
        display: flex;
        justify-content: center;

        .page-deal-box {
            max-width: 1230px;
            width: 100%;

            .deal-content {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                padding-top: 70px;

                .deal-list {

                    .deal-item {
                        display: flex;
                        padding: 29px 36px 20px 23px;
                        margin-bottom: 20px;

                        .deal-item-icon {
                            width: 30px;
                            height: 30px;
                            border-radius: 50%;
                            text-align: center;
                            line-height: 30px;
                            font-size: 16px;
                            font-weight: 700;
                            color: #FFFFFF;
                            background-color: #999999;
                            margin-top: 9px;
                            margin-right: 9px;
                        }

                        .deal-item-content {

                            .deal-item-title {
                                font-size: 30px;
                                font-weight: 700;
                                color: #333333;
                            }

                            .deal-item-desc {
                                padding-top: 6px;
                                font-size: 18px;
                                font-weight: 400;
                                color: #999999;
                                max-width: 448px;
                            }

                        }
                    }

                    .active {
                        background-color: #F7F8FA;
                        border-radius: 20px;
                        .deal-item-icon{
                            background-color: #F2330C;
                        }
                        .deal-item-title{
                            color: #F2330C;
                        }
                        .deal-item-desc{
                            color: #333333;
                        }
                    }

                }

                .deal-image-container {
                    width: 48%;
                    position: relative;


                    .deal-image-wrapper {
                        position: relative;
                        width: 100%;
                        height: 655px;
                        display: flex;
                        align-items: center;
                        .deal-image-item {
                            position: absolute;
                            width: 100%;
                            opacity: 0;
                            transition: opacity 0.5s ease;
                            display: flex;
                            justify-content: center;
                            .img-tip {
                                position: absolute;
                                bottom: 20px;
                                left: 115px;
                                width: 100%;
                                font-size: 12px;
                                font-weight: 400;
                                color: #333333;
                                text-align: start;
                                padding-top: 0;
                            }
                        }

                        .deal-image-item.active {
                            opacity: 1;
                        }
                    }

                    .deal-content-img-1 {
                        width: 553px;
                    }

                    .deal-content-img-2 {
                        width: 553px;
                    }

                    .deal-content-img-3 {
                        width: 561px;
                    }

                    .deal-content-img-4 {
                        width: 564px;
                    }
                }
            }
        }
    }
    section.page-safety{
        padding-top: 120px;
        display: flex;
        justify-content: center;
        .page-safety-box{
            max-width: 1230px;
            width: 100%;
            .safety-banner{
                background-color: #FFF5F3;
                border-radius: 20px;
                padding: 42px;
                text-align: center;
                margin-top: 120px;
                .safety-banner-title{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .safety-banner-icon{
                    width: 60px;
                    height: 60px;
                    margin-right: 27px;
                }
                .title{
                    font-size: 36px;
                    font-weight: 700;
                    color: #F2330C;
                    padding: 14px 0;
                }
                .desc {
                    font-size: 22px;
                    font-weight: 400;
                    color: #333333;
                    padding-top: 20px;
                    span{
                        color: #F2330C;
                        font-weight: 500;
                    }
                }
            }

            .safety-list{
                display: flex;
                flex-wrap: wrap;
                gap:40px;
                padding-top: 40px;
                .safety-item{

                    width: calc(50% - 20px);
                    font-size: 16px;


                    border-radius: 20px;
                    background-color: #F7F8FA;
                    .safety-item-title{
                        display: flex;
                        align-items: center;

                    }
                    .safety-item-content{
                        padding: 46px;
                    }
                    .safety-item-icon{
                        width: 50px;
                        height: 50px;
                        margin-right: 14px;
                    }
                    .title{
                        font-size: 30px;
                        font-weight: 700;
                        color: #F2330C;

                    }
                    .safety-item-text{
                        padding-top: 20px;
                    }
                }

            }
        }
    }
    section.page-faq{
        padding-top: 140px;
        display: flex;
        justify-content: center;
        .page-faq-box{
            max-width: 1230px;
            width: 100%;

            .faq-content{
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding-top: 60px;
                .faq-item{
                    padding: 30px;
                    border: 1px solid #E8E8E8;
                    border-radius: 20px;
                    transition: all 0.3s ease;
                    cursor: pointer;
                }
                .faq-item-f {
                    font-size: 22px;
                    font-weight: 700;
                    color: #333333;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
                .icon{
                    transition: all 0.3s ease;
                    transform: rotate(180deg);
                }



                .fap-item-q{
                    font-size: 16px;
                    font-weight: 400;
                    color: #333333;
                    max-height: 0;
                    opacity: 0;
                    overflow: hidden;
                    transition: all 0.3s ease;
                    transform: translateY(-10px);
                    margin-top: 0;
                }
                .active{
                    border: 1px solid #F2330C;
                    .faq-item-f{
                        color: #F2330C;

                    }
                    .icon{
                        transform: rotate(0deg);
                    }
                    .fap-item-q{
                        max-height: 200px;
                        opacity: 1;
                        overflow: visible;
                        transform: translateY(0);
                        transition: all 0.4s ease;
                        margin-top: 12px;

                    }
                }

            }
        }
    }
    section.logo-box{
        display: flex;
        justify-content: center;
        height: 140px;
        .logo-box-wrapper{
            max-width: 1230px;
            .logo-box-title{
                font-size: 16px;
                font-weight: 350;
                color: #BEC2C8;

                text-align: center;
            }
            .logo-group{
                display: flex;
                width: 100%;
                height: 80px;
                max-width: 100%;
                max-height: 100%;
                place-items: center;
                margin: 0px;
                padding: 10px;
                list-style-type: none;
                opacity: 1;
                mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
                overflow: hidden;

                .logo-group-content {
                    display: flex;
                    width: max-content;
                    animation: scroll-left 30s linear infinite;
                    .logo-set {
                        display: flex;
                    }
                    img {
                        height: 55px;
                        width: auto;
                        margin: 0 40px;

                    }



                }
            }
        }
    }
    section.page-bv{
        padding-top: 120px;
        display: flex;
        justify-content: center;
        .page-bv-box{
            max-width: 1230px;
            width: 100%;
            border-radius: 20px;
            background-color: #F2330C;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 0 50px 0;
            position: relative;
            overflow: hidden;
            .title{
                font-size: 42px;
                font-weight: 700;
                color: #ffffff;
            }
            .sub-title{
                font-size: 20px;
                font-weight: 400;
                color: #ffffff;
            }
            .bv-logo-group{
                display: flex;
                max-width: 1230px;
                overflow: hidden;
                padding: 0 50px;
                img{
                    width: 100%;
                }


            }
            .huopan-btn{
                color: #F2330C;
                background-color: #ffffff;
                height: 50px !important;
                width: 150px !important;
            }
            .bv-bg{
                width: 166px;
                height: 159px;
                background-color: #FFFFFF1F;
                border-radius: 23px;
            }
            .bg-1{
                position: absolute;
                top: -38px;
                right: -63px;
            }
            .bg-2{
                position: absolute;
                top: 26px;
                right: 35px;
            }
            .bg-3{
                position: absolute;
                top: 118px;
                left: -5px;
            }
            .bg-4{
                position: absolute;
                top: 182px;
                left: -103px;
            }
        }
    }
    section.footer {
        display: flex;
        justify-content: center;
        .footer-box{
            max-width: 1230px;
            width: 100%;
            display: flex;
            align-items: center;
            height: 192px;
            font-size: 16px;
            font-weight: 400;
            color: #333333;
            justify-content: space-between;
            .footer-item{
                display: flex;
                align-items: center;
                img{
                    height: 34px;
                }
                .footer-item-c{
                    padding-left: 32px;
                }
            }
            .footer-link{
                gap: 102px;
            }
        }
    }


    .content-flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .padding-top-20{
        padding-top: 20px !important;
    }
    .padding-top-40{
        padding-top: 40px !important;
    }
    .padding-top-185{
        padding-top: 185px !important;
    }
    .padding-top-200{
        padding-top: 200px !important;
    }
    .img-tip{
        font-size: 12px;
        font-weight: 400;
        color: #333333;
        text-align: center;
        padding-top: 13px;
    }
    .btn-box{
        margin-top: 100px;
        .huopan-btn{
            height: 50px;width: 252px; font-size: 16px;
        }

    }
    .header-title{
        font-size: 42px;
        font-weight: 700;
        color: #333333;
        text-align: center;
        span{
            color: #F2330C;
        }
        .header-ic{
            width: 100px;
            height: 9px;
            background: #F2330C;
            border-radius: 20px;

            margin: 20px auto 0 auto;
        }
    }
}






