    /* 列表 */
    .NyProListBox {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 90px;
    }

    .Box1 {
        width: 100%;
    }

    .Box1 .NyTitle {
        width: 100%;
        position: relative;
    }

    .Box1 .Swiper1 {
        margin-top: 45px;
        width: 100%;
    }

    .Slide1 {
        height: auto;
        display: flex;
        grid-gap: 5px;
    }

    .imgLt {
        width: 100%;
        padding-bottom: 25px;
        position: relative;
    }

    .imgLt img {
        width: 100%;
    }

    .imgLt h1 {
        color: #000;
        font-family: Arial;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .imgMore {
        position: absolute;
        left: 0;
        bottom: 0;
        color: var(--color);
        font-family: Arial;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .imgMore img {
        width: 12px;
    }

    .imgRt {
        width: 100%;
    }
.prev1, .next1{
    color: var(--color);
    opacity: 1;
}

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

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

    @media (max-width: 720px) {
        .Box1 .Swiper1 {
            margin-top: 15px;
        }
    }

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


    /* 列表 */
    .ListBox {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }

    .productItem {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .productImg  {
        width: 100%;
        height: 100%;
    }

    .productText {
        line-height: 3;
        text-align: center;
        font-size: 16px;
        color: #000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    @media (max-width:720px) {
        .ListBox {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:460px) {
        .ListBox {
            grid-template-columns: repeat(1, 1fr);
        }
    }
