    .NyBigBox {
        padding-left: 5vw;
        padding-right: 5vw;
        padding-top: 100px;
    }

    @media screen and (max-width: 1600px) {
        .NyBigBox {
            padding-top: 60px;
        }
    }

    .Box1 {
        display: flex;
        flex-wrap: wrap;
    }

    .Box1 .text1 {
        width: 35%;
        padding-right: 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .Box1 .text1 .desc {
        padding-bottom: 82px;
        display: flex;
        flex-direction: column;
        grid-gap: 30px;
    }

    .Box1 .text1 .desc h1 {
        font-family: PuHuiTi85;
        font-size: 18px;
        line-height: 1.5;
        color: #000000;
        padding-left: 10px;
        position: relative;
    }

    .Box1 .text1 .desc h1::after {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #000;
        position: absolute;
        left: 0;
        top: 11px;
    }

    .Box1 .text1 .desc h2 {
        font-size: 16px;
        line-height: 1.5;
        text-transform: capitalize;
        color: #7D7D7D;
        padding-left: 10px;
    }

    .Box1 .img1 {
        width: 65%;
        position: relative;
    }

    .box1swiper {
        width: 100%;
    }

    .box1swiper img {
        width: 100%;
    }

    .Box1 .img1 .prev1 {
        position: absolute;
        z-index: 2;
        bottom: 0;
        right: 64px;
        width: 64px;
        height: 64px;
        background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/247/20240724164319_zmotuNiY.png) no-repeat center;
        background-size: contain;
        z-index: 5;
    }

    .Box1 .img1 .next1 {
        position: absolute;
        z-index: 2;
        bottom: 0;
        right: 0px;
        width: 64px;
        height: 64px;
        background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/247/20240724164319_NbjxCzwx.png) no-repeat center;
        background-size: contain;
        z-index: 5;
    }

    @media screen and (max-width: 1600px) {
        .Box1 .text1 .desc {
            margin-top: 30px;
            padding-bottom: 30px;
            grid-gap: 15px;
        }

        .Box1 .img1 {
            display: flex;
            align-items: flex-end;
        }
    }

    @media screen and (max-width: 1200px) {
        .Box1 .text1 {
            width: 50%;
            padding-right: 30px;
        }

        .Box1 .img1 {
            width: 50%;
        }
    }

    @media screen and (max-width: 900px) {
        .Box1 .text1 {
            width: 100%;
            padding-right: 0px;
        }

        .Box1 .img1 {
            width: 100%;
        }
    }

    @media screen and (max-width: 720px) {
        .Box1 .text1 .desc {
            margin-top: 20px;
            padding-bottom: 20px;
            grid-gap: 10px;
        }

        .Box1 .text1 .desc h1 {
            font-size: 16px;
        }

        .Box1 .text1 .desc h2 {
            font-size: 14px;
        }

        .Box1 .img1 .prev1 {
            right: 45px;
            width: 45px;
            height: 45px;
        }

        .Box1 .img1 .next1 {
            width: 45px;
            height: 45px;
        }
    }

    .Box2 {
        padding: 120px 0;
    }

    .item2Box {
        margin-top: 40px;
        display: flex;
        grid-gap: 15px;
    }

    .item2Box .item2 {
        position: relative;
        background: #EFF7FD;
        overflow: hidden;
    }

    .item2Box .item2 .text2 {
        position: absolute;
        z-index: 3;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        padding: 45px 75px;
    }

    .item2Box .item2 .text2 h1 {
        font-family: PuHuiTi65;
        font-size: 26px;
        line-height: 1.5;
        color: var(--color);
        margin-bottom: 5px;
    }

    .item2Box .item2 .text2 h2 {
        font-family: PuHuiTi65;
        font-size: 20px;
        line-height: 1.5;
        color: var(--color);
        height: 120px;
    }

    .item2Box .item2 img {
        width: 100%;
        opacity: 0.1;
        transition: 0.5s;
    }

    .item2Box .item2:hover img {
        opacity: 1;
    }

    /* .item2Box .item2:hover .text2 {
        background: linear-gradient(180deg, #01368600 0%, #013686 80%);
    } */

    .item2Box .item2:hover .text2 h1,
    .item2Box .item2:hover .text2 h2 {
        color: #fff;
    }

    .item2Box .item2::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #01368600 0%, #013686 80%);
        transition: 0.5s;
    }

    .item2Box .item2:hover::after {
        top: 0;
    }

    @media screen and (max-width:1440px) {
        .item2Box .item2 .text2 {
            padding: 45px 30px;
        }

        .item2Box .item2 .text2 h1 {
            font-size: 24px;
        }

        .item2Box .item2 .text2 h2 {
            font-size: 18px;
        }
    }

    @media screen and (max-width:1200px) {
        .Box2 {
            padding: 60px 0;
        }

        .item2Box .item2 .text2 {
            padding: 30px;
        }

        .item2Box .item2 .text2 h1 {
            font-size: 18px;
        }

        .item2Box .item2 .text2 h2 {
            font-size: 16px;
        }
    }

    @media screen and (max-width:900px) {
        .item2Box .item2 .text2 {
            padding: 20px;
        }

        .item2Box .item2 .text2 h1 {
            font-size: 18px;
        }

        .item2Box .item2 .text2 h2 {
            font-size: 14px;
        }
    }

    @media screen and (max-width:720px) {
        .Box2 {
            padding: 40px 0;
        }

        .item2Box {
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            grid-gap: 15px;
        }

        .item2Box .item2 {
            width: 100%;
            position: relative;
            background: #EFF7FD;
        }

        .item2Box .item2 .text2 h1 {
            font-size: 24px;
        }

        .item2Box .item2 .text2 h2 {
            font-size: 18px;
            height: auto;
        }
    }

    @media screen and (max-width:460px) {
        .item2Box .item2 .text2 h1 {
            font-size: 20px;
        }

        .item2Box .item2 .text2 h2 {
            font-size: 16px;
            height: auto;
        }
    }

    /* box3 */
    .item3Box {
        margin-top: 62px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }

    .item3 {
        background: #EFF6FD;
        height: 106px;
        padding: 0 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .item3 h1 {
        font-size: 18px;
        line-height: 1.5;
        color: #000000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    @media screen and (max-width:1200px) {
        .item3Box {
            margin-top: 45px;
            grid-template-columns: repeat(2, 1fr);
        }

        .item3 {
            height: 75px;
            padding: 0 30px;
        }

        .item3 img {
            width: 25px;
        }
    }

    @media screen and (max-width:720px) {
        .item3Box {
            margin-top: 30px;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width:460px) {
        .item3Box {
            margin-top: 30px;
            grid-template-columns: repeat(1, 1fr);
        }
    }