/* ========================================
   装卸师傅列表页样式 - Blacc深色主题
   遵循Figma设计稿不规则布局风格
   ======================================== */

/* === CSS变量 === */
:root {
    --zh-bg-dark: #0a0a0a;
    --zh-bg-card: #111111;
    --zh-bg-card-hover: #1a1a1a;
    --zh-border: #222222;
    --zh-border-light: #333333;
    --zh-text-white: #ffffff;
    --zh-text-gray: #888888;
    --zh-text-muted: #666666;
    --zh-primary: #e52e2e;
    --zh-primary-light: #ff4444;
    --zh-primary-dark: #c92626;
    --zh-radius-sm: 12px;
    --zh-radius-md: 20px;
    --zh-radius-lg: 28px;
    --zh-radius-xl: 40px;
    --zh-radius-pill: 60px;
    --zh-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --zh-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --zh-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   装卸师傅Hero区域 - 不规则两栏布局
   ======================================== */
.zh_mer_hero {
    background: var(--zh-bg-dark);
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

/* 背景装饰 */
.zh_mer_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.zh_mer_deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.zh_mer_deco_1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 46, 46, 0.3) 0%, transparent 70%);
    top: -150px;
    right: 10%;
}

.zh_mer_deco_2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 46, 46, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
}

.zh_mer_deco_3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: 30%;
    left: 40%;
}

/* Hero网格布局 */
.zh_mer_hero_grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 左侧信息区 */
.zh_mer_hero_left {
    max-width: 560px;
}

/* 面包屑导航 */
.zh_mer_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    margin-bottom: 32px;
}

.zh_mer_breadcrumb a {
    color: var(--zh-text-gray);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_breadcrumb a:hover {
    color: var(--zh-primary);
}

.zh_mer_breadcrumb span {
    color: var(--zh-text-muted);
}

.zh_mer_breadcrumb_current {
    color: var(--zh-text-white) !important;
    font-weight: 500;
}

/* Hero标题 */
.zh_mer_hero_title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--zh-text-white);
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.zh_mer_hero_highlight {
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zh_mer_hero_desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--zh-text-gray);
    margin: 0 0 40px 0;
}

/* 搜索框 */
.zh_mer_search_form {
    width: 100%;
}

.zh_mer_search_box {
    display: flex;
    align-items: center;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    padding: 6px 6px 6px 24px;
    transition: var(--zh-transition);
}

.zh_mer_search_box:focus-within {
    border-color: var(--zh-primary);
    box-shadow: 0 0 0 4px rgba(229, 46, 46, 0.1);
}

.zh_mer_search_box i {
    color: var(--zh-text-muted);
    font-size: 16px;
    margin-right: 12px;
}

.zh_mer_search_box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--zh-text-white);
    font-size: 15px;
    padding: 12px 0;
}

.zh_mer_search_box input::placeholder {
    color: var(--zh-text-muted);
}

.zh_mer_search_box button {
    padding: 14px 32px;
    background: var(--zh-primary);
    color: var(--zh-text-white);
    border: none;
    border-radius: var(--zh-radius-pill);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--zh-transition);
}

.zh_mer_search_box button:hover {
    background: var(--zh-primary-light);
    transform: scale(1.02);
}

/* 右侧统计卡片区 */
.zh_mer_hero_right {
    display: flex;
    justify-content: center;
}

.zh_mer_stats_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.zh_mer_stat_card {
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--zh-transition);
}

.zh_mer_stat_card:hover {
    transform: translateY(-4px);
    border-color: var(--zh-border-light);
    box-shadow: var(--zh-shadow);
}

.zh_mer_stat_card_main {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-color: var(--zh-primary);
}

.zh_mer_stat_card_main:hover {
    border-color: var(--zh-primary-light);
}

.zh_mer_stat_icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_mer_stat_icon i {
    font-size: 22px;
    color: var(--zh-text-white);
}

.zh_mer_stat_card:not(.zh_mer_stat_card_main) .zh_mer_stat_icon {
    background: rgba(229, 46, 46, 0.15);
}

.zh_mer_stat_card:not(.zh_mer_stat_card_main) .zh_mer_stat_icon i {
    color: var(--zh-primary);
}

