    /* 分类 */
    .NyNavList {
        background: #EFEFEF;
        padding: 0 var(--container);
        padding-top: 60px;
        margin-left: -10px;
        margin-right: -10px;
        position: relative;
        z-index: 98;
        display: flex;
        justify-content: space-between;
    }

    /* .NyNavList.on {
       position: fixed;
       width: 100%;
       top: 0;
       z-index: 99;
   } */

    .NyNavList a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff0;
        position: relative;
        height: 80px;
        width: 100%;
        margin: 0 10px;
        font-size: 24px;
        border-bottom: 1px solid #0000;
    }


    .NyNavList a:hover,
    .NyNavList a.active {
        color: var(--color);
        border-bottom: 1px solid var(--color);
    }

    .NyNavList a:hover::after,
    .NyNavList a.active::after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background: var(--color);
        position: absolute;
        left: calc(50% - 5px);
        bottom: -5px
    }

    @media screen and (max-width: 1600px) {
        .NyNavList a {
            font-size: 20px;
        }
    }

    @media screen and (max-width: 1440px) {
        .NyNavList {
            padding-top: 15px;
        }

        .NyNavList a {
            font-size: 18px;
        }
    }

    @media screen and (max-width: 1200px) {
        .NyNavList {
            padding: 0;
            margin: 0;
        }

        .NyNavList a {
            margin: 0;
            font-size: 16px;
            padding: 10px;
            text-align: center;
        }
    }

    @media screen and (max-width: 720px) {
        .NyNavList {
            display: flex;
            flex-wrap: wrap;
        }

        .NyNavList a {
            width: 50%;
            height: 60px;
            font-size: 16px;
        }
    }

    /* 列表 */
    .ProductBox {
        background: #F3F4F8;
    }

    .NyProBox {
        width: 100%;
    }


    .NyProList {
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 90px 60px;
    }


    .NyProList .item {
        position: relative;
    }

    .NyProList .item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 0%;
        height: 5px;
        background: var(--color);
        transition: 2s;
    }

    .NyProList .item:hover::after {
        width: 100%;
    }

    .NyProList .item .text {
        padding-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .NyProList .item .text h1 {
        font-weight: 500;
        font-size: 20px;
        line-height: 1;
        color: #565656;
        position: relative;
        padding-left: 30px;
        transition: 0.5s;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .NyProList .item:hover .text h1 {
        color: var(--color);
    }

    .NyProList .item .text h1::after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background: #565656;
        position: absolute;
        left: 0;
        top: 50%;
        transition: 0.5s;
        transform: translateY(-50%);
    }

    .NyProList .item:hover .text h1::after {
        background: var(--color);
    }

    .NyProList .item .text i {
        opacity: 0;
        transition: 0.5s;
        font-size: 24px;
    }

    .NyProList .item:hover .text i {
        opacity: 1;
        color: var(--color);
    }

    .NyProList .item .img {
        background: #fff;
    }

    @media (max-width: 1200px) {
        .NyProList {
            grid-gap: 75px 45px;
        }
    }

    @media (max-width: 720px) {
        .NyProList {
            grid-template-columns: 1fr;
            grid-gap: 30px;
        }

        .NyProList .item::after {
            height: 3px;
        }

        .NyProList .item .text h1 {
            padding-left: 20px;
        }

    }

    @media (max-width: 460px) {
        .NyProList .item .text h1 {
            font-size: 18px;
        }
    }