/* ============================================================
   览阅 · 服装服饰信息发布平台 — 首页样式 v3.0
   板块：① Hero 左文右图  ② 最新快讯条  ③ 不规则 Bento
        ④ 平台介绍图文    ⑤ 门户式双栏  ⑥ 服务商墙
        ⑦ 流程 + 问答     ⑧ CTA 通栏
   类名前缀：zh_
   ============================================================ */

/* ============================================================
   ① Hero — 左文右图分栏（深宝蓝底）
   ============================================================ */
.zh_hero {
    position: relative;
    background: var(--zh-gradient-hero);
    overflow: hidden;
    padding: 60px 0 68px;
}
/* 右上橙色光斑 */
.zh_hero::before {
    content: "";
    position: absolute;
    top: -160px; right: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(245, 166, 35, .20) 0%, transparent 68%);
    pointer-events: none;
}
/* 左下蓝色光斑 */
.zh_hero::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -140px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(46, 107, 209, .38) 0%, transparent 70%);
    pointer-events: none;
}
.zh_hero > .zh_container { position: relative; z-index: 2; }

.zh_hero_grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 52px;
    align-items: center;
}
/* grid 项默认 min-width:auto，图片固有宽度会撑破窄屏，必须归零 */
.zh_hero_text,
.zh_hero_visual { min-width: 0; }

/* ---------- 左侧文案 ---------- */
.zh_hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--zh-radius-pill);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .92);
    letter-spacing: .5px;
    margin-bottom: 20px;
}
.zh_hero_eyebrow i { color: var(--zh-accent); font-size: 12px; }

.zh_hero_title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.28;
    margin: 0 0 18px;
    letter-spacing: .5px;
}
/* 橙色实心下划线强调（取代渐变文字） */
.zh_hero_title em {
    font-style: normal;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.zh_hero_title em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 6px;
    background: var(--zh-accent);
    border-radius: 1px;
}

.zh_hero_desc {
    font-size: 15.5px;
    line-height: 1.9;
    color: rgba(226, 236, 252, .82);
    margin: 0 0 26px;
    max-width: 560px;
}

/* 大搜索框 */
.zh_hero_search {
    display: flex;
    align-items: center;
    height: 54px;
    background: #fff;
    border-radius: var(--zh-radius-md);
    overflow: hidden;
    max-width: 540px;
    box-shadow: 0 14px 34px rgba(6, 24, 56, .28);
}
.zh_hero_search > i {
    color: var(--zh-text-light);
    font-size: 15px;
    padding: 0 4px 0 18px;
    flex-shrink: 0;
}
.zh_hero_search input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--zh-text-primary);
}
.zh_hero_search input::placeholder { color: var(--zh-text-light); }
.zh_hero_search button {
    flex-shrink: 0;
    height: 100%;
    padding: 0 28px;
    border: none;
    background: var(--zh-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s ease;
}
.zh_hero_search button:hover { background: var(--zh-primary-hover); }

/* 热门搜索词 */
.zh_hero_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(226, 236, 252, .62);
}
.zh_hero_tag {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: var(--zh-radius-pill);
    color: rgba(226, 236, 252, .85);
    transition: all .2s ease;
}
.zh_hero_tag:hover {
    color: #fff;
    border-color: var(--zh-accent);
    background: rgba(245, 166, 35, .18);
}

/* 数据条 */
.zh_hero_stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}
.zh_hero_stat strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .5px;
}
.zh_hero_stat strong em {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-accent);
    margin-left: 3px;
}
.zh_hero_stat span {
    display: block;
    font-size: 13px;
    color: rgba(226, 236, 252, .66);
    margin-top: 5px;
}
.zh_hero_stat_sep {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, .16);
}

