/*
 * HC Theme: 00-Reset.css
 * --------------------------------
 * 全局样式重置与基础设定
 */

/* --- 全局样式重置与基础设定 --- */
body, h1, h2, h3, h4, h5, h6, p, ul, li, a, button, fieldset { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; box-sizing: border-box; line-height: 1.7; }
body { background-color: #F5F5F5; color: #333; }
fieldset { border: none; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }

/* 视觉隐藏但对屏幕阅读器可见（WCAG 标准写法） */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

/* Skip Link：聚焦时浮出，方便键盘用户跳过导航 */
.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  overflow: visible;
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  background: #fff;
  color: #192d78;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid #192d78;
  border-radius: 4px;
  text-decoration: none;
}
/*
 * HC Theme: 01-Global.css (v1.8)
 * --------------------------------
 * V1.6: 统一 .btn-primary:hover 动画
 * V1.7: 新增页脚 SVG 图标通用样式
 * V1.8: 自托管 Playfair Display，移除 Google Fonts CDN 依赖
 */

/* --- 自托管字体：Playfair Display (英文衬线标题字体) --- */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- 页面加载 & 滚动触发 --- */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 全局样式重置与基础设定 --- */
/* 已移动至 00-reset.css */

/* --- 4A 可访问性 (a11y) 焦点样式 --- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.search-field:focus,
.article-pagination a:focus-visible,
.pagination .page-numbers:focus-visible,
.faq-category-nav-list a:focus-visible,
.radio-item input[type="radio"]:focus-visible + label::before {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(25, 45, 120, 0.3);
  border-color: var(--primary-blue);
}
.btn-primary:focus-visible {
  background-color: #b03a0f;
  color: var(--light-text) !important;
}
.btn-secondary:focus-visible {
  background-color: var(--primary-blue);
  color: var(--light-text) !important;
}

/* --- 颜色与字体变量 --- */
:root {
  --primary-blue: #192d78;
  --accent-gold: #dc4b14;
  --dark-text: #333333;
  --light-text: #ffffff;
  --background-light: #f5f5f5;
  /*
   * 英文：自托管 Playfair Display（本地加载，无外部依赖）
   * 中文：macOS/iOS → Songti SC / STSong，Windows → SimSun / NSimSun
   * 最终兜底：Georgia serif
   */
  --title-font: "Playfair Display", "Songti SC", "STSong", "SimSun", "NSimSun", Georgia, serif;
}

/* --- 可复用按钮样式 --- */
.btn {
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.btn-primary {
  background-color: var(--accent-gold);
  color: var(--light-text);
}

/* V1.6: 统一按钮上浮动画 */
.btn-primary:hover {
  background-color: #b03a0f;
  color: var(--light-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  font-weight: 600;
  padding: 13px 33px;
}
.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--light-text) !important;
}

.btn--block-inline {
  display: inline-block;
  margin: 10px 0;
}

/* --- 通用区块样式 --- */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: var(--title-font);
  font-size: 36px;
  color: var(--primary-blue);
  font-weight: normal;
  margin-bottom: 15px;
}
.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
/* ============================================================
 * 02-layout.css  —  页面内容通用布局样式
 * ============================================================
 *
 * Header / Footer 样式已迁移至 css/hc-embed.css，
 * 本文件仅保留与 nav/footer 无关的页面级样式。
 * 面包屑样式见 css/07-components.css (.hc-breadcrumbs)
 *
 * ============================================================ *//* --- WordPress 核心对齐 & 区块样式 --- */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.wp-block-image img { margin-bottom: 1.5em; }
