.product-item .card {
    border-radius: 3px;
    position: relative;
    padding: 12px;
    margin: 0 auto 20px;
    -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    border: 1px solid #eee;
    min-height: 250px;
    overflow: hidden;
    background-color: #fff;
}
.product-item .card .thumb {
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    margin: -12px;
}
.product-item .card .thumb > .preview-link::before {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.product-item .card .thumb > .quickview-link {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    line-height: 40px;
    text-align: center;
    z-index: 10;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.product-item .card .thumb:hover .preview-link::before {
    opacity: 1;
}
.product-item .card .thumb:hover .quickview-link {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.product-item .card:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item .card:hover .operate .pull-right {
    display: block;
}
.product-item .card .image {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    padding-bottom: 75%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.product-item .card .title {
    padding-top: 10px;
}
.product-item .card h2 {
    color: #000;
    padding: 0;
    margin-bottom: 5px;
    height: 24px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
.product-item .card .operate {
    height: 31px;
    overflow: hidden;
}
.product-item .card .operate .pull-right {
    display: none;
}

.text-gray {
    color: #d2d6de !important;
}
.mt-1 {
    margin-top: 5px !important;
}
.ml-2 {
    margin-left: 10px !important;
}
.embed-responsive img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 0;
}
.btn {
    font-size: 12px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
    color: #fff;
    background-color: #0062cc;
    border-color: #0062cc;
}
