/* 越南新娘相亲模板 | 前缀: zae26e | 配色: 靛蓝 + 赤陶 + 沙金 */

: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.zae26ebody {
    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);
}

.zae26econtainer {
    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));
}

/* ========== 顶部栏 ========== */
.zae26etopbar {
    background: var(--jz-teal);
    color: var(--jz-white);
    font-size: 0.82rem;
    padding: 7px 0;
}

.zae26etopbar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.zae26etopbar-item {
    opacity: 0.95;
}

/* ========== 头部导航 ========== */
.zae26eheader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--jz-white);
    border-bottom: 1px solid var(--jz-border);
    transition: box-shadow 0.25s;
}

.zae26eheader.zae26escrolled {
    box-shadow: var(--jz-shadow);
}

.zae26eheader-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;
}

.zae26elogo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex-shrink: 1;
}

.zae26elogo-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;
}

.zae26elogo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zae26elogo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--jz-primary);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zae26elogo-sub {
    font-size: 0.72rem;
    color: var(--jz-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zae26emenu-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.zae26enav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.zae26enav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--jz-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.zae26enav-overlay {
    display: none;
}

.zae26enav {
    display: flex;
    align-items: center;
}

.zae26enav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    flex-wrap: wrap;
}

.zae26enav-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;
}

.zae26enav-link:hover,
.zae26enav-link.zae26eactive {
    background: rgba(30, 77, 140, 0.08);
    color: var(--jz-primary);
}

/* ========== 通用区块 ========== */
.zae26esection-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.zae26esection-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--jz-primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.zae26esection-subtitle {
    font-size: 1rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
}

.zae26ebtn {
    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;
}

.zae26ebtn-primary {
    background: var(--jz-accent);
    color: var(--jz-white);
    box-shadow: 0 4px 14px rgba(196, 92, 62, 0.35);
}

.zae26ebtn-primary:hover {
    background: var(--jz-accent-light);
    color: var(--jz-white);
    transform: translateY(-2px);
}

.zae26ebtn-secondary {
    background: transparent;
    color: var(--jz-white);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.zae26ebtn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--jz-white);
}

.zae26ebtn-outline-dark {
    background: var(--jz-white);
    color: var(--jz-text);
    border: 1px solid var(--jz-border);
}

.zae26ebtn-outline-dark:hover {
    border-color: var(--jz-primary);
    color: var(--jz-primary);
}

/* ========== 主视觉 ========== */
.zae26ehero {
    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;
}

.zae26ehero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.zae26ehero-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;
}

.zae26ehero-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;
}

.zae26ehero-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 0.8rem;
    line-height: 1.55;
}

.zae26ehero-lead {
    font-size: 0.92rem;
    opacity: 0.88;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.zae26ehero-lead strong {
    font-weight: 600;
    color: var(--jz-gold);
}

.zae26ehero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.zae26ehero-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);
}

.zae26ehero-stats li {
    text-align: center;
}

.zae26ehero-stats strong {
    display: block;
    font-size: 1.4rem;
    color: var(--jz-gold);
}

.zae26ehero-stats span {
    font-size: 0.78rem;
    opacity: 0.85;
}

.zae26ehero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.zae26ehero-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;
}

/* ========== 优势卡片 ========== */
.zae26efeatures {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zae26efeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.zae26efeature-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;
}

.zae26efeature-card:hover {
    box-shadow: var(--jz-shadow-hover);
    border-color: rgba(30, 77, 140, 0.25);
}

.zae26eicon-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;
}

