/* ============================================
   home.css — 艾匹商城首页样式
   配色沿用 app.css 主题变量
   板块：Hero / 服务承诺 / 平台简介 / 工艺美术品 /
        工匠精神 / 礼仪用品 / 精选推荐 / 入驻商家 /
        平台资讯 / 入驻 CTA
   ============================================ */

.zh_home { background: var(--zh-bg); }

/* =========================================
   ① Hero 主视觉区
   ========================================= */
.zh_hero {
    background: #fff;
    padding: 24px 0 48px;
}

.zh_hero_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 16px;
    min-height: 480px;
}

/* 左侧分类侧栏 */
.zh_hero_cats {
    background: rgba(27, 58, 107, 0.92);
    border-radius: var(--zh-radius);
    padding: 14px 0;
    color: #fff;
    overflow-y: auto;
    max-height: 480px;
}

.zh_hero_cats h4 {
    font-size: 14px;
    color: var(--zh-gold);
    padding: 0 22px 12px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
    letter-spacing: 1px;
}

.zh_hero_cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.zh_hero_cats a i { color: var(--zh-gold-light); font-size: 11px; }

.zh_hero_cats a:hover {
    color: var(--zh-gold-light);
    background: rgba(255,255,255,0.06);
    border-left-color: var(--zh-gold);
    padding-left: 26px;
}

.zh_hero_cats_empty {
    padding: 40px 22px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    text-align: center;
}

/* 中间轮播 */
.zh_hero_slider {
    position: relative;
    border-radius: var(--zh-radius);
    overflow: hidden;
    background: var(--zh-bg-soft);
    min-height: 480px;
}

.zh_hero_slider .carousel,
.zh_hero_slider .carousel-inner,
.zh_hero_slider .carousel-item { height: 480px; }

.zh_hero_slide {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.zh_hero_slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,42,80,0.78) 0%, rgba(18,42,80,0.35) 45%, rgba(18,42,80,0.05) 100%);
}

/* Hero slide 2：工艺美术品（无照片，纯渐变 + 大图标） */
.zh_hero_slide_craft {
    background: radial-gradient(circle at 80% 30%, #2d5a9e 0%, #1b3a6b 40%, #122a50 100%);
}
.zh_hero_slide_craft::after {
    background: linear-gradient(90deg, rgba(18,42,80,0.65) 0%, rgba(18,42,80,0.15) 60%, transparent 100%);
}

/* Hero slide 3：商家入驻（深蓝渐变 + 金色光晕） */
.zh_hero_slide_mi {
    background: radial-gradient(circle at 75% 60%, #c8413a 0%, #8c2623 30%, #122a50 80%);
}
.zh_hero_slide_mi::after {
    background: linear-gradient(90deg, rgba(18,42,80,0.7) 0%, rgba(18,42,80,0.2) 60%, transparent 100%);
}

/* Slide 大图标装饰 */
.zh_hero_slide_deco {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,58,0.25) 0%, rgba(212,168,58,0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.zh_hero_slide_deco i {
    font-size: 120px;
    color: var(--zh-gold);
    opacity: 0.7;
    filter: drop-shadow(0 8px 24px rgba(212,168,58,0.5));
}

.zh_hero_slide_content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    max-width: 420px;
    z-index: 2;
    color: #fff;
}

.zh_hero_slide_eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212,168,58,0.18);
    border: 1px solid var(--zh-gold);
    color: var(--zh-gold-light);
    font-size: 12px;
    letter-spacing: 3px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.zh_hero_slide h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.zh_hero_slide h2 span { color: var(--zh-gold-light); }

.zh_hero_slide p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}

.zh_hero_slide_btns { display: flex; gap: 14px; flex-wrap: wrap; }

.zh_hero_slider .carousel-indicators { margin-bottom: 18px; }

.zh_hero_slider .carousel-indicators button {
    width: 26px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    border: none;
}

.zh_hero_slider .carousel-indicators button.active {
    background: var(--zh-gold);
    width: 36px;
}

