.content{
    width: 70%;
    margin: 80px auto 60px;
}
.content .title{
    margin-bottom: 60px;
}



.content .product-list{
    width: 100%;
    float: left;
    margin-left: 2%;

}
.content .product-list .products-item{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
    position: relative;
    overflow: hidden;
    background: #F5F5F5;
}
.content .product-list .products-item:nth-child(2n){
    margin-right: 0;
}
.content .product-list .products-item .products-item-img{
    width: 100%;
    aspect-ratio: 4 / 3; /* 1:1 的宽高比，即高度等于宽度 */
}
.content .product-list .products-item .products-item-img img{
    width: 100%;
    height: 100%;
}
.content .product-list .products-item .products-item-title{
    width: 90%;
    margin: 0 auto;
    height: 74px;
    padding-top: 10px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 16px;
    color: #262626;
    line-height: 27px;
    display: -webkit-box;          /* 将元素设置为弹性盒子 */
    -webkit-box-orient: vertical;  /* 设置内容垂直排列 */
    -webkit-line-clamp: 2;         /* 限制显示的行数 */
    overflow: hidden;              /* 隐藏超出部分 */
    text-overflow: ellipsis;       /* 超出部分显示省略号 */
}
.content .product-list .products-item:hover{
    /*background: #E60012;*/
}
.content .product-list .products-item:hover .products-item-title{
    color: #E60012;
}



@media only screen and (min-width: 1050px) and (max-width: 1440px) {
    .content{
        width: 80%;
    }
}
@media only screen and (max-width: 1050px) {
    .content{
        width: 85%;
    }
}
