
.content .product-list{
    width: 100%;
    float: left;
}
.content .product-list .products-item{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.content .product-list .products-item:nth-child(3n){
    margin-right: 0;
}
.content .product-list .products-item .products-item-img{
    width: 100%;
    aspect-ratio: 380 / 284; /* 1:1 的宽高比，即高度等于宽度 */
    overflow: hidden;
}
.content .product-list .products-item .products-item-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out; /* 添加过渡效果 */
}
.content .product-list .products-item .products-item-title{
    height: 72px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 24px;
    display: -webkit-box;          /* 将元素设置为弹性盒子 */
    -webkit-box-orient: vertical;  /* 设置内容垂直排列 */
    -webkit-line-clamp: 3;         /* 限制显示的行数 */
    overflow: hidden;              /* 隐藏超出部分 */
    text-overflow: ellipsis;       /* 超出部分显示省略号 */
}
.content .product-list .products-item:hover .products-item-title{
    color: #E60012;
}
.content .product-list .products-item:hover .products-item-img img{
    transform: scale(1.1);
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {

}
@media only screen and (max-width: 1000px) {
    .content .product-list .products-item .products-item-title{
        font-size: 14px;
        line-height: 21px;
        height: 63px;
    }
}
