/* ============================================================
   听心树信息发布平台 — 首页样式 v4.0
   依赖 layouts/app.blade.php 中的 :root 变量
   ============================================================ */

/* ============================================================
   板块 1 — Hero 分栏 + 悬浮快捷条
   ============================================================ */
.zh_hero {
    position: relative;
    background-color: #F7FBF9;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 56px 0 92px;
    overflow: hidden;
}
.zh_hero_veil {
    position: absolute;
    inset: 0;
    background: var(--zh-grad-hero);
    pointer-events: none;
}
.zh_hero_inner { position: relative; z-index: 2; }
.zh_hero_text { max-width: 620px; }

.zh_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--zh-border);
    color: var(--zh-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: var(--zh-radius-pill);
    margin-bottom: 18px;
    box-shadow: var(--zh-shadow-sm);
}
.zh_hero_badge i { color: var(--zh-leaf-deep); font-size: 12px; }

.zh_hero_title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.28;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 14px;
    letter-spacing: -.015em;
}
.zh_hero_title span {
    display: block;
    color: var(--zh-primary);
    font-size: .74em;
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: .01em;
}

.zh_hero_desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--zh-text-body);
    margin: 0 0 26px;
    max-width: 520px;
}

/* Hero 大搜索框 */
.zh_hero_search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: var(--zh-radius-pill);
    padding: 6px 6px 6px 20px;
    max-width: 560px;
    box-shadow: 0 10px 34px rgba(45, 110, 100, .13);
    border: 1.5px solid transparent;
    transition: all .25s ease;
}
.zh_hero_search:focus-within { border-color: var(--zh-primary-mid); box-shadow: 0 14px 40px rgba(45, 110, 100, .2); }
.zh_hero_search_cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--zh-primary);
    white-space: nowrap;
}
.zh_hero_search_cat i { font-size: 12px; }
.zh_hero_search_div { width: 1px; height: 18px; background: var(--zh-border); flex-shrink: 0; }
.zh_hero_search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--zh-text-primary);
    padding: 10px 0;
}
.zh_hero_search input::placeholder { color: var(--zh-text-muted); }
.zh_hero_search button {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--zh-grad-coral);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}
.zh_hero_search button:hover { transform: scale(1.07); }