/* ---------- 右侧图卡 ---------- */
.zh_hero_visual { position: relative; }
.zh_hero_img {
    position: relative;
    border-radius: var(--zh-radius-xl);
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(4, 18, 44, .40);
    border: 1px solid rgba(255, 255, 255, .18);
}
.zh_hero_img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 浮动卡片 */
.zh_hero_float {
    position: absolute;
    background: #fff;
    border-radius: var(--zh-radius-md);
    padding: 12px 16px;
    box-shadow: 0 14px 34px rgba(4, 18, 44, .28);
    display: flex;
    align-items: center;
    gap: 11px;
}
.zh_hero_float_1 { top: 22px; left: -26px; }
.zh_hero_float_2 { bottom: -22px; right: -18px; max-width: 268px; }
.zh_hero_float_icon {
    width: 36px; height: 36px;
    border-radius: var(--zh-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.zh_hero_float_1 .zh_hero_float_icon { background: var(--zh-primary-soft); color: var(--zh-primary); }
.zh_hero_float_2 .zh_hero_float_icon { background: var(--zh-accent-soft); color: var(--zh-accent-deep); }
.zh_hero_float_text { min-width: 0; }
.zh_hero_float_text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--zh-text-primary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_hero_float_text span {
    display: block;
    font-size: 12px;
    color: var(--zh-text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_hero_float_2 .zh_hero_float_text strong {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   ② 最新快讯滚动条
   ============================================================ */
.zh_flash {
    background: #fff;
    border-bottom: 1px solid var(--zh-border);
}
.zh_flash_inner {
    display: flex;
    align-items: center;
    height: 58px;
    gap: 18px;
}
.zh_flash_label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    padding: 0 14px;
    background: var(--zh-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--zh-radius-sm);
    letter-spacing: .5px;
}
.zh_flash_label i { font-size: 12px; }
.zh_flash_track {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.zh_flash_move {
    display: flex;
    width: max-content;
    animation: zh_flash_scroll 42s linear infinite;
}
.zh_flash_track:hover .zh_flash_move { animation-play-state: paused; }
.zh_flash_group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.zh_flash_item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 26px;
    font-size: 14px;
    color: var(--zh-text-body);
    white-space: nowrap;
    position: relative;
}
.zh_flash_item::after {
    content: "";
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--zh-accent);
    opacity: .55;
}
.zh_flash_item:hover { color: var(--zh-primary); }
.zh_flash_date {
    font-size: 12.5px;
    color: var(--zh-text-light);
    font-variant-numeric: tabular-nums;
}
.zh_flash_more {
    flex-shrink: 0;
    font-size: 13.5px;
    color: var(--zh-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zh_flash_more:hover { color: var(--zh-accent-deep); }

@keyframes zh_flash_scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .zh_flash_move { animation: none; }
}

/* ============================================================
   ③ 精选信息 — 不规则 Bento
   ============================================================ */
.zh_bento_sec { background: var(--zh-bg); padding: 60px 0 56px; }

.zh_bento_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 196px 196px 132px;
    gap: 16px;
}
.zh_bento_card {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    display: flex;
    transition: all .25s ease;
    min-width: 0;
}
.zh_bento_card:hover {
    border-color: var(--zh-primary);
    transform: translateY(-3px);
    box-shadow: var(--zh-shadow-card-hover);
}

/* 大卡 A：图上压字 */
.zh_bento_a {
    grid-column: span 6;
    grid-row: span 2;
    position: relative;
    flex-direction: column;
}
.zh_bento_a_thumb {
    position: absolute;
    inset: 0;
    background: var(--zh-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.zh_bento_a_thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.zh_bento_a_thumb_ph { font-size: 46px; color: var(--zh-border-strong); }
.zh_bento_a_mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 35, 80, 0) 32%, rgba(11, 35, 80, .84) 100%);
}
.zh_bento_a_body {
    position: relative;
    margin-top: auto;
    padding: 22px 24px;
    width: 100%;
}
.zh_bento_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    background: var(--zh-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    margin-bottom: 10px;
}
.zh_bento_a_body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_a_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(226, 236, 252, .78);
}
.zh_bento_a_meta span { display: inline-flex; align-items: center; gap: 5px; }
.zh_bento_a_meta i { font-size: 11px; opacity: .8; }

/* 竖版小卡 */
.zh_bento_v {
    grid-column: span 3;
    flex-direction: column;
}
.zh_bento_v_thumb {
    height: 108px;
    background: var(--zh-bg-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--zh-border-strong);
    font-size: 26px;
}
.zh_bento_v_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_bento_v_body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.zh_bento_v_body h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_v_meta {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--zh-text-light);
}

