@charset "utf-8";
.product-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-item {
    height: 127px;
    width: 354px;
    display: flex;
    margin-top: 30px;
}

.left-product-img {
    width: 190px;
    height: 127px;
    border: 1px solid #ececec;
}

.right-product-info {
    margin-left: 10px;
}

.product-title > a {
    text-decoration: none;
    color: #82888B;
    line-height: 35px;
}

.product-desc {
    line-height: 25px;
    font-size: 14px;
    color: #82888B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}