.zh_hero_tags {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--zh-text-muted);
}
.zh_hero_tags a {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--zh-border);
    color: var(--zh-text-body);
    padding: 4px 13px;
    border-radius: var(--zh-radius-pill);
    font-size: 12.5px;
    transition: all .22s ease;
}
.zh_hero_tags a:hover { background: var(--zh-primary); border-color: var(--zh-primary); color: #fff; }

/* 悬浮快捷入口条 */
.zh_quickbar_wrap { position: relative; z-index: 5; margin-top: -56px; }
.zh_quickbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--zh-border);
    gap: 1px;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(45, 110, 100, .12);
}
.zh_quick_item {
    background: #fff;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: background .25s ease;
}
.zh_quick_item:hover { background: var(--zh-primary-ghost); }
.zh_quick_icon {
    width: 42px; height: 42px;
    border-radius: 13px;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .25s ease;
}
.zh_quick_item:hover .zh_quick_icon { background: var(--zh-primary); color: #fff; }
.zh_quick_accent .zh_quick_icon { background: var(--zh-coral-soft); color: var(--zh-coral-hover); }
.zh_quick_accent:hover .zh_quick_icon { background: var(--zh-coral-hover); color: #fff; }
.zh_quick_text { display: flex; flex-direction: column; min-width: 0; }
.zh_quick_text b {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_quick_text i {
    font-style: normal;
    font-size: 12.5px;
    color: var(--zh-text-muted);
    line-height: 1.5;
}

/* ============================================================
   通用：分类标签 / 缩略图占位
   ============================================================ */
.zh_cat_tag {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 600;
    font-style: normal;
    padding: 3px 11px;
    border-radius: var(--zh-radius-pill);
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    white-space: nowrap;
    line-height: 1.7;
}
.zh_thumb_ph {
    width: 100%; height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--zh-primary-soft);
    color: var(--zh-primary-mid);
    font-size: 26px;
}

/* ============================================================
   板块 2 — 热门推荐 Bento 不规则网格
   ============================================================ */
.zh_bento {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 208px;
    gap: 16px;
}
.zh_bento_card {
    position: relative;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    background: var(--zh-bg-tint);
    border: 1px solid var(--zh-border);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.zh_bento_card:hover { transform: translateY(-5px); box-shadow: var(--zh-shadow-hover); }

/* 格位：① 2×2 大卡 ② 1×2 竖卡 ③④ 1×1 小卡 ⑤ 通栏横卡 */
.zh_bento_1 { grid-column: span 2; grid-row: span 2; }
.zh_bento_2 { grid-column: span 1; grid-row: span 2; }
.zh_bento_3 { grid-column: span 1; grid-row: span 1; }
.zh_bento_4 { grid-column: span 1; grid-row: span 1; }
.zh_bento_5 { grid-column: 1 / -1;  grid-row: span 1; flex-direction: row; }

.zh_bento_thumb {
    flex: 1 1 auto;
    min-height: 0;
    background: var(--zh-primary-soft);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zh_bento_thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}
.zh_bento_card:hover .zh_bento_thumb img { transform: scale(1.045); }

.zh_bento_5 .zh_bento_thumb { flex: 0 0 28%; height: 100%; }

.zh_bento_body {
    flex: 0 0 auto;
    background: #fff;
    padding: 14px 16px 15px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.zh_bento_5 .zh_bento_body { flex: 1 1 auto; justify-content: center; padding: 16px 24px; }
.zh_bento_5 .zh_bento_body h3 { font-size: 16px; -webkit-line-clamp: 1; }

/* 1×1 小卡：内容精简，把高度让给图片 */
.zh_bento_3 .zh_bento_body,
.zh_bento_4 .zh_bento_body { padding: 11px 13px 12px; gap: 0; }
.zh_bento_3 .zh_cat_tag,
.zh_bento_4 .zh_cat_tag,
.zh_bento_3 .zh_bento_meta,
.zh_bento_4 .zh_bento_meta { display: none; }
.zh_bento_3 .zh_bento_body h3,
.zh_bento_4 .zh_bento_body h3 { font-size: 13.5px; line-height: 1.5; }

.zh_bento_body h3 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--zh-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_1 .zh_bento_body h3 { font-size: 17px; -webkit-line-clamp: 2; }
.zh_bento_body .zh_cat_tag { align-self: flex-start; }
.zh_bento_meta {
    font-size: 12.5px;
    color: var(--zh-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zh_bento_meta i { font-size: 11px; color: var(--zh-primary-mid); }

.zh_bento_rank {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 3;
    background: var(--zh-grad-coral);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 12px;
    border-radius: var(--zh-radius-pill);
    box-shadow: 0 6px 16px rgba(226, 122, 96, .35);
}
.zh_bento_rank_plain {
    background: rgba(255, 255, 255, .92);
    color: var(--zh-text-body);
    font-weight: 600;
    box-shadow: var(--zh-shadow-sm);
}
.zh_bento_rank_plain i { color: var(--zh-primary-mid); margin-right: 3px; }

/* ============================================================
   板块 3 — 浏览排行榜 + 推荐设计师
   ============================================================ */
.zh_rank_layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 30px;
    align-items: flex-start;
}
.zh_col_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.zh_col_title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: var(--zh-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.zh_col_title i { color: var(--zh-primary); font-size: 16px; }
.zh_col_more {
    font-size: 13.5px;
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.zh_col_more i { font-size: 11px; transition: transform .22s ease; }
.zh_col_more:hover i { transform: translateX(3px); }

.zh_rank_list {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
}
.zh_rank_row {
    display: grid;
    grid-template-columns: 42px 74px minmax(0, 1fr) 92px;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--zh-border);
    transition: background .22s ease;
}
.zh_rank_row:last-child { border-bottom: none; }
.zh_rank_row:hover { background: var(--zh-primary-ghost); }

.zh_rank_no {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    letter-spacing: .5px;
}
.zh_rank_no.zh_rank_top {
    background: var(--zh-grad-coral);
    color: #fff;
    box-shadow: 0 5px 14px rgba(226, 122, 96, .3);
}
.zh_rank_thumb {
    width: 74px; height: 56px;
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    background: var(--zh-primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-primary-mid);
    flex-shrink: 0;
}
.zh_rank_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_rank_main { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.zh_rank_title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_rank_row:hover .zh_rank_title { color: var(--zh-primary); }
.zh_rank_sub {
    font-size: 12.5px;
    color: var(--zh-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.zh_rank_sub em {
    font-style: normal;
    background: var(--zh-leaf-soft);
    color: var(--zh-leaf-deep);
    padding: 1px 9px;
    border-radius: var(--zh-radius-pill);
    font-size: 11.5px;
}
.zh_rank_sub i { font-size: 11px; color: var(--zh-primary-mid); margin-right: -4px; }
.zh_rank_view { text-align: right; }
.zh_rank_view b {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--zh-text-primary);
    line-height: 1.4;
    font-variant-numeric: tabular-nums;
}
.zh_rank_bar {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: var(--zh-border);
    overflow: hidden;
    margin-top: 5px;
}
.zh_rank_bar em {
    display: block;
    height: 100%;
    border-radius: 2px;
    background: var(--zh-grad-coral);
}

/* 右栏：推荐设计师 */
.zh_rank_side {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 20px 20px 16px;
}
.zh_rank_side .zh_col_head { margin-bottom: 12px; }
.zh_side_list { display: flex; flex-direction: column; }
.zh_side_row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--zh-border);
}
.zh_side_row:last-child { border-bottom: none; }
.zh_side_avatar { width: 44px; height: 44px; font-size: 17px; }
.zh_side_main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.zh_side_name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.zh_verified {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-coral-hover);
    background: var(--zh-coral-soft);
    padding: 2px 8px;
    border-radius: var(--zh-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}
.zh_verified i { font-size: 10px; }
.zh_side_desc {
    font-size: 12.5px;
    color: var(--zh-text-muted);
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zh_side_arrow { font-size: 11px; color: var(--zh-text-muted); transition: all .22s ease; }
.zh_side_row:hover .zh_side_name { color: var(--zh-primary); }
.zh_side_row:hover .zh_side_arrow { color: var(--zh-primary); transform: translateX(3px); }
.zh_side_all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    padding: 11px;
    border-radius: var(--zh-radius-pill);
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    font-size: 13.5px;
    font-weight: 600;
    transition: all .25s ease;
}
.zh_side_all:hover { background: var(--zh-primary); color: #fff; }
.zh_side_all i { font-size: 11px; }

/* ============================================================
   板块 4 — 栏目 Tab 信息流 + 通用信息卡
   ============================================================ */
.zh_tab_bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.zh_tab_bar label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: var(--zh-radius-pill);
    border: 1px solid var(--zh-border);
    background: #fff;
    font-size: 14px;
    color: var(--zh-text-body);
    cursor: pointer;
    transition: all .22s ease;
    user-select: none;
}
.zh_tab_bar label:hover { border-color: var(--zh-primary-mid); color: var(--zh-primary); }
.zh_tab_bar label em {
    font-style: normal;
    font-size: 11.5px;
    background: var(--zh-bg-tint);
    color: var(--zh-text-muted);
    padding: 1px 8px;
    border-radius: var(--zh-radius-pill);
}
.zh_tab_panels .zh_info_grid { display: none; }

.zh_info_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.zh_info_card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.zh_info_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--zh-shadow-hover);
    border-color: transparent;
}
.zh_info_thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--zh-primary-soft);
    overflow: hidden;
}
.zh_info_thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}
.zh_info_card:hover .zh_info_thumb img { transform: scale(1.04); }
.zh_info_cat {
    position: absolute;
    top: 11px; left: 11px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--zh-shadow-sm);
}
.zh_info_body {
    padding: 15px 17px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.zh_info_title {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--zh-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.zh_info_card:hover .zh_info_title { color: var(--zh-primary); }
.zh_info_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--zh-border);
    font-size: 12.5px;
    color: var(--zh-text-muted);
}
.zh_info_by { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
.zh_info_by em {
    width: 22px; height: 22px;
    font-size: 11px;
    font-style: normal;
}
.zh_info_view { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.zh_info_view i { font-size: 11px; }

/* ============================================================
   板块 5 — 平台介绍图文
   ============================================================ */
.zh_sec_about { background: var(--zh-bg); }
.zh_about_grid {
    display: grid;
    grid-template-columns: 46% minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}
.zh_about_media { position: relative; }
.zh_about_media img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--zh-radius-leaf);
    box-shadow: var(--zh-shadow-card);
}
.zh_about_shape {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: var(--zh-radius-leaf);
    background: rgba(61, 139, 128, .1);
    z-index: 1;
}
.zh_about_float {
    position: absolute;
    z-index: 3;
    left: -14px; top: 26px;
    background: #fff;
    border-radius: var(--zh-radius-pill);
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-primary);
    box-shadow: 0 10px 26px rgba(45, 110, 100, .16);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.zh_about_float i { color: var(--zh-leaf-deep); }

