/* 越南新娘相亲网 - 百变模板样式表 | 类名前缀: z42d6a */

:root {
  --z42d6aprimary: #c41e3a;
  --z42d6aprimary-dark: #9a1830;
  --z42d6asecondary: #1a5f4a;
  --z42d6aaccent: #d4a853;
  --z42d6atext: #2c2c2c;
  --z42d6atext-light: #5a5a5a;
  --z42d6abg: #faf8f5;
  --z42d6awhite: #ffffff;
  --z42d6aborder: #e8e4df;
  --z42d6ashadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --z42d6aradius: 12px;
  --z42d6amax-width: 1200px;
  --z42d6afont: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body.z42d6abody {
  font-family: var(--z42d6afont);
  color: var(--z42d6atext);
  background: var(--z42d6abg);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.z42d6acontainer {
  width: 100%;
  max-width: var(--z42d6amax-width);
  margin: 0 auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== 顶部栏 ========== */
.z42d6atopbar {
  background: var(--z42d6asecondary);
  color: var(--z42d6awhite);
  font-size: 0.85rem;
  padding: 8px 0;
}

.z42d6atopbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.z42d6atopbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== 头部导航 ========== */
.z42d6aheader {
  background: var(--z42d6awhite);
  box-shadow: var(--z42d6ashadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.z42d6aheader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px max(16px, env(safe-area-inset-right, 0px)) 12px max(16px, env(safe-area-inset-left, 0px));
  max-width: var(--z42d6amax-width);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.z42d6alogo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--z42d6atext);
  min-width: 0;
  flex-shrink: 1;
}

.z42d6alogo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--z42d6aprimary), var(--z42d6aaccent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z42d6awhite);
  font-weight: bold;
  font-size: 1.1rem;
}

.z42d6alogo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.z42d6alogo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--z42d6aprimary);
  line-height: 1.3;
}

.z42d6alogo-sub {
  font-size: 0.75rem;
  color: var(--z42d6atext-light);
}

.z42d6anav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.z42d6anav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--z42d6aprimary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.z42d6anav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.z42d6anav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.z42d6anav-link {
  display: block;
  padding: 10px 16px;
  color: var(--z42d6atext);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.z42d6anav-link:hover,
.z42d6anav-link.z42d6aactive {
  background: rgba(196, 30, 58, 0.1);
  color: var(--z42d6aprimary);
}

.z42d6abtn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--z42d6aprimary);
  color: var(--z42d6awhite);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
}

.z42d6abtn:hover {
  background: var(--z42d6aprimary-dark);
  transform: translateY(-1px);
}

.z42d6abtn-outline {
  background: transparent;
  color: var(--z42d6aprimary);
  border: 2px solid var(--z42d6aprimary);
}

.z42d6abtn-outline:hover {
  background: var(--z42d6aprimary);
  color: var(--z42d6awhite);
}

.z42d6abtn-accent {
  background: var(--z42d6aaccent);
  color: var(--z42d6atext);
}

.z42d6abtn-accent:hover {
  background: #c49a3f;
}

/* ========== 主视觉区 ========== */
.z42d6ahero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a5f4a 0%, #2d8a6e 40%, #c41e3a 100%);
  overflow: hidden;
}

.z42d6ahero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.z42d6ahero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) max(16px, env(safe-area-inset-right, 0px)) clamp(40px, 6vw, 72px) max(16px, env(safe-area-inset-left, 0px));
  max-width: var(--z42d6amax-width);
  margin: 0 auto;
  width: 100%;
}

.z42d6ahero-content {
  color: var(--z42d6awhite);
}

.z42d6ahero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.z42d6ahero-title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  word-break: break-word;
}

.z42d6ahero-title span {
  color: var(--z42d6aaccent);
}

.z42d6ahero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 520px;
}

.z42d6ahero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 横幅右侧主图 */
.z42d6ahero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.z42d6ahero-figure {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: var(--z42d6aradius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.95);
  line-height: 0;
}

.z42d6ahero-image {
  display: block;
  width: 100%;
  aspect-ratio: 640 / 427;
  object-fit: cover;
  object-position: center top;
}

/* ========== 广告位 ========== */
.z42d6aad {
  text-align: center;
  padding: 12px 0;
  overflow: hidden;
}

