    /* 列表 */
    .NyProListBox {
        width: 100%;
        overflow: hidden;
    }

    .ListBox {
        width: 100%;
        margin-bottom: 45px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
    }

    .ProductItem {
        width: 100%;
        position: relative;
        padding: 10px;
        border: solid 1px #e5e5e5;
        border-radius: 4px;
        transition: all .5s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .ProductItem:hover {
        background: var(--color);
    }

    .ProductImg {
        width: 100%;
    }

    .ProductText {
        padding: 15px;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 600;
        transition: all .5s;
        text-align: center;
    }

    .ProductItem:hover .ProductText {
        color: #fff;
    }

    .ProductItem .More {
        width: 100%;
        height: 30px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ProductItem:hover .More {
        background: #fff;
        color: var(--color);
    }

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

        .ProductText {
            padding: 15px 0;
            font-size: 16px;
        }
    }

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

        .ProductText {
            padding: 10px 0;
            font-size: 14px;
        }
    }

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