.zae26efeature-content h3 {
    font-size: 1rem;
    color: var(--jz-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.zae26efeature-content > p {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.zae26efeature-list {
    list-style: none;
}

.zae26efeature-list li {
    font-size: 0.82rem;
    color: var(--jz-text);
    padding: 0.15rem 0 0.15rem 1.1rem;
    position: relative;
}

.zae26efeature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--jz-accent);
}

/* ========== 服务卡片 ========== */
.zae26eservices {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zae26eservices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.zae26eservice-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;
}

.zae26eservice-card:hover {
    box-shadow: var(--jz-shadow-hover);
}

.zae26eservice-image {
    height: 100px;
    display: flex;
    align-items: flex-end;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.zae26eservice-image-1 { background: linear-gradient(135deg, #1e4d8c, #3d7ab8); }
.zae26eservice-image-2 { background: linear-gradient(135deg, #2a6f6f, #4a9e9e); }
.zae26eservice-image-3 { background: linear-gradient(135deg, #8b5a2b, #c9a227); }
.zae26eservice-image-4 { background: linear-gradient(135deg, #6b3a5c, #c45c3e); }

.zae26eservice-category {
    color: var(--jz-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.zae26eservice-content {
    padding: 1.1rem 1.15rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zae26eservice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.zae26eservice-header h3 {
    font-size: 1.02rem;
    color: var(--jz-primary);
    font-weight: 600;
    min-width: 0;
}

.zae26eservice-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;
}

.zae26ebadge-hot { background: var(--jz-accent); }
.zae26ebadge-vip { background: var(--jz-gold); color: var(--jz-text); }

.zae26eservice-content > p {
    font-size: 0.87rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.zae26eservice-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.zae26efeature-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--jz-text);
    min-width: 0;
}

.zae26efeature-item span:first-child {
    flex-shrink: 0;
}

.zae26eservice-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;
}

.zae26eprice-label {
    font-size: 0.75rem;
    color: var(--jz-text-muted);
    display: block;
}

.zae26eprice-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--jz-accent);
}

.zae26eservice-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;
}

.zae26eservice-btn:hover {
    background: var(--jz-primary-dark);
    color: var(--jz-white);
}

/* ========== 流程 ========== */
.zae26eprocess {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zae26eprocess-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.zae26eprocess-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;
}

.zae26estep-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;
}

.zae26estep-content h3 {
    font-size: 0.98rem;
    color: var(--jz-primary);
    margin-bottom: 0.4rem;
}

.zae26estep-content p {
    font-size: 0.84rem;
    color: var(--jz-text-muted);
    line-height: 1.55;
}

/* ========== 城市 ========== */
.zae26ecities {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zae26ecities-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.zae26ecities-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;
}

.zae26emap-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.zae26emap-desc {
    font-size: 0.9rem;
    color: var(--jz-primary);
    font-weight: 600;
}

.zae26ecities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.zae26ecity-group {
    background: var(--jz-bg);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1rem 1.1rem;
    overflow: hidden;
}

.zae26egroup-title {
    font-size: 0.95rem;
    color: var(--jz-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.zae26ecity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.zae26ecity-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;
}

.zae26ecity-tag.hot {
    background: var(--jz-accent);
    border-color: var(--jz-accent);
    color: var(--jz-white);
}

.zae26ecity-tag:hover {
    background: var(--jz-primary);
    border-color: var(--jz-primary);
    color: var(--jz-white);
}

.zae26ecities-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--jz-text-muted);
    margin-top: 1.25rem;
    line-height: 1.6;
}

/* ========== 评价 ========== */
.zae26etestimonials {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zae26etestimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.zae26etestimonial-card {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    padding: 1.25rem;
    min-width: 0;
    overflow: hidden;
}

.zae26etestimonial-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;
}

.zae26etestimonial-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.zae26etestimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--jz-primary);
}

.zae26etestimonial-role {
    font-size: 0.8rem;
    color: var(--jz-text-muted);
}

.zae26etestimonial-stars {
    color: var(--jz-gold);
    font-size: 0.85rem;
}

.zae26etestimonial-content {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.65;
    font-style: italic;
}

/* ========== FAQ ========== */
.zae26efaq {
    padding: 3rem 0;
    background: var(--jz-white);
}

.zae26efaq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.zae26efaq-item {
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    overflow: hidden;
    background: var(--jz-bg);
}

.zae26efaq-item.open {
    border-color: var(--jz-primary);
}

.zae26efaq-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;
}

.zae26efaq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--jz-accent);
}

.zae26efaq-item.open .zae26efaq-question::after {
    content: "−";
}

.zae26efaq-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;
}

.zae26efaq-item.open .zae26efaq-answer {
    max-height: 280px;
    padding: 0 1.1rem 1rem;
}

/* ========== 联系 ========== */
.zae26econtact {
    padding: 3rem 0;
    background: var(--jz-bg);
}

.zae26econtact-framework {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zae26econtact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.zae26econtact-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);
}

.zae26econtact-card.zae26eprimary { border-top-color: var(--jz-accent); }
.zae26econtact-card.zae26esecondary { border-top-color: var(--jz-teal); }

.zae26econtact-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    min-width: 0;
}

.zae26econtact-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;
}

