* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;

    nav {
        @media (max-width: 1200px) {

            html nav .navbar,
            body nav .navbar {
                display: none;
                /* 优先级 0,0,1,2 — 与基础样式持平，后出现则覆盖 ✅ */
            }

            html nav .hamburger,
            body nav .hamburger {
                display: flex;
                /* 优先级 0,0,1,2 — 同理 ✅ */
            }

        }

        position: fixed;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width:90%;
        height: 66px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px 0 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(4px);
        z-index: 99999;
        transition: transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;



        img {

            width: 169px;
            height: 25px;
            display: block;
        }

        /* 👇 新增：默认隐藏移动端菜单按钮（修改标记） */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }


        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            border-radius: 3px;
            transition: 0.3s;
        }

        .navbar {
            // width: auto;
            width: fit-content;
            height: 50px;
            display: flex;
            align-items: center;
            // justify-content: space-between;
            gap: 10px;
            list-style: none;
            .menu-contact{
                display: none;
            }

            li {
                // padding: 0 20px;
                height: 100%;
                display: flex;
                align-items: center;
                // color: rgba(101, 101, 101, 1);
                // font-family: "Alibaba PuHuiTi";
                // font-weight: 400;
                // font-size: 16px;
                // line-height: 22px;
                // cursor: pointer;
                // border-radius: 25px;
                // transition: all 0.3s ease;

                a {
                    // width: 63px;
                    // text-decoration: none;
                    // color: rgba(101, 101, 101, 1);
                    // font-family: "Alibaba PuHuiTi";
                    // font-weight: 400;
                    // font-size: 16px;
                    // line-height: 22px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    border-radius: 20px;

                    .pa {
                        padding: 0 0;
                        color: rgba(101, 101, 101, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 22px;
                        padding: 10px 10px;
                    }
                }

                div {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    padding: 10px 10px;
                    border-radius: 20px;
                    cursor: pointer;

                    .p {
                        color: rgba(101, 101, 101, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 22px;
                        padding: 0 0;
                    }

                    img {
                        margin-left: 0;
                        width: 14px;
                        height: 14px;
                    }
                }

                div:hover {
                    background: rgba(250, 106, 113, 1);

                    .p {
                        color: #ffffff;
                    }
                }

                a:hover {
                    background: rgba(250, 106, 113, 1);

                    p {
                        color: #ffffff;
                    }
                }

                // &:hover {
                //     color: rgb(255, 255, 255);
                //     border-radius: 25px;
                //     background: rgba(250, 106, 113, 1);

                //     a {
                //         color: rgb(255, 255, 255);
                //     }
                // }

                // img {
                //     margin-left: 0;
                //     width: 14px;
                //     height: 14px;
                // }
            }

            /* 移动端菜单里的联系按钮样式 */
            .menu-contact {
                background: #ff4444;
                color: #fff !important;
                padding: 6px 20px;
                border-radius: 20px;
            }

        }

        .contact-language {
            margin-left: 83px;
            // width: 230px;
            height: 50px;
            display: flex;
            align-items: center;
            list-style: none;
            //  gap: 10px; /* 👇 新增：间距统一（修改标记） */


            li {
                display: flex;
                align-items: center;
                list-style: none;
                // margin-right: 20px;
                font-size: 14px;
                color: #333333;
                cursor: pointer;

                img {
                    margin-right: 5px;
                    width: 14px;
                    height: 14px;
                }
            }

            li:first-child {
                height: 50px;
                width: 153px;
                border-radius: 25px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255, 255, 255, 1);
                font-family: "Alibaba PuHuiTi";
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                text-transform: uppercase;
                background: rgba(250, 106, 113, 1);
            }

            li:nth-child(2) {
                height: 50px;
                margin-left: 0;
                border-radius: 25px;
                width: 60px;
                background: rgba(250, 106, 113, 1);
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1px;

                img {
                    margin-left: 0;
                    width: 18px;
                    height: 18px;
                }

                span {
                    color: rgba(255, 255, 255, 1);
                    font-family: Inter;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: -0.2px;
                }
            }
        }
    }
}

// 响应式媒体查询（修改标记）
@media screen and (max-width:1200px) {

    /* 平板/手机：隐藏中间菜单 */
    html nav .navbar,
    body nav .navbar,
    body nav .contact-language {
        display: none;
    }

    html nav .hamburger,
    body nav .hamburger {
        display: flex;
    }

}

// @media screen and (max-width: 992px) {
//     nav {
//         width: 95%;
//         padding: 0 15px;
//     }
// }



