    .ProductBigBox {
        background: #E3E4E8;
    }

    /* 分类 */
    .NyNavBox {
        width: 420px;
    }

    .NyNavBox .top {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        background: var(--color);
        background-size: cover;
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        border-radius: 12px 12px 0 0;
    }

    .NyNavBox .top i {
        display: none;
    }

    .NavList {
        display: flex;
        flex-direction: column;
        grid-gap: 4px;
    }

    .NyNav {
        display: flex;
        flex-direction: column;
    }

    .NyNavFUji {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        padding: 30px 45px;
        cursor: pointer;

    }


    .NyNavFUji a {
        font-size: 20px;
        color: #585858;
    }

    .NyNav.on .NyNavFUji a {
        font-weight: bold;
        color: var(--color);
    }

    .NyNavFUji i {
        font-weight: bold;
        font-size: 30px;
        color: var(--color);
    }

    .NyNav.on .NyNavFUji img {
        height: 2px;
        filter: brightness(1);
    }

    .NyNavZiji {
        display: none;
    }


    .NyNavZiji a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        padding: 20px;
        padding-left: 60px;
        margin-top: 1px;
    }

    .NyNavZiji a.active {
        color: var(--color);
    }

    @media (max-width: 1440px) {
        .NyNavBox {
            width: 300px;
        }
    }

    @media (max-width: 1200px) {
        .NyNavBox {
            width: 240px;
        }

        .NyNavBox .top {
            padding: 20px;
            font-size: 24px;
        }

        .NyNavFUji {
            padding: 20px 15px;
        }

        .NyNavFUji a {
            font-size: 16px;
        }

        .NyNavFUji i {
            font-size: 18px;
        }

        .NyNavZiji a {
            padding: 20px 15px;
            padding-left: 30px;
        }
    }

    @media (max-width: 720px) {
        .NyNavBox {
            width: 100%;
            margin-bottom: 45px;
        }

        .NyNavBox .top {
            padding: 10px 15px;
        }

        .NyNavBox .top i {
            display: block;
        }

        .NavList {
            display: none;
        }

        .NyNav {
            margin-bottom: 4px;
        }
    }

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

    .NyProListBox {
        width: calc(100% - 480px);
        overflow: hidden;
    }

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

    .productList {
        width: 100%;
        position: relative;
    }

    .productList .img {
        position: relative;
        background: #F0F3FA;
    }

    .productList .imgC {
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .productList .imgA {
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .productList .imgB {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: 0.5s;
    }

    /* .productList:hover .imgB {
        opacity: 1;
    } */

    .productList .text {
        position: absolute;
        z-index: 3;
        top: 40px;
        padding: 0 30px;
        color: #404040;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.5;
        transition: 0.5s;
    }

    /* .productList:hover .text {
        color: #fff;
    } */

    .productList .More {
        position: absolute;
        z-index: 3;
        right: 30px;
        bottom: 30px;
        color: #404040;
        font-size: 16px;
        display: flex;
        align-items: center;
        grid-gap: 5px;
        transition: 0.5s;
    }

    .productList .More i {
        font-size: 18px;
        color: #404040;
        transition: 0.5s;
    }

    /* .productList:hover .More i,
    .productList:hover .More {
        color: #fff;
    } */

    @media (max-width: 1440px) {
        .NyProListBox {
            width: calc(100% - 330px);
            overflow: hidden;
        }

        .productList .text {
            top: 15px;
            padding: 0 15px;
        }

        .productList .More {
            right: 15px;
            bottom: 15px;
        }
    }

    @media (max-width: 1200px) {
        .NyProListBox {
            width: calc(100% - 255px);
            overflow: hidden;
        }

        .ListBox {
            grid-template-columns: repeat(2, 1fr);
        }

        .productList .text {
            font-size: 16px;
        }
    }

    @media (max-width: 720px) {
        .NyProListBox {
            width: 100%;
            overflow: hidden;
        }
    }

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