.zh_about_title {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.42;
    color: var(--zh-text-primary);
    margin: 0 0 16px;
    letter-spacing: -.01em;
}
.zh_about_desc {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--zh-text-body);
    margin: 0 0 26px;
}
.zh_about_points {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 22px;
    margin-bottom: 28px;
}
.zh_about_point { display: flex; gap: 12px; align-items: flex-start; }
.zh_point_icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.zh_point_text { display: flex; flex-direction: column; min-width: 0; }
.zh_point_text b { font-size: 14px; font-weight: 600; color: var(--zh-text-primary); line-height: 1.5; }
.zh_point_text i { font-style: normal; font-size: 12.5px; color: var(--zh-text-muted); line-height: 1.6; }

.zh_about_link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-primary);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--zh-primary-soft);
    transition: all .25s ease;
}
.zh_about_link:hover { border-color: var(--zh-coral); color: var(--zh-coral-hover); }
.zh_about_link i { font-size: 12px; transition: transform .25s ease; }
.zh_about_link:hover i { transform: translateX(4px); }

/* ============================================================
   板块 6 — 为您推荐（横长卡）
   ============================================================ */
.zh_pick_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}
.zh_pick_card {
    display: flex;
    align-items: stretch;
    gap: 16px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid transparent;
    border-radius: var(--zh-radius-lg);
    padding: 14px;
    transition: all .3s ease;
}
.zh_pick_card:hover {
    background: #fff;
    border-color: var(--zh-border);
    box-shadow: var(--zh-shadow-card);
    transform: translateY(-3px);
}
.zh_pick_thumb {
    width: 150px;
    flex-shrink: 0;
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    background: var(--zh-primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-primary-mid);
    font-size: 22px;
    aspect-ratio: 4 / 3;
}
.zh_pick_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_pick_body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.zh_pick_title {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.62;
    color: var(--zh-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_pick_card:hover .zh_pick_title { color: var(--zh-primary); }
.zh_pick_foot {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--zh-text-muted);
}
.zh_pick_by { display: inline-flex; align-items: center; gap: 5px; }
.zh_pick_by i { font-size: 11px; color: var(--zh-primary-mid); }
.zh_pick_go {
    align-self: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--zh-border-strong);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all .25s ease;
}
.zh_pick_card:hover .zh_pick_go {
    background: var(--zh-grad-coral);
    border-color: transparent;
    color: #fff;
}