.z42d6aad-top {
  background: var(--z42d6awhite);
  border-bottom: 1px solid var(--z42d6aborder);
}

.z42d6aad-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* ========== 友情链接 ========== */
.z42d6aflinks {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #333;
}

.z42d6aflinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin-top: 12px;
}

.z42d6aflinks-list a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.z42d6aflinks-list a:hover {
  color: var(--z42d6aaccent);
}

.z42d6afooter-bottom a {
  color: var(--z42d6aaccent);
  text-decoration: none;
}

.z42d6afooter-bottom a:hover {
  text-decoration: underline;
}

/* ========== 关键词条 ========== */
.z42d6akeywords {
  background: var(--z42d6awhite);
  border-bottom: 1px solid var(--z42d6aborder);
  padding: 16px 0;
}

.z42d6akeywords-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.z42d6akeyword-tag {
  font-size: 0.8rem;
  color: var(--z42d6atext-light);
  padding: 6px 14px;
  background: var(--z42d6abg);
  border-radius: 20px;
  border: 1px solid var(--z42d6aborder);
  line-height: 1.6;
  word-break: break-word;
}

/* ========== 通用区块 ========== */
.z42d6asection {
  padding: 72px 0;
}

.z42d6asection-alt {
  background: var(--z42d6awhite);
}

.z42d6asection-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.z42d6asection-label {
  display: inline-block;
  color: var(--z42d6aprimary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.z42d6asection-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--z42d6atext);
  margin-bottom: 12px;
  line-height: 1.3;
  word-break: break-word;
}

.z42d6asection-desc {
  color: var(--z42d6atext-light);
  font-size: 1rem;
}

/* ========== 服务特色 ========== */
.z42d6afeatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.z42d6afeature-card {
  background: var(--z42d6awhite);
  border-radius: var(--z42d6aradius);
  padding: 32px 24px;
  box-shadow: var(--z42d6ashadow);
  border: 1px solid var(--z42d6aborder);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.z42d6afeature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.z42d6afeature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(26, 95, 74, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.z42d6afeature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--z42d6asecondary);
}

.z42d6afeature-text {
  font-size: 0.9rem;
  color: var(--z42d6atext-light);
}

/* ========== 关于我们 ========== */
.z42d6aabout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.z42d6aabout-visual {
  position: relative;
  min-height: 360px;
  background: linear-gradient(160deg, var(--z42d6asecondary), var(--z42d6aprimary));
  border-radius: var(--z42d6aradius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.z42d6aabout-visual::after {
  content: "跨国婚恋";
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 8px;
}

.z42d6aabout-content h3 {
  font-size: 1.5rem;
  color: var(--z42d6aprimary);
  margin-bottom: 16px;
}

.z42d6aabout-content p {
  margin-bottom: 16px;
  color: var(--z42d6atext-light);
}

.z42d6aabout-list {
  list-style: none;
  margin: 20px 0;
}

.z42d6aabout-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--z42d6atext);
}

.z42d6aabout-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--z42d6asecondary);
  font-weight: bold;
}

/* ========== 服务流程 ========== */
.z42d6aprocess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: z42d6astep;
}

.z42d6aprocess-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--z42d6abg);
  border-radius: var(--z42d6aradius);
  border: 1px solid var(--z42d6aborder);
  position: relative;
}

.z42d6aprocess-num {
  width: 48px;
  height: 48px;
  background: var(--z42d6aprimary);
  color: var(--z42d6awhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.z42d6aprocess-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.z42d6aprocess-text {
  font-size: 0.85rem;
  color: var(--z42d6atext-light);
}

/* ========== 服务项目 ========== */
.z42d6aservices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.z42d6aservice-card {
  display: flex;
  gap: 20px;
  background: var(--z42d6awhite);
  padding: 28px;
  border-radius: var(--z42d6aradius);
  border: 1px solid var(--z42d6aborder);
  transition: border-color 0.2s;
}

.z42d6aservice-card:hover {
  border-color: var(--z42d6aprimary);
}

.z42d6aservice-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--z42d6asecondary);
  color: var(--z42d6awhite);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.z42d6aservice-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.z42d6aservice-text {
  font-size: 0.9rem;
  color: var(--z42d6atext-light);
}

/* ========== 优势对比 ========== */
.z42d6aadvantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.z42d6aadvantage-item {
  padding: 24px;
  background: linear-gradient(180deg, var(--z42d6awhite), var(--z42d6abg));
  border-radius: var(--z42d6aradius);
  border-left: 4px solid var(--z42d6aprimary);
}

.z42d6aadvantage-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--z42d6asecondary);
}

