    .ProductBigBox {
        overflow:visible;
    }

    .ProductBigBox .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    /* 分类 */
    .NyNavBox {
        width: 360px;
        position: sticky;
        top: 140px;
        height: 100%;
    }

    .NyNavBox .top {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        background-size: cover;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        display: none;
    }

    .NyNavBox .top i {
        display: none;
    }

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

    .NyNav {
        display: flex;
        flex-direction: column;
        grid-gap: 2px;
        padding: 0 60px;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0px 4px 20px 0px rgba(25, 75, 168, 0.15);
        transition: 0.5s;
    }

    .NyNav.on {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .NyNavFUji {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        height: 60px;
        transition: 0.5s;
    }

    .NyNav.on .NyNavFUji {
        border-bottom: 1px solid #E2E2E2;
        margin-bottom: 15px;
    }

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

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

    .NyNavFUji img {
        filter: brightness(0);
        width: 16px;
        height: 16px;
        object-fit: cover;
    }

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

    .NyNavZiji {
        display: none;
        grid-gap: 2px;
    }


    .NyNavZiji a {
        padding: 5px 0;
        display: block;
        color: #696969;
        font-size: 16px;
        line-height: 1.5;
    }


    .NyNavZiji a.children3 {
        padding-left: 15px;
        opacity:0.75;
    }

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

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

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

        .NyNavBox .top {
            padding: 20px;
        }

        .NyNav {
            padding: 0 20px;
        }

        .NyNavFUji {
            padding: 20px 15px;
        }

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

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

    @media (max-width: 720px) {
        .ProductBigBox .container {
            display: flex;
            flex-direction: column-reverse;
        }

        .NyNavBox {
            width: 100%;
            margin-bottom: 45px;
        }

        .NyNavBox .top {
            background: var(--color);
            padding: 10px 15px;
            display: flex;
        }

        .NyNavBox .top i {
            display: block;
        }

        .NavList {
            display: none;
        }

        .NyNav {
            margin-bottom: 0;
            border-radius: 0;
            box-shadow: none;
            border: 1px solid #ccc;
            padding: 0 15px;
        }

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

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

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

    .Product {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F6F9FD;
        border-radius: 30px;
        overflow: hidden;
    }

    .Product:hover {
        background: #fff0;
    }

    .Product::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #F6F9FD;
        opacity: 0;
    }

    .Product::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        width: 54%;
        height: 54%;
        border-radius: 50%;
        background: var(--color);
        opacity: 0;
        display: none;
    }

    .Product:hover::after,
    .Product:hover::before {
        opacity: 1;
    }


    .Product .img {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 30px;
    }

    .Product .img img {
        width: 100%;
    }

    .Product .text {
        position: absolute;
        z-index: 4;
        right: 0;
        bottom: 0;
        width: 225px;
        height: 58px;
        background: url(/assets/images/more0.png) no-repeat right;
        background-size: contain;
        display: flex;
        align-items: center;
        color: #000;
        font-size: 16px;
        padding-left: 30px;
        padding-right: 60px;
    }

    .Product:hover .text {
        color: #fff;
        background: url(/assets/images/more.png) no-repeat right;
        background-size: contain;
    }

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

        .Product .img {
            padding: 40px;
        }

        .Product .text {
            width: 100%;
            height: 45px;
            background-color: #fff;
            border-radius: 50px;
        }

        .Product:hover .text {
            background-color: var(--color);
        }
    }

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

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

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

    }

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

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