/* ============================================================
   板块 7 — 入驻设计师墙
   ============================================================ */
.zh_wall_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
.zh_wall_card {
    position: relative;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 30px 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.zh_wall_card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zh-primary) 0%, var(--zh-leaf) 100%);
}
.zh_wall_card:hover { transform: translateY(-6px); box-shadow: var(--zh-shadow-hover); }
.zh_wall_avatar { width: 74px; height: 74px; font-size: 28px; }
.zh_wall_name { font-size: 16px; font-weight: 700; color: var(--zh-text-primary); }
.zh_wall_desc {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--zh-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}
.zh_wall_foot {
    width: 100%;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid var(--zh-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}
.zh_wall_foot em { font-style: normal; color: var(--zh-text-muted); }
.zh_wall_foot i { font-style: normal; color: var(--zh-primary); font-weight: 600; }
.zh_wall_foot i span { transition: transform .22s ease; display: inline-block; }
.zh_wall_card:hover .zh_wall_foot i span { transform: translateX(3px); }

/* ============================================================
   板块 8 — 平台优势 + 入驻流程（深青绿）
   ============================================================ */
.zh_sec_deep {
    position: relative;
    background: var(--zh-grad-deep);
    padding: 76px 0;
    overflow: hidden;
    color: rgba(234, 244, 241, .74);
}
.zh_deep_leaf {
    position: absolute;
    right: -120px; top: -120px;
    width: 460px; height: 460px;
    border-radius: 62% 38% 55% 45%;
    background: radial-gradient(circle at 38% 42%, rgba(155, 201, 138, .1), transparent 66%);
    pointer-events: none;
}
.zh_deep_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: flex-start;
}
.zh_deep_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--zh-leaf);
    background: rgba(255, 255, 255, .07);
    padding: 5px 15px;
    border-radius: var(--zh-radius-pill);
    margin-bottom: 16px;
}
.zh_deep_title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    line-height: 1.42;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -.01em;
}
.zh_deep_title_sm { font-size: clamp(20px, 2.2vw, 26px); }