/* ========== 常见问题 ========== */
.z42d6afaq-list {
  max-width: 800px;
  margin: 0 auto;
}

.z42d6afaq-item {
  background: var(--z42d6awhite);
  border: 1px solid var(--z42d6aborder);
  border-radius: var(--z42d6aradius);
  margin-bottom: 12px;
  overflow: hidden;
}

.z42d6afaq-question {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--z42d6abg);
}

.z42d6afaq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--z42d6aprimary);
  flex-shrink: 0;
}

.z42d6afaq-answer {
  padding: 0 24px 18px;
  color: var(--z42d6atext-light);
  font-size: 0.95rem;
}

/* ========== 页脚 ========== */
.z42d6afooter {
  background: #1a1a1a;
  color: #aaa;
  padding: 48px 0 24px;
}

.z42d6afooter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.z42d6afooter-brand {
  color: var(--z42d6awhite);
}

.z42d6afooter-brand .z42d6alogo-title {
  color: var(--z42d6aaccent);
  margin-bottom: 12px;
}

.z42d6afooter-desc {
  font-size: 0.9rem;
  line-height: 1.8;
}

.z42d6afooter-title {
  color: var(--z42d6awhite);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.z42d6afooter-links {
  list-style: none;
}

.z42d6afooter-links li {
  margin-bottom: 8px;
}

.z42d6afooter-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.z42d6afooter-links a:hover {
  color: var(--z42d6aaccent);
}

.z42d6afooter-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.z42d6afooter-keywords {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ========== 面包屑 ========== */
.z42d6abreadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--z42d6atext-light);
  background: var(--z42d6awhite);
  border-bottom: 1px solid var(--z42d6aborder);
}

.z42d6abreadcrumb a {
  color: var(--z42d6aprimary);
  text-decoration: none;
}

.z42d6abreadcrumb span {
  margin: 0 8px;
  color: var(--z42d6aborder);
}

/* ========== 文章摘要区 ========== */
.z42d6aarticle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.z42d6aarticle-card {
  background: var(--z42d6awhite);
  border-radius: var(--z42d6aradius);
  overflow: hidden;
  border: 1px solid var(--z42d6aborder);
  transition: box-shadow 0.3s;
}

.z42d6aarticle-card:hover {
  box-shadow: var(--z42d6ashadow);
}

.z42d6aarticle-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--z42d6asecondary), var(--z42d6aprimary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.5rem;
}

.z42d6aarticle-body {
  padding: 20px;
}

.z42d6aarticle-meta {
  font-size: 0.8rem;
  color: var(--z42d6atext-light);
  margin-bottom: 8px;
}

.z42d6aarticle-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.z42d6aarticle-excerpt {
  font-size: 0.88rem;
  color: var(--z42d6atext-light);
}

/* ========== 移动端导航（纯CSS，无脚本） ========== */
.z42d6amenu-checkbox {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.z42d6anav-overlay {
  display: none;
}

#z42d6amenuCheck:checked ~ .z42d6anav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

#z42d6amenuCheck:checked ~ .z42d6anav-toggle span:nth-child(2) {
  opacity: 0;
}

#z42d6amenuCheck:checked ~ .z42d6anav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== 响应式 - 大屏 PC ========== */
@media (min-width: 1280px) {
  .z42d6ahero-visual {
    max-width: 560px;
  }

  .z42d6anav-link {
    padding: 10px 18px;
  }
}