/* 横版宽卡 */
.zh_bento_h {
    grid-column: span 6;
    flex-direction: row;
}
.zh_bento_h_thumb {
    width: 180px;
    flex-shrink: 0;
    background: var(--zh-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--zh-border-strong);
    font-size: 26px;
}
.zh_bento_h_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_bento_h_body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.zh_bento_h_body h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_h_desc {
    font-size: 13px;
    color: var(--zh-text-muted);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_h_meta {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: var(--zh-text-light);
}
.zh_bento_h_meta span { display: inline-flex; align-items: center; gap: 5px; }

/* 文字条 */
.zh_bento_t {
    grid-column: span 4;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    border-left: 3px solid var(--zh-primary-soft);
}
.zh_bento_t:hover { border-left-color: var(--zh-accent); }
.zh_bento_t h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_t_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: var(--zh-text-light);
}
.zh_bento_t_meta span { display: inline-flex; align-items: center; gap: 5px; }

/* 入口卡 */
.zh_bento_more {
    grid-column: span 4;
    background: var(--zh-gradient-cta);
    border: none;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 22px;
    position: relative;
    overflow: hidden;
}
.zh_bento_more::after {
    content: "\f0ca";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -6px; bottom: -14px;
    font-size: 62px;
    color: rgba(255, 255, 255, .10);
}
.zh_bento_more:hover { transform: translateY(-3px); box-shadow: var(--zh-shadow-lg); }
.zh_bento_more strong {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
}
.zh_bento_more span {
    font-size: 12.5px;
    color: rgba(226, 236, 252, .75);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: relative;
}
.zh_bento_more span i { color: var(--zh-accent); }

/* 占位卡 */
.zh_bento_ph {
    background: repeating-linear-gradient(45deg, #F7F9FD, #F7F9FD 12px, #F2F5FB 12px, #F2F5FB 24px);
    border-style: dashed;
    align-items: center;
    justify-content: center;
    color: var(--zh-text-light);
    font-size: 13.5px;
    text-align: center;
    padding: 16px;
}
.zh_bento_ph:hover { transform: none; box-shadow: none; border-color: var(--zh-border); }

/* ============================================================
   ④ 平台介绍图文（banner2.jpg · 图在左）
   ============================================================ */
.zh_about_sec { background: #fff; padding: 66px 0; }
.zh_about_grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
}
.zh_about_visual, .zh_about_body { min-width: 0; }
.zh_about_visual { position: relative; padding: 18px 0 18px 18px; }
/* 左下错位色块 */
.zh_about_visual::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 55%; height: 72%;
    background: var(--zh-primary-soft);
    border-radius: var(--zh-radius-lg);
}
.zh_about_visual img {
    position: relative;
    width: 100%;
    border-radius: var(--zh-radius-lg);
    border: 1px solid var(--zh-border);
}
.zh_about_stamp {
    position: absolute;
    right: -12px; top: 0;
    background: var(--zh-primary);
    color: #fff;
    border-radius: var(--zh-radius-md);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(14, 44, 99, .26);
}
.zh_about_stamp strong { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; }
.zh_about_stamp span { font-size: 11.5px; color: rgba(226, 236, 252, .82); }

.zh_about_body { min-width: 0; }
.zh_about_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--zh-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.zh_about_label::before {
    content: "";
    width: 22px; height: 2px;
    background: var(--zh-accent);
}
.zh_about_title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: var(--zh-text-primary);
    line-height: 1.4;
    margin: 0 0 18px;
}
.zh_about_text {
    font-size: 14.5px;
    line-height: 2;
    color: var(--zh-text-body);
    margin: 0 0 14px;
}
.zh_about_list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
}
.zh_about_list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--zh-text-body);
    line-height: 1.65;
}
.zh_about_list i {
    color: var(--zh-primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}
.zh_about_note {
    background: var(--zh-accent-soft);
    border-left: 3px solid var(--zh-accent);
    padding: 13px 18px;
    font-size: 13.5px;
    line-height: 1.8;
    color: #8A5400;
}
.zh_about_note strong { color: #6E4200; }

/* ============================================================
   ⑤ 门户式非对称双栏
   ============================================================ */
.zh_portal_sec { background: var(--zh-bg); padding: 60px 0; }
.zh_portal_grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: flex-start;
}
.zh_portal_main, .zh_portal_side { min-width: 0; }

/* ---------- 左：信息列表 ---------- */
.zh_portal_list { display: flex; flex-direction: column; gap: 14px; }

/* 宽幅大卡 */
.zh_pitem_lg {
    display: flex;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 18px;
    transition: all .25s ease;
}
.zh_pitem_lg:hover {
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_pitem_lg_thumb {
    width: 260px;
    height: 168px;
    flex-shrink: 0;
    background: var(--zh-bg-light);
    border-radius: var(--zh-radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-border-strong);
    font-size: 30px;
}
.zh_pitem_lg_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_pitem_lg_body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 4px 6px 4px 0;
}
.zh_pitem_lg_body h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 10px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_pitem_lg:hover h3 { color: var(--zh-primary); }
.zh_pitem_lg_desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--zh-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_pitem_meta {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-size: 12.5px;
    color: var(--zh-text-light);
}
.zh_pitem_meta span { display: inline-flex; align-items: center; gap: 5px; }
.zh_pitem_meta i { font-size: 11px; }
.zh_pitem_hot {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--zh-accent-soft);
    color: var(--zh-accent-deep);
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
}