.zh_hero_slider .carousel-control-prev,
.zh_hero_slider .carousel-control-next {
    width: 48px;
    opacity: 0;
    transition: opacity 0.3s;
}

.zh_hero_slider:hover .carousel-control-prev,
.zh_hero_slider:hover .carousel-control-next { opacity: 0.8; }

/* 右侧用户/服务卡 */
.zh_hero_side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zh_hero_user {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--zh-shadow-sm);
    flex: 0 0 auto;
}

.zh_hero_user_avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--zh-grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 12px;
    border: 3px solid var(--zh-gold);
}

.zh_hero_user_name {
    font-size: 15px;
    color: var(--zh-primary);
    font-weight: 600;
    margin-bottom: 2px;
}
.zh_hero_user_tip { font-size: 12px; color: var(--zh-text-3); margin-bottom: 16px; }

.zh_hero_user_btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.zh_hero_user_btns a {
    display: block;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    text-align: center;
    transition: all 0.2s;
}

.zh_hero_user_btns a.zh_ubtn_primary {
    background: var(--zh-grad-primary);
    color: #fff;
}
.zh_hero_user_btns a.zh_ubtn_primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,58,107,0.3);
    color: #fff;
}

.zh_hero_user_btns a.zh_ubtn_outline {
    background: #fff;
    color: var(--zh-primary);
    border: 1px solid var(--zh-line);
}
.zh_hero_user_btns a.zh_ubtn_outline:hover { border-color: var(--zh-gold); color: var(--zh-gold); }

.zh_hero_service {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    box-shadow: var(--zh-shadow-sm);
    flex: 1;
}

.zh_hero_service a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: var(--zh-radius-sm);
    background: var(--zh-bg-soft);
    color: var(--zh-primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.zh_hero_service a:hover {
    background: var(--zh-primary);
    color: #fff;
}

.zh_hero_service a i {
    font-size: 22px;
    color: var(--zh-gold);
}

.zh_hero_service a:hover i { color: var(--zh-gold-light); }

/* =========================================
   ② 服务承诺条（首页版，白底）
   ========================================= */
.zh_home_trust {
    background: #fff;
    padding: 28px 0;
    border-top: 1px solid var(--zh-line);
    border-bottom: 1px solid var(--zh-line);
}

.zh_home_trust_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.zh_trust_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.zh_trust_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--zh-grad-gold);
    color: var(--zh-primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.zh_trust_title { font-size: 15px; color: var(--zh-primary); font-weight: 600; }
.zh_trust_sub { font-size: 12px; color: var(--zh-text-3); margin-top: 2px; }

/* =========================================
   ③ 平台简介（左图右文）
   ========================================= */
.zh_intro {
    padding: 76px 0;
    background: var(--zh-bg);
}

.zh_intro_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.zh_intro_img {
    position: relative;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    box-shadow: var(--zh-shadow-lg);
}

.zh_intro_img img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.zh_intro_img_wrap {
    position: relative;
}

.zh_intro_img_wrap::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 80px; height: 80px;
    border-left: 3px solid var(--zh-gold);
    border-top: 3px solid var(--zh-gold);
    z-index: 2;
    pointer-events: none;
}
.zh_intro_img_wrap::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 80px; height: 80px;
    border-right: 3px solid var(--zh-gold);
    border-bottom: 3px solid var(--zh-gold);
    z-index: 2;
    pointer-events: none;
}

.zh_intro_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--zh-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.zh_intro_eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--zh-gold);
}

.zh_intro_content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}
.zh_intro_content h2 span { color: var(--zh-gold); }

.zh_intro_content p {
    font-size: 14px;
    color: var(--zh-text-2);
    line-height: 2;
    margin-bottom: 12px;
}

.zh_intro_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
    padding: 20px;
    background: #fff;
    border-radius: var(--zh-radius);
    border: 1px solid var(--zh-line);
}