.zae26econtact-card.zae26eprimary .zae26econtact-icon-large { background: var(--jz-accent); }
.zae26econtact-card.zae26esecondary .zae26econtact-icon-large { background: var(--jz-teal); }

.zae26econtact-info {
    min-width: 0;
}

.zae26econtact-info h3 {
    font-size: 1rem;
    color: var(--jz-primary);
    margin-bottom: 0.25rem;
}

.zae26ephone-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jz-text);
    word-break: break-all;
}

.zae26eonline-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--jz-teal);
    font-weight: 500;
}

.zae26estatus-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; }
}

.zae26econtact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zae26efeature-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);
}

.zae26econtact-form-section {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.zae26eform-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.zae26eform-header h3 {
    font-size: 1.2rem;
    color: var(--jz-primary);
    margin-bottom: 0.3rem;
}

.zae26eform-header p {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
}

.zae26eform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.zae26eform-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zae26eform-group.zae26efull-width {
    grid-column: 1 / -1;
}

.zae26eform-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jz-text);
    margin-bottom: 0.3rem;
}

.zae26eform-group input,
.zae26eform-group select,
.zae26eform-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%;
}

.zae26eform-group input:focus,
.zae26eform-group select:focus,
.zae26eform-group textarea:focus {
    outline: none;
    border-color: var(--jz-primary);
    background: var(--jz-white);
}

.zae26eform-group textarea {
    resize: vertical;
    min-height: 90px;
}

.zae26eform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* ========== 页脚 ========== */
.zae26efooter {
    background: #152535;
    color: #b8c5d0;
    padding: 2.5rem 0 1rem;
}

.zae26efooter-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.zae26efooter-section h3 {
    color: var(--jz-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.zae26efooter-section p,
.zae26efooter-section li {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.zae26efooter-section ul {
    list-style: none;
}

.zae26efooter-section a {
    color: #b8c5d0;
}

.zae26efooter-section a:hover {
    color: var(--jz-gold);
}

.zae26efooter-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid #2a3d4f;
    font-size: 0.82rem;
}

.zae26efooter-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.zae26efooter-links a {
    color: #8fa3b5;
}

/* ========== 内页通用 ========== */
.zae26epage-inner {
    padding-top: 0;
}

.zae26einner-banner {
    background: linear-gradient(135deg, var(--jz-primary), var(--jz-teal));
    color: var(--jz-white);
    padding: 1.75rem 0 2rem;
}

.zae26ebreadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.zae26ebreadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.zae26ebreadcrumb a:hover {
    color: var(--jz-gold);
}

.zae26ebreadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.6;
}

.zae26ebreadcrumb-current {
    opacity: 0.75;
}

.zae26einner-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;
}

.zae26einner-banner-desc,
.zae26einner-banner-meta {
    font-size: 0.9rem;
    opacity: 0.88;
    line-height: 1.55;
}

.zae26einner-banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.zae26einner-banner-meta a {
    color: var(--jz-gold);
}

.zae26einner-wrap {
    padding: 2rem 0 3rem;
}

.zae26einner-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
    align-items: start;
}

.zae26einner-main {
    min-width: 0;
}

/* 列表 */
.zae26elist-cards {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zae26elist-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;
}

.zae26elist-card:hover {
    box-shadow: var(--jz-shadow-hover);
}

.zae26elist-card-thumb {
    display: block;
    overflow: hidden;
    min-height: 120px;
    background: var(--jz-bg);
}

.zae26elist-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 120px;
}

.zae26elist-card-body {
    padding: 1rem 1rem 1rem 0;
    min-width: 0;
}

.zae26elist-card-meta {
    font-size: 0.78rem;
    color: var(--jz-text-muted);
    display: block;
    margin-bottom: 0.4rem;
}

.zae26elist-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.zae26elist-card-title a {
    color: var(--jz-primary);
}

.zae26elist-card-title a:hover {
    color: var(--jz-accent);
}

.zae26elist-card-intro {
    font-size: 0.88rem;
    color: var(--jz-text-muted);
    line-height: 1.6;
}

.zae26epagebar {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jz-border);
}

.zae26epages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.zae26epages a,
.zae26epages 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);
}

.zae26epages a:hover {
    background: var(--jz-primary);
    border-color: var(--jz-primary);
    color: var(--jz-white);
}