.zh_mer_stat_num {
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.zh_mer_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.zh_mer_stat_card:not(.zh_mer_stat_card_main) .zh_mer_stat_label {
    color: var(--zh-text-gray);
}

/* ========================================
   工具栏区域
   ======================================== */
.zh_mer_toolbar_section {
    background: var(--zh-bg-dark);
    padding: 0 5%;
    border-bottom: 1px solid var(--zh-border);
}

.zh_mer_toolbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.zh_mer_toolbar_left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_mer_result_text {
    font-size: 15px;
    color: var(--zh-text-gray);
}

.zh_mer_result_text strong {
    color: var(--zh-primary);
    font-weight: 700;
}

.zh_mer_keyword {
    color: var(--zh-text-white);
    font-weight: 500;
}

.zh_mer_toolbar_right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_mer_sort_btns {
    display: flex;
    gap: 8px;
}

.zh_mer_sort_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    color: var(--zh-text-gray);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_sort_btn:hover {
    color: var(--zh-text-white);
    border-color: var(--zh-border-light);
}

.zh_mer_sort_btn.active {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-text-white);
}

/* ========================================
   装卸师傅列表主区域
   ======================================== */
.zh_mer_main {
    background: var(--zh-bg-dark);
    padding: 60px 5% 80px;
    min-height: 50vh;
}

/* 装卸师傅卡片网格 - 错位布局 */
.zh_mer_grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* 装卸师傅卡片 */
.zh_mer_card {
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--zh-transition);
}

.zh_mer_card:hover {
    transform: translateY(-8px);
    border-color: var(--zh-primary);
    box-shadow: 0 20px 50px rgba(229, 46, 46, 0.15);
}

/* 特色卡片 - 每5个第一个 */
.zh_mer_card_featured {
    grid-column: span 2;
    flex-direction: row;
    text-align: left;
    padding: 36px 40px;
    gap: 32px;
}

.zh_mer_card_featured .zh_mer_card_avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.zh_mer_card_featured .zh_mer_card_body {
    flex: 1;
    align-items: flex-start;
}

.zh_mer_card_featured .zh_mer_card_name {
    font-size: 22px;
}

.zh_mer_card_featured .zh_mer_card_footer {
    position: absolute;
    right: 40px;
    bottom: 36px;
}

/* 认证徽章 */
.zh_mer_card_badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(229, 46, 46, 0.15);
    border-radius: var(--zh-radius-pill);
    z-index: 2;
}

.zh_mer_card_badge i {
    font-size: 10px;
    color: var(--zh-primary);
}

.zh_mer_card_badge span {
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-primary);
}

/* 头像 */
.zh_mer_card_avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--zh-border);
    margin-bottom: 20px;
    transition: var(--zh-transition);
}

.zh_mer_card:hover .zh_mer_card_avatar {
    border-color: var(--zh-primary);
}

.zh_mer_card_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 卡片内容 */
.zh_mer_card_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.zh_mer_card_name {
    font-size: 18px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 14px 0;
    transition: var(--zh-transition);
}

.zh_mer_card:hover .zh_mer_card_name {
    color: var(--zh-primary);
}

/* 标签 */
.zh_mer_card_tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.zh_mer_tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--zh-radius-pill);
    font-size: 12px;
    color: var(--zh-text-gray);
}

.zh_mer_tag i {
    font-size: 10px;
}

.zh_mer_tag_primary {
    background: rgba(229, 46, 46, 0.12);
    color: var(--zh-primary);
}

/* 简介 */
.zh_mer_card_desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--zh-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 卡片底部 */
.zh_mer_card_footer {
    margin-top: auto;
    padding-top: 20px;
}

.zh_mer_card_view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-text-gray);
    transition: var(--zh-transition);
}

.zh_mer_card_view i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.zh_mer_card:hover .zh_mer_card_view {
    color: var(--zh-primary);
}

.zh_mer_card:hover .zh_mer_card_view i {
    transform: translateX(4px);
}

/* Hover遮罩 */
.zh_mer_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 46, 46, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--zh-transition);
    pointer-events: none;
}

.zh_mer_card:hover .zh_mer_card_overlay {
    opacity: 1;
}

/* ========================================
   分页样式
   ======================================== */
.zh_mer_pagination {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.zh_mer_pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zh_mer_pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-sm);
    color: var(--zh-text-gray);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_pagination .page-link:hover {
    background: var(--zh-bg-card-hover);
    border-color: var(--zh-border-light);
    color: var(--zh-text-white);
}

