.product-result .card-product-item {
    /* width: 285px; */
    max-width: 285px;
    height: 390px;
    opacity: 1;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(232, 232, 232, 1);
    transition: all 0.1s linear;
}
.card-product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.12);
    transition: all 0.3s linear;
}
.card-product-item a{
    text-decoration: none;
}

.card-product-item-cover-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.card-product-item-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-product-item-info {
    padding: 8px 16px 16px 16px;
}

.card-product-item-info .title {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(51, 51, 51, 1);
    text-align: justify;
    vertical-align: top;
}

.card-product-item-info .main-lights ul {
    /* padding-left: .8rem; */
    height: 120px;
    overflow: hidden;
}

.card-product-item-info .main-lights li {
    list-style: disc inside none;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(102, 102, 102, 1);
    text-align: justify;
    vertical-align: top;
    word-break: break-all;
    text-indent: -16px;
    margin-left: 16px;
    word-wrap: break-word;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    /* white-space: nowrap; */
}

.user-action i{
    width: 14px;
    font-size: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-action .like-icon{
    color: #ff2239;
}
.user-action .like-icon-active{
    color: #ff2239;
}
.user-action .collect-icon{
    color: #999999;
}
.user-action .collect-icon-active{
    color: #FFA41C;
}
.user-action span{
    font-size: 14px; 
    line-height: 1;
    display: flex;
    align-items: center;
}
.user-action button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
}

.card-product-item-canhover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.25);
    box-shadow:
        0px 0px 1.5px rgba(0, 0, 0, 0.037),
        0px 0px 3.7px rgba(0, 0, 0, 0.053),
        0px 0px 7.6px rgba(0, 0, 0, 0.067),
        0px 0px 15.7px rgba(0, 0, 0, 0.083),
        0px 0px 43px rgba(0, 0, 0, 0.12);
    transition: all 0.3s linear;
}