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

    .ListBox .item {
        width: 100%;
    }

    .ListBox .item img {
        width: 100%;
    }

    .ListBox .item h1 {
        text-align: center;
        font-size: 12px;
        color: #575757;
        line-height: 24px;
    }

    .ListBox .item:hover h1 {
        text-decoration: underline;
    }


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


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