.zh_intro_stat { text-align: center; border-right: 1px solid var(--zh-line); }
.zh_intro_stat:last-child { border-right: none; }
.zh_intro_stat_num {
    font-size: 26px;
    font-weight: 700;
    color: var(--zh-primary);
    font-family: "Arial", sans-serif;
}
.zh_intro_stat_num span { font-size: 14px; color: var(--zh-gold); font-weight: 600; }
.zh_intro_stat_label { font-size: 12px; color: var(--zh-text-3); margin-top: 4px; }

.zh_intro_btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   ④ 核心品类 · 工艺美术品
   ⑥ 核心品类 · 礼仪用品（镜像）
   ========================================= */
.zh_cat_block {
    padding: 76px 0;
    background: #fff;
}

.zh_cat_block_alt { background: var(--zh-bg); }

.zh_cat_header {
    max-width: 1240px;
    margin: 0 auto 36px;
    padding: 0 20px;
    text-align: center;
}

.zh_cat_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--zh-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.zh_cat_eyebrow::before,
.zh_cat_eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--zh-gold);
}

.zh_cat_header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-top: 10px;
}

.zh_cat_header p { color: var(--zh-text-2); font-size: 14px; margin-top: 10px; }

.zh_cat_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: stretch;
}

.zh_cat_block_reverse .zh_cat_grid {
    grid-template-columns: 1fr 380px;
}

.zh_cat_block_reverse .zh_cat_cover {
    order: 2;
}

.zh_cat_cover {
    position: relative;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    background: var(--zh-grad-primary);
    color: #fff;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    box-shadow: var(--zh-shadow);
}

.zh_cat_cover_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}

.zh_cat_cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18,42,80,0.1) 0%, rgba(18,42,80,0.88) 100%);
}

.zh_cat_cover_inner { position: relative; z-index: 2; }

.zh_cat_cover_tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212,168,58,0.2);
    border: 1px solid var(--zh-gold);
    color: var(--zh-gold-light);
    font-size: 11px;
    letter-spacing: 3px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.zh_cat_cover h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.zh_cat_cover p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.zh_cat_cover_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--zh-gold);
    color: var(--zh-primary-deep);
    font-size: 13px;
    font-weight: 600;
    border-radius: 24px;
    transition: all 0.25s;
    align-self: flex-start;
}
.zh_cat_cover_more:hover {
    background: #fff;
    color: var(--zh-primary);
    transform: translateX(4px);
}

.zh_cat_products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

.zh_cat_empty {
    background: var(--zh-bg-soft);
    border: 1px dashed var(--zh-line);
    border-radius: var(--zh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-text-3);
    font-size: 14px;
    min-height: 460px;
}

/* =========================================
   ⑤ 工匠精神三栏故事卡
   ========================================= */
.zh_spirit {
    padding: 76px 0;
    background: var(--zh-bg);
    position: relative;
}

.zh_spirit_header {
    max-width: 1240px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}
.zh_spirit_header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-top: 10px;
}
.zh_spirit_header p { color: var(--zh-text-2); font-size: 14px; margin-top: 10px; }

.zh_spirit_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.zh_spirit_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.zh_spirit_card:hover {
    transform: translateY(-8px);
    border-color: var(--zh-gold);
    box-shadow: var(--zh-shadow-lg);
}

.zh_spirit_card_img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zh_spirit_card_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18,42,80,0.25) 100%);
}

/* 三张卡片各用不同主题色渐变 */
.zh_spirit_card_1 .zh_spirit_card_img {
    background: linear-gradient(135deg, #1B3A6B 0%, #2D5A9E 100%);
}
.zh_spirit_card_2 .zh_spirit_card_img {
    background: linear-gradient(135deg, #8C2623 0%, #C8413A 100%);
}
.zh_spirit_card_3 .zh_spirit_card_img {
    background: linear-gradient(135deg, #A67D1F 0%, #D4A83A 100%);
}

/* 主图标 */
.zh_spirit_card_icon {
    font-size: 88px;
    color: rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.zh_spirit_card:hover .zh_spirit_card_icon {
    transform: scale(1.1) rotate(-8deg);
}

/* 背景装饰圆 */
.zh_spirit_card_img::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,58,0.2) 0%, transparent 70%);
}

.zh_spirit_card_no {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--zh-gold);
    color: var(--zh-primary-deep);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    z-index: 2;
}