.zh_mer_pagination .page-item.active .page-link {
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    color: var(--zh-text-white);
}

.zh_mer_pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    color: var(--zh-text-muted);
    cursor: not-allowed;
}

/* ========================================
   空状态
   ======================================== */
.zh_mer_empty {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-xl);
}

.zh_mer_empty_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: rgba(229, 46, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_mer_empty_icon i {
    font-size: 40px;
    color: var(--zh-primary);
}

.zh_mer_empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 12px 0;
}

.zh_mer_empty p {
    font-size: 15px;
    color: var(--zh-text-gray);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.zh_mer_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--zh-primary);
    color: var(--zh-text-white);
    border-radius: var(--zh-radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_empty_btn:hover {
    background: var(--zh-primary-light);
    transform: translateY(-2px);
    color: var(--zh-text-white);
}

/* ========================================
   热门装卸师傅推荐区域
   ======================================== */
.zh_mer_recommend {
    background: var(--zh-bg-dark);
    padding: 80px 5%;
    border-top: 1px solid var(--zh-border);
}

.zh_mer_recommend_head {
    max-width: 1400px;
    margin: 0 auto 48px;
    text-align: center;
}

.zh_mer_recommend_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.zh_mer_recommend_tag {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(229, 46, 46, 0.15);
    border-radius: var(--zh-radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--zh-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zh_mer_recommend_title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-text-white);
    margin: 0;
}

.zh_mer_recommend_desc {
    font-size: 16px;
    color: var(--zh-text-gray);
    margin: 0;
}

.zh_mer_recommend_grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zh_mer_recommend_card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--zh-bg-card);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_recommend_card:hover {
    border-color: var(--zh-primary);
    background: var(--zh-bg-card-hover);
    transform: translateX(8px);
}

.zh_mer_recommend_avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--zh-border);
    flex-shrink: 0;
    transition: var(--zh-transition);
}

.zh_mer_recommend_card:hover .zh_mer_recommend_avatar {
    border-color: var(--zh-primary);
}

.zh_mer_recommend_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_mer_recommend_info {
    flex: 1;
}

.zh_mer_recommend_info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-text-white);
    margin: 0 0 8px 0;
    transition: var(--zh-transition);
}

.zh_mer_recommend_card:hover .zh_mer_recommend_info h4 {
    color: var(--zh-primary);
}

.zh_mer_recommend_meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zh_mer_recommend_stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--zh-text-gray);
}

.zh_mer_recommend_stat i {
    font-size: 11px;
    color: var(--zh-primary);
}

.zh_mer_recommend_badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #10b981;
}

.zh_mer_recommend_badge i {
    font-size: 10px;
}

.zh_mer_recommend_arrow {
    font-size: 14px;
    color: var(--zh-text-muted);
    transition: var(--zh-transition);
}

.zh_mer_recommend_card:hover .zh_mer_recommend_arrow {
    color: var(--zh-primary);
    transform: translateX(4px);
}

/* ========================================
   底部CTA区域
   ======================================== */
.zh_mer_cta {
    background: var(--zh-bg-dark);
    padding: 100px 5%;
    border-top: 1px solid var(--zh-border);
}

.zh_mer_cta_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 80px;
    background: linear-gradient(135deg, var(--zh-primary) 0%, var(--zh-primary-dark) 100%);
    border-radius: var(--zh-radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.zh_mer_cta_inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.zh_mer_cta_content {
    position: relative;
    z-index: 1;
}

.zh_mer_cta_content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--zh-text-white);
    margin: 0 0 12px 0;
}

.zh_mer_cta_content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.zh_mer_cta_btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.zh_mer_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--zh-text-white);
    border-radius: var(--zh-radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_mer_cta_btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--zh-text-white);
    transform: translateY(-2px);
}

.zh_mer_cta_btn_primary {
    background: var(--zh-text-white);
    border-color: var(--zh-text-white);
    color: var(--zh-primary);
}

.zh_mer_cta_btn_primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--zh-primary-dark);
}

/* ========================================
   响应式设计
   ======================================== */

/* 大屏幕 */
@media (max-width: 1400px) {
    .zh_mer_hero_title {
        font-size: 48px;
    }

    .zh_mer_grid {
        gap: 24px;
    }
}