.container {
    width: 80%;
    margin: 0 auto 0;
    overflow: hidden;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

.app {
    margin-top: 0;
    padding-top: 0;

    .banner {
        // height: 100vh;
        aspect-ratio: 16 / 9;
        // height:auto;
        width: 100%;
        overflow: hidden;

        .swiperBanner {
            height: 100%;
            position: relative;
            overflow: hidden;

            .swiper-wrapper {
                height: 100%;

                .swiper-slide {
                    position: relative;
                    height: 100%;
                    overflow: hidden;

                    // .banner1bg {
                    //     height: 100%;
                    //     width: 40.138%;
                    //     position: absolute;
                    //     top: 0;
                    //     right: -10%;
                    // }
                    .banner1bg {
                        height: 100%;
                        width: 26.138%;
                        // width: 40.138%;
                        position: absolute;
                        top: -2%;
                        right: 10%;
                        transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                        background-color: rgba(255, 255, 255, 0.1);
                        backdrop-filter: blur(0.5px);
                        backdrop-filter: contrast(1.05);
                        -webkit-backdrop-filter: blur(0.5px);
                        -webkit-backdrop-filter: contrast(1.05);
                        border-radius: inherit;
                        pointer-events: none;
                    }

                    img {
                        transform: scale(1.2);
                        transition: all 1s ease-in-out;
                        display: block;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        //    max-width: 100%;
                        //    height: auto;
                    }

                    .container {
                        width: 100%;
                        z-index: 5;
                        position: absolute;
                        top: 0;
                        left: 50%;
                        transform: translateX(-50%);

                        .content {
                            width: 100%;
                            // padding-top: 230px;
                            // padding-left: 119px;
                            height: auto;

                            h1 {
                                margin-top: 130px !important;
                                margin-left: 119px;
                                color: rgba(0, 0, 0, 1);
                                font-family: "Alibaba PuHuiTi";
                                font-weight: 700;
                                font-size: 40px;
                                line-height: 55px;
                                margin-top: 0;
                                margin-bottom: 24px;
                                opacity: 0;
                                transition: all 1s ease-in-out;
                            }

                            .s-span {
                                display: block;
                                margin-left: 119px;
                                color: rgba(0, 0, 0, 1);
                                font-family: "Alibaba PuHuiTi";
                                font-weight: 400;
                                font-size: 18px;
                                line-height: 25px;
                                transition: all 1s ease-in-out;
                            }

                            .button {
                                width: fit-content;
                                height: fit-content;
                                display: flex;
                                place-content: flex-start;
                                place-items: center;
                                gap: 16px;
                                margin-left: 119px;
                                margin-top: 71.1px;
                                margin-bottom: 52.9px;
                                opacity: 0;
                                transform: translateY(150%);
                                transition: all 1s ease-in-out;

                                button:first-child {
                                    text-align: center;
                                    color: rgba(255, 255, 255, 1);
                                    font-family: Inter;
                                    font-weight: 700;
                                    font-size: 16px;
                                    line-height: 24px;
                                    letter-spacing: -0.3px;
                                    width: fit-content;
                                    height: 65px;
                                    display: inline-flex;
                                    place-content: flex-start;
                                    place-items: center;
                                    gap: 8px;
                                    flex-shrink: 0;
                                    padding: 15px 32px;
                                    border: none;
                                    border-radius: 18641400px;
                                    background: rgba(21, 93, 252, 1);
                                    box-shadow: 0px 4px 6px -4px rgba(43, 127, 255, 0.3), 0px 10px 15px -3px rgba(43, 127, 255, 0.3);

                                    img {
                                        width: 20px;
                                        height: 20px;
                                    }
                                }

                                button:last-child {
                                    text-align: center;
                                    color: rgba(30, 41, 57, 1);
                                    font-family: Inter;
                                    font-weight: 700;
                                    font-size: 16px;
                                    line-height: 24px;
                                    letter-spacing: -0.3px;
                                    width: 173.1px;
                                    height: 65.1px;
                                    border-radius: 18641400px;
                                    border: 0.6px solid rgba(243, 244, 246, 1);
                                    box-sizing: border-box;
                                    background: rgba(255, 255, 255, 1);
                                    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
                                    display: flex;
                                    place-content: center;
                                    place-items: center;
                                    gap: 8px;

                                    .img {

                                        width: 32px;
                                        height: 32px;
                                        display: flex;
                                        place-content: center;
                                        place-items: center;
                                        flex-shrink: 0;
                                        box-sizing: border-box;
                                        padding: 0px 0px 0px 0px;
                                        border-radius: 18641400px;
                                        background: rgba(255, 228, 230, 1);

                                        img {
                                            width: 11px;
                                            height: 14px;
                                        }
                                    }
                                }
                            }

                            .datas {
                                margin-left: 119px;
                                width: fit-content;
                                height: fit-content;
                                display: inline-flex;
                                place-content: flex-start;
                                place-items: center;
                                padding: 29px;
                                border-radius: 12px;
                                border: 0.6px solid rgba(229, 231, 235, 0.6);
                                background: rgba(0, 92, 219, 0.03);
                                box-shadow:
                                    inset -6px -6px 12px rgba(255, 255, 255, 1),
                                    inset 3px 3px 16px rgba(0, 0, 0, 0.1);
                                opacity: 0;
                                transform: translateY(100%);
                                transition: all 1s ease-in-out;

                                .data {
                                    height: 60.7px;
                                    width: auto;
                                    margin-right: 20px;

                                    .p {
                                        margin: 0;
                                        display: flex;

                                        p {
                                            color: rgba(16, 24, 40, 1);
                                            font-family: Inter;
                                            font-weight: 700;
                                            font-size: 48px;
                                            line-height: 36px;
                                            letter-spacing: 0.4px;
                                            margin-bottom: 4px;
                                        }

                                        span {
                                            color: rgba(21, 93, 252, 1);
                                            font-family: Inter;
                                            font-weight: 700;
                                            font-size: 48px;
                                            line-height: 36px;
                                            letter-spacing: 0.4px;
                                            margin-left: 30px;
                                        }
                                    }

                                    span {
                                        color: rgba(106, 114, 130, 1);
                                        font-family: Inter;
                                        font-weight: 400;
                                        font-size: 14px;
                                        line-height: 20px;
                                        letter-spacing: -0.2px;
                                    }
                                }

                                .data:first-child {
                                    // margin-right: 101px;
                                }

                                .data:nth-child(2) {
                                    // margin-right: 63px;
                                }
                            }

                        }
                    }
                }

                .swiper-slide:nth-child(2) {
                    .datas {
                        box-shadow:
                            inset -6px -6px 12px rgba(255, 255, 255, 1),
                            inset 3px 3px 29px rgba(0, 0, 0, 0.1) !important;
                    }


                }

                .swiper-slide:nth-child(3) {
                    .datas {
                        background: rgba(233, 233, 233, 0.4) !important;
                        // box-shadow:
                        //     inset -6px -6px 12px rgba(255, 255, 255, 1),
                        //     inset 3px 3px 29px  rgba(0, 0, 0, 0.1) !important;
                        box-shadow: none !important;
                    }



                }

                .swiper-slide-active {
                    img {
                        transform: scale(1);
                        object-fit: cover;
                    }

                    .container {
                        .content {
                            h1 {
                                opacity: 1;
                            }

                            span {
                                opacity: 1;
                            }

                            .button {
                                transform: translateY(0);
                                opacity: 1;
                            }

                            .datas {
                                transform: translateY(0);
                                opacity: 1;
                            }
                        }
                    }
                }
            }

            .swiperBanner-pagination {
                height: 37.34%;
                position: absolute;
                right: 152px;
                z-index: 2;
                width: 81px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                box-sizing: border-box;

                .line {
                    width: 2px;
                    height: 191px;
                    background: rgba(172, 172, 172, 1);
                }

                .swiper-pagination-bullet {

                    // width: 180px;
                    // height: 100px;
                    // border-radius: 8px;
                    width: 100%;
                    height: 27.64%;
                    display: flex;
                    place-content: center;
                    place-items: center;
                    flex-shrink: 0;
                    box-sizing: border-box;
                    border-radius: 10px;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    box-sizing: border-box;
                    background: rgba(255, 255, 255, 0.05);
                    overflow: hidden;
                    opacity: 1;
                    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
                    transition: all 0.3s ease;
                    border: 4px solid rgba(172, 172, 172, 1);

                    img {
                        width: 169px;
                        // width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }

                    &.swiper-pagination-bullet-active {
                        opacity: 1;
                        border: 4px solid rgba(63, 175, 232, 1);

                        img {
                            filter: contrast(1.1)
                        }
                    }
                }
            }

            .line {
                width: 2px;
                height: 32%;
                background: rgba(172, 172, 172, 1);
                position: absolute;
                z-index: 1;
                top: 50%;

                transform: translateY(-50%);
                right: 193px;

            }
        }
    }





    .page2 {

        width: auto;
        height: 782px;
        border-radius: 50px 50px 0px 0px;
        margin-top: -50px;
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 1);
        overflow: hidden;

        .container {
            height: 100%;
            position: relative;

            .bj-top-div {
                position: absolute;
                top: -10px;
                right: 70px;
                width: 409.9px;
                height: 627.9px;

                // transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                // background: rgba(241, 241, 241, 1);
                .bj-top {
                    width: 409.9px;
                    height: 627.9px;
                    transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                    background: rgba(241, 241, 241, 1);
                }
            }

            .bj-bottom-div {
                position: absolute;
                bottom: -10px;
                left: 94.9px;
                width: 409.9px;
                height: 228px;

                // transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                // background: rgba(248, 248, 248, 1);
                .bj-bottom {
                    width: 409.9px;
                    height: 228px;
                    transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                    background: rgba(248, 248, 248, 1);
                }
            }

        }

        .top {
            max-width: 1251px;
            height: 557px;
            margin: 72px auto 0;
            position: relative;
            z-index: 2;

            .title {
                // margin: 0 auto 0;
                // width: 1198px;
                // height: 44px;
                display: grid;
                grid-template-columns: auto 1fr;
                justify-items: self-end;

                .title1 {
                    display: flex;
                    align-items: center;

                    img {
                        width: 35px;
                        height: 35px;
                        margin-right: 3px;
                    }

                    h1 {
                        color: rgba(0, 0, 0, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 700;
                        font-size: 30px;
                        line-height: 41px;
                        // margin-right: 516px;
                        display: block;
                        white-space: nowrap;

                        span {
                            color: rgba(0, 150, 224, 1);
                        }
                    }
                }


                p {
                    width: 346px;
                    height: 44px;
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 22px;
                }
            }

            // 媒体查询，小于1200px时，标题左对齐
            @media screen and (max-width: 1200px) {
                .title {
                    grid-template-columns: 1fr;
                    justify-self: start;
                }
            }

            .main {
                margin-top: 65px;
                height: 448px;
                width: auto;
                display: flex;

                // justify-content: space-between;
                .img {
                    width: 285px;
                    height: 346px;
                    border-radius: 16px;
                    border: 10px solid rgba(91, 126, 144, 1);
                    box-sizing: border-box;
                    overflow: hidden;
                    position: relative;

                    .sequence {
                        position: relative;
                        z-index: 2;
                        width: 40px;
                        height: 40px;
                        margin-top: 16px;
                        margin-left: 20px;
                        display: flex;
                        place-content: center;
                        place-items: center;
                        flex-shrink: 0;
                        box-sizing: border-box;
                        border-radius: 14px;
                        background: linear-gradient(145.67deg, rgba(67, 145, 254, 1) 9.06%, rgba(155, 197, 255, 1) 98.37%);
                        box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
                        color: rgba(255, 255, 255, 1);
                        font-family: Inter;
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 24px;
                        letter-spacing: -0.3px;
                    }

                    p {
                        position: relative;
                        z-index: 2;
                        color: rgba(255, 255, 255, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 500;
                        font-size: 18px;
                        line-height: 25px;
                        margin-top: 230px;
                        text-align: center;
                    }

                    img {
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        width: 269px;
                        height: 330px;
                        background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 37.24%, rgba(0, 0, 0, 0) 59.34%, rgba(0, 0, 0, 0.85) 100%);
                        transition: transform 1s ease;
                    }

                    img:hover {
                        transform: scale(1.1);
                    }
                }

                .img2 {
                    margin-top: 102px;
                }

                .img3 {
                    margin-top: 39px;
                }

                .img:hover {
                    background-size: 110% 110%;
                    transition: background-size 1s ease;
                }

                .connect {
                    position: relative;
                    width: 37px;
                    height: 62px;
                    background: rgba(91, 126, 144, 1);

                    .circle {
                        position: absolute;
                        width: 37px;
                        height: 37px;
                        border-radius: 50%;
                        background: rgba(255, 255, 255, 1);
                    }


                    .top-circle {
                        top: -18px;
                    }

                    .bottom-circle {
                        bottom: -18px;
                    }
                }

                .connect:nth-child(2) {
                    margin-top: 223.3px;
                }

                .connect:nth-child(4) {
                    margin-top: 303.3px;
                }

                .connect:nth-child(6) {
                    margin-top: 194.3px;

                    .circle {
                        background: rgba(241, 241, 241, 1);
                    }
                }

                @media screen and (max-width: 1200px) {
                    .app .page2 .top .main {
                        flex-wrap: wrap;
                        justify-content: space-between;
                        width: 100%;
                    }
                }
            }


        }

        .bottom {
            width: 403.3px;
            display: flex;
            justify-content: space-between;
            margin: 59px auto 0;

            button:first-child {
                text-align: center;
                color: rgba(255, 255, 255, 1);
                font-family: Inter;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: -0.3px;
                border: none;
                width: 192px;
                height: 51.3px;
                border-radius: 18641400px;
                background: rgba(255, 32, 86, 1);
                box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    background: #e62458;
                }
            }

            button:last-child {
                text-align: center;
                color: rgba(21, 93, 252, 1);
                font-family: Inter;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: -0.3px;
                width: 195.3px;
                height: 51.3px;
                border-radius: 18641400px;
                border: 1.7px solid rgba(21, 93, 252, 1);
                box-sizing: border-box;
                background: rgba(255, 255, 255, 1);
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    background: #005cff;
                    color: #fff;
                }
            }
        }

    }

    .page3 {
        height: 782px;
        border-radius: 50px 50px 0px 0px;
        background: rgba(238, 241, 242, 1);
        position: relative;

        .container {
            .top {
                width: 1217px;
                height: 41px;
                display: grid;
                grid-template-columns: auto 1fr;
                justify-items: self-end;
                margin: 83px auto 68px;

                .top1 {
                    display: flex;
                    align-items: center;
                    gap: 12px;

                    img {
                        width: 40px;
                        height: 40px;
                        border-radius: 16777200px;
                        background: rgba(0, 150, 224, 0.1);
                        // margin-right: 12px;
                    }

                    h1 {
                        color: rgba(0, 0, 0, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 700;
                        font-size: 30px;
                        line-height: 41px;
                        // margin-right: 647px;
                    }
                }


                p {
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 22px;
                }
            }

            @media screen and (max-width: 1200px) {
                .top {
                    grid-template-columns: 1fr;
                    justify-items: flex-start;
                }
            }

        }

        .swiper3 {
            overflow: hidden;

            .swiper-wrapper {
                height: 418.5px;
                display: flex;

                .swiper-slide {
                    width: 286px;
                    height: 418.5px;
                    border-radius: 16px;
                    border: 0.6px solid rgba(243, 244, 246, 1);
                    box-sizing: border-box;
                    background: rgba(255, 255, 255, 1);
                    padding: 16.6px;
                    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);

                    .img {
                        width: 252.9px;
                        height: 252.9px;
                        border-radius: 14px;
                        background: #f3f4f6;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        position: relative;

                        .p {

                            width: 72px;
                            height: 23.8px;
                            border-radius: 18641400px;
                            background: #ffffffe6;
                            box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
                            display: flex;
                            justify-content: center;
                            align-items: center;


                            position: absolute;
                            top: 12.6px;
                            left: 19.4px;

                            p {
                                text-align: center;
                                color: #155dfc;
                                font-family: Inter;
                                font-weight: 600;
                                font-size: 12px;
                                line-height: 16px;
                                line-height: 1;
                            }
                        }

                        .divImg {
                            width: 227.6px;
                            height: 227.6px;
                            border-radius: 10px;
                            background: #ffffff00;
                            box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            transition: all 0.3s ease-in-out;

                            img {
                                display: block;
                                width: 184px;
                                height: 189px;
                                transition: all 0.3s ease-in-out;
                            }

                        }

                        .divImg:hover img {
                            transform: scale(1.1);
                        }
                    }

                    .text {
                        width: 252.9px;
                        height: 108.5px;
                        margin-top: 24px;

                        h2 {
                            color: #101828;
                            font-family: Inter;
                            font-weight: 700;
                            font-size: 20px;
                            line-height: 28px;
                            letter-spacing: -0.4px;
                            margin-bottom: 9px;
                        }

                        p {
                            color: #6a7282;
                            font-family: Inter;
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 20px;
                            letter-spacing: -0.2px;
                            margin-bottom: 16px;
                        }

                        .arrow {
                            width: 252.9px;
                            height: 36.6px;
                            display: flex;
                            align-items: center;
                            justify-content: end;
                            border-top: 0.6px solid #f3f4f6;

                            img {
                                width: 20px;
                                height: 20px;
                            }
                        }
                    }
                }
            }

        }

        .xu1 {
            position: absolute;
            z-index: 2;
            top: 113px;
            left: 0;
            width: 116px;
            height: 559px;

        }

        .xu2 {
            position: absolute;
            z-index: 2;
            top: 113px;
            right: 0;
            width: 116px;
            height: 559px;
        }

        @media screen and (max-width: 1200px) {

            .xu1,
            .xu2 {
                display: none;
            }

        }

        .swiper3-buttons {
            width: fit-content;
            height: fit-content;
            display: inline-flex;
            place-content: flex-start;
            place-items: center;
            gap: 71px;
            margin-top: 63px;
            margin-left: 50%;
            transform: translateX(-50%);

            .more {
                width: 186px;
                height: 52px;
                border-radius: 18641400px;
                background: #155dfc;
                border: none;
                box-shadow: 0px 4px 6px -4px rgba(43, 127, 255, 0.3), 0px 10px 15px -3px rgba(43, 127, 255, 0.3);
                padding: 0 33px;
                display: flex;

                align-items: center;

                span {
                    color: #ffffff;
                    font-family: Inter;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: -0.3px;
                    margin-right: 9px;
                }

                img {
                    width: 16px;
                    height: 16px;
                }
            }

            .swiper3-button-next {
                width: 57px;
                height: 57px;
                border-radius: 40px;
                background: #fa6a71;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;

                img {
                    width: 35px;
                    height: 35px;
                }
            }

            .swiper3-button-prev {
                width: 57px;
                height: 57px;
                border-radius: 40px;
                background: #fa6a71;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;

                img {
                    width: 35px;
                    height: 35px;
                }
            }
        }

    }

    .about-section {
        height: 1642px;
        background: #fff;

        .container {
            height: 100%;
            position: relative;

            .about-title {
                // background: red;
                text-align: center;
                margin-top: 41px;
                margin-bottom: 48px;

                img {
                    width: 40px;
                    height: 40px;
                    display: inline-block;
                    margin-bottom: 8px;
                }

                h2 {
                    color: rgba(16, 24, 40, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 40px;
                    letter-spacing: 0.4px;
                }
            }

            .about-item {
                display: flex;
                // grid-template-columns: 1fr 1fr;
                // gap: 44px;
                margin-bottom: 39px;
                margin-left: 118px;

                .about-text {
                    width: 630px;
                    height: fit-content;
                    display: inline-flex;
                    flex-direction: column;
                    place-content: flex-start;
                    place-items: flex-start;
                    margin-right: 46px;

                    .item-title {
                        width: fit-content;
                        height: fit-content;
                        display: inline-flex;
                        place-content: flex-start;
                        place-items: center;
                        gap: 7px;
                        color: rgba(16, 24, 40, 1);
                        font-family: Inter;
                        font-weight: 700;
                        font-size: 24px;
                        line-height: 32px;
                        letter-spacing: 0.1px;
                        margin-bottom: 16px;

                        span {
                            color: rgba(0, 150, 224, 1);
                            font-family: "Alibaba PuHuiTi";
                            font-weight: 700;
                            font-size: 24px;
                            line-height: 33px;
                            letter-spacing: 0.1px;
                        }
                    }

                    p {
                        width: 635px;
                        height: 170px;
                        color: rgba(0, 0, 0, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 42px;
                        margin-bottom: 77px;

                        span {

                            font-weight: 700;
                            font-size: 22px;
                        }
                    }

                    .link-more {
                        text-decoration: none;
                        width: fit-content;
                        height: fit-content;
                        display: inline-flex;
                        place-content: space-between;
                        place-items: center;
                        gap: 22px;
                        flex-shrink: 0;

                        h1 {
                            color: rgba(0, 150, 224, 1);
                            font-family: "Alibaba PuHuiTi";
                            font-weight: 400;
                            font-size: 24px;
                            line-height: 33px;
                        }


                        img {
                            width: 24px;
                            height: 24px;
                        }
                    }

                    hr {
                        border: none;
                        margin-top: 36px;
                        width: 100%;
                        height: 2px;
                        border-radius: 3px;
                        background: rgba(155, 175, 203, 0.45);
                    }
                }

                img {
                    width: 641px;
                    height: 436px;
                    display: block;
                    border-radius: 16px 0px 0px 16px;

                }


            }

            .about-item.reverse {
                position: relative;
                z-index: 2;
                margin-bottom: 13px;

                .about-img {
                    width: 455px;
                    height: 566px;
                    border-radius: 16px;

                    overflow: hidden;
                    margin-right: 84px;

                    img {
                        width: 455px;
                        height: 566px;
                    }


                }

                .about-text {
                    width: 660px;
                    height: fit-content;
                    display: inline-flex;
                    flex-direction: column;
                    place-content: flex-start;
                    place-items: flex-start;
                    gap: 29px;
                    flex-shrink: 0;

                    h3 {
                        width: fit-content;
                        height: fit-content;
                        display: inline-flex;
                        place-content: flex-start;
                        place-items: center;
                        gap: 6px;
                        color: rgba(16, 24, 40, 1);
                        font-family: Inter;
                        font-weight: 700;
                        font-size: 24px;
                        line-height: 32px;
                        letter-spacing: 0.1px;

                        span {
                            color: rgba(250, 106, 113, 1);
                            font-family: "Alibaba PuHuiTi";
                            font-weight: 700;
                            font-size: 24px;
                            line-height: 33px;
                            letter-spacing: 0.1px;
                        }
                    }

                    p {
                        color: rgba(0, 0, 0, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 18px;
                        line-height: 42px;
                    }
                }



            }

            .img-caption {
                margin-left: 122px;
                width: fit-content;
                height: fit-content;
                display: inline-flex;
                place-content: flex-start;
                place-items: flex-start;

                a {
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 19px;
                    text-decoration-line: underline;
                    text-underline-offset: 45%;
                    text-underline-position: from-font;
                    text-decoration-skip-ink: auto;

                }
            }

            .video-group {
                position: relative;
                z-index: 2;
                width: 749px;
                height: fit-content;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 46px;
                margin-left: 572px;

                .video-item {
                    position: relative;
                    width: 362px;
                    height: 207px;


                    .video {
                        width: 362px;
                        height: 207px;
                        border-radius: 12px;
                        background: rgba(196, 196, 196, 1);
                    }

                    .img {
                        position: absolute;
                        top: 80px;
                        left: 157px;
                        width: 48px;
                        height: 48px;
                        border-radius: 45px;
                        background: rgba(255, 255, 255, 0.42);
                        backdrop-filter: blur(4px);
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        .play {
                            width: 13px;
                            height: 14px;
                        }
                    }
                }
            }

            .bg-div {
                width: 491.9px;
                height: 557.2px;
                // transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                // background: rgba(248, 248, 248, 1);
                position: absolute;
                bottom: -53px;
                left: 296px;
                z-index: 1;

                .bg {
                    width: 491.9px;
                    height: 557.2px;
                    transform: scale(1, 0.978148) skew(-11.745157deg, 0deg);
                    background: rgba(248, 248, 248, 1);
                }
            }
        }

    }

    .industry-section {
        padding: 80px 0;
        background: #f0f4f6;
        border-radius: 50px 50px 0px 0px;
        margin-top: -50px;
        position: relative;
        z-index: 2;

        .container {
            position: relative;
            overflow: visible;

            .section-header {
                display: grid;
                grid-template-columns: 1fr 1fr;
                // justify-items: center;
                align-items: center;
                gap: 20px;
                width: 100%;
                margin: 0 auto 40px;


                .header-title {
                    display: flex;
                    align-items: center;
                    gap: 12px;

                    img {
                        width: 40px;
                        height: 40px;
                        object-fit: contain;
                    }

                    h2 {
                        font-size: 22px;
                        color: #000;
                        font-weight: 600;
                        margin: 0;
                    }
                }

                .header-desc {
                    font-size: 14px;
                    color: #333;
                    margin: 0;
                    text-align: end;
                }
            }

            .industry-carousel {
                position: relative;
                width: 100%;
                margin: 0 auto 30px;
                padding: 0 clamp(64px, 7.3vw, 140px);
            }

            .industrySwiper {
                position: relative;
                width: 100%;
                height: clamp(224px, 21.8vw, 418px);
                margin: 0 auto;
                overflow: hidden;

                .swiper-wrapper {
                    align-items: center;
                }

                .swiper-slide {
                    width: clamp(300px, 34vw, 652px);
                    height: clamp(172px, 16.9vw, 324px);
                    transition: all 0.45s ease;
                    position: relative;
                    left: 0;
                    z-index: 1;
                    overflow: hidden;
                    border-radius: 8px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 8px;
                        filter: brightness(0.48) grayscale(12%);
                        transition: all 0.45s ease;

                    }

                    .slide-caption {
                        position: absolute;
                        left: 50%;
                        bottom: clamp(16px, 1.7vw, 32px);
                        transform: translateX(-50%);
                        color: #fff;
                        font-size: clamp(18px, 1.4vw, 26px);
                        font-weight: 600;
                        line-height: 1.3;
                        white-space: nowrap;
                        opacity: 0;
                        text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
                        transition: all 0.45s ease;
                    }
                }


                .swiper-slide.active {
                    height: clamp(224px, 21.8vw, 418px);
                    opacity: 1;
                    position: relative;
                    z-index: 3;
                }

                .swiper-slide.swiper-slide-prev {
                    transform: translateX(50%);
                }

                .swiper-slide.swiper-slide-next {
                    transform: translateX(-50%);
                }

                .swiper-slide.active img {
                    filter: brightness(1) grayscale(0);
                }

                .swiper-slide.active .slide-caption {
                    opacity: 1;
                }


            }

            .industry-button-prev,
            .industry-button-next {
                position: absolute;
                top: 50%;
                width: 50px;
                height: 50px;
                background: #ff5a6a;
                border-radius: 50%;
                color: #fff;
                margin-top: 0;
                transform: translateY(-50%);
                z-index: 5;
                box-shadow: 0 8px 18px rgba(255, 90, 106, 0.18);

                &::after {
                    font-size: 18px;
                    font-weight: bold;
                }
            }

            .industry-button-prev {
                left: clamp(18px, 2vw, 38px);
            }

            .industry-button-next {
                right: clamp(18px, 2vw, 38px);
            }

            .industry-desc {
                text-align: center;
                margin-bottom: 38px;

                p {
                    text-align: center;
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                }
            }

            .action-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;

                .btn {
                    padding: 12px 40px;
                    border-radius: 25px;
                    font-size: 14px;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }

                .btn-primary {
                    background: #ff2b63;
                    color: #fff;
                    border: none;
                    box-shadow: 0 3px 6px rgba(255, 43, 99, 0.3);

                    &:hover {
                        background: #e62458;
                    }
                }

                .btn-outline {
                    background: #fff;
                    color: #005cff;
                    border: 1px solid #005cff;

                    &:hover {
                        background: #005cff;
                        color: #fff;
                    }
                }
            }
        }

    }

    .cooperation-section {
        height: 1127px;
        background: rgba(23, 30, 44, 1);
        display: flex;
        flex-direction: column;

        .container {
            height: 65.39%;
            width: 1440px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 120px;

            .section-header {
                width: 1200px;
                margin: 75px auto 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 48px;

                .header-title {
                    display: flex;
                    align-items: center;
                    gap: 16px;

                    img {
                        width: 40px;
                        height: 40px;
                        object-fit: contain;
                    }

                    h2 {
                        color: rgba(255, 255, 255, 1);
                        font-family: Inter;
                        font-weight: 700;
                        font-size: 36px;
                        line-height: 40px;
                        letter-spacing: 0.4px;
                    }
                }

                .link-more {
                    display: inline-flex;
                    align-items: center;
                    gap: 15px;
                    text-decoration: none;

                    span {
                        color: rgba(209, 213, 220, 1);
                        font-family: Inter;
                        font-weight: 500;
                        font-size: 24px;
                        line-height: 24px;
                        letter-spacing: -0.3px;
                    }

                    img {
                        width: 24px;
                        height: 24px;
                    }
                }
            }

            .swiper6 {
                position: relative;
                width: 1199px;
                height: 534px;
                border-radius: 12px;
                overflow: hidden;
                margin-bottom: 40px;

                .swiper-wrapper {
                    width: 100%;
                    height: 100%;
                }

                .swiper-slide {
                    position: relative;
                    width: 100%;
                    height: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    .slide-text {
                        position: absolute;
                        top: 40%;
                        left: 50%;
                        transform: translateX(-50%);
                        text-align: center;
                        width: 80%;

                        p {
                            text-align: center;
                            color: rgba(255, 255, 255, 1);
                            font-family: "Alibaba PuHuiTi";
                            font-weight: 400;
                            font-size: 24px;
                            line-height: 39px;
                            letter-spacing: 0.7px;
                            margin-bottom: 139px;
                            opacity: 0;
                            transform: translateY(200%);
                            transition: all 1s;
                        }


                    }
                }

                .swiper-slide-active {
                    .slide-text {
                        p {
                            opacity: 1;
                            transform: translateY(0);
                        }
                    }
                }

                .swiper6-pagination {
                    position: absolute;
                    z-index: 2;
                    bottom: 40px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 654px;
                    height: 48px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 33px;
                    box-sizing: border-box;
                    border-radius: 18641400px;
                    background: rgba(0, 0, 0, 0.45);

                    .swiper-pagination-bullet {
                        width: fit-content;
                        display: flex;
                        align-items: center;
                        opacity: 1;

                        span {
                            // display: block;
                            // width: 95px;
                            color: rgba(209, 213, 220, 1);
                            font-family: Inter;
                            font-weight: 500;
                            font-size: 16px;
                            line-height: 24px;
                            letter-spacing: -0.3px;
                        }

                        &.swiper-pagination-bullet-active {
                            background: none;

                            // opacity: 1;
                            span {
                                color: rgba(255, 100, 103, 1);
                            }
                        }
                    }
                }

                .swiper6-button-prev,
                .swiper6-button-next {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 50px;
                    height: 50px;
                    // background: rgba(255, 255, 255, 0.2);
                    background: #ff5a6a;
                    border-radius: 50%;
                    color: #fff;
                    z-index: 10;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    // &::after {
                    //     font-size: 18px;
                    // }


                }

                .swiper-button-disabled {
                    background: rgba(255, 255, 255, 0.2);
                }

                .swiper6-button-prev {
                    left: 20px;

                    img {
                        width: 30px;
                        height: 30px;
                    }
                }

                .swiper6-button-next {
                    right: 20px;

                    img {
                        width: 30px;
                        height: 30px;
                    }
                }

            }



        }

        .showPics {
            flex: 1;
            width: 100%;
            background: rgba(18, 24, 37, 1);

            .container {
                height: 100%;

                .pics {
                    margin: 69px auto 0;
                    width: 1200px;
                    display: flex;
                    justify-content: space-between;
                    padding: 0 10px;
                    box-sizing: border-box;

                    .pic-item {
                        width: 182.5px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        flex-shrink: 0;
                        cursor: pointer;
                    }

                    .pic {
                        width: 182.5px;
                        height: 105px;
                        display: flex;
                        place-content: center;
                        place-items: center;
                        flex-shrink: 0;
                        box-sizing: border-box;
                        border-radius: 10px;
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        background: rgba(255, 255, 255, 0.05);
                        overflow: hidden;
                        opacity: 0.4;
                        transition: all 0.3s ease;

                        img {
                            width: 169px;
                            height: 79px;
                        }

                        &:hover {
                            opacity: 1;
                            filter: brightness(1.6);
                        }
                    }

                    .pic-title {
                        margin-top: 14px;
                        width: 100%;
                        color: rgba(209, 213, 220, 1);
                        font-family: Inter;
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 1.4;
                        text-align: center;
                        white-space: normal;
                        overflow-wrap: anywhere;
                        word-break: break-word;
                        opacity: 0;
                        transition: opacity 0.3s ease;
                    }

                    .pic-item.active {
                        .pic {
                            opacity: 1;
                            filter: brightness(1.6);
                        }

                        .pic-title {
                            opacity: 1;
                        }
                    }
                }
            }


        }
    }

    .news-section {
        margin-top: -147px;
        padding-top: 70px;
        position: relative;
        background: rgba(238, 241, 242, 1);
        border-radius: 50px 50px 0px 0px;

        .container {
            width: 1440px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;



            .header-title {
                width: fit-content;
                margin: 0 auto 0;
                display: flex;
                align-items: center;
                gap: 4px;
                margin-bottom: 60px;

                img {
                    width: 40px;
                    height: 40px;
                    display: inline-block;
                    vertical-align: middle;
                }

                h2 {
                    display: inline-block;
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 41px;
                }
            }

        }

        .swiper7 {
            width: 100%;
            margin-bottom: 60px;

            .swiper7-wrapper {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                gap: 50px;
                overflow: hidden;
            }

            .swiper-slide {
                padding-bottom: 27px;
                width: 352px;
                background: #fff;
                border-radius: 12px;
                overflow: hidden;
                display: flex;
                gap: 9px;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .img {
                    position: relative;
                    width: 100%;
                    height: 304px;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: all 0.5s;
                    }

                    .date {
                        position: absolute;
                        top: 23px;
                        left: 25px;
                        width: 125.3px;
                        height: 32px;
                        border-radius: 10px;
                        background: rgba(250, 106, 113, 1);
                        box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
                        display: flex;
                        gap: 6px;
                        justify-content: center;
                        align-items: center;

                        img {
                            width: 16px;
                            height: 16px;

                        }

                        span {
                            color: rgba(255, 255, 255, 1);
                            font-family: Inter;
                            font-weight: 700;
                            font-size: 14px;
                            line-height: 20px;
                            letter-spacing: -0.2px;
                        }
                    }
                }

                h3 {
                    text-align: center;
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 27px;
                }

                p {
                    width: 281px;
                    height: 61px;
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 300;
                    font-size: 15px;
                    line-height: 21px;
                }

                .link-more {
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 400;
                    font-size: 17px;
                    line-height: 23px;
                    text-decoration-line: underline;
                    text-decoration-thickness: 12%;
                    text-underline-offset: 30%;
                    text-underline-position: from-font;
                    text-decoration-skip-ink: auto;
                }
            }

            .swiper-slide:hover {
                .img {
                    img {
                        transform: scale(1.1);
                    }
                }
            }
        }

        .xu1 {
            position: absolute;
            z-index: 2;
            top: 120px;
            left: 0;
            width: 116px;
            height: 559px;
        }

        .xu2 {
            position: absolute;
            z-index: 2;
            top: 120px;
            right: 0;
            width: 116px;
            height: 559px;
        }

        .container.container2 {
            padding-bottom: 158px;

            .btn-view-all {
                display: block;
                margin: 0 auto;
                width: 163.3px;
                height: 51.3px;
                // border-radius: 18641400px;
                border: 1.7px solid rgba(229, 231, 235, 1);
                box-sizing: border-box;
                background: rgba(255, 255, 255, 1);
                box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);

                color: rgba(54, 65, 83, 1);
                font-family: Inter;
                font-weight: 700;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: -0.3px;
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    background: #f5f5f5;
                }
            }
        }
    }

    .contact-section {
        position: relative;
        padding-bottom: 66px;
        background: rgba(238, 241, 242, 1);
        // overflow: hidden;



        .container {
            width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding-top: 53px;
            padding-left: 120px;
            overflow: visible;
            box-sizing: border-box;

            .contact-bg-text {
                position: absolute;
                top: -87px;
                right: 0;
                width: 70%;
                height: auto;
                z-index: 0;
                pointer-events: none;
            }

            .section-header {
                display: flex;
                align-items: center;
                gap: 7px;
                margin-bottom: 67px;

                img {
                    width: 28.6px;
                    height: 28.6px;
                }

                h2 {
                    color: rgba(0, 0, 0, 1);
                    font-family: "Alibaba PuHuiTi";
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 41px;
                }
            }

            .contact-form {
                display: inline-block;
                width: 60%;
                vertical-align: top;

                .form-row {
                    display: flex;
                    gap: 16px;
                    margin-bottom: 21px;

                    input {
                        flex: 1;
                        padding: 20px;
                        border: none;
                        border-radius: 6px;
                        background: #fff;
                        font-size: 14px;
                        outline: none;

                        &::placeholder {
                            color: rgba(0, 0, 0, 0.45);
                        }
                    }
                }

                .file-row {
                    gap: 20px;

                    .file-upload {
                        background: #fff;
                        border-radius: 6px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        padding: 54px 35px 53px 35px;

                        .img {
                            width: 56px;
                            height: 56px;
                            display: flex;
                            place-content: center;
                            place-items: center;
                            flex-shrink: 0;
                            box-sizing: border-box;
                            padding: 0px 16px;
                            border-radius: 16777200px;
                            background: rgba(255, 255, 255, 1);
                            box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
                            margin-bottom: 15px;

                            img {
                                width: 24px;
                                height: 24px;
                            }
                        }

                        p {

                            color: rgba(64, 64, 64, 1);
                            font-family: Inter;
                            font-weight: 500;
                            font-size: 16px;
                            line-height: 24px;
                            letter-spacing: -0.3px;
                        }
                    }

                    textarea {
                        outline: none;
                        flex: 1;
                        border: none;
                        border-radius: 6px;
                        padding: 16px;
                        background: rgba(255, 255, 255, 1);
                        font-size: 14px;
                        resize: none;

                        &::placeholder {
                            color: rgba(0, 0, 0, 0.45);
                        }
                    }
                }

                .bottom {
                    display: flex;
                    gap: 200px;
                    padding-left: 19px;

                    .tip {
                        width: 236px;
                        height: 42px;
                        text-align: center;
                        color: rgba(126, 126, 126, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 21px;
                    }

                    .btn-submit {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 5px;

                        width: 261px;
                        height: 51px;
                        border-radius: 4px 4px 42px 42px;
                        background: rgba(250, 106, 113, 1);
                        cursor: pointer;
                        transition: all 0.3s ease;
                        border: none;

                        span {
                            color: rgba(255, 255, 255, 1);
                            font-family: "Alibaba PuHuiTi";
                            font-weight: 400;
                            font-size: 18px;
                            line-height: 25px;
                        }

                        img {
                            width: 24px;
                            height: 24px;
                        }

                        &:hover {
                            background: #ff3b4f;
                        }
                    }
                }



            }

            .contact-info {
                display: inline-block;
                width: 35%;
                margin-left: 4%;
                vertical-align: top;

                .info-item {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 71px;

                    img {
                        width: 33px;
                        height: 33px;
                    }

                    p {
                        color: rgba(86, 86, 86, 1);
                        font-family: "Alibaba PuHuiTi";
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 19px;
                        letter-spacing: -0.3px;
                    }
                }
            }
        }
    }

    .footer-section {
        padding: 40px 0;
        background: #fff;
        border-top: 1px solid #eee;

        .footer-logo {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(233, 233, 233, 1);

            img {
                height: 60px;
                object-fit: contain;
            }
        }

        .footer-nav {
            position: static;
            display: flex;
            width: 100%;
            justify-content: center;
            gap: 60px;
            margin-bottom: 40px;
            transform: translateX(0);

            a {
                color: rgba(0, 0, 0, 1);
                font-family: "Alibaba PuHuiTi";
                font-weight: 400;
                font-size: 22px;
                line-height: 30px;
                text-decoration: none;
                transition: color 0.3s ease;

                &:hover {
                    color: #0096e0;
                }
            }
        }

        .footer-social {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 121px;
            margin-bottom: 45px;

            .social-group-left {
                display: flex;
                gap: 24px;
                align-items: center;

                a {
                    display: inline-block;

                    img {
                        width: 26px;
                        height: 26px;
                        object-fit: contain;
                    }
                }
            }

            .social-group-right {
                display: flex;
                gap: 24px;
                align-items: center;

                a {
                    display: inline-block;

                    img {
                        width: 68px;
                        height: fit-content;
                        object-fit: contain;
                    }
                }
            }
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 34px 122px 0 122px;
            border-top: 1px solid #eee;

            .footer-info-left,
            .footer-info-center,
            .footer-info-right {
                p {
                    color: #666;
                    font-size: 14px;
                    margin: 0;
                }
            }
        }
    }

}

