    /* 新加代码 */
    .Nybanner .banner {
        display: block;
    }

    .header {
        background: #fff;
    }
    .NyNavList {
        padding: 30px 0;
        display: flex;
        justify-content: center;
        border-bottom: 1px solid #E6E6E6;
    }

    .NyNavList a {
        color: #565656;
        text-align: center;
        font-size: 18px;
        line-height: 1;
        padding: 0 45px;
        border-right: 1px solid #D9D9D9;
    }

    .NyNavList a:last-child {
        border-right: 0px solid #D9D9D9;
    }

    .NyNavList a:hover {
        font-weight: bold;
        color: var(--color);
    }

    @media (max-width: 1200px) {
        .NyNavList a {
            font-size: 16px;
            padding: 0 20px;
        }
    }

    @media (max-width:720px) {
        .NyNavList {
            flex-wrap: wrap;
            grid-gap: 15px 0;
        }

        .NyNavList a {
            font-size: 16px;
            width: 33.333%;
        }

        .NyNavList a:nth-child(3) {
            border-right: 0px solid #D9D9D9;
        }
    }

    .NySection {
        padding-left: var(--container);
        padding-right: var(--container);
        position: relative;
        padding-bottom: 120px;
        width: 100%;
    }

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

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

    /* box1  */
    .Box1 {
        width: 100%;
    }

    .text1 {
        color: #1F1F1F;
        font-size: 16px;
        line-height: 2;
    }

    .text1 strong {
        font-size: 18px;
        display: inline-block;
        margin-bottom: 15px;
    }

    @media (max-width:720px) {
        .text1 strong {
            font-size: 16px;
            line-height: 1.5;
        }

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

    /* box2 */
    .NySection2 {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .About2 {
        margin-top: 45px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .lt2 {
        width: 65%;
        position: relative;
    }

    .bj2 {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .item2 {
        width: 30%;
        position: absolute;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 30px;
        transform: translate(-50%, -50%);
        padding: 0 50px;
    }

    .item2 h1 {
        position: relative;
        text-align: center;
        font-size: 18px;
        line-height: 1;
        color: #292929;
        display: flex;
        align-items: center;
    }

    .item2 h1::after {
        content: "";
        display: block;
        width: 14px;
        height: 2px;
        background: var(--color);
        position: absolute;
        left: -24px;
    }

    .item2 h1::before {
        content: "";
        display: block;
        width: 14px;
        height: 2px;
        background: var(--color);
        position: absolute;
        right: -24px;
    }

    .item2 h2 {
        font-size: 26px;
        line-height: 1.5;
        text-align: center;
        color: #000000;
    }

    .item2 h2 b {
        color: var(--color);
    }

    .item2:nth-child(1) {
        left: 15%;
        top: 49%;
    }

    .item2:nth-child(2) {
        left: 38.5%;
        top: 24%;
    }

    .item2:nth-child(3) {
        left: 38.5%;
        top: 75%;
    }

    .item2:nth-child(4) {
        left: 62%;
        top: 49%;
    }

    .item2:nth-child(5) {
        left: 85%;
        top: 75%;
    }

    .rt3 {
        width: 25%;
        display: flex;
        flex-direction: column;
        grid-gap: 60px;
    }

    .rt3 h1 {
        color: var(--color);
        font-size: 32px;
        line-height: 1.5;
    }

    .rt3 h2 {
        color: #000;
        font-size: 26px;
        line-height: 1.5;
    }

    @media (max-width: 1600px) {
        .item2 h2 {
            font-size: 22px;
        }

        .item2 {
            grid-gap: 15px;
            padding: 0 30px;
        }
    }

    @media (max-width: 1440px) {
        .lt2 {
            width: 70%;
        }

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

        .rt3 {
            grid-gap: 30px;
        }

        .rt3 h1 {
            font-size: 28px;
        }

        .rt3 h2 {
            font-size: 22px;
        }
    }

    @media (max-width: 1200px) {
        .rt3 h1 {
            font-size: 20px;
        }

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

    @media (max-width: 1000px) {
        .item2 {
            grid-gap: 5px;
            padding: 0 20px;
        }

        .item2 h1 {
            font-size: 16px;
        }

        .item2 h1::after {
            left: -19px;
        }

        .item2 h1::before {
            right: -19px;
        }

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

        .lt2 {
            width: 78%;
        }

        .rt3 {
            width: 20%;
            grid-gap: 15px;
        }

        .rt3 h1 {
            font-size: 18px;
        }

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

    @media (max-width:720px) {
        .About2 {
            margin-top: 30px;
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .lt2 {
            width: 100%;
        }

        .rt3 {
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            grid-gap: 20px;
        }

        .rt3 li {
            width: calc(50% - 10px);
        }
    }

    @media (max-width: 520px) {
        .bj2 {
            display: none;
        }

        .lt2 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .item2 {
            position: unset;
            width: 45vw;
            height: 45vw;
            background: url(/assets/images/image2.png) no-repeat center;
            background-size: contain;
            transform: translate(0);
        }
    }

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



    /* box3 */
    .NySection3 {
        width: 100%;
    }

    .About3 {
        position: relative;
    }

    .bj3 {
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
    }

    .Swiper3 {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .Swiper3 .swiper-wrapper {
        align-items: flex-end;
    }

    .Slide3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 90px;
    }

    .Slide3 img {
        width: 100%;
        border: 10px solid transparent;
        border-image: url('https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/362/20250716135634_g84RPI7Z.png') 10 stretch;
        box-sizing: border-box;
    }

    .Slide3 h1 {
        width: 100%;
        font-weight: 700;
        font-size: 18px;
        color: #464646;
        text-align: center;
        opacity: 0;
    }

    .Slide3.swiper-slide-active h1 {
        opacity: 1;
    }

    .anniu3 {
        position: absolute;
        z-index: 2;
        left: 50%;
        transform: translate(-50%, 50%);
        bottom: 12px;
        width: calc(20% + 120px);
        display: flex;
        justify-content: space-between;
    }

    .next3,
    .prev3 {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .next3 i,
    .prev3 i {
        font-size: 24px;
        color: var(--color);
    }


    @media (max-width: 1200px) {
        .Slide3 img {
            border: 5px solid transparent;
            border-image: url('https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/362/20250716135634_g84RPI7Z.png') 5 stretch;
            box-sizing: border-box;
        }

        .Slide3 {
            grid-gap: 60px;
        }
    }

    @media (max-width:720px) {
        .anniu3 {
            width: calc(50% + 90px);
        }

        .next3,
        .prev3 {
            width: 45px;
            height: 45px;
        }

        .next3 i,
        .prev3 i {
            font-size: 18px;
        }
    }

    /* box4 */
    .NySection4 {
        width: 100%;
        position: relative;
        padding-top: 90px;
    }

    .iconBox4 {
        width: 100%;
        margin-top: 90px;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .iconBox4 .next4:last-child {
        display: none;
    }

    .icon4 {
        width: 100%;
        background: url(/assets/images/image5.png) no-repeat center;
        background-size: contain;
        padding: 45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 15px;
    }

    .icon4 p {
        color: #555;
        font-size: 16px;
        line-height: 1;
        text-align: center;
    }

    .icon4 h1 {
        color: #000;
        text-align: center;
        font-size: 22px;
        line-height: 1;
    }


    .icon4 img {
        width: 65px;
    }

    .itemBox4 {
        margin-top: 90px;
        display: flex;
        flex-direction: column;
        grid-gap: 30px;
    }

    .item4 {
        display: flex;
        align-items: center;
        flex-wrap:nowrap;
        flex-direction: column;
    }

   .item4 .img4 {
        /* width: 30%;*/
       margin-top:30px;
    }

    .item4 .img4 img {
        width: 100%;
    }

    .text4 {
        /*width: 70%;
        padding-left: 90px;*/
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 45px;
    }

    .text4 h1 {
        color: var(--color);
        font-size: 32px;
        line-height: 1.5;
    }

    .text4 h2 {
        color: #464646;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }


    @media (max-width: 1440px) {
        .icon4 h1 {
            font-size: 16px;
        }

        .iconBox4 {
            grid-gap: 5px;
            margin-top: 0;
        }

        .icon4 {
            height: 175px;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            grid-gap: 5px;
        }
    }

    @media (max-width: 1200px) {
        .iconBox4 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            grid-gap: 30px 0px;
        }

        .icon4 {
            width: 30%;
            height: 160px;
        }

        .iconBox4 .next4:nth-child(6) {
            display: none;
        }

        .text4 {
            width: 70%;
            padding-left: 30px;
            grid-gap: 15px;
        }

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

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

    @media (max-width:720px) {
        .itemBox4 {
            margin-top: 45px;
        }

        .iconBox4 {
            display: flex;
            justify-content: space-around;
            grid-gap: 30px 0px;
        }

        .icon4 {
            width: 45%;
            height: 140px;
        }

        .iconBox4 .next4:nth-child(4),
        .iconBox4 .next4:nth-child(8) {
            display: none;
        }

        .iconBox4 .next4:nth-child(6) {
            display: block;
        }

        .item4 {
            flex-wrap: wrap;
        }

        .item4 .img4 {
            width: 100%;
            max-width: 460px;
        }

        .text4 {
            width: 100%;
            padding-left: 0px;
            padding-top: 10px;
            grid-gap: 5px;
        }
    }

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

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

    /* box5 */
    .NySection5 {
        position: relative;
        width: 100%;
    }

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

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

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

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

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

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

    /* box6 */
    .NySection6 {
        padding-bottom: 0;
    }

    .About6 {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .text6 {
        position: absolute;
        z-index: 2;
        padding: 90px;
        padding-right: 0;
        width: 35%;
    }

    .img6 {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    @media (max-width: 1600px) {
        .text6 {
            padding: 60px;
            padding-right: 0;
            width: 45%;
        }
    }

    @media (max-width: 1440px) {
        .text6 * {
            font-size: 16px !important;
        }
    }

    @media (max-width: 1200px) {
        .text6 {
            width: 65%;
        }

        .img6 {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: left;
        }
    }

    @media (max-width:720px) {
        .About6 {
            flex-wrap: wrap;
        }

        .text6 {
            width: 100%;
            padding: 0;
            padding-bottom: 30px;
            position: relative;
        }

        .img6 {
            height: auto;
        }
    }

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

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