    /* 分类 */

    .NavList {
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        grid-gap: 15px;
    }

    .NavList a {
        position: relative;
        color: #90939b;
        font-size: 16px;
    }

    .NavList a:hover,
    .NavList a.active {
        color: var(--color);
    }

    .NavList .Ss {
        display: flex;
    }

    .NavList .searchInput {
        width: 235px;
        height: 36px;
        padding: 6px 15px;
        background: #f1f1f1;
        outline: none;
    }

    .NavList .subButn {
        width: 40px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(/assets/img/search_2.png) no-repeat center;
        background-size: 16px;
        background-color: var(--color);
    }

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

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

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

    .ListBox .item {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .ListBox .item .img {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .ListBox .item .text {
        position: absolute;
        z-index: 2;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 24px;
        color: #fff;
        transition: 0.5s;
        opacity: 0;
        padding: 30px;
    }

    .ListBox .item:hover .text {
        opacity: 1;
    }


    @media (max-width: 1200px) {
        .ListBox {
            padding: 0 var(--w1200);
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 10px;
        }
    }

    @media (max-width: 720px) {
        .ListBox {
            padding: 0 var(--w1200);
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 10px;
        }

        .ListBox .item .text {
            font-size: 18px;
            padding: 15px;
        }
    }

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