.wp-block-button__link { padding: 15px 35px !important; border-radius: 5px !important; font-size: 16px !important; font-weight: bold !important; transition: all 0.3s ease !important; text-decoration: none !important; display: inline-block; text-align: center; }
.wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.is-style-gold-button .wp-block-button__link { background-color: var(--accent-gold) !important; color: var(--light-text) !important; }
.is-style-gold-button .wp-block-button__link:hover { background-color: #bA3e11 !important; } 
.is-style-blue-button .wp-block-button__link { background-color: var(--primary-blue) !important; color: var(--light-text) !important; }
.is-style-blue-button .wp-block-button__link:hover { background-color: #13225a !important; }/*
 * HC Theme: 07-Components (v1.1)
 * --------------------------------
 * 存放可重用的 UI 组件，例如卡片、徽章等。
 */

/* --- 基础卡片 (c-card) --- */
/*
 * 这是 .solution-card, .insight-card, .faq-card, 
 * .method-card, .service-directory-card 的 v1.1 合并版
 */
.c-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    
    /* 关键架构：
     * 1. 允许卡片有不同的内边距 (padding)
     * 2. 强制使用 flex-column，以允许内容 (p) flex-grow: 1 
     */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* 确保内容不会溢出圆角 */
}

/* --- 卡片修饰符 (Modifiers) --- */

/* 修饰符 1: 悬停时“上浮”
 * .c-card--hover-lift 
 */
.c-card--hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

/* 修饰符 2: “顶部边框” (可变色)
 * .c-card--border-top 
 */
.c-card--border-top {
    /* 默认使用 4px 蓝色边框 */
    border-top: 4px solid var(--primary-blue);
}
.c-card--border-top:hover {
    /* 悬停时变为金色 */
    border-top-color: var(--accent-gold);
}

/* 修饰符 3: 专用于“服务目录”的 5px 边框
 * .c-card--border-top-5px
 */
.c-card--border-top-5px {
     border-top: 5px solid var(--primary-blue);
}
.c-card--border-top-5px:hover {
    border-top-color: var(--accent-gold);
}

/* ================================================================
 * 面包屑导航 (.hc-breadcrumbs)
 * ================================================================ */
.hc-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin: 20px 0 24px;
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.hc-breadcrumbs__link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hc-breadcrumbs__link:hover {
    color: var(--primary-blue, #192D78);
    text-decoration: underline;
}

.hc-breadcrumbs__sep {
    color: #ccc;
    margin: 0 4px;
    user-select: none;
}

/* ================================================================
 * 服务/方案卡片标签 (.tags) — 首页和服务归档页共用，必须放在全局组件里
 * ================================================================ */
.solution-card .tags,
.service-directory-card .tags {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-card .tags span,
.service-directory-card .tags span {
    font-size: 13px;
    color: var(--accent-gold);
    background-color: rgba(220, 75, 20, 0.08);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.solution-card .tags span a {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
}

.solution-card .tags span a:hover {
    color: var(--primary-blue);
    border-bottom: none;
}/*
 * HC Theme: 08-Content-Utils (v1.2)
 * ---------------------------------
 * 1. 内容实用工具类 (Utility Classes)
 * 2. 从 04-templates.css 中解耦，以支持 Gutenberg 编辑器
 */

/*
 * V1.2 重构:
 * 这些样式之前在 04-templates.css 中被 .article-body 和 .page-body 强制应用。
 * 现在它们是可选的“实用工具类”，编辑可以在区块编辑器的“高级”->“附加CSS类”中添加它们。
 */

/* --- 1. 标题样式 --- */

/* 替代 .article-body h2 */
.u-heading-border-left {
    font-size: 32px;
    border-left: 4px solid var(--accent-gold); 
    padding-left: 15px;
    font-family: var(--title-font); 
    color: var(--primary-blue); 
    margin-top: 2.5em; 
    margin-bottom: 1.2em;
    line-height: 1.4; 
}

/* 替代 .article-body h3 */
.u-heading-style-h3 {
    font-size: 26px;
    font-family: var(--title-font); 
    color: var(--primary-blue); 
    margin-top: 2.5em; 
    margin-bottom: 1.2em;
    line-height: 1.4; 
}

/* 替代 .article-body h4 */
.u-heading-style-h4-italic {
    font-size: 22px;
    font-style: italic;
    font-family: var(--title-font); 
    color: var(--primary-blue); 
    margin-top: 2.5em; 
    margin-bottom: 1.2em;
    line-height: 1.4; 
}


/* --- 2. 列表样式 --- */

/* 替代 .article-body ul (带 ✓ 图标) */
.u-list-checked {
    list-style: none;
    margin-left: 20px; 
    margin-bottom: 2em; 
    padding-left: 1.5em;
}
.u-list-checked li {
    margin-bottom: 1em; 
    position: relative; 
    padding-left: 25px;
}
.u-list-checked li::before { 
    content: "✓"; 
    color: var(--accent-gold); 
    font-weight: bold; 
    display: inline-block; 
    position: absolute; 
    left: 0; 
    top: 2px;
    font-size: 18px;
}

/* 替代 .page-body ul (带 • 图标) */
.u-list-bullet {
    list-style: none;
    margin-left: 30px; 
    margin-bottom: 1.8em; 
    padding-left: 1em;
}
.u-list-bullet li {
    margin-bottom: 0.8em; 
    position: relative; 
    padding-left: 20px;
}
.u-list-bullet li::before {
    content: "•"; 
    color: var(--accent-gold); 
    font-weight: bold; 
    display: inline-block; 
    position: absolute; 
    left: 0; 
    top: 0;
}


/* --- 3. 引用样式 --- */

/* 替代 .article-body blockquote */
.u-blockquote-special {
    margin: 2.5em 0;
    padding: 25px 30px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
}
.u-blockquote-special p {
    font-size: 22px;
    font-family: var(--title-font);
    font-style: italic;
    color: var(--primary-blue);
    line-height: 1.6;
    margin-bottom: 0;
}
.u-blockquote-special p:last-child {
    margin-bottom: 0;
}

/* 替代 .article-body blockquote.story-page-quote */
.u-blockquote-story {
    margin: 2.5em 0;
    padding: 30px 35px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
}
.u-blockquote-story p {
    font-size: 24px;
    font-family: var(--title-font);
    font-style: italic;
    color: var(--primary-blue);
    line-height: 1.7;
    margin-bottom: 0;
}


/* --- 4. 布局与空状态 --- */

.hc-empty-state {
    text-align: center;
    padding: 40px 0;
}

.hc-empty-state--lg {
    padding: 60px 20px;
}

.hc-empty-state__title {
    font-family: var(--title-font);
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hc-empty-state__text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.hc-empty-state__actions {
    margin-top: 20px;
}

.hc-text-muted {
    color: #666;
}

.hc-meta-muted {
    margin-left: 15px;
    color: #999;
    font-size: 0.9em;
}

.hc-loading-center {
    text-align: center;
    padding: 50px;
}

.hc-admin-notice {
    color: #999;
    font-size: 14px;
}

.hc-empty-state--muted {
    font-size: 14px;
    color: #777;
    padding: 0 20px;
}

.hc-grid-span-full {
    grid-column: 1 / -1;
}

.hc-sr-only-field {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* --- 5. PDF 全屏预览（独立模板，4A 例外页） --- */

body.hc-pdf-viewer-embed,
body.hc-pdf-viewer-embed html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body.hc-pdf-viewer-embed .hc-pdf-viewer-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}/* ============================================================
 * hc-embed.css  —  官网 Header / Footer 嵌入样式
 * ============================================================
 *
 * ⚠️  维护规则：
 *
 *   1. 本文件是上传至官网的最终 CSS 文件，路径：
 *      https://hc.biz/wp-content/themes/HC/css/hc-embed.css
 *
 *   2. 修改后请手动上传至官网，本项目通过 lib/hc-site.ts 服务端获取。
 *
 *   3. 本文件仅包含 Header（.main-nav）和 Footer（.main-footer）样式，
 *      以及它们依赖的 CSS 变量。
 *
 *   4. 禁止在此写入与 nav/footer 无关的样式。
 *
 * ============================================================ */


/* --- CSS 变量（与 01-global.css 保持同步） --- */
:root {
  --primary-blue: #192d78;
  --accent-gold: #dc4b14;
  --dark-text: #333333;
  --light-text: #ffffff;
  --background-light: #f5f5f5;
  --title-font: "Playfair Display", "Songti SC", "STSong", "SimSun", "NSimSun", Georgia, serif;
}


/* --- 通用容器 --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* ============================================================
   Header / 头部导航
   ============================================================ */

.main-nav {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}
.logo a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin-right: 40px;
}
.logo img {
  height: 45px;
  width: auto;
  max-width: 220px;
  vertical-align: middle;
}
.logo h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1;
  margin-right: 40px;
}
.nav-links {
  margin-right: auto;
}
/* ul wrapper is required for valid HTML5; flex layout applied here */
.nav-links ul {
  display: flex;
  gap: 55px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding-bottom: 5px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-contact {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* 导航栏响应式 (小屏幕) */
@media (max-width: 1080px) {
  .main-nav .container {
    flex-direction: column;
    gap: 15px;
  }
  .logo a {
    margin-right: 0;
  }
  .nav-links {
    margin-right: 0;
  }
  .nav-links ul {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-contact {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .nav-links ul {
    gap: 20px;
    font-size: 14px;
  }
  .nav-contact {
    font-size: 14px;
  }
  .logo img {
    height: 40px;
  }
}

.nav-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent-gold);
}


/* ============================================================
   Footer / 页脚
   ============================================================ */

.main-footer {
  background-color: #13225a;
  color: #bbb;
  padding: 70px 0 25px 0;
}
.footer-grid-optimized {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
}
@media (max-width: 992px) {
  .footer-grid-optimized {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-logo-area {
    grid-column: span 2;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
  }
  .footer-logo-area .logo {
    justify-content: center;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .footer-grid-optimized {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-logo-area {
    grid-column: auto;
    text-align: left;
    display: block;
  }
  .footer-logo-area .logo {
    justify-content: flex-start;
  }
}

.footer-logo-area,
.footer-links,
.footer-contact-area {
  align-self: start;
  padding-top: 0;
}

.footer-logo-area .logo a {
  color: var(--light-text);
  font-size: 26px;
  display: inline-flex;
  align-items: center;
}
.footer-logo-area .logo img {
  height: 40px;
  width: auto;
}
.footer-links h4,
.footer-contact-area h4,
.footer-logo-area .footer-qr-title {
  color: #fff;
  margin-bottom: 25px;
  font-size: 19px;
  font-family: var(--title-font);
  margin-top: 0 !important;
}

.footer-links ul {
  list-style: none;
  padding-left: 0 !important;
}
.footer-links ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-links a {
  color: #bbb;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact-area .footer-contact-list {
  list-style: none;
  padding-left: 0;
}
.footer-contact-area .footer-contact-list li {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.footer-contact-area .footer-contact-list .footer-icon {
  margin-right: 10px;
}
.footer-contact-area .footer-qr-code,
.footer-logo-area .footer-qr-code {
  margin-top: 0;
}
.footer-contact-area .footer-qr-code img,
.footer-logo-area .footer-qr-code img {
  max-width: 120px;
  height: auto;
  border-radius: 5px;
  background: #fff;
  padding: 5px;
}

.footer-corporate-nav {
  margin-bottom: 20px;
}
.footer-corporate-menu-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}
.footer-corporate-menu-list li {
  padding: 0;
}
.footer-corporate-menu-list li a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-corporate-menu-list li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #444;
  font-size: 14px;
  color: #888;
}
.footer-bottom .copyright-text {
  margin: 0;
  padding: 0;
}

/* 页脚联系信息列表（弹性对齐） */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* SVG 图标容器 */
.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #ffffff;
}
/*
 * HC Theme: 04-templates.css
 * 品牌色修正版 V3.2 — 设计 token 见 01-global.css
 */

/* ==========================================================================
   1. 洞察与搜索结果区块
   ========================================================================== */
.insights-grid, 
.search-results-grid, 
.archive-grid.search-results-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
}

/* --- 卡片容器 --- */
.insight-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* --- 图片区域 --- */
.insight-card .card-img-link { 
    display: block; 
    width: 100%; 
    height: 220px; 
    overflow: hidden;
    position: relative;
}

.insight-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.insight-card:hover img {
    transform: scale(1.05);
}

/* --- 内容区域 --- */
.insight-content { 
    padding: 30px; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

/* --- 标签样式 --- */
.insight-content .tag {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    align-self: flex-start;
    background: transparent;
    padding: 0;
}

.insight-content .tag a {
    color: var(--accent-gold); /* 使用新的 #DC4B14 */
    /* 背景使用品牌色的 8% 透明度，精准还原 */
    background-color: rgba(220, 75, 20, 0.08); 
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: block;
}

.insight-content .tag a:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

/* --- 标题样式 --- */
.insight-content h4 { 
    font-size: 20px; 
    line-height: 1.5; 
    margin-bottom: 15px; 
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em; 
}

.insight-content h4 a {
    color: var(--primary-blue); /* 使用新的 #192D78 */
    text-decoration: none;
    transition: color 0.2s;
}

.insight-content h4 a:hover {
    color: var(--accent-gold);
}

/* --- 摘要样式 --- */
.insight-card .entry-summary { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.6; 
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insight-card .entry-summary p {
    margin: 0;
}


/* ==========================================================================
   2. FAQ 卡片布局
   ========================================================================== */
.faq-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.faq-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.faq-card__footer {
    margin-top: auto;
}
.faq-card-title {
    font-family: var(--title-font);
    font-size: 22px; 
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: 15px;
}
.faq-card-title a { text-decoration: none; color: inherit; }
.faq-card-title a:hover { color: var(--accent-gold); }
.faq-card-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 25px;
}
.faq-card-excerpt p { margin-bottom: 0; }


/* ==========================================================================
   3. 文章详情页
   ========================================================================== */
.article-section { background-color: #fff; padding: 80px 0; }
.article-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.article-header { text-align: center; margin-bottom: 50px; }
.article-category { font-size: 15px; font-weight: bold; color: var(--accent-gold); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.article-title { font-family: var(--title-font); font-size: 42px; color: var(--primary-blue); margin-bottom: 25px; line-height: 1.3; }
.article-meta { font-size: 16px; color: #777; } 
.article-meta .article-author { color: var(--primary-blue); font-weight: 600; }
.article-featured-image { margin-bottom: 50px; }
.article-featured-image img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }

.article-body { font-size: 19px; line-height: 2.0; color: #333; }
.article-body p { margin-bottom: 2em; } 
.article-body h2, .article-body h3, .article-body h4 { 
    font-family: var(--title-font); 
    color: var(--primary-blue); 
    margin-top: 2.5em; 
    margin-bottom: 1.2em;
    line-height: 1.4; 
}
.article-body h2 { font-size: 32px; }
.article-body h3 { font-size: 26px; }
.article-body h4 { font-size: 22px; }
.article-body h2:first-child, .article-body h3:first-child { margin-top: 0; }
.article-body a { color: var(--accent-gold); text-decoration: none; border-bottom: 1px solid var(--accent-gold); } 
.article-body a:hover { border-bottom-style: dotted; }
/* 文章内的按钮不能继承链接的颜色和下划线 */
.article-body a.btn,
.article-body a.btn:hover {
    border-bottom: none;
    text-decoration: none;
}
.article-body a.btn-primary,
.article-body a.btn-primary:hover { color: var(--light-text); }
.article-body a.btn-secondary { color: var(--primary-blue); }
.article-body a.btn-secondary:hover { color: var(--light-text); }
.article-body ul, .article-body ol { margin-left: 20px; margin-bottom: 2em; padding-left: 1.5em; }
.article-body ol li { margin-bottom: 1em; }
.article-body strong { font-weight: 600; color: var(--primary-blue); }

.article-footer { margin-top: 60px; padding-top: 40px; border-top: 2px solid #eee; }
.article-share { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.article-share span { font-size: 16px; font-weight: 600; color: var(--primary-blue); }
.article-share a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    border-bottom: none;
    transition: all 0.3s ease;
}
.article-share a:hover { background-color: var(--accent-gold); border-bottom: none; transform: translateY(-2px); }

.article-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.article-pagination a {
    display: block;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: none;
}
.article-pagination a:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    border-bottom: none;
}
.article-pagination a span { font-size: 14px; color: #777; display: block; margin-bottom: 8px; }
.article-pagination a h4 {
    font-size: 18px;
    font-family: var(--title-font);
    color: var(--primary-blue);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}
.article-pagination a.next-post { text-align: right; }
@media (max-width: 600px) { .article-pagination { grid-template-columns: 1fr; gap: 15px; } }


/* ==========================================================================
   4. 文章列表与搜索页
   ========================================================================== */
.archive-section { padding: 80px 0; background-color: #fff; }
.page-container.archive-container-v2 { max-width: 1200px !important; padding: 0 20px; margin: 0 auto; } 

.archive-hero-section .page-hero-subtitle { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-top: 10px; max-width: 700px; margin-left: auto; margin-right: auto; }
.archive-header, .search-header { text-align: center; margin-bottom: 70px; padding-bottom: 35px; border-bottom: 1px solid #eee; }

h1.archive-title, h1.search-title { font-family: var(--title-font); font-size: 42px; color: var(--primary-blue); }
.search-title span { color: var(--accent-gold); }
.archive-description { font-size: 17px; color: #666; max-width: 650px; margin: 18px auto 0; line-height: 1.7; }

/* 搜索框 */
.archive-search-box,
.search-page-form-wrapper { 
    margin-bottom: 50px; 
    background: #fff; 
    padding: 25px; 
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    border: 1px solid #f0f0f0; 
}

.error-404-container .search-page-form-wrapper {
    background: transparent; border: none; padding: 0; box-shadow: none;
}

.archive-search-box .search-form,
.modern-search-form .search-input-group { 
    display: flex !important; 
    max-width: 100% !important; 
    margin: 0 !important;
    justify-content: flex-start !important;
    gap: 0; 
}

.archive-search-box .search-form label,
.modern-search-form label { display: block; flex-grow: 1; margin-bottom: 0; }

.archive-search-box .search-field,
.modern-search-form .search-field { 
    flex-grow: 1; 
    width: 100%;
    height: 50px; 
    padding: 0 18px; 
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px; 
    -webkit-appearance: none; 
    font-size: 16px; 
    transition: all 0.3s ease; 
    margin-right: -1px; 
}

.archive-search-box .search-field:focus,
.modern-search-form .search-field:focus { 
    outline: none;
    border-color: var(--primary-blue); 
    background-color: #fff; 
    box-shadow: 0 0 5px rgba(25, 45, 120, 0.2); /* 蓝色阴影微调 */
    position: relative; 
    z-index: 2;
}

.archive-search-box .search-submit,
.modern-search-form .search-submit { 
    height: 50px; 
    padding: 0 22px; 
    line-height: 50px; 
    border: none;
    background-color: var(--primary-blue); 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 0 5px 5px 0; 
    -webkit-appearance: none; 
    font-size: 16px;
    transition: background-color 0.3s ease; 
    flex-shrink: 0;
}

.archive-search-box .search-submit:hover,
.modern-search-form .search-submit:hover { 
    background-color: var(--accent-gold); 
    transform: none !important; 
    box-shadow: none !important;
}

.search-cancel-bar { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #eee; text-align: left; }
.btn-cancel-search { color: #666; font-size: 14px; display: inline-flex; align-items: center; }
.btn-cancel-search:hover { color: var(--primary-blue); }

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px; 
    margin-bottom: 60px;
}

.archive-card,
.search-result-card { 
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none; 
    border: 1px solid #f0f0f0; 
}
.archive-card:hover,
.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.archive-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 13px;
    color: #888;
}

.archive-card-meta .meta-tag,
.search-result-card .meta-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    background-color: rgba(220, 75, 20, 0.08); 
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-card-title,
.search-result-card .card-title {
    font-family: var(--title-font);
    font-size: 22px; 
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.4;
}
.archive-card-title a,
.search-result-card .card-link-wrapper { text-decoration: none; color: var(--primary-blue); transition: color 0.3s; }
.archive-card-title a:hover,
.search-result-card:hover .card-title { color: var(--accent-gold); }

.archive-card-excerpt,
.search-result-card .card-excerpt {
    font-size: 15px; 
    color: #555;
    line-height: 1.7; 
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.archive-card-excerpt p { margin-bottom: 0; }

.archive-card-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.meta-author { font-size: 13px; color: #777; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.meta-author img { border-radius: 50%; width: 24px; height: 24px; }

.archive-card .btn-read-more,
.search-result-card .btn-text-arrow {
    font-size: 14px; 
    font-weight: bold;
    color: var(--primary-blue);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.archive-card .btn-read-more:hover,
.search-result-card .btn-text-arrow:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.pagination-wrapper { margin-top: 50px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pagination .page-numbers { 
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 0 18px; 
    height: 45px;
    border: 1px solid #ddd; 
    color: var(--primary-blue); 
    font-weight: 600; 
    transition: all 0.2s ease; 
    border-radius: 4px; 
    text-decoration: none;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { 
    background-color: var(--primary-blue); 
    color: #fff; 
    border-color: var(--primary-blue);
}
.no-results { text-align: center; padding: 50px 0; grid-column: 1 / -1; }
.no-results__title {
    font-family: var(--title-font);
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.no-results__text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}
.no-results-card {
    text-align: center;
    padding: 60px 20px;
}
.no-results-card__text {
    color: #666;
    margin-top: 10px;
}
.no-results-card__actions {
    margin-top: 20px;
}

@media (max-width: 768px) { 
    .archive-header, .search-header { margin-bottom: 40px; } 
    .archive-grid { gap: 20px; } 
    .archive-card, .search-result-card { padding: 25px; }
    
    .archive-search-box .search-form,
    .modern-search-form .search-input-group { flex-direction: column; gap: 10px; }
    .archive-search-box .search-field,
    .modern-search-form .search-field { border-radius: 5px; margin-right: 0; }
    .archive-search-box .search-submit,
    .modern-search-form .search-submit { border-radius: 5px; width: 100%; }
}


/* ==========================================================================
   Breadcrumb bar (below page hero)
   ========================================================================== */
.page-breadcrumb-bar {
    padding-top: 0;
    padding-bottom: 0;
}

.page-breadcrumb-bar .hc-breadcrumbs {
    margin: 20px 0 24px;
}

/* Flush top padding only when content follows hero directly (no breadcrumb bar) */
.page-hero-section + .section:not(.page-hero-section),
section.page-hero-section + .section:not(.page-hero-section),
.page-hero-section + .archive-section,
section.page-hero-section + .archive-section,
.page-hero-section + .page-content-area,
section.page-hero-section + .page-content-area,
.page-hero-section + .article-section,
header.page-hero-section + .article-section {
    padding-top: 0;
}

/* Consistent breathing room between breadcrumb bar and main content */
.page-breadcrumb-bar + .archive-section,
.page-breadcrumb-bar + .page-content-area,
.page-breadcrumb-bar + .hk-tax-content-area,
.page-breadcrumb-bar + .faq-content-area,
.page-breadcrumb-bar + .bank-info-content-area,
.page-breadcrumb-bar + .contact-content-area,
.page-breadcrumb-bar + .wechat-guide-content-area,
.page-breadcrumb-bar + .verify-content-area,
.page-breadcrumb-bar + .article-section,
.page-breadcrumb-bar + .error-404-section,
.page-breadcrumb-bar + .service-intro-section,
.page-breadcrumb-bar + .philosophy-section,
.page-breadcrumb-bar + .service-directory-section,
.page-breadcrumb-bar + .section:not(.page-hero-section) {
    padding-top: 56px;
    padding-bottom: 56px;
}

/* ==========================================================================
   5. 通用页面 (page.php)
   ========================================================================== */
.page-hero-section { 
    background-color: var(--primary-blue); 
    color: #fff; 
    padding: 96px 0; 
    text-align: center;
    min-height: max(400px, 42vh);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.page-hero-section > .container {
    width: 100%;
}

.page-hero-section .page-hero-title,
header.page-hero-section h1.page-hero-title,
header.archive-hero-section h1.archive-title { 
    font-family: var(--title-font); 
    font-size: 52px;
    margin-bottom: 0; 
    color: #fff !important;
}

.page-hero-subtitle { font-size: 20px; color: rgba(255, 255, 255, 0.85); margin-top: 15px; }
.page-content-area { background-color: #f9f9f9; padding: 80px 0; }

.page-container { max-width: 900px; margin: 0 auto; padding: 60px; background-color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-radius: 8px; }

.page-body { font-size: 17px; line-height: 1.9; color: #333; }
.page-body p:first-child { margin-top: 0; }
.page-body p { margin-bottom: 1.8em; }
.page-body h2, .page-body h3 { 
    font-family: var(--title-font); 
    color: var(--primary-blue); 
    margin-top: 2.5em;
    margin-bottom: 1.2em; 
    line-height: 1.4;
}
.page-body h4 { 
    font-size: 20px; 
    font-weight: 600; 
    color: var(--primary-blue); 
    margin-top: 2em;
    margin-bottom: 0.8em; 
}
.page-body h2:first-child, .page-body h3:first-child, .page-body h4:first-child { margin-top: 0; }
.page-body a { color: var(--accent-gold); text-decoration: none; border-bottom: 1px dotted var(--accent-gold); }
.page-body a:hover { border-bottom-style: solid; }
/* 正文内的按钮不能继承链接的颜色和下划线 */
.page-body a.btn,
.page-body a.btn:hover {
    border-bottom: none;
    text-decoration: none;
}
.page-body a.btn-primary,
.page-body a.btn-primary:hover { color: var(--light-text); }
.page-body a.btn-secondary { color: var(--primary-blue); }
.page-body a.btn-secondary:hover { color: var(--light-text); }
.page-body ul, .page-body ol { margin-left: 30px; margin-bottom: 1.8em; padding-left: 1em; }
.page-body ol li { margin-bottom: 0.8em; }
.page-body strong { font-weight: 600; color: var(--primary-blue); }
@media (max-width: 768px) { 
    .page-content-area,
    .archive-section,
    .article-section,
    .faq-content-area,
    .bank-info-content-area,
    .contact-content-area,
    .verify-content-area,
    .hk-tax-content-area,
    .wechat-guide-content-area { padding: 60px 0; }
    .page-container { padding: 30px; } 
    .page-hero-section {
        min-height: max(280px, 36vh);
        padding: 64px 0;
    }
    /* 提升权重到 0,2,0，确保能覆盖桌面端 .page-hero-section .page-hero-title (0,2,0)
       使用同等权重时，媒体查询内的规则因 CSS 层叠顺序更晚而胜出 */
    .page-hero-section .page-hero-title { font-size: 36px; }
    .page-hero-section .archive-title   { font-size: 36px; }
    .page-hero-subtitle { font-size: 16px; margin-top: 10px; }
}


/* ==========================================================================
   6. “为何选择恒诚” 专属模板
   ========================================================================== */
.philosophy-section { background-color: #fff; }
.philosophy-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { 
    .philosophy-content { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-text { grid-row: 1; }
    .philosophy-image { grid-row: 2; }
}
.philosophy-image img { border-radius: 8px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
.philosophy-text h3 { font-family: var(--title-font); font-size: 30px; color: var(--primary-blue); margin-bottom: 25px; }
.philosophy-text p { font-size: 18px; line-height: 2; color: #333; }
.method-section { background-color: #f9f9f9; }
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }

.method-card { padding: 35px; }
.method-icon { font-size: 48px; line-height: 1; margin-bottom: 20px; }
.method-card h4 { font-family: var(--title-font); font-size: 22px; color: var(--primary-blue); margin-bottom: 18px; }
.method-card p { font-size: 16px; color: #555; line-height: 1.8; flex-grow: 1; }
.method-card p:last-child { margin-bottom: 0; }
.cta-section-inner { text-align: center; background-color: #f4f4f4; padding: 70px 0;}
.cta-section-inner h3 { font-family: var(--title-font); font-size: 32px; color: var(--primary-blue); margin-bottom: 30px; }
.cta-section-inner .container { text-align: center; }


/* ==========================================================================
   7. “服务与方案” 目录页
   ========================================================================== */
.service-intro-section {
    background-color: #fff;
}
.service-intro-container { max-width: 900px; margin: 0 auto; text-align: center; font-size: 18px; color: #555; line-height: 1.8; }
.page-breadcrumb-bar + .service-intro-section {
    padding-top: 40px;
    padding-bottom: 40px;
}
.service-directory-section { background-color: #f9f9f9; padding: 60px 0 10px 0; } 
.service-directory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }

.service-directory-card { padding: 30px 30px; }
.service-directory-card h3 { font-family: var(--title-font); font-size: 24px; color: var(--primary-blue); margin-bottom: 15px; }
.service-directory-card p { font-size: 16px; color: #555; line-height: 1.7; flex-grow: 1; margin-bottom: 20px; }
.service-dir-button { background-color: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 10px 25px; align-self: center; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
.service-dir-button:hover { background-color: var(--primary-blue); color: #fff; border-color: var(--primary-blue); transform: translateY(-2px); }


/* ==========================================================================
   8. FAQ 专属模板
   ========================================================================== */
.faq-content-area { background-color: #fff; padding: 80px 0; }
.faq-layout-container { display: flex; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.faq-category-nav-sticky,
.bank-info-nav-sticky {
    flex: 0 0 280px;
    position: sticky;
    top: 120px;
    height: fit-content;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #eee;
}
.faq-category-nav-sticky h4,
.bank-info-nav-sticky h4 {
    font-size: 19px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.faq-category-nav-list,
.bank-info-nav-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.faq-category-nav-list li,
.bank-info-nav-list li {
    margin-bottom: 12px;
}
.faq-category-nav-list a,
.bank-info-nav-list a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.faq-category-nav-list a:hover,
.faq-category-nav-list a.active,
.bank-info-nav-list a:hover,
.bank-info-nav-list a.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    font-weight: bold;
    background: transparent;
    border-left: none;
}
.faq-body,
.bank-info-body {
    flex-grow: 1;
    min-width: 0;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
#faq-content-area,
#bank-info-content-area {
    transition: none;
}

.faq-item { border-bottom: 1px solid #eee; margin-bottom: 20px; padding-bottom: 20px; }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-question { font-family: var(--title-font); font-size: 20px; color: var(--primary-blue); cursor: pointer; position: relative; padding-right: 30px; font-weight: 600; }
.faq-question::after { content: '+'; line-height: 28px; position: absolute; right: 0; top: 0; font-size: 24px; color: var(--accent-gold); transition: transform 0.3s ease; }
.faq-question.active::after { content: '–'; transform: rotate(180deg); }
.faq-question.active + .faq-answer { display: block; }
.faq-answer { font-size: 17px; line-height: 1.9; color: #333; padding-top: 15px; display: none; }
.faq-answer p:first-child { margin-top: 0; }
.faq-answer ul { list-style: none; margin-left: 0; margin-bottom: 1.5em; padding-left: 1.5em; }
.faq-answer ul li { margin-bottom: 0.8em; position: relative; padding-left: 25px; }
.faq-answer ul li::before { content: "✓"; color: var(--accent-gold); font-weight: bold; display: inline-block; position: absolute; left: 0; top: 2px; font-size: 18px; }
.faq-answer ol { margin-left: 0; margin-bottom: 1.5em; padding-left: 1.5em; }


/* ==========================================================================
   9. 银行信息与联系我们
   ========================================================================== */
.bank-info-content-area, .contact-content-area { padding: 80px 0; background-color: #fff; }
.bank-info-layout-container, .contact-layout-grid-v2 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bank-info-layout-container { display: flex; gap: 50px; align-items: flex-start; }
.contact-layout-grid-v2 { display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px; align-items: flex-start; }

.bank-info-loading-spinner { text-align: center; padding: 50px; font-size: 16px; color: #777; }

/* Content typography inside bank body */
.bank-info-body h1,
.bank-info-body h2,
.bank-info-body h3,
.bank-info-body h4 {
    color: var(--primary-blue);
    font-family: var(--title-font);
    line-height: 1.4;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}
.bank-info-body h2 { font-size: 22px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.bank-info-body h3 { font-size: 18px; }
.bank-info-body h4 { font-size: 16px; color: #444; }
.bank-info-body > *:first-child { margin-top: 0; }
.bank-info-body p { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 1em; }
.bank-info-body ul,
.bank-info-body ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}
.bank-info-body li { margin-bottom: 0.4em; }
.bank-info-body strong { color: #222; }
.bank-info-body a { color: var(--primary-blue); text-decoration: underline; }
.bank-info-body a:hover { color: var(--accent-gold); }
.bank-info-body hr { border: none; border-top: 1px solid #eee; margin: 2em 0; }

/* Tables */
.bank-info-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 14px;
}
.bank-info-body th {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.bank-info-body td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    color: #444;
    vertical-align: top;
}
.bank-info-body tr:nth-child(even) td { background-color: #fafafa; }
.bank-info-body tr:hover td { background-color: #f4f7ff; }
.bank-info-body img { max-width: 100%; height: auto; border-radius: 4px; }

/* 联系表单 */
.contact-form-column h3 { font-family: var(--title-font); font-size: 30px; color: var(--primary-blue); margin-top: 0; margin-bottom: 10px; }
.contact-form-column p { font-size: 17px; color: #555; margin-bottom: 30px; }
.form-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .form-group { margin-bottom: 25px; }

.form-group-card { background-color: #f9f9f9; border: 1px solid #eee; border-radius: 8px; padding: 25px 25px 20px 25px; margin-top: 30px; margin-bottom: 30px; }
.form-group-card label { margin-bottom: 20px; }

.contact-form .form-label, .contact-form label { display: block; font-size: 16px; font-weight: 600; color: var(--primary-blue); margin-bottom: 8px; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form input[type="url"], .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 18px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; transition: all 0.3s ease; -webkit-appearance: none; box-sizing: border-box; background-color: #fff;
}
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form input[type="url"]:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--primary-blue); box-shadow: 0 0 5px rgba(25, 45, 120, 0.2);
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .form-required, .contact-form .required { color: var(--accent-gold); margin-left: 4px; }
.contact-submit-btn { display: inline-block; padding: 18px 45px; font-size: 18px; font-weight: bold; text-decoration: none; border: none; cursor: pointer; -webkit-appearance: none; line-height: 1.4; width: 100%; background-color: var(--primary-blue); color: #fff; border-radius: 5px; transition: background 0.3s; }
.contact-submit-btn:hover { background-color: var(--accent-gold); }
.contact-submit-btn:disabled { background-color: #ccc; cursor: not-allowed; }

/* Radio 按钮 */
.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px 10px; margin-top: 15px; }
.radio-item { display: flex; align-items: center; margin-right: 0; position: relative; }
.radio-item input[type="radio"] { opacity: 0 !important; position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; border: none !important; background: none !important; }
.radio-item label { font-weight: normal; color: #333; margin-bottom: 0; font-size: 16px; line-height: 24px; cursor: pointer; position: relative; padding-left: 30px; display: inline-block; }
.radio-item label::before { content: ''; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border: 2px solid #aaa; border-radius: 50%; background-color: #fff; transition: all 0.3s ease; }
.radio-item label:hover::before { border-color: #777; }
.radio-item label::after { content: ''; position: absolute; left: 6px; top: 6px; width: 10px; height: 10px; background-color: var(--primary-blue); border-radius: 50%; transform: scale(0); transition: transform 0.2s ease; }
.radio-item input[type="radio"]:checked + label::before { border-color: var(--primary-blue); }
.radio-item input[type="radio"]:checked + label:hover::before { border-color: var(--primary-blue); }
.radio-item input[type="radio"]:checked + label::after { transform: scale(1); }

/* 表单消息 */
#hc-form-messages, .form-message { padding: 15px; border-radius: 5px; margin-bottom: 20px; text-align: center; display: none; }
#hc-form-messages.success, .form-message.success { background-color: #e6f7f0; color: #0d6a3f; border: 1px solid #b6e6d1; text-align: left; }
#hc-form-messages.error, .form-message.error { background-color: #fdeeee; color: #c92a2a; border: 1px solid #f7c5c5; }

.hc-contact-success { text-align: center; }
.hc-contact-success__icon {
    width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%;
    background: #059669; color: #fff; font-size: 24px; font-weight: 700; line-height: 48px;
}
.hc-contact-success__title { margin: 0 0 10px; font-size: 1.125rem; color: #065f46; font-weight: 700; }
.hc-contact-success__lead { margin: 0 0 8px; font-size: 0.9375rem; line-height: 1.6; color: #0d6a3f; }
.hc-contact-success__note { margin: 0; font-size: 0.875rem; color: #047857; }
.hc-contact-success__note a { color: var(--primary-blue, #192d78); font-weight: 600; text-decoration: underline; }

/* 隐私声明勾选框 */
.form-group-privacy { margin-bottom: 20px; }
.privacy-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    cursor: pointer;
    line-height: 1.5;
}
.privacy-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-blue);
}
.privacy-label a { color: var(--primary-blue); text-decoration: underline; }

/* 联系信息侧边栏 */
.contact-info-column-v2 { padding: 30px; background-color: #f9f9f9; border-radius: 8px; border-top: 4px solid var(--primary-blue); position: sticky; top: 120px; }
.contact-info-column-v2 h3 { font-family: var(--title-font); font-size: 24px; color: var(--primary-blue); margin-top: 0; margin-bottom: 10px; }
.contact-info-column-v2 p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 25px; }
.contact-qr-code { text-align: center; margin-bottom: 20px; }
.contact-qr-code img { width: 100%; max-width: 220px; height: auto; border: 1px solid #eee; border-radius: 8px; margin: 0 auto; }
.contact-qr-code p { margin-top: 10px; margin-bottom: 0; color: #333; font-size: 15px; }

.contact-details-optimized { border-top: 1px solid #eee; padding-top: 25px; text-align: center; }
.contact-details-optimized p { font-size: 16px; color: var(--primary-blue); font-weight: 600; margin-bottom: 5px; }
.contact-details-optimized h3 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto; font-size: 28px; color: var(--accent-gold); margin: 0 0 20px 0; }
.contact-details-optimized h3 a { color: inherit; text-decoration: none; }
.contact-details-optimized p:last-of-type { font-size: 15px; color: #555; font-weight: normal; line-height: 1.6; margin-bottom: 0; }

@media (max-width: 992px) {
    .contact-layout-grid-v2 { grid-template-columns: 1fr; gap: 50px; }
    .contact-info-column-v2 { position: static; top: auto; }
    .bank-info-layout-container, .faq-layout-container { flex-direction: column; }
    .bank-info-nav-sticky, .faq-category-nav-sticky { position: static; width: 100%; flex: 1 1 auto; }
}
@media (max-width: 768px) {
    .bank-info-content-area,
    .faq-content-area { padding: 50px 0; }
    .bank-info-body,
    .faq-body { padding: 24px 20px; box-shadow: none; border: 1px solid #eee; }
    .bank-info-body h2 { font-size: 18px; }
    .bank-info-body table { font-size: 13px; }
    .bank-info-body th, .bank-info-body td { padding: 8px 10px; }
    .contact-content-area { padding: 60px 0; }
    .contact-form-column { padding: 0; }
    .radio-group { grid-template-columns: 1fr 1fr; }
    .form-grid-2col { grid-template-columns: 1fr; gap: 0; }
    .form-group-card { padding: 20px; }
}


/* ==========================================================================
   10. 服务详情页 — 底部 CTA 区块
   ========================================================================== */
.service-footer-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background-color: var(--primary-blue);
    border-radius: 8px;
    text-align: center;
}

.service-footer-cta h3 {
    font-family: var(--title-font);
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 15px 0;
}

.service-footer-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 30px;
    max-width: 520px;
    line-height: 1.7;
}

.service-footer-cta .btn-primary {
    background-color: var(--accent-gold);
    color: #fff;
}

.service-footer-cta .btn-primary:hover {
    background-color: #b03a0f;
}

@media (max-width: 768px) {
    .service-footer-cta {
        padding: 35px 25px;
    }
    .service-footer-cta h3 {
        font-size: 22px;
    }
    .service-footer-cta p {
        font-size: 15px;
    }
}

/* ==========================================================================
   11. 公众号修改流程 (wechat-guide)
   ========================================================================== */
.wechat-guide-content-area {
    padding: 80px 0;
    background-color: #fff;
}

.wechat-guide-container {
    max-width: 800px;
}

.wechat-guide-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--background-light, #f9f9f9);
    border: 1px solid #e9eef2;
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.guide-list-item:hover {
    background: #fff;
    border-color: rgba(25, 45, 120, 0.18);
    box-shadow: 0 4px 18px rgba(25, 45, 120, 0.08);
    transform: translateY(-2px);
}

.item-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(25, 45, 120, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.item-title {
    flex: 1;
    min-width: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text, #333);
}

.item-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.item-action-btn:hover {
    opacity: 0.75;
}

.action-icon {
    transition: transform 0.2s ease;
}

.item-action-btn:hover .action-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .wechat-guide-content-area {
        padding-bottom: 60px;
    }

    .guide-list-item {
        flex-wrap: wrap;
        padding: 16px;
    }

    .item-number {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .item-title {
        font-size: 15px;
        flex: 1 1 calc(100% - 54px);
    }

    .item-action-btn {
        width: 100%;
        justify-content: flex-end;
        font-size: 13px;
    }
}