/* ========== 响应式 - 中等 PC / 小笔记本 ========== */
@media (max-width: 1199px) and (min-width: 992px) {
  .z42d6anav-link {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .z42d6alogo-title {
    font-size: 1.1rem;
  }

  .z42d6afeatures-grid {
    gap: 20px;
  }
}

/* ========== 响应式 - 平板 ========== */
@media (max-width: 991px) {
  .z42d6anav-toggle {
    display: flex;
  }

  .z42d6anav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .z42d6anav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--z42d6awhite);
    flex-direction: column;
    align-items: stretch;
    padding: max(72px, env(safe-area-inset-top, 0px) + 56px) 20px max(24px, env(safe-area-inset-bottom, 0px));
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #z42d6amenuCheck:checked ~ .z42d6anav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  #z42d6amenuCheck:checked ~ .z42d6anav {
    right: 0;
  }

  .z42d6anav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .z42d6anav-link {
    padding: 16px 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--z42d6aborder);
    font-size: 1rem;
  }

  .z42d6ahero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .z42d6ahero-content {
    order: 1;
  }

  .z42d6ahero-visual {
    order: 2;
    max-width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .z42d6ahero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .z42d6ahero-actions {
    justify-content: center;
  }

  .z42d6afeatures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .z42d6aprocess-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .z42d6afooter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .z42d6aarticle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .z42d6aabout-grid {
    grid-template-columns: 1fr;
  }

  .z42d6aabout-content {
    order: 1;
  }

  .z42d6aabout-visual {
    order: 2;
    min-height: 240px;
  }

}

@media (max-width: 1024px) {
  .z42d6ahero {
    min-height: auto;
  }

  .z42d6asection {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  .z42d6asection-header {
    margin-bottom: clamp(32px, 5vw, 48px);
  }
}

/* ========== 响应式 - 手机 ========== */
@media (max-width: 767px) {
  .z42d6atopbar {
    font-size: 0.78rem;
    padding: 6px 0;
  }

  .z42d6atopbar-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .z42d6alogo {
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .z42d6alogo-title {
    font-size: 1rem;
    line-height: 1.25;
  }

  .z42d6abreadcrumb {
    font-size: 0.8rem;
    padding: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .z42d6ahero-inner {
    padding-top: 32px;
    padding-bottom: 36px;
    gap: 28px;
  }

  .z42d6ahero-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .z42d6asection {
    padding: 40px 0;
  }

  .z42d6asection-header {
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .z42d6afeatures-grid,
  .z42d6aadvantages,
  .z42d6aarticle-grid,
  .z42d6aservices-grid {
    grid-template-columns: 1fr;
  }

  .z42d6aprocess-grid {
    grid-template-columns: 1fr;
  }

  .z42d6afooter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .z42d6afeature-card {
    padding: 24px 20px;
  }

  .z42d6aservice-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .z42d6aabout-visual {
    min-height: 180px;
  }

  .z42d6aabout-visual::after {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .z42d6afaq-question {
    padding: 16px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .z42d6afaq-answer {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }

  .z42d6akeyword-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .z42d6akeywords {
    padding: 12px 0;
  }
}

/* ========== 响应式 - 小屏手机 ========== */
@media (max-width: 479px) {
  .z42d6alogo-sub {
    display: none;
  }

  .z42d6alogo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .z42d6aheader-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .z42d6ahero-actions {
    flex-direction: column;
    width: 100%;
  }

  .z42d6ahero-actions .z42d6abtn {
    width: 100%;
  }

  .z42d6abtn {
    padding: 14px 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .z42d6atopbar-item {
    font-size: 0.72rem;
  }

  .z42d6aarticle-thumb {
    height: 140px;
  }

  .z42d6afooter {
    padding: 36px 0 20px;
  }

  .z42d6afooter-bottom {
    font-size: 0.8rem;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ========== 横屏手机优化 ========== */
@media (max-width: 991px) and (max-height: 500px) and (orientation: landscape) {
  .z42d6anav {
    padding-top: 56px;
    width: min(260px, 70vw);
  }

  .z42d6ahero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 20px;
    padding: 24px 16px;
  }

  .z42d6ahero-content {
    order: 0;
  }

  .z42d6ahero-visual {
    order: 0;
    max-width: 100%;
  }

  .z42d6ahero-desc {
    margin-left: 0;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .z42d6ahero-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .z42d6ahero-actions {
    justify-content: flex-start;
  }

  .z42d6ahero-actions .z42d6abtn {
    padding: 8px 16px;
    font-size: 0.85rem;
    width: auto;
    min-height: auto;
  }
}