// banner图
@media screen and (max-width: 1200px) {

    // .container{
    //     width: 1200px;
    // }
    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content {
        margin-top: 106px;
        margin-left: 260px;
    }

    // 标准的模具定制服务
    .app .page2 .top .main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .app .page2 .top .main .connect {
        display: none;
    }

    .app .page2 .container .bj-bottom-div {
        bottom: 214px;
    }

    .app .page2 .top .main .img {
        margin-bottom: 10px;
    }

    .app .page2 .top .main .img2 {
        margin: 0;
    }

    .app .page2 .top .main .img3 {
        margin: 0;
    }

    .app .page2 {
        height: 1050px;
    }

    .app .page2 .bottom {
        margin: 328px auto 0;
    }


    // 核心优势 两个视频
    .app .about-section .container .video-group .video-item {}

    // 行业应用轮播
    .app .industry-section .container .industry-carousel {
        padding: 0 clamp(64px, 7.3vw, 140px);
    }

    .app .industry-section .container .industrySwiper {
        width: 100%;
        height: clamp(224px, 21.8vw, 418px);
    }

    .app .about-section .container .about-item {
        display: block;
        // flex-direction: column;
        // align-items: center;
    }

    .app .about-section .container .about-item .about-text {
        width: 100%;
    }

    .app .about-section .container .about-item .about-text p {
        width: 100%;
        margin-bottom: 0;
    }

    .app .about-section {
        height: auto;
    }

    .app .about-section .container .about-item img {
        margin: 10px auto;
        display: block;
        width: 70%;
        height: auto;
        border-radius: 20px;
    }

    .app .about-section .container .about-item.reverse .about-img {
        width: 100%;
        border-radius: 20px;
    }

    .app .about-section .container .about-item.reverse .about-img img {
        width: 70%;
        height: auto;
        border-radius: 20px;
    }

    .app .about-section .container .about-item.reverse .about-text {
        width: 100%;
    }

    .app .about-section .container .video-group {
        z-index: 4;
        margin: auto;
    }

    .app .industry-section .container .section-header {
        grid-template-columns: 1fr;

    }

    .app .industry-section .container .section-header .header-title {
        margin-left: 20px;
    }

    .app .industry-section .container .section-header .header-desc {
        margin-left: 20px;
        text-align: start;
    }

    //  合作服务
    .app .cooperation-section .container {
        width: 100%;
    }

    .app .cooperation-section .container .section-header {
        width: 100%;
    }

    .app .cooperation-section .container .swiper6 {
        width: 100%;
    }

    // 资讯动态
    .app .news-section .container {
        width: 100%;
    }

    .app .contact-section .container {
        width: 100%;
    }
    .app .contact-section .container .contact-form .bottom .tip {
        display: none;
    }

    .app .contact-section .container .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    //  联系我们
    .app .contact-section .container .contact-info .info-item {
        margin-bottom: 0;
    }

    .app .contact-section .container .contact-form .form-row {
        display: grid;
    }


    .app .footer-section .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        align-items: center;
        justify-items: center;
        width: 100%;
    }

}