.zh_spirit_card_body { padding: 28px 26px 30px; }

.zh_spirit_card_body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-bottom: 10px;
}

.zh_spirit_card_body h3 span {
    color: var(--zh-gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 10px;
    text-transform: uppercase;
}

.zh_spirit_card_body p {
    font-size: 13px;
    color: var(--zh-text-2);
    line-height: 1.9;
}

/* =========================================
   ⑦ 精选好物推荐
   ========================================= */
.zh_recommend {
    padding: 76px 0;
    background: #fff;
}

.zh_recommend_head {
    max-width: 1240px;
    margin: 0 auto 36px;
    padding: 0 20px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px solid var(--zh-line);
}

.zh_recommend_head h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--zh-primary);
    display: flex;
    align-items: center;
    gap: 14px;
}

.zh_recommend_head h2::before {
    content: '';
    width: 5px;
    height: 28px;
    background: var(--zh-grad-gold);
    border-radius: 2px;
}

.zh_recommend_head h2 small {
    font-size: 13px;
    color: var(--zh-text-3);
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 8px;
}

.zh_recommend_more {
    color: var(--zh-primary);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid var(--zh-line);
    border-radius: 24px;
    transition: all 0.2s;
    white-space: nowrap;
}
.zh_recommend_more:hover {
    background: var(--zh-primary);
    color: #fff;
    border-color: var(--zh-primary);
}

.zh_recommend_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.zh_recommend_empty {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
    color: var(--zh-text-3);
    font-size: 14px;
    background: var(--zh-bg-soft);
    border-radius: var(--zh-radius);
}

/* =========================================
   ⑧ 入驻商家 logo 墙
   ========================================= */
.zh_merchants_wall {
    padding: 76px 0;
    background: var(--zh-bg);
}

.zh_merchants_head {
    max-width: 1240px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}
.zh_merchants_head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--zh-primary);
    margin-top: 10px;
}
.zh_merchants_head p { color: var(--zh-text-2); font-size: 14px; margin-top: 10px; }

.zh_merchants_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.zh_merchants_grid > .zh_merchant_card {
    flex: 0 1 calc((100% - 60px) / 4);
    min-width: 260px;
    max-width: 320px;
}

.zh_merchant_card {
    background: #fff;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius);
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.zh_merchant_card:hover {
    transform: translateY(-4px);
    border-color: var(--zh-gold);
    box-shadow: var(--zh-shadow);
}

.zh_merchant_logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--zh-grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid var(--zh-bg-soft);
}

.zh_merchant_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_merchant_info { flex: 1; min-width: 0; }

.zh_merchant_name {
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zh_merchant_desc {
    font-size: 12px;
    color: var(--zh-text-3);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_merchants_more_wrap {
    text-align: center;
    margin-top: 36px;
}

.zh_merchants_empty {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
    color: var(--zh-text-3);
    font-size: 14px;
    background: #fff;
    border-radius: var(--zh-radius);
    border: 1px dashed var(--zh-line);
}

/* =========================================
   ⑨ 平台资讯 / 公告
   ========================================= */
.zh_news {
    padding: 76px 0;
    background: #fff;
}

.zh_news_head {
    max-width: 1240px;
    margin: 0 auto 36px;
    padding: 0 20px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 2px solid var(--zh-line);
}

.zh_news_head h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--zh-primary);
    display: flex;
    align-items: center;
    gap: 14px;
}

.zh_news_head h2::before {
    content: '';
    width: 5px;
    height: 28px;
    background: var(--zh-grad-gold);
    border-radius: 2px;
}

