/* 越南新娘相亲模板 | 前缀: zcef9b | 配色: 靛蓝 + 赤陶 + 沙金 */

:root {
    --jz-primary: #1e4d8c;
    --jz-primary-dark: #153a6b;
    --jz-accent: #c45c3e;
    --jz-accent-light: #e07a5f;
    --jz-gold: #c9a227;
    --jz-teal: #2a6f6f;
    --jz-text: #1e2936;
    --jz-text-muted: #5c6b7a;
    --jz-bg: #f6f4f1;
    --jz-white: #ffffff;
    --jz-border: #dde3ea;
    --jz-radius: 10px;
    --jz-radius-lg: 16px;
    --jz-shadow: 0 2px 12px rgba(30, 77, 140, 0.08);
    --jz-shadow-hover: 0 8px 28px rgba(30, 77, 140, 0.14);
    --jz-max: 1180px;
    --jz-font: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    --jz-header-h: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body.zcef9bbody {
    font-family: var(--jz-font);
    color: var(--jz-text);
    background: var(--jz-bg);
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    padding-top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--jz-primary);
    text-decoration: none;
}

a:hover {
    color: var(--jz-accent);
}

.zcef9bcontainer {
    width: 100%;
    max-width: var(--jz-max);
    margin: 0 auto;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
}

/* ========== 顶部栏 ========== */
.zcef9btopbar {
    background: var(--jz-teal);
    color: var(--jz-white);
    font-size: 0.82rem;
    padding: 7px 0;
}

.zcef9btopbar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.zcef9btopbar-item {
    opacity: 0.95;
}

/* ========== 头部导航 ========== */
.zcef9bheader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--jz-white);
    border-bottom: 1px solid var(--jz-border);
    transition: box-shadow 0.25s;
}

.zcef9bheader.zcef9bscrolled {
    box-shadow: var(--jz-shadow);
}

.zcef9bheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--jz-max);
    margin: 0 auto;
    padding: 10px max(16px, env(safe-area-inset-left, 0px)) 10px max(16px, env(safe-area-inset-right, 0px));
    min-width: 0;
}

.zcef9blogo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex-shrink: 1;
}

.zcef9blogo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--jz-primary), var(--jz-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jz-white);
    font-weight: 700;
    font-size: 1rem;
}

.zcef9blogo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zcef9blogo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--jz-primary);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zcef9blogo-sub {
    font-size: 0.72rem;
    color: var(--jz-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zcef9bmenu-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.zcef9bnav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.zcef9bnav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--jz-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.zcef9bnav-overlay {
    display: none;
}

.zcef9bnav {
    display: flex;
    align-items: center;
}

.zcef9bnav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    flex-wrap: wrap;
}

.zcef9bnav-link {
    display: block;
    padding: 8px 14px;
    color: var(--jz-text);
    font-size: 0.94rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.zcef9bnav-link:hover,
.zcef9bnav-link.zcef9bactive {
    background: rgba(30, 77, 140, 0.08);
    color: var(--jz-primary);
}

/* ========== 通用区块 ========== */
.zcef9bsection-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.zcef9bsection-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--jz-primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.zcef9bsection-subtitle {
    font-size: 1rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
}

.zcef9bbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.3;
}

.zcef9bbtn-primary {
    background: var(--jz-accent);
    color: var(--jz-white);
    box-shadow: 0 4px 14px rgba(196, 92, 62, 0.35);
}

.zcef9bbtn-primary:hover {
    background: var(--jz-accent-light);
    color: var(--jz-white);
    transform: translateY(-2px);
}

.zcef9bbtn-secondary {
    background: transparent;
    color: var(--jz-white);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.zcef9bbtn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--jz-white);
}

.zcef9bbtn-outline-dark {
    background: var(--jz-white);
    color: var(--jz-text);
    border: 1px solid var(--jz-border);
}

.zcef9bbtn-outline-dark:hover {
    border-color: var(--jz-primary);
    color: var(--jz-primary);
}

/* ========== 主视觉 ========== */
.zcef9bhero {
    background: linear-gradient(135deg, var(--jz-primary) 0%, var(--jz-teal) 55%, #1a3d5c 100%);
    color: var(--jz-white);
    padding: 2.5rem 0 3rem;
    overflow: hidden;
}

.zcef9bhero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.zcef9bhero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.zcef9bhero-title {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    word-break: break-word;
}

.zcef9bhero-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 0.8rem;
    line-height: 1.55;
}