@media screen and (max-width: 375px) {
    // 隐藏右上角联系按钮
    .contact-language{
        display: none;
    }
    nav{
        // position: relative;
    }
    html nav .navbar, body nav .navbar{
        height: auto;
    }
    html nav .navbar li, body nav .navbar li {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    html nav .navbar li div, body nav .navbar li div {
        gap: 0;
    }
    html nav .navbar li a, body nav .navbar li a{
        width: 100%;
    }
    .navbar{
        position: absolute;
        top: 66px;
        right: 20px;
       background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 1rem;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        min-width: 180px;
        height: 100%;
    }
    .navbar.active {
        display: block;
        // position: absolute;
     
        // top: 20%;
      }
      .hamburger{
        // position: relative;
         display: flex;
      }
    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container {
        width: 100%;
        z-index: 5;
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
    }

    .app .banner .swiperBanner .line {
        display: none;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content {
        margin-top: 0;
        margin-left: 0;
        padding-top: 20px;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content h1 {
        margin-top: 120px !important;
        margin-left: 20px;
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 700;
        font-size: 12px;
        line-height: 55px;
        opacity: 1;
        transition: all 1s ease-in-out;
        margin-bottom: 0px;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content .s-span {
        display: block;
        margin-left: 20px;
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 400;
        font-size: 10px;
        line-height: 10px;
        transition: all 1s ease-in-out;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content .button {
        width: fit-content;
        height: fit-content;
        display: flex;
        place-content: flex-start;
        place-items: center;
        gap: 16px;
        margin-left: 10px;
        margin-top: 10px;
        margin-bottom: 0px;
        opacity: 1;
        transform: translateY(0%);
        transition: all 1s ease-in-out;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content .button button:first-child {
        text-align: center;
        color: #ffffff;
        font-family: Inter;
        font-weight: 700;
        font-size: 10px;
        line-height: 10px;
        letter-spacing: -0.3px;
        width: fit-content;
        height: 35px;
        display: inline-flex;
        place-content: flex-start;
        place-items: center;
        gap: 8px;
        flex-shrink: 0;
        padding: 15px 20px;
        border: none;
        border-radius: 18641400px;
        background: #155dfc;
        box-shadow: 0px 4px 6px -4px rgba(43, 127, 255, 0.3), 0px 10px 15px -3px rgba(43, 127, 255, 0.3);
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content .button button:last-child {
        text-align: center;
        color: #1e2939;
        font-family: Inter;
        font-weight: 700;
        font-size: 10px;
        line-height: 10px;
        letter-spacing: -0.3px;
        width: fit-content;
        height: 35px;
        border-radius: 18641400px;
        border: 0.6px solid #f3f4f6;
        box-sizing: border-box;
        background: #ffffff;
        padding: 15px 20px;
        box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
        display: flex;
        place-content: center;
        place-items: center;
        gap: 8px;
    }

    .app .banner .swiperBanner .swiper-wrapper .swiper-slide .container .content .datas {
        display: none;

    }

    .app .banner .swiperBanner .swiperBanner-pagination {
        height: 60%;
        position: absolute;
        right: 50%;
        top: 70%;
        transform: translateX(-50%);
        z-index: 2;
        /* width: 81px; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .app .banner .swiperBanner .swiperBanner-pagination .swiper-pagination-bullet img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



    // ====================page2================================
    .app .page2 {
        height: 100%;
        margin-top: -20px;
    }

    .app .page2 .container .bj-top-div .bj-top {
        display: none;
    }

    .app .page2 .container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .app .page2 .container .bj-top-div {
        display: none;
    }

    .app .page2 .top {
        // max-width: 1251px;
        height: 557px;
        margin: 20px auto 0;
        position: relative;
        z-index: 2;
    }

    .app .page2 .top .title {
        place-items: center;
    }

    .app .page2 .top .title .title1 h1 {
        font-size: 12px;
    }

    .app .page2 .top .title p {
        padding: 0 20px;
        width: 100%;
        font-size: 12px;
    }

    .app .page2 .top .main {
        margin-top: 20px;
        height: auto;
        width: auto;
        display: flex
    }

    .app .page2 .top .main .img {
        width: 100%;
        margin: 10px 20px;

    }

    .app .page2 .top .main .img img {
        width: 100%;
        object-fit: cover;
    }

    .app .page2 .bottom {
        width: 100%;
        padding: 20px;
        margin: 1020px auto 20px
    }

    .app .page2 .bottom button:first-child {
        text-align: center;
        color: #ffffff;
        font-family: Inter;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.3px;
        border: none;
        //   padding: 15px  30px;

        border-radius: 18641400px;
        background: #ff2056;
        box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .app .page2 .bottom button:last-child {
        margin-left: 10px;
        text-align: center;
        color: #155dfc;
        font-family: Inter;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.3px;
        //  padding: 15px  30px;
        border-radius: 18641400px;
        border: 1.7px solid #155dfc;
        box-sizing: border-box;
        background: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    // ==================page3======================
    .app .page3 {
        height: 100%;
    }

    .app .page3 .container {
        width: 100%;
    }

    .app .page3 .container .top {
        width: 100%;
        height: 41px;
        margin: 86px auto 20px;
    }

    .app .page3 .container .top .top1 {
        padding-left: 20px;
    }

    .app .page3 .container .top .top1 img {
        width: 20px;
        height: 20px;
    }

    .app .page3 .container .top .top1 h1 {
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 700;
        font-size: 16px;
        line-height: 21px;
    }

    .app .page3 .container .top p {
        padding-left: 20px;
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 400;
        font-size: 10px;
        line-height: 22px;
    }

    .app .page3 .swiper3 {
        width: 100%;
    }

    .app .page3 .swiper3-buttons {
        width: 100%;
        // width: fit-content;

        display: flex;
        justify-content: center;
        padding: 0 20px;
        gap: 10px;
        margin-top: 18px;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .app .page3 .swiper3-buttons .swiper3-button-next {
        padding: 10px 20px;
        border-radius: 40px;
        background: #fa6a71;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .app .page3 .swiper3-buttons .swiper3-button-prev {
        padding: 10px 20px;
        border-radius: 40px;
        background: #fa6a71;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .app .page3 .swiper3-buttons .swiper3-button-next img {}

    .app .page3 .swiper3-buttons .more {
        /* width: 186px; */
        height: 52px;
        border-radius: 18641400px;
        background: #155dfc;
        border: none;
        box-shadow: 0px 4px 6px -4px rgba(43, 127, 255, 0.3), 0px 10px 15px -3px rgba(43, 127, 255, 0.3);
        padding: 0 33px;
        display: flex;
        align-items: center;
    }

    .app .page3 .swiper3 .swiper-wrapper {
        width: 100%;
    }

    .app .page3 .swiper3 .swiper-wrapper .swiper-slide {
        width: 100%;
        padding: 0;
    }

    .app .page3 .swiper3 .swiper-wrapper .swiper-slide .img {
        width: 100%;
    }

    .app .page3 .swiper3 .swiper-wrapper .swiper-slide .text {
        width: 100%;
        padding-left: 20px;
    }

    .app .page3 .xu1,
    .app .page3 .xu1 {
        display: none;
    }

    .app .page3 .swiper3-buttons .more {}

    // ================page4================
    .app .about-section .container {
        width: 100%;
    }

    .app .about-section .container .about-title {
        display: flex;
        justify-content: start;
        align-items: initial;
        padding: 0 20px;
        margin-bottom: 12px;
    }

    .app .about-section .container .about-title img {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-bottom: 8px;
    }

    .app .about-section .container .about-title h2 {
        color: #101828;
        font-family: "Alibaba PuHuiTi";
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.4px;
    }

    .header-title {
        display: flex;
    }

    .app .about-section .container .about-item {
        // display: flex;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .app .about-section .container .about-item .about-text .item-title {
        width: fit-content;
        height: fit-content;
        display: inline-flex;
        place-content: flex-start;
        place-items: center;
        gap: 7px;
        color: #101828;
        font-family: Inter;
        font-weight: 700;
        font-size: 12px;
        line-height: 32px;
        letter-spacing: 0.1px;
        margin-bottom: 12px;
        padding: 0 20px;
    }

    .app .about-section .container .about-item .about-text p {
        padding: 0 20px;
        width: 100%;
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 400;
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 0px;
    }

    .app .about-section .container .about-item.reverse .about-img {
        height: auto;
    }

    .app .about-section .container .about-item .about-text .link-more {
        gap: 6px;
        margin-left: 20px;
    }

    .app .about-section .container .about-item .about-text p span {
        font-size: 16px;
    }

    .app .about-section .container .about-item .about-text .link-more h1 {
        color: #0096e0;
        font-family: "Alibaba PuHuiTi";
        font-weight: 400;
        font-size: 12px;
        line-height: 25px;
    }

    .app .about-section .container .about-item .about-text .link-more img {
        width: 12px;
        height: 12px;
    }

    .app .about-section .container .about-item .about-text hr {
        margin-top: 0px;
    }

    .app .about-section .container .about-item.reverse .about-text h3 {
        width: fit-content;
        height: fit-content;
        display: inline-flex;
        place-content: flex-start;
        place-items: center;
        gap: 6px;
        color: #101828;
        font-family: Inter;
        font-weight: 700;
        font-size: 12px;
        line-height: 32px;
        letter-spacing: 0.1px;
    }

    .app .about-section .container .about-item.reverse .about-text {
        gap: 0px;
        // margin-left: 20px;
    }

    .app .about-section .container .about-item.reverse .about-text p {
        font-size: 12px;
        line-height: 24px;
        height: 100%;
    }

    .app .about-section .container .img-caption {
        margin-left: 20px;
    }

    .app .about-section .container .video-group .video-item {
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .app .about-section .container .video-group .video-item .video {
        width: 100%;
    }

    .app .about-section .container .video-group {
        display: block;
        width: 100%;
    }

    .app .about-section .container .video-group .video-item .img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        border-radius: 45px;
        background: rgba(255, 255, 255, 0.42);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
    }


    // ===========page5===============

    .app .industry-section .container {
        width: 100%;
    }

    .app .industry-section .container .section-header {
        gap: 0;
        margin: 0 auto 10px;
    }

    .app .industry-section .container .section-header .header-desc {
        margin-top: 10px;
    }

    .app .industry-section .container .section-header .header-title img {
        width: 20px;
        height: 20px;
    }

    .app .industry-section .container .section-header .header-title h2 {
        font-size: 12px;
    }

    .app .industry-section .container .section-header .header-title {
        gap: 6px;
    }

    .app .industry-section .container .industrySwiper {
        width: 100%;
    }

    .app .industry-section .container .industry-carousel {
        padding: 0 44px;
    }

    .app .industry-section .container .industry-button-prev {
        left: 20px;
    }

    .app .industry-section .container .industry-button-next {
        right: 20px;
    }

    .app .industry-section .container .industrySwiper {
        height: 220px;
        margin-bottom: 0px;
    }

    .app .industry-section .container .industrySwiper .swiper-slide {
        width: 300px;
        height: 170px;
    }

    .app .industry-section .container .industrySwiper .swiper-slide.active {
        height: 220px;
    }

    .app .industry-section .container .industry-desc {
        margin-bottom: 12px;
    }

    .app .industry-section .container .industry-desc p {
        font-size: 12px;
        padding: 0 20px;
    }

    .app .industry-section .container .action-buttons .btn {
        padding: 10px 30px;

        font-size: 12px;
    }

    .app .industry-section {
        padding: 30px 0px;
    }

    // ===========page6==================
    .app .cooperation-section {
        height: 100%;
    }

    .app .cooperation-section .container .section-header {
        margin: 20px auto 10px;
        display: block;
    }

    .app .cooperation-section .container .section-header .header-title {
        gap: 6px;
    }

    .app .cooperation-section .container {
        padding: 0 20px;
    }

    .app .cooperation-section .container .section-header .header-title img {
        width: 20px;
        height: 20px;
    }

    .app .cooperation-section .container .section-header .header-title h2 {
        font-size: 12px;
        line-height: 28px
    }

    .app .cooperation-section .container .section-header .link-more {
        gap: 6px;
    }

    .app .cooperation-section .container .section-header .link-more span {
        font-size: 12px;
        line-height: 18px;
    }

    .app .cooperation-section .container .swiper6 .swiper-slide .slide-text {
        top: 14%
    }

    .app .cooperation-section .container .swiper6 .swiper-slide-active .slide-text p {
        font-size: 12px;
        line-height: 24px;
    }

    .app .cooperation-section .container .swiper6 {
        height: 300px;
    }

    .app .cooperation-section .container .swiper6 .swiper6-pagination {
        position: absolute;
        z-index: 2;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        // height: 44px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
        /* align-items: center; */
        /* justify-content: space-between; */
        padding: 0 33px;
        box-sizing: border-box;
        border-radius: 18641400px;
        background: rgba(0, 0, 0, 0.45);
    }

    .app .cooperation-section .container .swiper6 .swiper6-pagination .swiper-pagination-bullet span {
        font-size: 12px;
    }

    // ============page7===================
    .app .news-section .container .header-title img {
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
    }

    .app .news-section .container .header-title h2 {
        display: inline-block;
        color: #000000;
        font-family: "Alibaba PuHuiTi";
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
    }

    .app .news-section {
        padding-top: 30px;
    }

    .app .news-section .container .header-title {
        margin-bottom: 30px;
    }

    .app .news-section .swiper7 .swiper-slide {
        width: 100%;
    }

    .app .news-section .xu1,
    .app .news-section .xu2 {
        display: none;
    }

    .app .news-section .swiper7 {
        margin-bottom: 30px;
    }

    .app .news-section .container.container2 {
        padding-bottom: 79px;
    }

    .app .news-section .container.container2 .btn-view-all {
        display: block;
        margin: 0 auto;
        // width: 163.3px;
        // height: 51.3px;
        // padding:20px 60px ;
        border: 1.7px solid #e5e7eb;
        box-sizing: border-box;
        background: #ffffff;
        box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
        color: #364153;
        font-family: Inter;
        font-weight: 700;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: -0.3px;
        cursor: pointer;
        transition: all 0.3s ease;
    }


    // ============page8====================
    .app .contact-section .container {
        width: 100%;
        padding-top: 0px;
        padding-left: 0px;
    }

    .app .contact-section .container .contact-bg-text {
        display: none;
    }

    .app .contact-section .container .section-header {
        justify-content: center;
    }

    .app .contact-section .container .section-header h2 {
        font-size: 20px;
    }

    .app .contact-section .container .contact-form {
        padding: 0 20px;
        width: 100%;
    }

    .app .contact-section .container .contact-form .bottom {
        display: flex;
        justify-content: center;
        padding-left: 0px;
    }

    .app .contact-section .container .contact-info {
        margin-top: 20px;
        grid-template-columns: 1fr;
        margin-left: 0;
        justify-items: center;
    }

    .app .contact-section .container .contact-info .info-item img {
        width: 20px;
        height: 20px;
    }


    //   ==============footer=====================
    .app .footer-section .footer-logo img {
        height: 46px;
    }

    .app .footer-section {
        width: 100%;
    }

    .app .footer-section .footer-nav a {
        font-size: 12px;
        line-height: 24px;
    }

    .app .footer-section .footer-social {
        display: block;
        padding: 0;
    }

    .app .footer-section .footer-social .social-group-left {
        justify-content: center;
    }

    .app .footer-section .footer-social .social-group-right {
        justify-content: center;
    }

    .app .footer-section .footer-social .social-group-right a img {
        width: 48px;
    }

    .app .footer-section .footer-bottom {
        display: grid;
        gap: 10px;
        justify-items: center;
        padding: 0;
        border-top: 1px solid #eee;
        justify-content: normal;
        align-items: normal;
    }

}