.content{
    width: 80%;
    margin: 80px auto 60px;
}


.content .products-list ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.content .products-list li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    cursor: pointer;
}
.content .products-list li:nth-child(2n){
    margin-right: 0;
}
.content .products-list li .product-list-img{
    width: 100%;
    aspect-ratio: 4 / 3;
}
.content .products-list li .product-list-title{
    width: 100%;
    height: 50px;
    background: #F5F5F5;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 16px;
    color: #262626;
    line-height: 50px;
    text-align: center;
}
.content .products-list li:hover .product-list-title{
    background-color: #15499A;
    color: #FFFFFF;
}

.content .pagination{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 1050px) and (max-width: 1440px) {
    .content{
        width: 80%;
    }
    .content .category-list .category-item{
        font-size: 14px;
    }
}
@media only screen and (max-width: 1050px) {
    .content{
        width: 85%;
    }
    .content .category-list .category-item{
        font-size: 12px;
    }
}