/* 中等屏幕 */
@media (max-width: 1200px) {
    .zh_mer_hero {
        padding: 120px 5% 60px;
    }

    .zh_mer_hero_grid {
        gap: 50px;
    }

    .zh_mer_hero_title {
        font-size: 42px;
    }

    .zh_mer_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_mer_card_featured {
        grid-column: span 2;
    }

    .zh_mer_recommend_grid {
        grid-template-columns: 1fr;
    }
}

/* 平板 */
@media (max-width: 992px) {
    .zh_mer_hero {
        padding: 100px 5% 50px;
        min-height: auto;
    }

    .zh_mer_hero_grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zh_mer_hero_left {
        max-width: 100%;
        text-align: center;
    }

    .zh_mer_breadcrumb {
        margin-left: auto;
        margin-right: auto;
    }

    .zh_mer_hero_title {
        font-size: 40px;
    }

    .zh_mer_hero_desc {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .zh_mer_search_form {
        max-width: 500px;
        margin: 0 auto;
    }

    .zh_mer_hero_right {
        justify-content: center;
    }

    .zh_mer_stats_cards {
        max-width: 350px;
    }

    .zh_mer_toolbar {
        flex-direction: column;
        text-align: center;
    }

    .zh_mer_cta_inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .zh_mer_cta_btns {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 小平板/大手机 */
@media (max-width: 768px) {
    .zh_mer_hero {
        padding: 90px 5% 40px;
    }

    .zh_mer_hero_title {
        font-size: 32px;
    }

    .zh_mer_hero_desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .zh_mer_search_box {
        padding: 4px 4px 4px 16px;
    }

    .zh_mer_search_box button {
        padding: 12px 24px;
    }

    .zh_mer_stats_cards {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .zh_mer_stat_card_main {
        grid-column: span 1;
    }

    .zh_mer_stat_num {
        font-size: 28px;
    }

    .zh_mer_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zh_mer_card_featured {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        padding: 32px 28px;
    }

    .zh_mer_card_featured .zh_mer_card_avatar {
        margin-bottom: 20px;
    }

    .zh_mer_card_featured .zh_mer_card_body {
        align-items: center;
    }

    .zh_mer_card_featured .zh_mer_card_footer {
        position: static;
    }

    .zh_mer_recommend_title h2 {
        font-size: 28px;
    }

    .zh_mer_recommend_card {
        padding: 20px 24px;
    }

    .zh_mer_cta {
        padding: 60px 5%;
    }

    .zh_mer_cta_inner {
        padding: 40px 24px;
    }

    .zh_mer_cta_content h2 {
        font-size: 24px;
    }

    .zh_mer_cta_btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* 手机 */
@media (max-width: 480px) {
    .zh_mer_hero {
        padding: 80px 4% 36px;
    }

    .zh_mer_hero_title {
        font-size: 28px;
    }

    .zh_mer_breadcrumb {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .zh_mer_hero_desc {
        font-size: 15px;
    }

    .zh_mer_search_box input {
        font-size: 14px;
    }

    .zh_mer_search_box button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .zh_mer_main {
        padding: 40px 4% 60px;
    }

    .zh_mer_card {
        padding: 28px 20px;
        border-radius: var(--zh-radius-md);
    }

    .zh_mer_card_avatar {
        width: 72px;
        height: 72px;
    }

    .zh_mer_card_name {
        font-size: 16px;
    }

    .zh_mer_tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    .zh_mer_empty {
        padding: 60px 24px;
        border-radius: var(--zh-radius-lg);
    }

    .zh_mer_empty_icon {
        width: 80px;
        height: 80px;
    }

    .zh_mer_empty_icon i {
        font-size: 32px;
    }

    .zh_mer_empty h3 {
        font-size: 20px;
    }

    .zh_mer_recommend {
        padding: 50px 4%;
    }

    .zh_mer_recommend_title {
        flex-direction: column;
        gap: 10px;
    }

    .zh_mer_recommend_title h2 {
        font-size: 24px;
    }

    .zh_mer_recommend_card {
        padding: 18px 20px;
        gap: 16px;
    }

    .zh_mer_recommend_avatar {
        width: 52px;
        height: 52px;
    }

    .zh_mer_recommend_info h4 {
        font-size: 15px;
    }

    .zh_mer_recommend_meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .zh_mer_pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .zh_mer_cta_btns {
        flex-direction: column;
        width: 100%;
    }

    .zh_mer_cta_btn {
        width: 100%;
        justify-content: center;
    }
}