    /* 分类 */
    .NyNavBox {
        width: 100%;
    }

    .NyNavBox .top {
        display: none;
    }

    .NavList {
        margin-bottom: 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 10px;
    }

    .NavList a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 60px;
        font-size: 20px;
        text-align: center;
        color: #1B1464;
        transition: 0.5s;
    }

    .NavList a::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: #FFFFFF;
        border: 1px solid #E8E8E8;
        transform: skewX(-15deg);
        transition: 0.5s;
    }

    .NavList a:hover,
    .NavList a.active {
        color: #fff;
    }

    .NavList a:hover::after,
    .NavList a.active::after {
        background: var(--color);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 1200px) {
        .NavList {
            margin-bottom: 60px;
        }

        .NavList a {
            font-size: 16px;
            padding: 10px 30px;
        }
    }

    @media (max-width: 720px) {
        .NavList {
            margin-bottom: 30px;
        }

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

        .NyNavBox .top {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            background: var(--color);
            color: #fff;
            font-size: 18px;
            font-weight: bold;
        }

        .NavList {
            grid-gap: 0;
            display: none;
        }

        .NavList a {
            display: block;
            width: 100%;
            text-align: left;
            padding: 10px 15px;
            border: 1px solid #E8E8E8;
        }

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

        .NavList a::after {
            display: none;
        }
    }

    /* 列表 */
    .NyProListBox {
        width: 100%;
        overflow: hidden;
    }

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

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

    .Product .img {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .Product .text {
        background: #F5F7FB;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 45px;
    }

    .Product .text h1 {
        font-size: 18px;
        color: #363636;
    }

    .Product .text p {
        display: flex;
        align-items: center;
        grid-gap: 10px;
        color: var(--color);
    }

    @media (max-width: 1200px) {
        .ProductList {
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 60px 30px;
        }
    }

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

        .Product .text {
            padding: 20px 15px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            grid-gap: 15px;
        }
    }

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