/* 文章 */
.zae26earticle-main {
    background: var(--jz-white);
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.zae26earticle-hero-thumb {
    margin-bottom: 1.25rem;
    border-radius: var(--jz-radius);
    overflow: hidden;
    border: 1px solid var(--jz-border);
}

.zae26earticle-litpic {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.zae26etypography {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--jz-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

.zae26etypography img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 0.75rem 0;
}

.zae26etypography p {
    margin-bottom: 0.85rem;
}

.zae26earticle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.zae26earticle-figure {
    border: 1px solid var(--jz-border);
    border-radius: var(--jz-radius);
    overflow: hidden;
    margin: 0;
}

.zae26earticle-figure figcaption {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
    color: var(--jz-text-muted);
}

.zae26emeta-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;
}

.zae26emeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zae26etagitem 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;
}

.zae26eprenext {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jz-border);
    font-size: 0.9rem;
}

.zae26elike-block {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--jz-border);
}

.zae26elike-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.zae26elike-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;
}

.zae26elike-link:hover {
    border-color: var(--jz-primary);
}

.zae26elike-thumb {
    flex-shrink: 0;
    width: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.zae26elike-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jz-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.zae26elike-desc {
    font-size: 0.82rem;
    color: var(--jz-text-muted);
    line-height: 1.5;
}

/* 侧栏 */
.zae26einner-sidebar {
    min-width: 0;
}

.zae26eside-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);
}

.zae26eside-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);
}

.zae26eside-list {
    list-style: none;
}

.zae26eside-list-thumb li {
    border-bottom: 1px solid var(--jz-border);
    padding: 0.5rem 0;
}

.zae26eside-list-thumb li:last-child {
    border-bottom: none;
}

.zae26eside-thumb-link {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: inherit;
    min-width: 0;
}

.zae26eside-thumb-link:hover .zae26eside-thumb-title {
    color: var(--jz-accent);
}

.zae26eside-thumb {
    flex-shrink: 0;
    width: 72px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--jz-border);
}

.zae26eside-thumb-title {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--jz-text);
    transition: color 0.2s;
    word-break: break-word;
}

.zae26efooter-nav-channels,
.zae26efooter-friendlinks {
    list-style: none;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .zae26efeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zae26einner-layout {
        grid-template-columns: 1fr;
    }

    .zae26eside-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .zae26enav-toggle {
        display: flex;
    }

    .zae26enav-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;
    }

    .zae26emenu-checkbox:checked ~ .zae26enav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .zae26enav {
        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;
    }

    .zae26emenu-checkbox:checked ~ .zae26enav {
        transform: translateX(0);
    }

    .zae26emenu-checkbox:checked + .zae26enav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .zae26emenu-checkbox:checked + .zae26enav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .zae26emenu-checkbox:checked + .zae26enav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .zae26enav-menu {
        flex-direction: column;
        width: 100%;
    }

    .zae26enav-link {
        padding: 12px 14px;
        border-bottom: 1px solid var(--jz-border);
        border-radius: 0;
    }

    .zae26ehero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zae26ehero-buttons,
    .zae26ehero-stats {
        justify-content: center;
    }

    .zae26ehero-image {
        order: -1;
    }

    .zae26ehero-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .zae26efeatures-grid,
    .zae26eservices-grid,
    .zae26eprocess-steps,
    .zae26etestimonials-grid {
        grid-template-columns: 1fr;
    }

    .zae26ecities-content {
        grid-template-columns: 1fr;
    }

    .zae26econtact-main,
    .zae26eform-grid {
        grid-template-columns: 1fr;
    }

    .zae26efooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zae26elist-card {
        grid-template-columns: 1fr;
    }

    .zae26elist-card-body {
        padding: 0 1rem 1rem;
    }

    .zae26elist-card-thumb {
        min-height: 160px;
    }

    .zae26eservice-features {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .zae26etopbar {
        font-size: 0.72rem;
    }

    .zae26elogo-title {
        font-size: 1rem;
    }

    .zae26ehero {
        padding: 1.5rem 0 2rem;
    }

    .zae26ehero-stats {
        gap: 0.75rem;
    }

    .zae26ehero-stats strong {
        font-size: 1.15rem;
    }

    .zae26ebtn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .zae26econtact-card-header {
        flex-direction: column;
        text-align: center;
    }

    .zae26ephone-number {
        font-size: 1.15rem;
    }

    .zae26eform-actions {
        flex-direction: column;
    }

    .zae26eform-actions .zae26ebtn {
        width: 100%;
    }

    .zae26earticle-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;
}
