    .ProductBigBox {
        background: #EFF2FB;
    }

    /* 分类 */
    .NavList {
        padding-top: 120px;
        padding-bottom: 75px;
        width: 100%;
        display: flex;
        grid-gap: 20px;
    }

    .NavList a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 90px;
        overflow: hidden;
        border-radius: 12px;
        background: var(--color);
        padding: 0 50px;
        color: #fff;
        font-size: 20px;
        transition: 0.5s;
        justify-content:center;
    }

    .NavList a::after {
        content: "";
        width: 0;
        height: 100%;
        background: var(--color);
        position: absolute;
        right: 0;
        top: 0;
        transition: 0.5s;
    }

    .NavList a.active,
    .NavList a:hover {
        color: var(--color);
        background:#fff;
        font-weight: bold;
    }

    .NavList a.active::after,
    .NavList a:hover::after {
        width: 12px;
    }

    @media (max-width: 1440px) {
        .NavList a {
            font-size: 18px;
        }
    }

    @media (max-width: 1200px) {
        .NavList {
            padding-top: 0;
            grid-gap: 10px;
        }

        .NavList a {
            padding: 0 15px;
            font-size: 16px;
            height: 75px;
        }

        .NavList a.active::after,
        .NavList a:hover::after {
            width: 6px;
        }
    }

    @media (max-width: 720px) {
        .NavList {
            flex-wrap: wrap;
            grid-gap: 10px;
        }

        .NavList a {
            width: calc(50% - 5px);
        }
    }

    /* 列表 */
    .ProductBigBox .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .NyProListBox {
        width: 100%;
        overflow: hidden;
    }

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

    .productList {
        width: 100%;
        position: relative;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .productList .img {
        width: 40%;
        position: relative;
    }

    .productList .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .productList .text {
        padding: 30px;
        width: 60%;
        display: flex;
        flex-direction: column;
        grid-gap: 30px;
    }

    .productList .text h1 {
        color: #0A0A0A;
        font-size: 22px;
        font-weight: 400;
        line-height: 1.25;
    }


    .productList .More {
        color: #9C9C9C;
        font-size: 16px;
        line-height: 1;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .productList .More b {
        display: inline-block;
        font-weight: 400;
        border-bottom: 1px dashed #9C9C9C;
        line-height: 2;
    }

    @media (max-width: 1440px) {
        .productList .text h1 {
            font-size: 18px;
        }
    }

    @media (max-width: 1200px) {
        .productList {
            flex-wrap: wrap;
        }

        .productList .img {
            width: 100%;
        }

        .productList .text {
            padding: 20px;
            width: 100%;
            grid-gap: 15px;
        }
    }

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

        .productList .text h1 {
            font-size: 16px;
            word-break: break-all;
        }
    }

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