.zh_news_head a { color: var(--zh-text-2); font-size: 13px; }
.zh_news_head a:hover { color: var(--zh-gold); }

.zh_news_grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
}

.zh_news_feature {
    display: block;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--zh-line);
    transition: all 0.3s;
}

.zh_news_feature:hover { box-shadow: var(--zh-shadow); transform: translateY(-3px); }

.zh_news_feature_img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.zh_news_feature_img::after {
    content: '公告';
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 14px;
    background: var(--zh-accent);
    color: #fff;
    font-size: 12px;
    border-radius: 14px;
}

.zh_news_feature_body { padding: 24px 26px 28px; }

.zh_news_feature_body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_news_feature_body p {
    font-size: 13px;
    color: var(--zh-text-2);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.zh_news_feature_body span { font-size: 12px; color: var(--zh-gold); font-weight: 600; }

.zh_news_list {
    background: var(--zh-bg-soft);
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-lg);
    padding: 8px 0;
}

.zh_news_item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 26px;
    border-bottom: 1px solid var(--zh-line-soft);
    transition: all 0.2s;
}

.zh_news_item:last-child { border-bottom: none; }

.zh_news_item:hover {
    background: #fff;
    padding-left: 32px;
}

.zh_news_date {
    flex-shrink: 0;
    width: 62px;
    text-align: center;
    padding: 8px 0;
    border: 1px solid var(--zh-line);
    border-radius: var(--zh-radius-sm);
    background: #fff;
}
.zh_news_date strong {
    display: block;
    font-size: 20px;
    color: var(--zh-primary);
    font-weight: 700;
    line-height: 1;
}
.zh_news_date span {
    font-size: 11px;
    color: var(--zh-text-3);
    margin-top: 2px;
    display: block;
}

.zh_news_body { flex: 1; min-width: 0; }
.zh_news_body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zh_news_body p {
    font-size: 12px;
    color: var(--zh-text-3);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.zh_news_arrow { color: var(--zh-text-3); font-size: 14px; }
.zh_news_item:hover .zh_news_arrow { color: var(--zh-gold); }

/* =========================================
   ⑩ 入驻 CTA 大幅
   ========================================= */
.zh_cta_big {
    background: var(--zh-grad-primary);
    position: relative;
    overflow: hidden;
    padding: 68px 0;
}

.zh_cta_big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/uploads/banner/banner.jpg') right center / contain no-repeat;
    opacity: 0.18;
    mix-blend-mode: screen;
}

.zh_cta_big_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.zh_cta_big_text { color: #fff; max-width: 660px; }

.zh_cta_big_eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212,168,58,0.2);
    border: 1px solid var(--zh-gold);
    color: var(--zh-gold-light);
    font-size: 11px;
    letter-spacing: 3px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.zh_cta_big_text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #fff;
}
.zh_cta_big_text h2 span { color: var(--zh-gold-light); }

.zh_cta_big_text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.zh_cta_big_btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* =========================================
   响应式
   ========================================= */
@media (max-width: 1199px) {
    .zh_hero_grid { grid-template-columns: 210px 1fr 260px; }
    .zh_home_trust_inner { grid-template-columns: repeat(3, 1fr); }
    .zh_home_trust_inner .zh_trust_item:nth-child(n+4) { display: none; }
    .zh_recommend_grid { grid-template-columns: repeat(4, 1fr); }
    .zh_merchants_grid > .zh_merchant_card { flex: 0 1 calc((100% - 40px) / 3); }
}