.zh_adv_list { display: flex; flex-direction: column; }
.zh_adv_row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.zh_adv_row:last-child { border-bottom: none; }
.zh_adv_icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    color: var(--zh-leaf);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.zh_adv_text { display: flex; flex-direction: column; gap: 3px; }
.zh_adv_text b { font-size: 15.5px; font-weight: 600; color: #fff; }
.zh_adv_text i { font-style: normal; font-size: 13.5px; line-height: 1.8; color: rgba(234, 244, 241, .6); }

/* 竖向时间轴 */
.zh_steps {
    list-style: none;
    margin: 0 0 28px;
    padding: 0 0 0 6px;
    position: relative;
}
.zh_steps::before {
    content: "";
    position: absolute;
    left: 20px; top: 12px; bottom: 22px;
    width: 2px;
    background: rgba(255, 255, 255, .13);
}
.zh_step {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 24px;
}
.zh_step:last-child { padding-bottom: 0; }
.zh_step_dot {
    position: relative;
    z-index: 2;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--zh-grad-coral);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(23, 64, 58, 1);
}
.zh_step_text { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.zh_step_text b { font-size: 15px; font-weight: 600; color: #fff; }
.zh_step_text i { font-style: normal; font-size: 13.5px; line-height: 1.75; color: rgba(234, 244, 241, .58); }

/* ============================================================
   板块 9 — 最新发布（时间轴列表）
   ============================================================ */
.zh_sec_new { background: var(--zh-bg); }
.zh_new_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 46px;
}
.zh_new_row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--zh-border-strong);
}
.zh_new_date {
    flex-shrink: 0;
    width: 58px;
    text-align: center;
    background: var(--zh-primary-soft);
    border-radius: var(--zh-radius-sm);
    padding: 7px 0 6px;
    transition: all .25s ease;
}
.zh_new_date b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--zh-primary);
    line-height: 1.25;
    font-variant-numeric: tabular-nums;
}
.zh_new_date i {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--zh-primary-mid);
    line-height: 1.4;
}
.zh_new_row:hover .zh_new_date { background: var(--zh-primary); }
.zh_new_row:hover .zh_new_date b,
.zh_new_row:hover .zh_new_date i { color: #fff; }
.zh_new_title {
    flex: 1;
    min-width: 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--zh-text-primary);
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .22s ease;
}
.zh_new_row:hover .zh_new_title { color: var(--zh-primary); }

/* ============================================================
   板块 10 — FAQ + 联系卡
   ============================================================ */
.zh_faq_layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 44px;
    align-items: flex-start;
}
.zh_faq_item {
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all .25s ease;
    background: #fff;
}
.zh_faq_item[open] {
    border-color: transparent;
    background: var(--zh-primary-ghost);
    box-shadow: var(--zh-shadow-sm);
}
.zh_faq_item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
}
.zh_faq_item summary::-webkit-details-marker { display: none; }
.zh_faq_q {
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-text-primary);
    line-height: 1.6;
}
.zh_faq_item summary i {
    font-size: 12px;
    color: var(--zh-text-muted);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.zh_faq_item[open] summary i { transform: rotate(180deg); color: var(--zh-primary); }
.zh_faq_item[open] summary { position: relative; }
.zh_faq_item[open] summary::before {
    content: "";
    position: absolute;
    left: 0; top: 14px; bottom: 14px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--zh-coral);
}
.zh_faq_a {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--zh-text-body);
}

