    /* 分类 */
    .ProductBigBox {
        background: #F0F5FA;
    }

    .ProductBigBox .w1600 {
        display: flex;
        flex-wrap: wrap;
    }

    .ProductBigBox .w1600 .NyTitle {
        width: 100%;
        margin-bottom: 90px;
    }

    .NyNavBox {
        width: 300px;
    }

    .NavList {
        width: 100%;
        border-radius: 6px;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
    }

    .NavList a {
        width: 100%;
        height: 72px;
        position: relative;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        font-weight: 700;
        font-size: 22px;
        color: var(--color);
        background: #fff;
    }

    .NavList a img {
        position: absolute;
        right: 25px;
        display: none;
    }

    .NavList a.active {
        color: #fff;
        background: var(--color);
    }


    @media (max-width: 1200px) {
        .ProductBigBox .w1600 .NyTitle {
            width: 100%;
            margin-bottom: 45px;
        }

        .NyNavBox {
            width: 240px;
        }

        .NavList a {
            height: 60px;
            font-size: 18px;
        }
    }

    @media (max-width: 720px) {
        .ProductBigBox .w1600 .NyTitle {
            margin-bottom: 15px;
        }

        .NyNavBox {
            width: 100%;
        }

        .NavList {
            grid-gap: 15px;
        }

        .NavList a {
            font-size: 16px;
            width: calc(50% - 7.5px);
        }

        .NavList a img {
            display: none;
        }
    }

    /* 列表 */
    .NyProListBox {
        width: calc(100% - 300px);
        padding-left: 50px;
        overflow: hidden;
    }

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

    .ListBox .item {
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid #E9E9E9;
        background: #fff;
    }

    .ListBox .item .Cpimg {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .ListBox .item .CpText {
        padding: 15px;
    }

    .ListBox .item .CpText h1 {
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
    }

    @media (max-width: 1200px) {
        .NyProListBox {
            width: calc(100% - 240px);
            padding-left: 30px;
        }

        .ListBox {
            grid-gap: 15px;
        }

        .ListBox .item .CpText h1 {
            font-size: 16px;
        }
    }

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

    @media (max-width: 720px) {
        .NyProListBox {
            padding: 0;
            padding-top: 30px;
            width: 100%;
        }
    }

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