@media (max-width: 991px) {
    .zh_hero_grid { grid-template-columns: 1fr; min-height: 0; }
    .zh_hero_cats { display: none; }
    .zh_hero_side { display: none; }
    .zh_hero_slider,
    .zh_hero_slider .carousel,
    .zh_hero_slider .carousel-inner,
    .zh_hero_slider .carousel-item,
    .zh_hero_slide { height: 360px; min-height: 360px; }
    .zh_hero_slide h2 { font-size: 30px; }

    .zh_home_trust_inner { grid-template-columns: repeat(2, 1fr); }

    .zh_intro { padding: 56px 0; }
    .zh_intro_grid { grid-template-columns: 1fr; gap: 36px; }
    .zh_intro_content h2 { font-size: 26px; }
    .zh_intro_stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .zh_intro_stat { border-right: none; border-bottom: 1px solid var(--zh-line); padding-bottom: 12px; }
    .zh_intro_stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

    .zh_cat_block { padding: 56px 0; }
    .zh_cat_grid,
    .zh_cat_block_reverse .zh_cat_grid { grid-template-columns: 1fr; gap: 24px; }
    .zh_cat_block_reverse .zh_cat_cover { order: 0; }
    .zh_cat_cover { min-height: 260px; padding: 28px 24px; }
    .zh_cat_empty { min-height: 240px; }

    .zh_spirit { padding: 56px 0; }
    .zh_spirit_grid { grid-template-columns: 1fr; gap: 20px; }

    .zh_recommend { padding: 56px 0; }
    .zh_recommend_grid { grid-template-columns: repeat(3, 1fr); }

    .zh_merchants_wall { padding: 56px 0; }
    .zh_merchants_grid > .zh_merchant_card { flex: 0 1 calc((100% - 20px) / 2); min-width: 0; }

    .zh_news { padding: 56px 0; }
    .zh_news_grid { grid-template-columns: 1fr; gap: 24px; }

    .zh_cta_big { padding: 56px 0; }
    .zh_cta_big_inner { flex-direction: column; text-align: center; }
    .zh_cta_big_text h2 { font-size: 28px; }
}

@media (max-width: 767px) {
    .zh_hero { padding: 14px 0 24px; }
    .zh_hero_slider,
    .zh_hero_slider .carousel,
    .zh_hero_slider .carousel-inner,
    .zh_hero_slider .carousel-item,
    .zh_hero_slide { height: 240px; min-height: 240px; }
    .zh_hero_slide_content { left: 24px; max-width: 80%; }
    .zh_hero_slide h2 { font-size: 22px; margin-bottom: 10px; }
    .zh_hero_slide p { display: none; }

    .zh_home_trust { padding: 18px 0; }
    .zh_home_trust_inner { padding: 0 14px; gap: 12px; }
    .zh_trust_icon { width: 38px; height: 38px; font-size: 16px; border-radius: 8px; }
    .zh_trust_title { font-size: 13px; }
    .zh_trust_sub { font-size: 11px; }

    .zh_intro { padding: 40px 0; }
    .zh_intro_content h2 { font-size: 22px; }
    .zh_intro_stats { padding: 16px; }
    .zh_intro_stat_num { font-size: 22px; }

    .zh_cat_block { padding: 40px 0; }
    .zh_cat_header h2,
    .zh_spirit_header h2,
    .zh_merchants_head h2 { font-size: 24px; }
    .zh_cat_products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .zh_cat_cover h3 { font-size: 22px; }

    .zh_spirit { padding: 40px 0; }
    .zh_spirit_card_body { padding: 20px; }
    .zh_spirit_card_body h3 { font-size: 18px; }

    .zh_recommend { padding: 40px 0; }
    .zh_recommend_head h2 { font-size: 22px; }
    .zh_recommend_head h2 small { display: none; }
    .zh_recommend_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .zh_merchants_wall { padding: 40px 0; }
    .zh_merchants_grid > .zh_merchant_card { flex: 0 1 100%; max-width: 100%; }

    .zh_news { padding: 40px 0; }
    .zh_news_head h2 { font-size: 22px; }
    .zh_news_item { padding: 16px 18px; gap: 14px; }
    .zh_news_date { width: 52px; }

    .zh_cta_big { padding: 44px 0; }
    .zh_cta_big_text h2 { font-size: 22px; }
    .zh_cta_big_btns { flex-direction: column; width: 100%; }
    .zh_cta_big_btns .zh_btn { width: 100%; }
}
