    /* ===== 滚动指示：外层容器承载视觉样式 ===== */
    .NyNav-wrap {
        position: relative;
        width: 100%;
        background: #FFF;
        border-bottom: 1px solid #E8EDF2;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.04);
    }

    .NyNav {
        padding: 0 var(--container);
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        height: 70px;
        align-items: center;
        border-bottom: none;
        box-shadow: none;
        background: transparent;
        scroll-behavior: smooth;
    }

    .NyNav::-webkit-scrollbar {
        display: none;
    }

    .NyNav a {
        width: auto;
        min-width: max-content;
        padding: 0 24px;
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 70px;
    }

    /* ===== 滚动指示：边缘渐变遮罩 ===== */
    .NyNav-wrap::before,
    .NyNav-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .NyNav-wrap::before {
        left: 0;
        background: linear-gradient(to right, #FFF 30%, transparent);
    }

    .NyNav-wrap::after {
        right: 0;
        background: linear-gradient(to left, #FFF 30%, transparent);
    }

    .NyNav-wrap.has-scroll-left::before {
        opacity: 1;
    }

    .NyNav-wrap.has-scroll-right::after {
        opacity: 1;
    }

    /* ===== 滚动指示：箭头按钮 ===== */
    .NyNav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #E8EDF2;
        background: #FFF;
        color: #00A6F4;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .NyNav-arrow:hover {
        background: #00A6F4;
        color: #FFF;
        border-color: #00A6F4;
    }

    .NyNav-arrow--left {
        left: var(--container);
        margin-left: -16px;
    }

    .NyNav-arrow--right {
        right: var(--container);
        margin-right: -16px;
    }

    .NyNav-wrap.has-scroll-left .NyNav-arrow--left {
        opacity: 1;
        pointer-events: auto;
    }

    .NyNav-wrap.has-scroll-right .NyNav-arrow--right {
        opacity: 1;
        pointer-events: auto;
    }

    /* 移动端：隐藏滚动指示器 */
    @media (max-width: 1200px) {
        .NyNav-wrap::before,
        .NyNav-wrap::after,
        .NyNav-arrow {
            display: none !important;
        }
    }

    .NyBigBox {
        padding-top: 0;
        background: linear-gradient(180deg, #F8FAFC 0%, #FFF 100%);
    }

    .Box1 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .Box1 .lt1 {
        width: 32%;
        padding-top: 52px;
    }

    .Box1 .lt1 img {
        width: 100%;
        display: block;
    }

    .rt1 {
        width: calc(68% - 56px);
    }

    .desc1 {
        margin-top: 36px;
        width: 100%;
        display: flex;
        grid-gap: 26px;
    }

    .desc1 span:nth-child(1) {
        border: 1px solid #FFD0D0;
        background: #FFF5F5;
    }

    .desc1 span:nth-child(2) {
        border: 1px solid #B8E6FE;
        background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%);
    }

    .desc1 span {
        width: 100%;
        border-radius: 16px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        grid-gap: 12px;
    }

    .desc1 span h1 {
        color: #333;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .desc1 span li {
        color: #555;
        font-size: 14px;
        line-height: 1.5;
        display: flex;
        grid-gap: 10px;
        align-items: center;
    }

    .desc1 span li::before {
        content: "";
        display: block;
        min-width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .desc1 span:nth-child(1) li::before {
        background: #FF6B6B;
    }

    .desc1 span:nth-child(2) li::before {
        background: #00A6F4;
    }

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

    @media (max-width: 1440px) {
        .Box1 .lt1 {
            width: 400px;
        }

        .rt1 {
            width: calc(100% - 420px);
        }
    }

    @media (max-width: 1200px) {
        .Box1 .lt1 {
            width: 300px;
        }

        .rt1 {
            width: calc(100% - 320px);
        }

        .desc1 span {
            padding: 24px;
            grid-gap: 6px;
        }
    }

    @media (max-width: 900px) {
        .Box1 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .rt1 {
            width: 100%;
        }
    }

    @media (max-width: 500px) {
        .desc1 {
            flex-wrap: wrap;
        }
    }

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

    /* NySection2 */
    .NySection2 {
        padding-top: 0;
    }

    .title2 h1 {
        color: #333;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .title2 h2 {
        color: rgba(0, 0, 0, 0.60);
        font-size: 16px;
    }

    .Box2 {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .lt2 {
        width: calc(60% - 40px);
        display: flex;
        grid-gap: 10px;
    }

    .name2 {
        display: flex;
        flex-direction: column;
        grid-gap: 80px;
    }

    .name2 h1 {
        color: #555;
        text-align: right;
        font-size: 16px;
        line-height: 35px;
        white-space: nowrap;
    }

    .tubiao2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        grid-gap: 80px;
        position: relative;
        padding-bottom: 40px;
    }

    .label2 {
        width: 100%;
        position: relative;
        z-index: 2;
        height: 35px;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .label2 span {
        display: block;
        height: 100%;
        border-radius: 6px;
        background: linear-gradient(135deg, #00A6F4 0%, #155DFC 100%);
    }

    .label2 h2 {
        color: #555;
        font-size: 12px;
    }

    .botton2 {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    .botton2 li {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .botton2 li::before {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-left: 1px dashed rgba(0, 0, 0, 0.06);
    }

    .botton2 li:last-child {
        position: absolute;
        width: auto;
        left: 100%;
    }

    .rt2 {
        width: calc(40% - 20px);
    }

    @media (max-width: 1200px) {
        .lt2 {
            width: 100%;
            padding-right: 40px;
        }

        .rt2 {
            margin-top: 30px;
            width: 100%;
        }
    }

    @media (max-width: 900px) {
        .Box2 {
            margin-top: 30px;
        }
    }

    @media (max-width: 600px) {
        .tubiao2 {
            padding-bottom: 30px;
        }

        .name2 h1 {
            width: 60px;
            line-height: 1.25;
            height: 35px;
            white-space: wrap;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .botton2 li {
            font-size: 12px;
        }
    }
