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

.NyNavList {
    width: 350px;
}

.ProRight {
    width: calc(100% - 400px);
}


@media (max-width: 1440px) {
    .NyNavList {
        width: 250px;
    }

    .ProRight {
        width: calc(100% - 300px);
    }
}

@media (max-width: 992px) {
    .NyNavList {
        width: 100%;
        margin-bottom: 30px;
    }

    .ProRight {
        width: 100%;
    }
}

/* nav */
.Product_List .NyBox {
    width: 1150px;
}

.NyNavList h1 {
    display: block;
    border-top: 8px solid #333;
    background: var(--color);
    line-height: 90px;
    padding-left: 30px;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
}

.ProductNavListBox {
    border-left: 15px solid #333;
    height: calc(100% - 150px);
}

.ProductNavList {
    line-height: 90px;
    border-bottom: 1px solid #D9D9D9;
    overflow: hidden;

}

.yiji {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yiji.on a {
    font-weight: bold;
}

.yiji.on img {
    transform: rotate(90deg);
}

.yiji a {
    padding-left: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.erji {
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.erji a {
    line-height: 90px;
    padding-left: 60px;
    border-top: 1px solid #D9D9D9;
    color: #5B5B5B;
    font-size: 18px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.erji a:hover {
    color: #5B5B5B;
    font-weight: bold;
}

.erji a:hover::after {
    content: "";
    display: block;
    background: var(--color);
    width: 5px;
    height: 16px;
    position: absolute;
    left: 45px;
    top: calc(50% - 8px);
}



@media (max-width: 1440px) {
    .NyNavList h1 {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {

    .yiji a {
        padding-left: 15px;
    }

    .erji a {
        padding-left: 30px;
    }

    .erji a:hover::after {
        left: 15px;
    }
}

@media (max-width: 992px) {
    .ProductNavListBox {
        height: auto;
        display: none;
    }

    .NyNavList h1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .NyNavList h1::after {
        content: "";
        background: url(https://ss-res-us.oss-us-west-1.aliyuncs.com/site_res/157/20231020103805_licujjvg.png) no-repeat center;
        background-size: 100% 100%;
        display: block;
        width: 10px;
        height: 20px;
        position: relative;
        left: 20px;
        transform: rotateZ(90deg);
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 640px) {
    .NyNavList h1 {
        font-size: 24px;
        line-height: 75px;
        padding: 0;
    }
}


/* list */
.ProList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ProList .item {
    position: relative;
    padding-top: 30px;
    padding-bottom: 60px;
    margin: 0 10px;
    margin-bottom: 30px;
    display: block;
    width: calc((100% - 60px) / 3);
}

.ProList .item::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: 0.5s;
}

.ProList .item::before {
    content: "";
    display: block;
    width: 0%;
    height: 0%;
    opacity: 0.3;
    background: #BA2540;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: 0.5s;
}

.ProList .item:hover::after {
    transform: scaleY(0.9) scaleX(0.8);
}


.ProList .item:hover::before {
    width: 50%;
    height: 80%;
}

.ProList .item .img {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
}

.ProList .item .img img {
    width: 100%;
    transition: 0.5s;
}

.ProList .item .img:hover img {
    transform: scale(1);
}

.ProList .item h1 {
    position: relative;
    z-index: 3;
    color: #000;
    text-align: center;
    font-family: DIN;
    font-size: 26px;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 20px;
}

.ProList .item span {
    position: relative;
    z-index: 3;
    color: #686868;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ProList .item span img {
    transform: rotateY(180deg);
    margin-left: 15px;
}

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


@media (max-width: 640px) {
    .ProList .item {
        width: calc((100% - 40px) / 2);
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .ProList .item h1 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

}