.product-container{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}
.product-container .left{
    width: 22%;
}
/*类别列表*/
.category-list{
}
.category-list > ul{
}
.category-list > ul > li{
    position: relative;
    line-height: 22px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}
.category-list > ul > li:last-child{
    border-bottom: none;
}
.category-list > ul > li > a{
    font-size: 16px;
    font-weight: bold;
}
.category-list > ul > li.active{
    transition: all .3s linear;
}
.category-list > ul > li > i:nth-child(2){
    position: absolute;
    top: 5px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: url("https://hk-oss-tiandeyi.oss-cn-hongkong.aliyuncs.com/static/home/image/right-arrow.svg") no-repeat center center;
    transition: all .3s linear;
}
.category-list > ul > li.active > i:nth-child(2){
    transform: rotate(90deg);
}
.category-list > ul > li > ul{
    display: none;
    padding-top: 5px;
}
.category-list > ul > li.active > ul{
    display: block;
}
.category-list > ul > li > ul > li{
    display: flex;
    align-items: center;
    position: relative;
    line-height: 22px;
}
.category-list > ul > li > ul > li:before{
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    border: solid 1px #b5b5b5;
}
.category-list > ul > li > ul > li > a{
    padding-left: 18px;
    font-size: 12px;
}
.category-list > ul > li > ul > li.active:before{
    border: solid 1px #0068b7;
    background: #0068b7;
}
.category-list > ul > li > ul > li.active > a{
    color: var(--blue);
}

.product-container .right{
    margin-left: 40px;
    flex: 1;
}
@media (max-width: 576px) {
    .product-container{
    }
    .product-category-list{
        margin-top: 0;
    }
    .product-category-list > ul > li{
        line-height: 38px;
    }
    .product-category-list > ul > li > i:nth-child(3){
        top: 13px;
        right: 13px;
    }
    .product-category-list > ul > li > ul > li > i{
        top: 13px;
        right: 13px;
        width: 15px;
        height: 15px;
        background: var(--blue) url("/Other/oss/static/home/image/right-arrow.svg") no-repeat center center / 10px 10px;
    }
    .product-category-list > ul > li a,
    .product-category-list > ul > li > ul > li > a,
    .product-category-list > ul > li > ul > li > ul > li > a{
        font-size: 12px;
    }
    .product-category-list > ul > li > ul > li{
        line-height: 38px;
    }
    .product-category-list > ul > li > ul > li > ul > li{
        line-height: 38px;
    }
    .product-container .left,
    .product-container .right{
        width: 100%;
    }

    .product-container .right{
        margin-left: 0;
    }
    .product-search{
        position: relative;
        width: 100%;
        height: 42px;
        border: 1px solid var(--grey);
        border-radius: 2px;
        margin-left: 0;
        padding-left: 20px;
    }
}
/*ng28(南宫)产品列表*/
.product-list{

}
.product-list ul{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.product-list ul li{
    width: calc(33.333% - 20px);
    margin: 10px 10px 20px;
}
.product-item{
    position: relative;
    height: 100%;
}
.product-item:after{
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 0;
    height: 4px;
    transition: all .5s;
    background-color: var(--blue);
}
.product-item:hover:after{
    width: 100%;
}
.product-item .text{
    padding: 10px;
}
.product-item .text p:first-child{
}
@media (max-width: 768px) {
    .product-list ul{
        margin: 0 -7px 20px;
    }
    .product-list ul li{
        width: calc(50% - 15px);
        margin: 10px 7px 0;
    }
    .product-item .text{
        padding: 10px 0 0;
    }
    .product-item .text p{
        line-height: 20px;
        font-size: 12px;
    }
}