    .ProductBigBox .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* 分类 */
    .NyLeft {
        width: 400px;
    }

    .ListBox {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 10px;
    }

    .ListBox .List {
        width: 100%;
    }

    .ListBox .List .Category {
        width: 100%;
        background: #EBEBED;
        position: relative;
        height: 90px;
        display: flex;
        align-items: center;
    }

    .ListBox .List.on .Category {
        background: #000;
    }

    .ListBox .List .Category a {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 30px;
        display: flex;
        align-items: center;
        font-size: 20px;
        color: #000;
    }

    .ListBox .List.on .Category a {
        color: #fff;
    }

    .ListBox .List .Category i {
        padding: 0 30px;
        cursor: pointer;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .ListBox .List.on .Category i {
        color: #fff;
        transform: rotate(180deg);
    }

    .ListBox .List .Children {
        display: none;
    }

    .ListBox .List .Children a {
        margin-top: 5px;
        width: 100%;
        height: 50px;
        background: #EBEBED80;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
    }

    .ListBox .List .Children a:hover {
        color: var(--color);
    }

    .ContactBox {
        margin-top: 10px;
        background: #EBEBED;
        padding: 45px;
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
    }

    .ContactBox h1 {
        color: #000;
        font-family: Montserrat;
        font-size: 20px;

    }

    .ContactBox span {
        display: flex;
        flex-wrap: wrap;
    }

    .ContactBox span h2 {
        width: 100%;
        display: flex;
    }

    .ContactBox span p {
        color: #000;
        font-size: 16px;
        line-height: 2;
    }

    .ContactBox .More {
        width: 100%;
        max-width: 270px;
        height: 60px;
        margin: 0 auto;
        background: linear-gradient(90deg, #FCF48E 0%, #8E3A0A 100%);
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFF;
        text-align: center;
        font-size: 20px;
    }

    /* 产品列表 */
    .NyItemBox {
        width: calc(100% - 430px);
    }

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


    .ItemBox .item {
        position: relative;
        width: 100%;
        overflow: hidden;
        border: 1px solid #E6E7E8;
        background: #FFF;
        padding: 0 20px;
    }

    .ItemBox .item:hover {
        border: 1px solid;
    }

    .ItemBox .item .img {
        position: relative;
        z-index: 1;
        width: 100%;
    }



    .ItemBox .item .text {
        border-top: 1px solid #E6E7E8;
        padding: 30px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-gap: 15px;
    }

    .ItemBox .item .text h1 {
        color: #000;
        font-size: 16px;
    }

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

    .ItemBox .item .text .More {
        width: 20px;
    }

    @media (max-width: 1440px) {
        .NyLeft {
            width: 320px;
        }

        .NyItemBox {
            width: calc(100% - 350px);
        }

        .ListBox .List .Category a {
            font-size: 18px;
        }
    }

    @media (max-width: 1200px) {
        .NyLeft {
            width: 250px;
        }

        .NyItemBox {
            width: calc(100% - 280px);
        }

        .ListBox .List .Category {
            height: 60px;
        }

        .ListBox .List .Category a {
            padding: 15px 20px;
            padding-right: 0;
            font-size: 16px;
        }

        .ListBox .List .Category i {
            padding: 15px;
        }

        .ListBox .List .Children a {
            padding-left: 30px;
            padding-right: 15px;
            height: 40px;
            font-size: 14px;
        }

        .ContactBox {
            padding: 30px 20px;
            grid-gap: 15px;
        }

        .ContactBox span p {
            font-size: 14px;
        }

        .ItemBox .item {
            padding: 0 10px;
        }

        .ItemBox .item .text {
            padding: 15px 0;
        }
    }

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

    @media (max-width: 900px) {
        .NyLeft {
            display: none;
        }

        .NyItemBox {
            width: 100%;
        }
    }

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

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