    /* 分类 */
    .NyNavList {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        grid-gap: 10vw;
        background: #fff;
        position: relative;
        left: 5vw;
        z-index: 98;
        border-radius: 40px 40px 0 0;
        height: 120px;
        margin-top: -120px;
        width: 90vw;
    }

    .search {
        width: 320px;
        height: 80px;
        position: relative;
        border-bottom: 1px solid #D9D9D9;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .search input {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        outline: none;
    }

    .search button {
        width: 35px;
        height: 35px;
        background: #fff;
    }

    .search button i {
        font-size: 24px;
        color: #8A8A8A;
    }


    .NyNavBox {
        width: 320px;
        height: 80px;
        position: relative;
        border-bottom: 1px solid #D9D9D9;
    }

    .NyNavBox h1 {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 20px;
        line-height: 1;
        color: #000000;
    }

    .NyNavBox h1 a {
        font-size: 20px;
        line-height: 1;
        color: #000000;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        transition: 0.5s;
    }

    .NyNavBox h1.on a,
    .NyNavBox:hover h1 a {
        font-weight: bold;
        color: var(--color);
    }

    .NyNavBox h1.on i,
    .NyNavBox:hover h1 i {
        color: var(--color);
    }

    .NavBox2 {
        position: absolute;
        width: 100%;
        background: #EEF0F4;
        padding: 0px 40px;
        display: none;
    }

    .NavBox2 a {
        font-size: 20px;
        line-height: 3.5;
        color: #6A6A6A;
        border-bottom: 1px solid #D2D2D2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .NavBox2 a:last-child {
        border-bottom: 0px solid #D2D2D2;
    }


    @media (max-width: 1600px) {
        .NyNavList {
            grid-gap: 5vw;
        }

        .search {
            width: 260px;
        }

        .NyNavBox {
            width: 260px;
        }

        .NyNavBox h1 {
            font-size: 18px;
        }

        .NavBox2 {
            padding: 0px 20px;
        }

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

    @media (max-width: 1200px) {
        .NyNavList {
            display: flex;
            flex-wrap: wrap;
            grid-gap: unset;
            justify-content: space-evenly;
        }

        .search {
            width: 180px;
        }

        .NyNavBox {
            width: 180px;
        }

    }

    @media (max-width: 720px) {
        .NyNavList {
            display: flex;
            flex-wrap: wrap;
            grid-gap: unset;
            justify-content: space-evenly;
            margin-top: 0;
            width: 100vw;
            left: 0;
            padding: 0 var(--w1600);
            height: auto;
        }

        .search {
            width: 100%;
        }

        .NyNavBox {
            width: 100%;
            height: auto;
        }

        .NyNavBox h1 {
            font-size: 16px;
            padding: 0 15px;
            height: 45px;
        }

        .NavBox2 {
            position: relative;
        }

        .NavBox2 a {
            font-size: 14px;
        }
    }


    /* 列表 */
    .NyCss01Right {
        overflow: hidden;
    }

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

    .NyProList .item {
        width: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid #C4C4C4;
    }

    .NyProList .item .bj {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .NyProList .item .bj .bj1 {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .NyProList .item .bj .bj2 {
        width: 100%;
        height: 100%;
        display: none;
        object-fit: cover;
    }

    .NyProList .item:hover .bj .bj1 {
        width: 100%;
        display: none;
    }

    .NyProList .item:hover .bj .bj2 {
        width: 100%;
        display: block;
    }

    .NyProList .item .imgText {
        width: 100%;
        position: relative;
        z-index: 2;

    }

    .NyProList .item .imgText img {
        width: 100%;
    }

    .NyProList .item .imgText .text {
        width: 100%;
        padding: 0 60px;
        padding-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-gap: 15px;
    }

    .NyProList .item .imgText .text h1 {
        font-family: PuHuiTi85;
        font-size: 20px;
        line-height: 1.5;
        color: #2E2E2E;
        width: calc(100% - 60px);
    }

    .NyProList .item:hover .imgText .text h1 {
        color: #fff;
    }

    .NyProList .item .imgText .text .more {
        display: flex;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        padding: 15px;
        background: #9C9C9C;
    }

    .NyProList .item .imgText .text .more img {
        width: 100%;
        height: 100%;
    }

    .NyProList .item:hover .imgText .text .more {
        background: var(--color);
    }

    @media (max-width: 1440px) {
        .NyProList .item .imgText .text {
            padding: 0 30px;
            padding-bottom: 15px;
        }

        .NyProList .item .imgText .text h1 {
            width: calc(100% - 40px);
        }

        .NyProList .item .imgText .text .more {
            padding: 9px;
            width: 35px;
            height: 35px;
        }
    }

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

        .NyProList .item .imgText .text h1 {
            font-size: 16px;
        }

        .NyProList .item .imgText .text .more {
            width: 30px;
            height: 30px;
        }
    }

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

        .NyProList .item .imgText .text {
            padding: 0 15px;
            padding-bottom: 10px;
        }
    }

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