/*产品卡片*/
.product-card {
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 0;
}

.product-card:hover {
    border: 1px solid #22b8df;
}

.product-card a {
    text-decoration: none;
}

.product-card img {
    object-fit: cover;
}

.product-card img:hover {
    cursor: pointer;
    transition: all 3s linear;
    transition-property: all;
    transition-duration: 200ms;
    transition-timing-function: linear;
    transition-delay: 0s;
    transform: scale(1.1) !important;
}

.product-card-title {
    color: #404040;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.product-card-title:hover {
    text-decoration: underline;
}

.product-card-desc {
    color: #999;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.product.col-xs-6 {
    padding-left: 2px;
    padding-right: 2px;
}

.product.col-xs-6 .product-card {
    margin-bottom: 4px;
}

.product-advantage {
    line-height: 36px;
    color: #999999;
    font-size: 14px;
}

.product-detail {
    border: 1px solid #ececec;
    padding: 10px;
}

@media (min-width: 992px) {

    /*产品卡片*/
    .product-card {

    }


    .product.col-xs-6 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .product.col-xs-6 .product-card {
        margin-bottom: 20px;
    }

    .product-advantage {
        margin-top: 40px;
    }
}
