/* ────────────────────────────────────────
   product-list.css — 分类页产品列表样式
   ──────────────────────────────────────── */

/* 产品网格容器 */
.themes_product_search { width: 100%; }

.themes_prod_ct {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

/* 产品卡片 */
.themes_prod {
    width: 25%;
    padding: 0 10px 30px;
    box-sizing: border-box;
    text-align: center;
}
.themes_prod_columns_4 { width: 25%; }
.themes_prod_columns_3 { width: 33.333%; }
.themes_prod_columns_5 { width: 20%; }

/* 产品图片 */
.themes_prod_img { margin-bottom: 12px; }
.themes_prod_img a { display: block; }
.compute_item_img { position: relative; overflow: hidden; width: 100%; }
.compute_process_img { position: relative; width: 100%; }
.compute_process_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品标题 */
.themes_prod_title { margin-bottom: 8px; }
.themes_prod_title a { text-decoration: none; }
.themes_prod_title h3 {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 产品价格 */
.themes_prod_price { margin-bottom: 10px; }
.themes_prod_price .money {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* 空状态 */
.no_product { text-align: center; padding: 80px 20px; }
.no_product .empty_img { margin-bottom: 20px; }
.no_product .empty_img img { width: 80px; opacity: 0.3; }
.no_product p { font-size: 15px; color: #999; }

/* 分页 */
.themes_pagination {
    display: flex;
    justify-content: center;
    padding: 40px 0 60px;
    clear: both;
}
.themes_pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 4px;
    padding: 0 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all .2s;
    background: #fff;
    border-radius: 4px;
}
.themes_pagination a:hover {
    border-color: #22c55e;
    color: #22c55e;
}
.themes_pagination a.cur {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* 页面主内容区 */
.themes_products .container_width_1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 分类页和详情页 body 顶部偏移：header 固定定位占位 */
body.themes_products,
body.themes_products_detail {
    padding-top: 150px;
}
.themes_products_content {
    padding: 40px 0 20px;
}

/* 响应式 */
@media (max-width: 768px) {
    .themes_prod { width: 50%; }
    .themes_prod_columns_4 { width: 50%; }
}
@media (max-width: 480px) {
    .themes_prod { width: 100%; }
}