/* 紧凑横条 */
.zh_pitem_sm {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-md);
    padding: 12px 16px;
    transition: all .25s ease;
}
.zh_pitem_sm:hover {
    border-color: var(--zh-primary);
    transform: translateX(4px);
}
.zh_pitem_sm_thumb {
    width: 120px;
    height: 78px;
    flex-shrink: 0;
    background: var(--zh-bg-light);
    border-radius: var(--zh-radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-border-strong);
    font-size: 20px;
}
.zh_pitem_sm_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_pitem_sm_body { flex: 1; min-width: 0; }
.zh_pitem_sm_body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_pitem_sm:hover h4 { color: var(--zh-primary); }
.zh_pitem_sm_arrow {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--zh-bg);
    color: var(--zh-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .25s ease;
}
.zh_pitem_sm:hover .zh_pitem_sm_arrow { background: var(--zh-primary); color: #fff; }

.zh_portal_footer { margin-top: 22px; text-align: center; }

/* ---------- 右：侧栏 ---------- */
.zh_portal_side {
    position: sticky;
    top: 66px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.zh_side_box {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 18px 20px;
}
.zh_side_title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--zh-border);
}
.zh_side_title::before {
    content: "";
    width: 4px; height: 15px;
    background: var(--zh-accent);
    border-radius: 1px;
}

