    /* 分类 */
    .TopProductList {
        position: relative;
        z-index: 9;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        grid-gap: 60px;
    }

    .TopProductList .NyTitle {
        padding: 0;
    }

    .TopRt {
        display: flex;
        grid-gap: 30px;
    }


    .NavList {
        position: relative;
        width: 300px;
        height: 50px;
    }


    .NavList .list {
        height: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: 6px;
        border: 1px solid #A7A7A7;
        padding: 0 30px;
    }


    .NavList .list a {
        color: #000;
        font-size: 18px;
        line-height: 1.5;
        display: none;
    }

    .NavList .list a.active {
        display: block;
    }

    .NavList .list i {
        position: absolute;
        right: 30px;
    }

    .NavList .down {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 100%;
        width: 100%;
        background: #fff;
        display: none;
    }

    .NavList:hover .down {
        display: block;
    }

    .NavList .down a {
        color: #333;
        font-size: 16px;
        display: block;
        padding: 15px 30px;
    }

    .NavList .down a:hover {
        background: #f5f5f5;
    }

    .ProductSearch {
        width: 200px;
        height: 50px;
        border-radius: 6px;
        border: 1px solid #A7A7A7;
        padding: 0 25px;
        display: flex;
        align-items: center;
    }

    .searchInput1 {
        width: calc(100% - 18px);
    }

    .searchInput1::placeholder {
        color: #535353;
        font-weight: 500;
    }

    .subButn1 {
        width: 18px;
        height: 18px;
    }

    .subButn1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

    @media (max-width: 1200px) {
        .TopProductList {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .TopProductList .NyTitle {
            width: 100%;
        }
    }

    @media (max-width: 720px) {
        .TopRt {
            width: 100%;
            grid-gap: 20px;
        }

        .NavList {
            width: calc((100% - 20px) * 0.6);
        }

        .ProductSearch {
            width: calc((100% - 20px) * 0.4);
        }

        .ProductSearch,
        .NavList {
            height: 40px;
        }

        .ProductSearch,
        .NavList .list {
            padding: 0 15px;
        }
    }

    /* 列表 */
    .NyProListBox {
        position: relative;
        z-index: 5;
        width: 100%;
        margin-top: 30px;
        padding-top: 90px;
        border-top: 1px solid #D9D9D9;
    }



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

    .ListBox .item:first-child {
        grid-column: 1/3;
    }

    .ListBox .item {
        position: relative;
        display: flex;
        flex-direction: column;
    }


    .ProductImg {
        width: 100%;
        height: calc(100% - 90px);
    }

    .ProductText {
        display: flex;
        align-items: center;
        height: 90px;
        color: #656565;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.25;
        border-bottom: 1px solid #737373;
    }


    @media (max-width: 1200px) {
        .ListBox {
            grid-gap: 30px 15px;
        }

        .NyProListBox {
            padding-top: 60px;
        }

        .ProductImg {
            width: 100%;
            height: calc(100% - 60px);
        }

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

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

        .ProductText {
            font-size: 16px;
            font-weight: 500;
        }
    }

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