.zcef9bhero-lead {
    font-size: 0.92rem;
    opacity: 0.88;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.zcef9bhero-lead strong {
    font-weight: 600;
    color: var(--jz-gold);
}

.zcef9bhero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.zcef9bhero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.zcef9bhero-stats li {
    text-align: center;
}

.zcef9bhero-stats strong {
    display: block;
    font-size: 1.4rem;
    color: var(--jz-gold);
}

.zcef9bhero-stats span {
    font-size: 0.78rem;
    opacity: 0.85;
}

.zcef9bhero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.zcef9bhero-img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--jz-radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

/* ========== 优势卡片 ========== */
.zcef9bfeatures {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zcef9bfeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.zcef9bfeature-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.25rem;
    transition: box-shadow 0.25s, border-color 0.25s;
    min-width: 0;
    overflow: hidden;
}

.zcef9bfeature-card:hover {
    box-shadow: var(--jz-shadow-hover);
    border-color: rgba(30, 77, 140, 0.25);
}

.zcef9bicon-bg {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jz-primary), var(--jz-teal));
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.zcef9bfeature-content h3 {
    font-size: 1rem;
    color: var(--jz-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.zcef9bfeature-content > p {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.zcef9bfeature-list {
    list-style: none;
}

.zcef9bfeature-list li {
    font-size: 0.82rem;
    color: var(--jz-text);
    padding: 0.15rem 0 0.15rem 1.1rem;
    position: relative;
}

.zcef9bfeature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--jz-accent);
}

/* ========== 服务卡片 ========== */
.zcef9bservices {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zcef9bservices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.zcef9bservice-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: box-shadow 0.25s;
}

.zcef9bservice-card:hover {
    box-shadow: var(--jz-shadow-hover);
}

.zcef9bservice-image {
    height: 100px;
    display: flex;
    align-items: flex-end;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.zcef9bservice-image-1 { background: linear-gradient(135deg, #1e4d8c, #3d7ab8); }
.zcef9bservice-image-2 { background: linear-gradient(135deg, #2a6f6f, #4a9e9e); }
.zcef9bservice-image-3 { background: linear-gradient(135deg, #8b5a2b, #c9a227); }
.zcef9bservice-image-4 { background: linear-gradient(135deg, #6b3a5c, #c45c3e); }

.zcef9bservice-category {
    color: var(--jz-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.zcef9bservice-content {
    padding: 1.1rem 1.15rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zcef9bservice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.zcef9bservice-header h3 {
    font-size: 1.02rem;
    color: var(--jz-primary);
    font-weight: 600;
    min-width: 0;
}

.zcef9bservice-badge {
    flex-shrink: 0;
    background: var(--jz-teal);
    color: var(--jz-white);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.zcef9bbadge-hot { background: var(--jz-accent); }
.zcef9bbadge-vip { background: var(--jz-gold); color: var(--jz-text); }

.zcef9bservice-content > p {
    font-size: 0.87rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.zcef9bservice-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.zcef9bfeature-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--jz-text);
    min-width: 0;
}

.zcef9bfeature-item span:first-child {
    flex-shrink: 0;
}

.zcef9bservice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--jz-border);
    flex-wrap: wrap;
}

.zcef9bprice-label {
    font-size: 0.75rem;
    color: var(--jz-text-muted);
    display: block;
}

.zcef9bprice-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--jz-accent);
}

.zcef9bservice-btn {
    flex-shrink: 0;
    background: var(--jz-primary);
    color: var(--jz-white);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s;
}

.zcef9bservice-btn:hover {
    background: var(--jz-primary-dark);
    color: var(--jz-white);
}

/* ========== 流程 ========== */
.zcef9bprocess {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zcef9bprocess-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.zcef9bprocess-step {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.25rem 1rem;
    text-align: center;
    min-width: 0;
    overflow: hidden;
}

.zcef9bstep-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--jz-accent), var(--jz-gold));
    color: var(--jz-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.zcef9bstep-content h3 {
    font-size: 0.98rem;
    color: var(--jz-primary);
    margin-bottom: 0.4rem;
}

.zcef9bstep-content p {
    font-size: 0.84rem;
    color: var(--jz-text-muted);
    line-height: 1.55;
}

/* ========== 城市 ========== */
.zcef9bcities {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zcef9bcities-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.zcef9bcities-map {
    background: var(--jz-bg);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    min-width: 140px;
}

.zcef9bmap-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.zcef9bmap-desc {
    font-size: 0.9rem;
    color: var(--jz-primary);
    font-weight: 600;
}

.zcef9bcities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.zcef9bcity-group {
    background: var(--jz-bg);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1rem 1.1rem;
    overflow: hidden;
}

.zcef9bgroup-title {
    font-size: 0.95rem;
    color: var(--jz-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.zcef9bcity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.zcef9bcity-tag {
    display: inline-block;
    padding: 0.3em 0.85em;
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--jz-primary);
    transition: background 0.2s, color 0.2s;
}

.zcef9bcity-tag.hot {
    background: var(--jz-accent);
    border-color: var(--jz-accent);
    color: var(--jz-white);
}

.zcef9bcity-tag:hover {
    background: var(--jz-primary);
    border-color: var(--jz-primary);
    color: var(--jz-white);
}

.zcef9bcities-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--jz-text-muted);
    margin-top: 1.25rem;
    line-height: 1.6;
}

/* ========== 评价 ========== */
.zcef9btestimonials {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zcef9btestimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.zcef9btestimonial-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.25rem;
    min-width: 0;
    overflow: hidden;
}

.zcef9btestimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--jz-primary), var(--jz-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.zcef9btestimonial-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.zcef9btestimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--jz-primary);
}

.zcef9btestimonial-role {
    font-size: 0.8rem;
    color: var(--jz-text-muted);
}

.zcef9btestimonial-stars {
    color: var(--jz-gold);
    font-size: 0.85rem;
}

.zcef9btestimonial-content {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.65;
    font-style: italic;
}

/* ========== FAQ ========== */
.zcef9bfaq {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zcef9bfaq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.zcef9bfaq-item {
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    overflow: hidden;
    background: var(--jz-bg);
}

.zcef9bfaq-item.open {
    border-color: var(--jz-primary);
}

.zcef9bfaq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 2.5rem 1rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--jz-primary);
    cursor: pointer;
    font-family: inherit;
    position: relative;
}

.zcef9bfaq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--jz-accent);
}

.zcef9bfaq-item.open .zcef9bfaq-question::after {
    content: "−";
}

.zcef9bfaq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.1rem;
    font-size: 0.9rem;
    color: var(--jz-text-muted);
    line-height: 1.65;
    transition: max-height 0.35s ease, padding 0.25s;
}

.zcef9bfaq-item.open .zcef9bfaq-answer {
    max-height: 280px;
    padding: 0 1.1rem 1rem;
}

/* ========== 联系 ========== */
.zcef9bcontact {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zcef9bcontact-framework {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zcef9bcontact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.zcef9bcontact-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.25rem;
    overflow: hidden;
    border-top: 3px solid var(--jz-primary);
}

.zcef9bcontact-card.zcef9bprimary { border-top-color: var(--jz-accent); }
.zcef9bcontact-card.zcef9bsecondary { border-top-color: var(--jz-teal); }

.zcef9bcontact-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    min-width: 0;
}

.zcef9bcontact-icon-large {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--jz-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.zcef9bcontact-card.zcef9bprimary .zcef9bcontact-icon-large { background: var(--jz-accent); }
.zcef9bcontact-card.zcef9bsecondary .zcef9bcontact-icon-large { background: var(--jz-teal); }

.zcef9bcontact-info {
    min-width: 0;
}

.zcef9bcontact-info h3 {
    font-size: 1rem;
    color: var(--jz-primary);
    margin-bottom: 0.25rem;
}

.zcef9bphone-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jz-text);
    word-break: break-all;
}

.zcef9bonline-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--jz-teal);
    font-weight: 500;
}

