/* ===== 搜索 ===== */
.product-search {
    overflow: hidden;
    margin-bottom: 30px;
}

.product-search-form-content {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -7.5px;
}

.product-search-form-content .form-group {
    padding: 7.5px;
}

.product-search-form-content .form-group:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-search-form-content .form-group:first-child input {
    width: 100%;
}


/* ===== 列表网格 ===== */
.list-pic-grid {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
}

.list-pic-item {
    padding: 15px;
    width: 33.33%;
}

.list-pic-img {
    background: #e6e6e6;
}


.list-pic-card {
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    background-color: #fff;
    position: relative;
}

.list-pic-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.06);
    box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}

.list-pic-card .thumb-wrapper {
    border-radius: 0 !important;
}

.list-pic-info {
    padding: 30px;
    overflow: hidden;
}

.list-pic-info-title {
    font-size: 18px; 
    position: relative;
    padding-bottom: 15px;
}

.list-pic-info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: #1261cd;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.list-pic-card:hover .list-pic-info-title::after {
    width: 100%;
}

.list-pic-info-desc {
    color: #999;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 42px;
}

@supports not (-webkit-line-clamp: 2) {
    .list-pic-info-desc {
        position: relative;
        max-height: 42px;
        overflow: hidden;
    }

    .list-pic-info-desc::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 20px;
        background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, #fff));
        background: -o-linear-gradient(left, transparent, #fff 20%);
        background: linear-gradient(to right, transparent, #fff 20%);
    }
}

/* ===== 992px适配 ===== */
@media (max-width: 992px) {

    .list-pic-content{
        overflow: hidden;
        background: #f6f6f6;
        padding: 30px 0;
    }
     

    .list-pic-grid { 
        padding:20px 0px;
        margin: 0px;
    }

    .list-pic-item {
        padding: 15px;
        width: 100%;
    }

    .list-pic-info {
        padding: 20px;
    }

    .list-pic-info-title {
        font-size: 17px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}