.search-bg-image {
    width: 100%;
    height: auto;
    margin-top: -12px;
}
.search-order-areas {
    text-align: center;
    margin-top: -6%;
}
.search-order-input {
    width: 200px;
    display: inline-block;
    border-radius: 5px;
    opacity: 0.6;
}
.layui-btn-primary {
    border-radius: 5px;
    opacity: 0.6
}
.product-list {
    width: 94%;
    margin-left: 3%;
}
.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    width: 94%;
    margin: 0 auto 20px auto;
    border: 1px solid #dbdbdb;
}
.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #FFF;
}
.product-info {
    padding: 12px 15px;
}
.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-introduction {
    font-size:12px;
    color:#888;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-price {
    color: #049ADA;
    font-size: 18px;
    font-weight: bold;
}
.product-price small {
    font-size: 12px;
    font-weight: normal;
    text-decoration: line-through;
    color: #999;
    margin-left: 6px;
}
.order-empty-tip {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    color: #999;
}
.product-info {
    background-image: url(../images/detail-bg-mobile.jpg);
    padding-top: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* 分页样式 */
.pagination-container {
    text-align: center;
    margin: 30px 0 20px;
    padding: 10px;
    background: transparent;
}
/* 商品列表区域最小高度，避免分页跳动 */
#productListContainer {
    min-height: 500px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .search-bg-image {
        margin-top: -13px;
        object-fit: cover;
    }
    .product-img {
        height: 180px;
    }
    .product-card {
        width: 96%;
    }
    .search-order-areas {
        margin-top: -116px;
        text-align: center;
        padding: 0 12px;
    }
    .product-card {
        width: calc(100% - 16px);
        margin: 0 auto 16px auto;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 30px;
    }
    .product-title {
        font-size: 14px;
        font-weight: 600;
    }
    .product-introduction {
        white-space: normal;          /* 允许换行 */
        display: -webkit-box;
        -webkit-line-clamp: 2;        /* 最多两行 */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .layui-layer-msg {
        width: 80% !important;
        margin-left: 10% !important;
        top: 354px !important;
        bottom: auto !important;
    }
}