.zcef9bstatus-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: jz-pulse 2s infinite;
}

@keyframes jz-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.zcef9bcontact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zcef9bfeature-tag {
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    background: var(--jz-bg);
    border: 1px solid var(--jz-border);
    border-radius: 12px;
    color: var(--jz-text-muted);
}

.zcef9bcontact-form-section {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.zcef9bform-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.zcef9bform-header h3 {
    font-size: 1.2rem;
    color: var(--jz-primary);
    margin-bottom: 0.3rem;
}

.zcef9bform-header p {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
}

.zcef9bform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.zcef9bform-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zcef9bform-group.zcef9bfull-width {
    grid-column: 1 / -1;
}

.zcef9bform-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jz-text);
    margin-bottom: 0.3rem;
}

.zcef9bform-group input,
.zcef9bform-group select,
.zcef9bform-group textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid var(--jz-border);
    border-radius: 6px;
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--jz-bg);
    transition: border-color 0.2s;
    max-width: 100%;
}

.zcef9bform-group input:focus,
.zcef9bform-group select:focus,
.zcef9bform-group textarea:focus {
    outline: none;
    border-color: var(--jz-primary);
    background: var(--jz-white);
}

.zcef9bform-group textarea {
    resize: vertical;
    min-height: 90px;
}

.zcef9bform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* ========== 页脚 ========== */
.zcef9bfooter {
    background: #152535;
    color: #b8c5d0;
    padding: 2.5rem 0 1rem;
}