/* 热门排行 */
.zh_rank_list { list-style: none; margin: 0; padding: 0; }
.zh_rank_item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--zh-border);
}
.zh_rank_item:last-child { border-bottom: none; padding-bottom: 0; }
.zh_rank_no {
    flex-shrink: 0;
    width: 21px; height: 21px;
    border-radius: var(--zh-radius-sm);
    background: var(--zh-bg-light);
    color: var(--zh-text-muted);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.zh_rank_item:nth-child(-n+3) .zh_rank_no { background: var(--zh-accent); color: #fff; }
.zh_rank_body { min-width: 0; flex: 1; }
.zh_rank_body h5 {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--zh-text-body);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_rank_item:hover h5 { color: var(--zh-primary); }
.zh_rank_view {
    font-size: 11.5px;
    color: var(--zh-text-light);
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* 侧栏服务商 */
.zh_side_merchant {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--zh-border);
}
.zh_side_merchant:last-child { border-bottom: none; padding-bottom: 0; }
.zh_side_merchant_ava {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.zh_side_merchant_body { min-width: 0; flex: 1; }
.zh_side_merchant_body strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_side_merchant_body span { font-size: 11.5px; color: var(--zh-text-light); }
.zh_side_merchant:hover strong { color: var(--zh-primary); }

/* 侧栏入驻卡 */
.zh_side_cta {
    background: var(--zh-gradient-cta);
    border-radius: var(--zh-radius-lg);
    padding: 22px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.zh_side_cta::after {
    content: "\f2c2";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -8px; bottom: -16px;
    font-size: 74px;
    color: rgba(255, 255, 255, .08);
}
.zh_side_cta h4 {
    font-size: 16.5px;
    font-weight: 800;
    margin: 0 0 8px;
    position: relative;
}
.zh_side_cta p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(226, 236, 252, .78);
    margin: 0 0 16px;
    position: relative;
}
.zh_side_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 40px;
    background: var(--zh-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--zh-radius-btn);
    position: relative;
    transition: background .2s ease;
}
.zh_side_cta_btn:hover { color: #fff; background: var(--zh-accent-deep); }
.zh_side_cta_phone {
    display: block;
    margin-top: 12px;
    font-size: 12.5px;
    color: rgba(226, 236, 252, .72);
    text-align: center;
    position: relative;
}
.zh_side_cta_phone strong { color: #FFC163; font-size: 15px; letter-spacing: .5px; }

/* ============================================================
   ⑥ 入驻服务商展示墙
   ============================================================ */
.zh_wall_sec { background: var(--zh-bg-light); padding: 58px 0; }
.zh_wall_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
    gap: 16px;
}
.zh_wall_card {
    position: relative;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 24px 18px 20px;
    text-align: center;
    overflow: hidden;
    transition: all .25s ease;
}
.zh_wall_card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--zh-gradient-warm);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.zh_wall_card:hover {
    border-color: var(--zh-primary);
    transform: translateY(-4px);
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_wall_card:hover::before { transform: scaleX(1); }
.zh_wall_ava {
    width: 58px; height: 58px;
    border-radius: 50%;
    margin: 0 auto 12px;
    object-fit: cover;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    border: 1px solid var(--zh-border);
}
.zh_wall_card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_wall_badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    font-size: 11.5px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    margin-bottom: 12px;
}
.zh_wall_count {
    font-size: 12.5px;
    color: var(--zh-text-muted);
    padding-top: 12px;
    border-top: 1px dashed var(--zh-border);
}
.zh_wall_count strong { color: var(--zh-accent-deep); font-size: 15px; margin: 0 2px; }

/* ============================================================
   ⑦ 入驻流程 + 平台规则问答
   ============================================================ */
.zh_flow_sec { background: #fff; padding: 62px 0; }
.zh_flow_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: flex-start;
}
.zh_block_title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 800;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
}
.zh_block_title::before {
    content: "";
    width: 5px; height: 21px;
    background: var(--zh-accent);
    border-radius: 1px;
}
.zh_block_desc {
    font-size: 13.5px;
    color: var(--zh-text-muted);
    margin: 0 0 26px;
    padding-left: 16px;
}

/* 竖向时间线 */
.zh_flow_line { position: relative; padding-left: 4px; }
.zh_flow_step {
    position: relative;
    display: flex;
    gap: 18px;
    padding-bottom: 26px;
}
.zh_flow_step:last-child { padding-bottom: 0; }
.zh_flow_step::before {
    content: "";
    position: absolute;
    left: 17px; top: 36px; bottom: 0;
    width: 1px;
    background: var(--zh-border);
}
.zh_flow_step:last-child::before { display: none; }
.zh_flow_no {
    flex-shrink: 0;
    width: 35px; height: 35px;
    border-radius: 50%;
    border: 2px solid var(--zh-accent);
    background: #fff;
    color: var(--zh-accent-deep);
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.zh_flow_body { min-width: 0; padding-top: 3px; }
.zh_flow_body h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 6px;
}
.zh_flow_body p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--zh-text-muted);
    margin: 0;
}

/* 折叠问答 */
.zh_faq_item {
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-md);
    margin-bottom: 10px;
    background: #fff;
    transition: all .2s ease;
}
.zh_faq_item[open] { border-color: var(--zh-primary); background: var(--zh-primary-bg); }
.zh_faq_item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    cursor: pointer;
    list-style: none;
}
.zh_faq_item summary::-webkit-details-marker { display: none; }
.zh_faq_item summary::after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    color: var(--zh-primary);
    flex-shrink: 0;
}
.zh_faq_item[open] summary::after { content: "\f068"; }
.zh_faq_answer {
    padding: 0 18px 16px;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--zh-text-body);
    margin: 0;
}

/* ============================================================
   ⑧ CTA 通栏
   ============================================================ */
.zh_cta_sec {
    background: var(--zh-gradient-cta);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}
