.products-category{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin: 30px auto 0;
}
.products-category .products-category-item{
    width: 19%;
    margin-top: 10px;
    margin-right: 1.25%;
    background: #F3F3F3;
    border-radius: 25px;
    font-size: 14px;
    color: #1A1A1A;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.products-category .products-category-item a{
    width: 100%;
    height: 100%;
    display: block;
    color: #1A1A1A;
}
.products-category .products-category-item:nth-child(5n),
.products-category .products-category-item:last-child{
    margin-right: 0;
}
.products-category .products-category-item.active,
.products-category .products-category-item:hover{
    background: #1562C5;
    color: #FFFFFF;
}
.products-category .products-category-item.active a,
.products-category .products-category-item:hover a{
    color: #FFFFFF;
}


.products-list{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.products-list .product-item {
    margin-bottom: 20px;
    width: 32%;
    background-color: #FFFFFF;
    cursor: pointer;
    margin-right: 2%;
}
.products-list .product-item:nth-child(3n){
    margin-right: 0;
}
.products-list .product-item .product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}
.products-list .product-item .product-img img {
    width: 100%;
    height: 100%;
}
.products-list .product-item .product-img .product-img-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
}
.products-list .product-item .product-img .product-img-icon img{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.products-list .product-item .product-title{
    /*height: 50px;*/
    margin: 10px 0;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 27px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.products-list .product-item .product-attr-item{
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom: 10px;
    font-size: 14px;
}
.products-list .product-item .product-attr-item .product-attr-key{
    color: #666666;
}
.products-list .product-item .product-attr-item .product-attr-value{
    color: #333333;
    font-weight: bold;
}
.products-list .product-item:hover .product-title{
    color: #1562C5;
}
.products-list .product-item:hover .product-img .product-img-icon{
    display: block;
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .products-category{
        margin-top: 20px;
        width: 100%;
    }
    .products-category .products-category-item{
        font-size: 13px;
        height: 45px;
        line-height: 45px;
    }
    .products-list{
        margin-top: 30px;
    }
    .products-list .product-item .product-title{
        font-size: 16px;
        line-height: 20px;
        margin: 5px 0;
    }
    .products-list .product-item .product-attr-item{
        grid-template-columns: 80px 1fr;
        font-size: 13px;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 1000px) {
    .products-category{
        margin-top: 10px;
        width: 100%;
    }
    .products-category .products-category-item{
        width: auto;
        min-width: 19%;
        padding: 0 5px;
        font-size: 12px;
        height: 40px;
        line-height: 40px;
    }
    .products-list{
        margin-top: 20px;
    }
    .products-list .product-item .product-title{
        font-size: 14px;
        line-height: 18px;
        margin: 2px 0;
    }
    .products-list .product-item .product-attr-item{
        grid-template-columns: 75px 1fr;
        font-size: 12px;
        margin-bottom: 0;
    }
}