.zcef9bfooter-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.zcef9bfooter-section h3 {
    color: var(--jz-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.zcef9bfooter-section p,
.zcef9bfooter-section li {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.zcef9bfooter-section ul {
    list-style: none;
}

.zcef9bfooter-section a {
    color: #b8c5d0;
}

.zcef9bfooter-section a:hover {
    color: var(--jz-gold);
}

.zcef9bfooter-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid #2a3d4f;
    font-size: 0.82rem;
}

.zcef9bfooter-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.zcef9bfooter-links a {
    color: #8fa3b5;
}

/* ========== 内页通用 ========== */
.zcef9bpage-inner {
    padding-top: 0;
}

.zcef9binner-banner {
    background: linear-gradient(135deg, var(--jz-primary), var(--jz-teal));
    color: var(--jz-white);
    padding: 1.75rem 0 2rem;
}

.zcef9bbreadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.zcef9bbreadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.zcef9bbreadcrumb a:hover {
    color: var(--jz-gold);
}

.zcef9bbreadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.6;
}

.zcef9bbreadcrumb-current {
    opacity: 0.75;
}

.zcef9binner-banner-title {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
    margin-bottom: 0.5rem;
}

.zcef9binner-banner-desc,
.zcef9binner-banner-meta {
    font-size: 0.9rem;
    opacity: 0.88;
    line-height: 1.55;
}

.zcef9binner-banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.zcef9binner-banner-meta a {
    color: var(--jz-gold);
}

.zcef9binner-wrap {
    padding: 2rem 0 3rem;
}

.zcef9binner-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
    align-items: start;
}

.zcef9binner-main {
    min-width: 0;
}

/* 列表 */
.zcef9blist-cards {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zcef9blist-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.zcef9blist-card:hover {
    box-shadow: var(--jz-shadow-hover);
}

.zcef9blist-card-thumb {
    display: block;
    overflow: hidden;
    min-height: 120px;
    background: var(--jz-bg);
}

.zcef9blist-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 120px;
}

.zcef9blist-card-body {
    padding: 1rem 1rem 1rem 0;
    min-width: 0;
}

.zcef9blist-card-meta {
    font-size: 0.78rem;
    color: var(--jz-text-muted);
    display: block;
    margin-bottom: 0.4rem;
}

.zcef9blist-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.zcef9blist-card-title a {
    color: var(--jz-primary);
}

.zcef9blist-card-title a:hover {
    color: var(--jz-accent);
}

.zcef9blist-card-intro {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
}

.zcef9bpagebar {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jz-border);
}

.zcef9bpages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.zcef9bpages a,
.zcef9bpages span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--jz-border);
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--jz-text);
    background: var(--jz-white);
}

.zcef9bpages a:hover {
    background: var(--jz-primary);
    border-color: var(--jz-primary);
    color: var(--jz-white);
}

/* 文章 */
.zcef9barticle-main {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.zcef9barticle-hero-thumb {
    margin-bottom: 1.25rem;
    border-radius: var(--jz-radius);
    overflow: hidden;
    border: 1px solid var(--jz-border);
}

.zcef9barticle-litpic {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.zcef9btypography {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--jz-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

.zcef9btypography img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 0.75rem 0;
}

.zcef9btypography p {
    margin-bottom: 0.85rem;
}

.zcef9barticle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.zcef9barticle-figure {
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    overflow: hidden;
    margin: 0;
}

.zcef9barticle-figure figcaption {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
    color: var(--jz-text-muted);
}

.zcef9bmeta-tags-wrap {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jz-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.zcef9bmeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zcef9btagitem a {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--jz-bg);
    border: 1px solid var(--jz-border);
    border-radius: 14px;
    font-size: 0.8rem;
}

.zcef9bprenext {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jz-border);
    font-size: 0.9rem;
}

.zcef9blike-block {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--jz-border);
}