.zh_cta_sec::after {
    content: "\f553";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 4%; top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    color: rgba(255, 255, 255, .06);
    pointer-events: none;
}
.zh_cta_inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
}
.zh_cta_text { min-width: 0; }
.zh_cta_text h2 {
    font-size: clamp(22px, 2.6vw, 29px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}
.zh_cta_text p {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(226, 236, 252, .78);
    margin: 0;
    max-width: 620px;
}
.zh_cta_side { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.zh_cta_btns { display: flex; gap: 12px; flex-wrap: wrap; }
.zh_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 26px;
    border-radius: var(--zh-radius-btn);
    font-size: 15px;
    font-weight: 700;
    transition: all .2s ease;
}
.zh_cta_btn_warm { background: var(--zh-accent); color: #fff; }
.zh_cta_btn_warm:hover { color: #fff; background: var(--zh-accent-deep); transform: translateY(-2px); }
.zh_cta_btn_ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); }
.zh_cta_btn_ghost:hover { color: var(--zh-primary); background: #fff; border-color: #fff; }
.zh_cta_phone {
    font-size: 13.5px;
    color: rgba(226, 236, 252, .72);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.zh_cta_phone a { color: #FFC163; font-weight: 700; font-size: 16px; letter-spacing: .5px; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1100px) {
    .zh_hero_grid { grid-template-columns: 1fr; gap: 40px; }
    .zh_hero_desc { max-width: none; }
    .zh_hero_float_1 { left: 12px; }
    .zh_hero_float_2 { right: 12px; bottom: -18px; }
    .zh_portal_grid { grid-template-columns: 1fr; }
    .zh_portal_side { position: static; }
    .zh_about_grid { grid-template-columns: 1fr; gap: 38px; }
    .zh_about_visual { max-width: 460px; }
}
@media (max-width: 992px) {
    .zh_bento_grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 190px 190px auto auto;
    }
    .zh_bento_a { grid-column: span 6; grid-row: span 2; }
    .zh_bento_v { grid-column: span 3; }
    .zh_bento_h { grid-column: span 6; }
    .zh_bento_t { grid-column: span 3; min-height: 120px; }
    .zh_bento_more { grid-column: span 6; min-height: 92px; }
    .zh_flow_grid { grid-template-columns: 1fr; gap: 40px; }
    .zh_pitem_lg_thumb { width: 200px; height: 140px; }
}
@media (max-width: 768px) {
    .zh_hero { padding: 40px 0 48px; }
    .zh_hero_stats { gap: 18px; flex-wrap: wrap; }
    .zh_hero_stat strong { font-size: 25px; }
    .zh_hero_search { height: 48px; }
    .zh_hero_search button { padding: 0 18px; font-size: 14px; }
    .zh_hero_search button span { display: none; }
    .zh_hero_visual { display: flex; flex-direction: column; }
    .zh_hero_float_1, .zh_hero_float_2 { position: static; margin-top: 12px; max-width: none; }

    .zh_flash_inner { height: 52px; gap: 12px; }
    .zh_flash_more { display: none; }

    .zh_bento_sec, .zh_portal_sec, .zh_wall_sec { padding: 40px 0; }
    .zh_about_sec, .zh_flow_sec { padding: 42px 0; }
    .zh_bento_grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }
    .zh_bento_a { grid-column: auto; grid-row: auto; min-height: 260px; }
    .zh_bento_v, .zh_bento_h, .zh_bento_t, .zh_bento_more { grid-column: auto; }
    .zh_bento_v { flex-direction: row; }
    .zh_bento_v_thumb { width: 120px; height: auto; }
    .zh_bento_h_thumb { width: 120px; }
    .zh_bento_t { min-height: 0; padding: 14px 16px; }

    .zh_about_list { grid-template-columns: 1fr; }
    .zh_about_visual { padding: 12px 0 12px 12px; }
    .zh_about_stamp { right: 0; padding: 9px 13px; }
    .zh_about_stamp strong { font-size: 18px; }

    .zh_pitem_lg { flex-direction: column; gap: 14px; }
    .zh_pitem_lg_thumb { width: 100%; height: 190px; }
    .zh_pitem_sm { gap: 12px; padding: 10px 12px; }
    .zh_pitem_sm_thumb { width: 96px; height: 66px; }
    .zh_pitem_sm_arrow { display: none; }
    .zh_pitem_sm:hover { transform: none; }

    .zh_wall_grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
    .zh_wall_card { padding: 18px 12px 16px; }

    .zh_cta_sec { padding: 40px 0; }
    .zh_cta_inner { flex-direction: column; align-items: flex-start; gap: 22px; }
    .zh_cta_btns { width: 100%; }
    .zh_cta_btn { flex: 1; justify-content: center; padding: 0 16px; }
    .zh_cta_sec::after { font-size: 110px; right: -20px; opacity: .6; }
}