/* 联系卡 */
.zh_contact_card {
    background: linear-gradient(160deg, #EAF4F1 0%, #F6F2EC 100%);
    border-radius: var(--zh-radius-leaf);
    padding: 28px 28px 26px;
    position: sticky;
    top: 96px;
}
.zh_contact_head { margin-bottom: 14px; }
.zh_contact_head img { height: 44px; width: auto; }
.zh_contact_tip {
    margin: 0 0 20px;
    font-size: 13.5px;
    color: var(--zh-text-body);
    line-height: 1.75;
}
.zh_contact_list { list-style: none; margin: 0 0 22px; padding: 0; }
.zh_contact_list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid rgba(45, 110, 100, .1);
}
.zh_contact_list li:last-child { border-bottom: none; }
.zh_contact_list li > i {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .8);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.zh_contact_list li > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    font-size: 13.5px;
    color: var(--zh-text-primary);
    line-height: 1.65;
    word-break: break-all;
}
.zh_contact_list li em {
    font-style: normal;
    font-size: 11.5px;
    letter-spacing: 1px;
    color: var(--zh-text-muted);
}
.zh_contact_phone {
    font-size: 21px;
    font-weight: 700;
    color: var(--zh-coral-hover);
    letter-spacing: .4px;
    line-height: 1.3;
}
.zh_contact_phone:hover { color: var(--zh-coral); }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1180px) {
    .zh_wall_grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .zh_wall_grid .zh_wall_card:nth-child(5) { display: none; }
}
@media (max-width: 1024px) {
    .zh_hero { min-height: 460px; padding: 48px 0 84px; }
    .zh_hero_text { max-width: 100%; }
    .zh_hero_desc { max-width: 100%; }
    .zh_bento { grid-auto-rows: 190px; gap: 14px; }
    .zh_rank_layout { grid-template-columns: minmax(0, 1fr); gap: 26px; }
    .zh_info_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zh_about_grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .zh_about_media { max-width: 520px; }
    .zh_deep_grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
    .zh_sec_deep { padding: 60px 0; }
    .zh_faq_layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .zh_contact_card { position: static; }
    .zh_wall_grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .zh_wall_grid .zh_wall_card:nth-child(5) { display: flex; }
}
@media (max-width: 860px) {
    .zh_hero {
        background-position: 78% center;
        min-height: auto;
    }
    .zh_hero_veil { background: linear-gradient(180deg, rgba(247,251,249,.96) 0%, rgba(247,251,249,.9) 70%, rgba(247,251,249,.96) 100%); }
    .zh_quickbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zh_new_grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .zh_pick_grid { grid-template-columns: minmax(0, 1fr); }
    .zh_about_points { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 768px) {
    .zh_hero { padding: 36px 0 76px; }
    .zh_hero_search { padding: 5px 5px 5px 16px; gap: 8px; }
    .zh_hero_search_cat { display: none; }
    .zh_hero_search_div { display: none; }
    .zh_hero_search input { font-size: 14px; }
    .zh_quickbar_wrap { margin-top: -48px; }
    .zh_quick_item { padding: 15px 13px; gap: 10px; }
    .zh_quick_icon { width: 36px; height: 36px; font-size: 14px; border-radius: 11px; }
    .zh_quick_text b { font-size: 13.5px; }
    .zh_quick_text i { font-size: 11.5px; }

    /* Bento 全部改为单列等高卡 */
    .zh_bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; gap: 14px; }
    .zh_bento_card,
    .zh_bento_1, .zh_bento_2, .zh_bento_3, .zh_bento_4, .zh_bento_5 {
        grid-column: auto; grid-row: auto; flex-direction: row;
    }
    .zh_bento_thumb,
    .zh_bento_4 .zh_bento_thumb,
    .zh_bento_5 .zh_bento_thumb { flex: 0 0 132px; height: 108px; }
    .zh_bento_body { flex: 1; justify-content: center; padding: 12px 14px; }
    .zh_bento_1 .zh_bento_body h3 { font-size: 14.5px; }

    .zh_rank_row { grid-template-columns: 34px 62px minmax(0, 1fr); gap: 11px; padding: 13px 14px; }
    .zh_rank_view { display: none; }
    .zh_rank_thumb { width: 62px; height: 48px; }

    .zh_info_grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .zh_tab_bar label { padding: 8px 16px; font-size: 13.5px; }

    .zh_about_float { left: 8px; top: 12px; font-size: 12px; padding: 7px 14px; }
    .zh_about_shape { inset: 12px -12px -12px 12px; }

    .zh_pick_thumb { width: 112px; }
    .zh_pick_go { display: none; }

    .zh_wall_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .zh_wall_card { padding: 24px 14px 16px; }
    .zh_wall_avatar { width: 62px; height: 62px; font-size: 24px; }

    .zh_sec_deep { padding: 48px 0; }
    .zh_step_dot { box-shadow: 0 0 0 4px #1B4A43; }

    .zh_contact_card { padding: 24px 20px; border-radius: var(--zh-radius-lg); }
    .zh_contact_phone { font-size: 19px; }
}