.zcef9blike-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.zcef9blike-link {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.65rem;
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    color: inherit;
    transition: border-color 0.2s;
    min-width: 0;
}

.zcef9blike-link:hover {
    border-color: var(--jz-primary);
}

.zcef9blike-thumb {
    flex-shrink: 0;
    width: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.zcef9blike-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jz-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.zcef9blike-desc {
    font-size: 0.82rem;
    color: var(--jz-text-muted);
    line-height: 1.5;
}

/* 侧栏 */
.zcef9binner-sidebar {
    min-width: 0;
}

.zcef9bside-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1rem;
    overflow: hidden;
    position: sticky;
    top: calc(var(--jz-header-h) + 12px);
}

.zcef9bside-title {
    font-size: 1rem;
    color: var(--jz-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--jz-border);
}

.zcef9bside-list {
    list-style: none;
}

.zcef9bside-list-thumb li {
    border-bottom: 1px solid var(--jz-border);
    padding: 0.5rem 0;
}

.zcef9bside-list-thumb li:last-child {
    border-bottom: none;
}

.zcef9bside-thumb-link {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: inherit;
    min-width: 0;
}

.zcef9bside-thumb-link:hover .zcef9bside-thumb-title {
    color: var(--jz-accent);
}

.zcef9bside-thumb {
    flex-shrink: 0;
    width: 72px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--jz-border);
}

.zcef9bside-thumb-title {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--jz-text);
    transition: color 0.2s;
    word-break: break-word;
}

.zcef9bfooter-nav-channels,
.zcef9bfooter-friendlinks {
    list-style: none;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .zcef9bfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zcef9binner-layout {
        grid-template-columns: 1fr;
    }

    .zcef9bside-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .zcef9bnav-toggle {
        display: flex;
    }

    .zcef9bnav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        cursor: pointer;
    }

    .zcef9bmenu-checkbox:checked ~ .zcef9bnav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .zcef9bnav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--jz-white);
        z-index: 1001;
        padding: 4rem 1rem 1.5rem;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .zcef9bmenu-checkbox:checked ~ .zcef9bnav {
        transform: translateX(0);
    }

    .zcef9bmenu-checkbox:checked + .zcef9bnav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .zcef9bmenu-checkbox:checked + .zcef9bnav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .zcef9bmenu-checkbox:checked + .zcef9bnav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .zcef9bnav-menu {
        flex-direction: column;
        width: 100%;
    }

    .zcef9bnav-link {
        padding: 12px 14px;
        border-bottom: 1px solid var(--jz-border);
        border-radius: 0;
    }

    .zcef9bhero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zcef9bhero-buttons,
    .zcef9bhero-stats {
        justify-content: center;
    }

    .zcef9bhero-image {
        order: -1;
    }

    .zcef9bhero-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .zcef9bfeatures-grid,
    .zcef9bservices-grid,
    .zcef9bprocess-steps,
    .zcef9btestimonials-grid {
        grid-template-columns: 1fr;
    }

    .zcef9bcities-content {
        grid-template-columns: 1fr;
    }

    .zcef9bcontact-main,
    .zcef9bform-grid {
        grid-template-columns: 1fr;
    }

    .zcef9bfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zcef9blist-card {
        grid-template-columns: 1fr;
    }

    .zcef9blist-card-body {
        padding: 0 1rem 1rem;
    }

    .zcef9blist-card-thumb {
        min-height: 160px;
    }

    .zcef9bservice-features {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .zcef9btopbar {
        font-size: 0.72rem;
    }

    .zcef9blogo-title {
        font-size: 1rem;
    }

    .zcef9bhero {
        padding: 1.5rem 0 2rem;
    }

    .zcef9bhero-stats {
        gap: 0.75rem;
    }

    .zcef9bhero-stats strong {
        font-size: 1.15rem;
    }

    .zcef9bbtn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .zcef9bcontact-card-header {
        flex-direction: column;
        text-align: center;
    }

    .zcef9bphone-number {
        font-size: 1.15rem;
    }

    .zcef9bform-actions {
        flex-direction: column;
    }

    .zcef9bform-actions .zcef9bbtn {
        width: 100%;
    }

    .zcef9barticle-main {
        padding: 1rem;
    }
}

::selection {
    background: var(--jz-primary);
    color: var(--jz-white);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--jz-primary);
    border-radius: 3px;
}
