    .NyBigBox {
        padding-left: var(--container);
        padding-right: var(--container);
    }

    /* box1  */
    .NySection1 {
        position: relative;
    }


    .Box4 {
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .lt4 {
        width: 32%;
    }

    .rt4 {
        width: 68%;
        background: url(https://ss-res-us.oss-us-west-1.aliyuncs.com/site_res/282/20250604094919_ElzXlmM4.png) no-repeat center;
        background-size: cover;
        display: flex;
        justify-content: space-between;
        padding-left: 60px;
    }

    .text4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        grid-gap: 30px;
    }

    .title4 {
        font-family: 'Arial';
        font-size: 42px;
        color: #161616;
    }

    .desc4 {
        color: #3F3F3F;
        font-family: Arial;
        font-size: 16px;
        font-weight: 400;
        line-height: 2;
    }

    .Number4 {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 30px 0;
    }

    .item4 {
        width: 33.3333%;
    }

    .item4 h1 {
        color: #161616;
        font-family: Arial;
        font-size: 42px;
        line-height: 1.5;
    }

    .item4 h2 {
        color: #3F3F3F;
        font-family: Arial;
        font-size: 16px;
        line-height: 1.5;
    }


    .Honor4 {
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid #D9D9D9;
    }

    .Honor4 h1 {
        color: #161616;
        font-family: Arial;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .Honor4 span {
        display: flex;
        grid-gap: 90px;
    }

    .Honor4 span img {
        display: block;
        width: 60px;
    }

    @media (max-width: 1200px) {
        .lt4 {
            width: 40%;
        }

        .rt4 {
            width: 60%;
            padding-left: 30px;
        }

        .text4 {
            grid-gap: 15px;
        }

        .title4 {
            font-size: 32px;
        }

        .desc4 {
            font-size: 14px;
            line-height: 1.5;
        }

        .Number4 {
            grid-gap: 15px 0;
        }

        .item4 {
            width: 50%;
        }

        .item4 h1 {
            font-size: 32px;
        }

        .item4 h2 {
            font-size: 14px;
        }

        .Honor4 span {
            grid-gap: 60px;
        }
    }


    @media (max-width: 720px) {
        .lt4 {
            width: 50%;
        }

        .rt4 {
            width: 100%;
            padding: 0;
            margin-top: 30px;
        }

        .Honor4 span {
            grid-gap: 30px;
        }
    }

    @media (max-width: 460px) {
        .lt4 {
            width: 70%;
        }
    }


    /* box2 */
    .NySection2 {
        position: relative;
        padding-top: 150px;
    }


    .Top2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .desc2 {
        width: calc(100% - 700px);
        color: #3F3F3F;
        font-family: Arial;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .About2 {
        margin-top: 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 45px;
    }

    .item2 {
        width: calc((100% - 45px * 4) / 5);
        position: relative;
        border-radius: 50%;
        border: 1px solid#A4A4A4;
        background: var(--color2);
        overflow: hidden;
    }


    .img2 {
        position: relative;
        width: 100%;
        opacity: 0;
        transition: 0.5s;
    }

    .text2 {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 20px;
        padding: 0 30px;
    }

    .text2 h1 {
        color: #484848;
        text-align: center;
        font-size: 38px;
        letter-spacing: 4px;
    }

    .text2 h2 {
        color: #4E4E4E;
        text-align: center;
        font-family: Arial;
        font-size: 24px;
        font-weight: 700;
    }

    .item2:hover .img2 {
        opacity: 1;
    }

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


    @media (max-width: 1440px) {
        .text2 {
            padding: 0 15px;
        }

        .desc2 {
            width: calc(100% - 600px);
            font-size: 14px;
        }

        .About2 {
            grid-gap: 30px;
        }

        .item2 {
            width: calc((100% - 30px * 4) / 5);
        }

        .text2 h2 {
            font-size: 20px;
        }
    }

    @media (max-width: 1200px) {
        .NySection2 {
            padding-top: 90px;
        }

        .Top2 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .desc2 {
            width: 100%;
        }

        .About2 {
            margin-top: 60px;
            grid-gap: 30px 75px;
        }

        .item2 {
            width: calc((100% - 75px * 2) / 3);
        }
    }

    @media (max-width:720px) {
        .NySection2 {
            padding-top: 60px;
        }

        .About2 {
            margin-top: 30px;
            grid-gap: 30px;
        }

        .item2 {
            width: calc((100% - 30px * 2) / 3);
        }

        .text2 {
            grid-gap: 10px;
        }

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

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

    @media (max-width: 500px) {
        .item2 {
            width: calc((100% - 30px) / 2);
        }
    }

    @media (max-width:380px) {}