/* 护眼舒适型配色方案 */
:root {
  /* 主色调 - 温和的绿色，模拟自然光 */
  --primary-color: #1c9765;
  --primary-light: #77c1a3;
  --primary-dark: #15714c;
  
  /* 背景色 - 柔和的米色，减少眼部疲劳 */
  --background-color: #F8F5F0;
  --background-light: #FFFFFF;
  --background-dark: #E8E5DE;
  
  /* 文字颜色 - 深灰色，提高可读性同时减少刺眼 */
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  
  /* 强调色 - 用于重要信息和行动按钮 */
  --accent-color: #2196F3;
  --accent-light: #64B5F6;
  --accent-dark: #0D47A1;
  
  /* 状态颜色 */
  --success-color: #1c9765;
  --warning-color: #FF9800;
  --error-color: #F44336;

  /* CTA 品牌红 - 用于拨打电话/预约等转化按钮（视觉强调色） */
  --cta-color: #df6060;
  --cta-dark: #c74f4f;

  /* 边框和分割线 */
  --border-color: #DDDDDD;
  --border-light: #EEEEEE;
  
  /* 阴影 */
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.15);
}

/* 应用配色到网站元素 */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

/* 头部导航 */
.header {
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

/* 滚动玻璃拟态：页面下滚后 header 变为毛玻璃效果
   （半透明白 + 背景模糊 + 轻微阴影），提升层次感 */
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom-color: transparent;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.site-logo a {
  color: var(--primary-dark);
}

.main-nav a {
  color: var(--text-color);
}

/* 预约回电按钮：基础样式（移动端 + PC 共用） */
.header-callback-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #df6060;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.header-callback-btn:hover {
  background: #c94e4e;
  transform: translateY(-1px);
}
/* 移动端汉堡菜单内预约回电按钮 */
.sp-callback-btn {
  display: block !important;
  width: 100%;
  margin-top: 12px;
  padding: 14px 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: #df6060 !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.sp-callback-btn:hover {
  background: #c94e4e;
}
/* PC端隐藏菜单内按钮（PC有自己的 header 按钮） */
@media (min-width: 1024px) {
  .sp-callback-btn {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .header-callback-btn {
    padding: 10px 22px;
    font-size: 1.4rem;
  }
}

/* PC端导航字体调整（替换掉使用 !important 的旧规则，使用更具体的选择器以避免强制覆盖） */
@media (min-width: 1024px) {
  .pc-header .pc-nav .main-nav li a {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .pc-header .sub-menu-head {
    font-size: 18px;
  }

  .pc-header .sub-menu-cont > ul > li > a {
    font-size: 16px;
  }
}

/* WP 菜单（wp_nav_menu 输出的 .main-nav .sub-menu）子菜单：
   默认隐藏，hover 渐进淡入（透明度+位移动画），适合老年人识别 */
@media (min-width: 1024px) {
  .main-nav .menu-item-has-children {
    position: relative;
  }

  /* 导航自适应：header 内边距与导航项间距随视口平滑过渡（clamp），
     消除 1210px 断点处间距跳变，窗口缩放时导航跟随布局 */
  .header-inner {
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
  }
  .main-nav li a {
    margin-left: clamp(8px, 2.4vw, 40px);
    white-space: nowrap;
  }
  .main-nav > li {
    flex-shrink: 0;
  }
  /* 导航整体居中：对称三列 grid（logo | 导航 | 同宽透明占位），
     左右列等宽使导航相对窗口严格居中，且随视口自适应 */
  .header-inner {
    display: grid;
    grid-template-columns: clamp(150px, 14vw, 240px) 1fr clamp(150px, 14vw, 240px);
    align-items: center;
  }
  .header-inner > .site-logo {
    justify-self: start;
    grid-column: 1;
  }
  .header-inner > .site-logo img {
    width: 100%;
    margin: 0;
  }
  .header-inner > .pc-nav-wrap {
    grid-column: 2;
    justify-self: center;
  }
  .header-inner > .header-callback-btn {
    grid-column: 3;
    justify-self: end;
    margin-right: 56px;
  }
  .main-nav > li:first-child > a {
    margin-left: 0;
  }
  @media (max-width: 1120px) {
    .header-inner {
      padding-left: 16px;
      padding-right: 16px;
    }
    .main-nav li a {
      margin-left: clamp(6px, 1.6vw, 20px);
    }
  }
  .main-nav .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px 0;
    background: #ffffff;
    border-bottom: 3px solid #1c9765;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 999;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }
  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .sub-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav .sub-menu .menu-item {
    display: block;
    margin: 0;
    padding: 0;
  }
  .main-nav .sub-menu .menu-item a {
    display: block;
    height: auto;
    margin-left: 0;
    padding: 13px 26px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #444;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: color 0.25s ease, background-color 0.25s ease, border-left-color 0.25s ease, padding-left 0.25s ease;
  }
  .main-nav .sub-menu .menu-item a:hover {
    color: #1c9765;
    background-color: rgba(28, 151, 101, 0.1);
    border-left-color: #1c9765;
    padding-left: 30px;
  }
  /* 主菜单项 hover 时文字颜色渐深 + 下划线渐显 */
  .main-nav > li > a {
    position: relative;
    transition: color 0.3s ease;
  }
  .main-nav > li > a:hover {
    color: #1c9765;
  }
}

/* WP 菜单（移动端）：子菜单默认收起，点击父项展开 */
@media (max-width: 1023px) {
  .sp-main-nav > li > a,
  .sp-main-nav > li > div {
    font-weight: 700;
  }
  .sp-main-nav .sub-menu {
    display: none;
    margin-left: 20px;
  }
  .sp-main-nav li.menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .sp-main-nav li.menu-item-has-children > a {
    position: relative;
  }
  .sp-main-nav li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  .sp-main-nav li.menu-item-has-children.open > a::after {
    transform: translateY(-30%) rotate(225deg);
  }
  .sp-main-nav .sub-menu .menu-item a {
    display: block;
    padding: 6px 0;
    font-size: 1.3rem;
    color: #fff;
  }
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--primary-color);
}

/* ---------------------------------------------------------------
   Page Header 流体自适应：page-head + page-title
   单套 vw 规则覆盖全断点，min/max 约束极端值
   --------------------------------------------------------------- */
.page-head {
  height: 38vw !important;
  min-height: 200px;
  max-height: 540px;
  margin-bottom: 8vw !important;
}
.page-title {
  width: clamp(140px, 22vw, 420px) !important;
  height: clamp(50px, 8vw, 148px) !important;
  border-radius: 0 50% 50% 0 !important;
  bottom: 3vw !important;
  padding: 0 1.5vw;
  z-index: 10 !important;}
.page-title p {
  font-size: clamp(11px, 1.1vw, 16px) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  order: -1;
  margin-bottom: 2px;
}
.page-title h2,
.page-title h1 {
  font-size: clamp(16px, 2.2vw, 36px) !important;
  font-weight: 700;
  color: #1c9765 !important;
  margin: 0;
}

/* 页面标题：反转中英比例——中文大、英文小（font-size 由 clamp() 规则控制） */
.page-title p {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  order: -1;
  margin-bottom: 2px;
}
.page-title h2,
.page-title h1 {
  font-size: clamp(16px, 2.2vw, 36px) !important;
  font-weight: 700;
  color: #1c9765 !important;
  margin: 0;
}

/* 按钮样式
   注：主题 `.top-btn` 原为白底绿描边、`.gra` 为渐变底。
   这里仅提供兜底，具体变体在下方"色彩统一映射"中按原设计还原。 */
.btn {
  background-color: transparent;
  color: inherit;
  border: none;
}

.btn.gra {
  background: linear-gradient(30deg, #269a65, #11adba);
  color: #fff;
}

/* 卡片和内容区域 */
.about-contantlens-text-inner {
  background-color: var(--background-light);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.manufacturer-head h3 {
  color: var(--primary-dark);
}

/* 标签页 */
.tab-area {
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

.tab-panel {
  background-color: var(--background-light);
}

/* 表格 */
.hour-table th {
  background-color: var(--primary-color);
  color: white;
}

.hour-table td {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
}

/* 页脚 */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
}

.footer-site-logo a {
  color: var(--primary-dark);
}

/* 链接：使用护眼主绿以保持医疗主题一致（亮蓝会喧宾夺主） */
a {
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-dark);
}

/* 强调文本 */
.text-green {
  color: var(--primary-color);
}

/* 医疗相关强调 */
.healthcare-highlight {
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  margin: 15px 0;
}

/* ---------------------------------------------------------------
   色彩统一映射
   主题主样式 style.min.css 中硬编码了大量品牌色（#1c9765 绿、#df6060 红）。
   为消除"两套绿色并存"的分裂，统一以现有品牌绿 #1c9765 为唯一主色：
     --primary-color 已统一为 #1c9765（品牌绿）
     --primary-dark  取 #1c9765 的加深色 #15714c
     --primary-light 取 #1c9765 的减淡色 #77c1a3
     #df6060 (品牌红) 保留用于 CTA/拨打电话按钮（视觉强调色，非错误色）
   链接色固定为品牌主绿（避免亮蓝 #2196F3 喧宾夺主）。
   --------------------------------------------------------------- */

/* 文本/边框/背景的品牌绿归属到护眼主绿 */
.text-green,
a:hover,
.main-nav a:hover,
.main-nav .current-menu-item a,
.page-title h2,
.manufacturer-head h3,
.footer-site-logo a,
.hour-table th,
.secondary-color,
.accent-text,
.pagination .current,
.o-scroll-list li a.current,
.title-green,
.link-tag {
  color: var(--primary-color);
}

body {
  background-color: var(--background-color);
}

/* `.top-btn` 原设计：白底 + 品牌绿(#1c9765)描边 + 绿字；hover 渐变绿底白字 */
.top-btn {
  background: #fff !important;
  border: 1px solid #1c9765 !important;
  color: #1c9765 !important;
}
.top-btn:hover {
  color: #fff !important;
  background: linear-gradient(30deg, #269a65, #11adba) !important;
}

/* 品牌红 CTA：统一使用 --cta-color（#df6060）；header-call 为白底绿描边（非红底） */
.red-btn,
.open-nav-btn,
.sbt-arrow,
.price-highlight,
.footer .tel-wrap a,
.btn.red {
  background-color: var(--cta-color);
  color: #fff;
  border-color: var(--cta-color);
}
.red-btn:hover,
.open-nav-btn:hover,
.sbt-arrow:hover,
.footer .tel-wrap a:hover,
.btn.red:hover {
  background-color: var(--cta-dark);
  border-color: var(--cta-dark);
}
.header-call {
  background: #fff;
  border: 1px solid #1c9765;
  color: #333;
}

/* `.main-btn` 原设计：白底 + 品牌绿(#1c9765)描边 + 绿字；hover 品牌绿底白字 */
.main-btn {
  background: #fff !important;
  border: 1px solid #1c9765 !important;
  color: #1c9765 !important;
}
.main-btn:hover {
  background: #1c9765 !important;
  color: #fff !important;
}

/* `.gra` 原设计：品牌绿渐变（菜单触发器、分类标签、footer 底条等） */
.gra {
  background: linear-gradient(30deg, #269a65, #11adba);
  color: #fff;
}

/* `.cta-btn` 原设计：白描边白字（页脚 CTA）；hover 白底品牌绿字 */
.cta-btn {
  border: 1px solid #fff;
  color: #fff;
}
.cta-btn:hover {
  background: #fff;
  color: #1c9765;
}

/* `.red-btn` 统一使用 --cta-color */
.red-btn {
  background: var(--cta-color);
}

/* 老年友好：按钮 hover 反馈——渐进放大 + 阴影，强化可点击感知 */
.top-btn,
.main-btn,
.cta-btn,
.red-btn,
.open-nav-btn,
.map-link-btn,
.header-call {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.top-btn:hover,
.main-btn:hover,
.cta-btn:hover,
.red-btn:hover,
.open-nav-btn:hover,
.map-link-btn:hover,
.header-call:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* 保证 transform 过渡与子菜单 translateY 不冲突（不同元素） */

/* -------------------------
   Overrides / fixes (loaded after theme CSS)
   - 修复顶部轮播在大屏时右对齐的问题
   - 支持自定义页面头图（放置文件：wp-content/themes/oculistwan/images/custom-service-head.jpg）
   - 便于快速回退：优先使用非侵入式选择器和 media queries
   ------------------------- */

@media screen and (min-width: 1024px) {
  /* 轮播自适应：按原设计 86vw 靠右 + 左侧 14vw 留白（米色背景），
     随视口缩放；图片源文件已补齐（含高清版），大屏不再消失 */
  .top-slider .swiper-slide {
    text-align: right;
  }
  .top-slider div.slide01,
  .top-slider div.slide02,
  .top-slider div.slide03 {
    width: 86vw;
    margin-left: auto;
    margin-right: 0;
    padding-right: 14vw;
    display: block;
  }
  .top-slide-catch {
    width: 86vw;
    left: 14vw;
    margin-left: 0;
    margin-right: 0;
    padding-right: 14vw;
  }
}

/* -------------------------
   轮播优化：纯字体样式，无遮罩
   1) 渐变遮罩去掉
   2) 文字容器无背景
   3) 字号加大 + 强 text-shadow 保证可读性
   ------------------------- */
.top-slide-catch {
  background: none !important;
}
.top-slide-head {
  background: none;
  padding: 0;
  border-radius: 0;
  max-width: 520px;
}
.top-slide-head > p {
  font-size: 1.4rem !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.7),
    0 0 12px rgba(0,0,0,0.4);
}
.top-slide-head > h2 {
  font-size: 3.2rem !important;
  line-height: 1.35 !important;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.8),
    0 0 24px rgba(0,0,0,0.5),
    0 0 48px rgba(0,0,0,0.3);
}

/* 520px+ */
@media (min-width: 520px) {
  .top-slide-head {
    max-width: 560px;
  }
  .top-slide-head > p {
    font-size: 1.5rem !important;
    letter-spacing: 4px;
  }
  .top-slide-head > h2 {
    font-size: 3.6rem !important;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .top-slide-head {
    max-width: 600px;
  }
  .top-slide-head > p {
    font-size: 1.6rem !important;
  }
  .top-slide-head > h2 {
    font-size: 4.2rem !important;
  }
}

/* 1240px+ */
@media (min-width: 1240px) {
  .top-slide-head {
    max-width: 640px;
  }
  .top-slide-head > p {
    font-size: 1.8rem !important;
  }
  .top-slide-head > h2 {
    font-size: 4.8rem !important;
  }
}

/* 遮罩 + 文字同步淡入：无遮罩，仅文字容器动画 */
.top-slide-catch {
  opacity: 1;
  transform: none;
  transition: none;
}
.swiper-slide-active .top-slide-catch {
  opacity: 1;
  transform: none;
}
.top-slide-head {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.swiper-slide-active .top-slide-head {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .top-slide-head > p,
.swiper-slide-active .top-slide-head > h2 {
  animation: none !important;
}

/* 医生团队页头图（使用主题内置 staff-head 图片，避免引用不存在的占位文件导致 404） */
.page-head.staff-head {
  background-image: url('../images/staff-head.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 小屏使用 staff-head-sp 图 */
@media (max-width: 520px) {
  .page-head.staff-head { background-image: url('../images/staff-head-sp.webp'); }
}

/* 修复：`.expert-img` 等使用 calc(50% - 50vw) 全宽出血的元素，
   在其外层 `.column` 容器裁剪横向溢出，避免页面产生横向滚动条。
   clip 不影响出血视觉，只消除滚动条。 */
.column {
  overflow-x: clip;
}

/* 建议：减少 !important 的使用并将全局字体/颜色覆盖合并到本主题文件中，便于维护 */

/* （原 debug-top-slider 调试样式已删除，避免影响正式环境） */

/* -------------------------
   Team Elegance 页面布局优化
   - 优化表格样式
   - 改进内容区域间距
   - 优化响应式设计
   ------------------------- */

/* 优化 features 部分的间距和排版 */
.page .features {
  padding: 0 4%;
}

@media screen and (min-width: 520px) {
  .page .features {
    padding: 0 6%;
  }
}

@media screen and (min-width: 1024px) {
  .page .features {
    padding: 0;
    max-width: none;
    margin: 0 0 80px;
  }
  
  .page .features p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 优化表格样式 */
.main-table {
  border-collapse: separate;
  border-spacing: 0;
}

.main-table tbody tr {
  transition: background-color 0.2s ease;
}

.main-table tbody tr:hover {
  background-color: rgba(28, 151, 101, 0.03);
}

.main-table tbody tr th {
  font-weight: 600;
  color: var(--primary-dark);
}

.main-table tbody tr td {
  color: var(--text-color);
  line-height: 1.8;
}

@media screen and (min-width: 520px) {
  .main-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .main-table tbody tr th {
    background-color: rgba(28, 151, 101, 0.05);
  }
}

/* 优化 overview 部分 */
.page .overview {
  padding: 0 4%;
}

@media screen and (min-width: 520px) {
  .page .overview {
    padding: 0 6%;
  }
}

@media screen and (min-width: 1024px) {
  .page .overview {
    padding: 0;
    max-width: 900px;
    margin: 0 auto 80px;
  }
}

/* 优化地图部分 */
.page .map {
  padding: 0 4%;
}

@media screen and (min-width: 520px) {
  .page .map {
    padding: 0 6%;
  }
}

@media screen and (min-width: 1024px) {
  .page .map {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto 80px;
  }
}

.map-inner {
  background-color: var(--background-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner iframe {
  border-radius: 16px;
}

.map-placeholder {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-color);
}

.map-placeholder p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
}

.map-link-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.4rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.map-link-btn:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

@media screen and (min-width: 520px) {
  .map-placeholder {
    padding: 60px 40px;
  }
  
  .map-placeholder p {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .map-inner {
    min-height: 400px;
  }
  
  .map-placeholder {
    padding: 80px 60px;
  }
  
  .map-placeholder p {
    font-size: 2.0rem;
  }
}

.map-guidance {
  margin-top: 32px;
}

.map-guidance dl {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.map-guidance dl:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-guidance dl dt {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.map-guidance dl dt::before {
  content: "📍";
  margin-right: 8px;
  font-size: 1.4rem;
}

.map-guidance dl dd {
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

@media screen and (min-width: 520px) {
  .map-guidance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .map-guidance dl {
    margin-bottom: 0;
  }
  
  .map-guidance dl dt {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
}

@media screen and (min-width: 1024px) {
  .map-guidance {
    gap: 32px;
    margin-top: 48px;
  }
  
  .map-guidance dl {
    padding: 28px;
  }
  
  .map-guidance dl dt {
    font-size: 2.0rem;
    margin-bottom: 16px;
  }
  
  .map-guidance dl dd {
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* 优化页面标题部分 */
.page-center-head {
  text-align: center;
  margin-bottom: 32px;
}

.page-center-head span {
  display: block;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.page-center-head span::first-letter {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.page-center-head h3 {
  color: var(--primary-dark);
  font-size: 2.4rem;
  margin: 0;
  font-weight: 600;
}

@media screen and (min-width: 520px) {
  .page-center-head {
    margin-bottom: 40px;
  }
  
  .page-center-head span {
    font-size: 1.4rem;
  }
  
  .page-center-head h3 {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .page-center-head {
    margin-bottom: 48px;
  }
  
  .page-center-head span {
    font-size: 1.6rem;
  }
  
  .page-center-head h3 {
    font-size: 3.2rem;
  }
}

/* 优化图片轮播区域 */
.features-slide {
  margin-top: 32px;
}

@media screen and (min-width: 520px) {
  .features-slide {
    margin-top: 48px;
  }
}

@media screen and (min-width: 1024px) {
  .features-slide {
    margin-top: 64px;
  }
}

/* 优化整体页面间距 */
.page {
  padding-bottom: 60px;
}

@media screen and (min-width: 520px) {
  .page {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .page {
    padding-bottom: 100px;
  }
}

/* 主页“向下滚动”提示样式
   top 由 homepage.js 按轮播实际底边实时计算（resize/缩放均跟随），
   此处只负责水平位置与层级 */
.scrolldown {
  display: block !important;
  position: absolute;
  z-index: 997;
}

@media screen and (min-width: 1440px) {
  .scrolldown { left: 7.5vw; }
}

@media screen and (max-width: 1439px) {
  .scrolldown { left: 104px; }
}

.scrolldown-inner {
  position: relative;
  height: 100px;
  width: 40px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.scrolldown-svg {
  position: absolute;
  top: 0;
  left: 10px;
  width: 20px;
  height: 30px;
  z-index: 999;
}

.scrolldown-text {
  position: absolute;
  bottom: 16px;
  left: 12px;
  color: #888;
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 8px;
}

.scrolldown-dot {
  position: absolute;
  bottom: 0;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  z-index: 998;
  animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
}

.scrolldown-line {
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 1px;
  height: 64px;
  background: #ccc;
}

@keyframes circlemove {
  0% { bottom: 59px; }
  100% { bottom: -5px; }
}

@keyframes circlemovehide {
  0% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 0.9; }
  100% { opacity: 0; }
}

/* 内容区图片防布局抖动：加载前以容器底色占位，图片到位后平滑过渡 */
.greeting-img img,
.profile-img img,
.surgeon-img img,
.expert-img img,
.recruit-greeting-img img,
.facility-cont img,
.work-orthoptist-cont img,
.guide-cont img,
.top-topics-img img {
  background-color: var(--background-light);
}

/* 致辞版块图片：竖版原图裁切保留上方，裁掉下方 */
.greeting-img img {
  object-fit: cover;
  object-position: center top;
}

/* 致辞版块：图片下移并与文字版块顶部、底部对齐
   （文字块高度固定约 706px：
   ≥1240px 文字 top:120px 底部 826px；
   1024-1240px 文字 top:80px 底部 786px） */
@media screen and (min-width: 1024px) and (max-width: 1239.98px) {
  .greeting-img {
    top: 80px;
    height: 706px;
  }
  .greeting-img img {
    height: 706px;
    object-fit: cover;
  }
}
@media screen and (min-width: 1240px) {
  .greeting-img {
    top: 120px;
    height: 706px;
  }
  .greeting-img img {
    width: 100%;
    height: 706px;
    object-fit: cover;
  }
}

/* 营业时间速览条：今日门诊状态 + 简明时间表（首屏正下方） */
.hours-strip {
  padding: 26px 16px;
  background: #f2f8f4;
  border-top: 3px solid #1c9765;
}

.hours-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hours-today {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-clock {
  font-size: 3.2rem;
  line-height: 1;
}

.hours-today-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-today-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.hours-badge {
  display: inline-block;
  min-width: 150px;
  padding: 7px 14px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 999px;
}

.hours-badge.is-open {
  background: linear-gradient(30deg, #269a65, #11adba);
}

.hours-badge.is-off {
  background: #df6060;
}

.hours-brief {
  display: flex;
  gap: 36px;
  margin: 0;
}

.hours-item dt {
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c9765;
}

.hours-item dd {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
}

.hours-item dd em {
  font-style: normal;
  font-weight: 600;
  color: #222;
}

.hours-btn {
  min-height: 52px;
  padding: 12px 30px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(30deg, #269a65, #11adba);
  border-radius: 999px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hours-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #fff;
}

.hours-strip .hours-note {
  max-width: 1200px;
  margin: 10px auto 0;
  font-size: 1.3rem;
  color: #5a6b62;
  text-align: center;
}

/* 信任数据条 */
.trust-strip {
  padding: 34px 16px;
  background: linear-gradient(120deg, #1c9765, #11adba);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  text-align: center;
}
.trust-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.trust-num small {
  font-size: 1.4rem;
  font-weight: 700;
}

.trust-label {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #eafff5;
}

@media (max-width: 720px) {
  .trust-strip-inner {
    gap: 14px;
  }
  .trust-item {
    min-width: 44%;
    padding: 14px 18px;
  }
  .trust-num {
    font-size: 2.2rem;
  }
}

/* 首页：诊疗内容卡片化 */
.top-medical-cont ul li {
  padding: 0;
  border: 1px solid #e2e9e4;
  box-shadow: 0 2px 10px rgba(28, 151, 101, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.top-medical-cont ul li:hover {
  box-shadow: 0 10px 26px rgba(28, 151, 101, 0.16);
  transform: translateY(-3px);
}
.top-medical-cont ul li a.medical-card {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding: 30px 28px;
  color: inherit;
  text-decoration: none;
}
.top-medical-cont .medical-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  margin: 2px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c9765;
  background: #eef6f1;
  border-radius: 16px;
}
.top-medical-cont .medical-icon svg {
  width: 30px;
  height: 30px;
}
.top-medical-cont .medical-card-body {
  min-width: 0;
}
.top-medical-cont .medical-card-title {
  display: block;
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  transition: color 0.3s ease;
}
.top-medical-cont ul li:hover .medical-card-title {
  color: #1c9765;
}
.top-medical-cont .medical-card-text {
  display: block;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}
.top-medical-cont .medical-card-more {
  flex: 0 0 auto;
  align-self: flex-end;
  margin-left: auto;
  padding-bottom: 2px;
  font-size: 1.4rem;
  color: #1c9765;
  white-space: nowrap;
}
.top-medical-cont .medical-card-more .arrow {
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.top-medical-cont ul li:hover .medical-card-more .arrow {
  transform: translateX(4px);
}
@media (max-width: 720px) {
  .top-medical-cont ul li a.medical-card {
    flex-direction: column;
    padding: 26px 22px;
  }
  .top-medical-cont .medical-icon {
    margin: 0 0 16px;
  }
  .top-medical-cont .medical-card-more {
    margin: 16px 0 0;
  }
}

/* 首页：患者口碑评价 */
.top-reviews {
  position: relative;
  padding: 60px 16px;
  background: #ffffff;
}

.top-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-reviews-note {
  margin: 4px 0 24px;
  font-size: 1.4rem;
  color: #b8860b;
}

.top-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: #f6fbf8;
  border: 1px solid #dcebe3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(28, 151, 101, 0.06);
}

.review-stars {
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #f5a623;
}

.review-text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
}

.review-author {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  font-size: 1.4rem;
  color: #5a6b62;
}

.review-name {
  font-weight: 700;
  color: #1c9765;
}

.top-reviews-disclaimer {
  margin-top: 22px;
  font-size: 1.2rem;
  color: #b8860b;
  text-align: center;
}

@media (max-width: 900px) {
  .top-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* 文章详情页：返回列表按钮 */
.single-back {
  margin-top: 48px;
  text-align: center;
}

/* 侧栏小标题（最新文章等） */
.side-subhead {
  margin: 18px 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

/* 侧栏链接：悬停变色提示可点击 */
.side-cat-list li a {
  transition: color 0.25s ease;
}
.side-cat-list li a:hover {
  color: #1c9765;
}
.side-select:hover {
  border-color: #1c9765;
}

/* 资讯正文配图：居中、圆角、不超栏宽 */
.single-cont .news-img {
  max-width: 680px;
  margin: 32px auto;
  text-align: center;
}
.single-cont .news-img img {
  max-width: 100%;
  height: auto;
  border-radius: var(--shape-corner-md);
}

/* 资讯正文阅读体验：大字号、适中行宽（面向中老年读者） */
.page.news-page {
  padding-bottom: 64px;
}
.news-page .single-cont {
  max-width: 790px;
  margin: 0 auto;
  font-size: 1.75rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news-page .single-cont {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1023px) {
  .hours-strip-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hours-today {
    flex-direction: row;
  }
  .hours-brief {
    flex-direction: column;
    gap: 14px;
  }
}

/* 强调文本：品牌绿系（原红字黄粉底与绿色医疗主题冲突，观感像错误标注） */
.emph-text {
  color: #14663f;
  background: linear-gradient(90deg, #eef9f2 55%, #dcf1e7 100%);
}

/* 首页页脚顶部板块（logo+地址+时间表）：品牌绿渐变底，与下方电话条连成一体 */
.footer-top-box {
  height: auto;
  padding: 60px 0 56px;
  align-items: center;
  background: linear-gradient(30deg, #269a65, #11adba);
}

/* 消除原始模板的大留白：左栏 logo 地址 / 右栏 排班卡片，双栏居中 */
.footer-top-box .footer-info {
  width: 100%;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .footer-top-box .footer-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    width: min(1080px, 94vw);
    margin: 0 auto;
  }
  .footer-top-box .footer-info-box {
    flex: 0 0 330px;
    width: 330px;
    min-width: 0;
  }
  .footer-top-box .footer-info-head {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    text-align: center;
  }
  .footer-top-box .footer-site-logo a img {
    margin: 0;
  }
  .footer-top-box .footer-hour {
    flex: 1 1 0;
    min-width: 0;
    max-width: 620px;
  }
}

/* 卡片式排班表：大字高对比，替代 ● 矩阵（老年用户可读性优先） */
.footer-schedule {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-schedule li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
}

.fs-label {
  min-width: 100px;
  font-weight: 700;
}

.fs-off-label {
  color: #ffe9a8;
}

.fs-days {
  flex: 1;
}

.fs-time {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-schedule-note {
  margin-top: 16px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
}

@media screen and (max-width: 1023px) {
  .footer-top-box {
    height: auto;
    padding: 40px 0;
  }
  .footer-top-box .footer-info-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .footer-schedule li {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    font-size: 1.4rem;
  }
  .fs-label {
    min-width: 80px;
  }
}

.footer-top-box .footer-info,
.footer-top-box .footer-hour,
.footer-top-box .hour-table {
  color: #fff;
}

.footer-top-box .address {
  color: rgba(255, 255, 255, 0.92);
}

.footer-top-box .hour-table > thead > tr > th,
.footer-top-box .hour-table > thead > tr > td,
.footer-top-box .hour-table > tbody > tr > th,
.footer-top-box .hour-table > tbody > tr > td {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-top-box .hour-table > thead > tr > th {
  background: transparent;
}

.footer-top-box .hour-table > tbody > tr > th > span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-top-box .hour-warning li {
  color: #ffe9a8;
}

/* 到院路线入口 */
.footer-map-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 1.4rem;
}

.footer-map-links span {
  color: rgba(255, 255, 255, 0.85);
}

.footer-map-links a {
  padding: 5px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: background 0.3s ease;
}

.footer-map-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.map-link-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.map-link-btn {
  min-width: 150px;
  padding: 12px 22px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(30deg, #269a65, #11adba);
  border-radius: 999px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.map-link-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hours-btn-route {
  background: #fff;
  color: #1c9765;
  border: 2px solid #1c9765;
}

.hours-btn-route:hover {
  color: #14804f;
}

@media screen and (max-width: 767px) {
  .map-link-btn {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 1.4rem;
  }
}

/* 页脚版权与备案号（中国站点规范） */
.copy p {
  margin: 4px 0;
}

.icp-beian {
  font-size: 1.3rem;
  opacity: 1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

/* 首屏行动入口：电话 / 微信 / 预约回电（适老化大按钮，悬浮于轮播底部） */
.hero-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 16px 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 28px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(30deg, #269a65, #11adba);
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero-btn-tel {
  background: #df6060;
}

.hero-btn-form {
  background: #fff;
  color: #1c9765;
  border: 2px solid #1c9765;
}

/* 弹窗遮罩 */
.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

.hero-modal[hidden] {
  display: none;
}

.hero-modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-modal-box h4 {
  margin-bottom: 12px;
  font-size: 2.4rem;
  text-align: center;
  color: #222;
}

.hero-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 3rem;
  line-height: 1;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-modal-close:hover {
  color: #333;
}

.hero-qr-img {
  display: block;
  width: 240px;
  max-width: 80%;
  margin: 16px auto;
  border-radius: 12px;
}

.hero-modal-note {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

.hero-qr-missing {
  padding: 30px 10px;
  color: #b45f5f;
}

/* 回电表单 */
#callbackForm label {
  display: block;
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

#callbackForm .req {
  margin-left: 4px;
  color: #df6060;
}

#callbackForm input[type="text"],
#callbackForm input[type="tel"],
#callbackForm textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  font-size: 1.6rem;
  color: #222;
  background: #fafafa;
  border: 1px solid #ccc;
  border-radius: 10px;
}

#callbackForm input:focus,
#callbackForm textarea:focus {
  outline: 2px solid #1c9765;
  background: #fff;
}

.cb-hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
}

.hero-submit {
  display: block;
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  line-height: 56px;
  color: #fff;
  background: linear-gradient(30deg, #269a65, #11adba);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.cb-result {
  margin-top: 14px;
  padding: 12px;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: center;
  border-radius: 10px;
}

.cb-result.cb-ok {
  color: #14663f;
  background: #e6f6ee;
}

.cb-result.cb-err {
  color: #a33;
  background: #fdeeee;
}

@media screen and (max-width: 767px) {
  .hero-actions {
    gap: 10px;
    padding-bottom: 16px;
  }
  .hero-btn {
    min-height: 50px;
    padding: 10px 18px;
    font-size: 1.4rem;
  }
  .hero-modal-box {
    padding: 26px 20px;
  }
  .hero-modal-box h4 {
    font-size: 2rem;
  }
}

/* 主页主任医师介绍区块：信任体系前置（照片+职称+擅长领域），风格与诊疗卡片一致 */
.top-doctor {
  margin-bottom: 104px;
}

.top-doctor-card {
  display: flex;
  align-items: stretch;
  gap: 44px;
  margin-top: 48px;
  padding: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 24px;
}

.top-doctor-img {
  flex-shrink: 0;
  width: 340px;
  margin: 0;
}

.top-doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  border-radius: 16px;
}

.top-doctor-info {
  min-width: 0;
}

.top-doctor-info h4 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #222;
}

/* 职称徽章：品牌渐变胶囊，老年用户一眼识别身份 */
.top-doctor-title {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  font-size: 1.5rem;
  border-radius: 99px;
}

.top-doctor-info dl {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed #e5e5e5;
}

.top-doctor-info dt {
  flex-shrink: 0;
  color: #1c9765;
  font-weight: 600;
  white-space: nowrap;
}

.top-doctor-info dd {
  line-height: 1.9;
  color: #333;
  font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
  .top-doctor {
    margin-bottom: 72px;
  }
  .top-doctor-card {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 28px 24px;
  }
  .top-doctor-img {
    width: 100%;
    max-width: 380px;
  }
  .top-doctor-info h4 {
    text-align: center;
    font-size: 2.4rem;
  }
  .top-doctor-title {
    font-size: 1.3rem;
  }
  .top-doctor-info dl {
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
  }
}

/* 页脚电话咨询模块统一样式 */
.footer-phone-section {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(38, 154, 101, 0.2);
}

.footer-phone-section p {
  margin: 0;
}

.footer-phone-main {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.footer-phone-main a {
  color: #ff6b35;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.footer-phone-sub {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* guide page: hours card + phone CTA row */
.guide-hours {
  margin-top: 22px;
  padding: 18px 22px;
  background: #f3faf6;
  border-left: 4px solid var(--color-green, #1c9765);
  border-radius: 6px;
  line-height: 1.75;
  font-size: 16px;
}
.guide-hours h5 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--color-green, #1c9765);
}
.guide-phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green, #1c9765) !important;
  letter-spacing: 1px;
  text-decoration: none;
}
.guide-phone:hover { text-decoration: underline; }
.guide-hours em {
  font-style: normal;
  font-weight: 700;
  color: #222;
}
.guide-hours-note {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}
.guide-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.guide-btn-tel {
  background: var(--color-red, #df6060);
  border-color: var(--color-red, #df6060);
  color: #fff !important;
}
.guide-btn-tel:hover {
  background: #c84e4e;
  border-color: #c84e4e;
}

/* surgical page */
.surgical-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.surgical-card {
  background: #f3faf6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid var(--color-green, #1c9765);
}
.surgical-card h5 {
  color: var(--color-green, #1c9765);
  margin-bottom: 10px;
}
.surgical-step {
  background: linear-gradient(135deg, #1c9765 0%, #11adba 100%);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.surgical-step h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}
.surgical-step p {
  margin-bottom: 10px;
}
.surgical-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}
.surgical-cta {
  text-align: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}
.surgical-cta a {
  display: inline-block;
}
.surgical-table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}
.surgical-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}
.surgical-table th {
  background: var(--color-green, #1c9765);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.surgical-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e5e5e5;
}
.surgical-table tbody tr:hover {
  background: #f3faf6;
}
.surgical-table-note {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .guide-btn-row { flex-direction: column; }
  .guide-btn-row .main-btn { width: 100%; text-align: center; }
}

/* ===== 首页紧凑化：收敛大屏 section 纵向留白，缩短整页下拉距离 ===== */
@media screen and (min-width: 1024px) {
  .top-about { margin: 72px 0 88px; }
  .top-medical { margin-bottom: 72px; }
  .top-medical-inner { padding: 72px 0; }
  .top-features { margin-bottom: 72px; }
  .top-topics { margin-bottom: 72px; }
  .top-topics-inner { padding: 72px 0; }
  .top-doctor { margin-bottom: 56px; }
  .top-doctor-card { margin-top: 36px; padding: 26px; gap: 30px; }
  .top-features-cont { margin-bottom: 44px; }
  .top-medical-cont { margin-top: -20px; }
  .top-medical-cont ul li { margin-top: 22px; padding: 20px 22px; }
  .top-topics-cont { margin-top: 32px; }
  .top-topics-img img { height: 220px; }
}

/* ===== 白内障页 · 影像化科普组件 ===== */
/* 1. 白内障视角模拟 */
.vision-sim { margin-top: 44px; padding: 30px 32px; background: #fff; border: 1px solid #e2e9e4; border-radius: 18px; box-shadow: 0 2px 10px rgba(28,151,101,.06); }
.vision-sim > h4 { font-size: 1.9rem; color: #222; }
.vision-sim .text-green { display: inline-block; margin: 6px 0 18px; }
.vision-sim-stage { min-height: 38px; }
.vision-stage { display: inline-block; padding: 7px 20px; border-radius: 999px; font-size: 1.5rem; font-weight: 700; color: #fff; background: #1c9765; transition: background .2s ease; }
.vision-stage.is-early { background: #8a9d55; }
.vision-stage.is-mid { background: #b98445; }
.vision-stage.is-late { background: #a0503f; }
.vision-sim-view { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #eef1ee; }
.vision-sim-img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: filter; }
.vision-sim-range { -webkit-appearance: none; appearance: none; width: 100%; margin-top: 22px; height: 26px; background: transparent; cursor: pointer; }
.vision-sim-range:focus { outline: 2px solid rgba(28,151,101,.4); outline-offset: 2px; }
.vision-sim-range::-webkit-slider-runnable-track { height: 8px; border-radius: 99px; background: linear-gradient(90deg, #1c9765, #11adba); }
.vision-sim-range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -9px; border-radius: 50%; background: #fff; border: 3px solid #1c9765; box-shadow: 0 2px 6px rgba(28,151,101,.35); }
.vision-sim-range::-moz-range-track { height: 8px; border-radius: 99px; background: linear-gradient(90deg, #1c9765, #11adba); }
.vision-sim-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid #1c9765; box-shadow: 0 2px 6px rgba(28,151,101,.35); }
.vision-sim-labels { display: flex; justify-content: space-between; margin-top: 4px; font-size: 1.3rem; color: #888; }

/* 2. 疾病发展四阶段刻度尺 */
.stage-scale { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0 8px; padding: 0; list-style: none; }
.stage-item { background: #fff; border: 1px solid #e2e9e4; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(28,151,101,.05); }
.stage-fig { position: relative; aspect-ratio: 16 / 10; margin: 0; overflow: hidden; }
.stage-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage-item[data-stage="1"] .stage-fig img { filter: blur(.6px) brightness(.97) saturate(.96) sepia(.06); }
.stage-item[data-stage="2"] .stage-fig img { filter: blur(2px) brightness(.9) saturate(.8) sepia(.2); }
.stage-item[data-stage="3"] .stage-fig img { filter: blur(4px) brightness(.8) saturate(.55) sepia(.36); }
.stage-item[data-stage="4"] .stage-fig img { filter: blur(7px) brightness(.68) saturate(.3) sepia(.5); }
.stage-num { position: absolute; top: 12px; left: 12px; display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(28,151,101,.92); color: #fff; font-size: 1.3rem; font-weight: 700; }
.stage-body { padding: 16px 18px 20px; }
.stage-body h5 { margin: 0 0 8px; font-size: 1.8rem; color: #1c9765; }
.stage-body p { margin: 0; font-size: 1.4rem; line-height: 1.85; color: #555; }

/* 3. 人工晶状体视距对比 */
.iol-compare { margin-top: 40px; padding: 30px 32px; background: #fff; border: 1px solid #e2e9e4; border-radius: 18px; box-shadow: 0 2px 10px rgba(28,151,101,.06); }
.iol-compare > h4 { font-size: 1.9rem; color: #222; }
.iol-compare .text-green { display: inline-block; margin: 6px 0 18px; }
.iol-distance { display: flex; gap: 10px; flex-wrap: wrap; }
.d-btn { flex: 1 1 auto; min-width: 96px; padding: 13px 18px; font-size: 1.5rem; font-weight: 700; color: #1c9765; background: #eef6f1; border: 2px solid #dcebe3; border-radius: 10px; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.d-btn:hover { border-color: #1c9765; }
.d-btn.is-active { color: #fff; background: #1c9765; border-color: #1c9765; }
.iol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 24px 0 0; padding: 0; }
.iol-card { background: #f8faf8; border: 1px solid #e2e9e4; border-radius: 14px; padding: 14px; }
.iol-view { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 10px; }
.iol-view img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iol-state { position: absolute; left: 10px; bottom: 10px; padding: 5px 14px; border-radius: 999px; font-size: 1.3rem; font-weight: 700; color: #fff; background: #df6060; }
.iol-state.is-clear { background: #1c9765; }
.iol-card h5 { margin: 14px 0 6px; font-size: 1.8rem; color: #222; }
.iol-card h5::before { content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; background: #1c9765; vertical-align: 2px; }
.iol-card[data-iol="bifocal"] h5::before { background: #2196f3; }
.iol-card[data-iol="trifocal"] h5::before { background: #df6060; }
.iol-card p { margin: 0; font-size: 1.4rem; line-height: 1.8; color: #555; }
.iol-tip { margin: 18px 0 0; font-size: 1.3rem; color: #999; }

/* 4. 视频课堂 */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; list-style: none; margin: 6px 0 0; padding: 0; }
.video-card { background: #fff; border: 1px solid #e2e9e4; border-radius: 16px; padding: 14px; box-shadow: 0 2px 10px rgba(28,151,101,.05); }
.video-thumb { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 16 / 10; background: #eef1ee; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.video-thumb:hover img { transform: scale(1.04); }
.video-play { position: absolute; top: 50%; left: 50%; width: 56px; height: 56px; margin: -28px 0 0 -28px; border-radius: 50%; background: rgba(0,0,0,.42); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s ease, transform .2s ease; }
.video-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.video-thumb:hover .video-play { background: rgba(28,151,101,.92); transform: scale(1.08); }
.video-dur { position: absolute; right: 10px; bottom: 10px; padding: 3px 10px; border-radius: 6px; background: rgba(0,0,0,.6); color: #fff; font-size: 1.25rem; }
.video-badge { position: absolute; top: 10px; left: 10px; padding: 4px 12px; border-radius: 999px; background: rgba(28,151,101,.92); color: #fff; font-size: 1.25rem; font-weight: 700; }
.video-title { margin: 14px 4px 4px; font-size: 1.6rem; font-weight: 700; color: #222; line-height: 1.5; }
.video-src { margin: 0 4px; font-size: 1.3rem; color: #999; }
.video-toast { position: fixed; left: 50%; bottom: 44px; transform: translate(-50%, 20px); max-width: 86vw; padding: 13px 26px; border-radius: 999px; background: rgba(28,28,28,.9); color: #fff; font-size: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 1200; }
.video-toast.is-show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
	.stage-scale { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.iol-grid { grid-template-columns: 1fr; gap: 16px; }
	.video-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 560px) {
	.stage-scale { grid-template-columns: 1fr; }
	.vision-sim, .iol-compare { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.vision-sim-img { transition: none; }
	.video-thumb img, .video-play, .d-btn { transition: none; }
}



/* ===== 白内障和手术总览页（page-healthcare.php）===== */
.hc-stats { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 40px auto 8px; max-width: 1000px; }
.hc-stat { flex: 1 1 200px; min-width: 0; max-width: 300px; background: linear-gradient(135deg, rgba(28,151,101,.08), rgba(28,151,101,.16)); border: 1px solid rgba(28,151,101,.18); border-radius: 14px; padding: 20px 16px; text-align: center; box-sizing: border-box; }
.hc-stat-num { font-size: 2.4rem; font-weight: 700; color: var(--primary-color); line-height: 1.2; }
.hc-stat-num small { font-size: 1.3rem; font-weight: 400; }
.hc-stat-label { margin-top: 6px; font-size: 1.2rem; color: var(--text-color); }
.hc-stat-note { margin-top: 2px; font-size: 1.05rem; color: var(--text-light); }

.hc-lead { max-width: 860px; margin: 12px auto 0; text-align: center; line-height: 2; font-size: 1.6rem; color: #444; }

.hc-section { max-width: 1200px; margin: 0 auto 72px; padding: 0 4%; box-sizing: border-box; }
@media screen and (min-width: 1024px) { .hc-section { padding: 0; } }

.hc-entry { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hc-entry-card { flex: 1 1 280px; min-width: 0; display: flex; flex-direction: column; background: var(--background-light); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px 26px; box-sizing: border-box; transition: box-shadow .2s ease, transform .2s ease; }
a.hc-entry-card { text-decoration: none; }
.hc-entry-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.hc-entry-en { font-size: 1.05rem; letter-spacing: 1px; color: var(--primary-color); font-weight: 600; }
.hc-entry-card h4 { margin: 8px 0 10px; font-size: 1.8rem; color: var(--text-color); font-weight: 700; }
.hc-entry-card p { flex: 1; margin: 0 0 18px; font-size: 1.3rem; line-height: 1.85; color: var(--text-light); }
.hc-entry-more { color: var(--primary-color); font-weight: 700; font-size: 1.2rem; }
.hc-entry-more .arrow { display: inline-block; transition: transform .2s ease; }
.hc-entry-card:hover .hc-entry-more .arrow { transform: translateX(4px); }

.hc-why-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hc-why-item { flex: 1 1 240px; min-width: 0; background: var(--background-light); border: 1px solid var(--border-light); border-radius: 14px; padding: 22px 20px; box-sizing: border-box; }
.hc-why-item h5 { font-size: 1.35rem; color: var(--primary-color); margin: 0 0 10px; }
.hc-why-item p { margin: 0; font-size: 1.2rem; line-height: 1.8; color: var(--text-color); }
.hc-why-item .hc-why-num { font-size: 2.1rem; font-weight: 700; color: var(--primary-color); display: block; line-height: 1.3; }
.hc-why-item .hc-why-unit { font-size: 1.2rem; font-weight: 400; }

.hc-steps { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hc-step { flex: 1 1 220px; min-width: 0; background: var(--background-light); border: 1px solid var(--border-light); border-radius: 14px; padding: 20px 18px; box-sizing: border-box; }
.hc-step-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 700; font-size: 1.05rem; letter-spacing: 1px; }
.hc-step-badge .step-num { background: var(--primary-color); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.hc-step h5 { margin: 12px 0 8px; font-size: 1.4rem; color: var(--text-color); }
.hc-step p { margin: 0; font-size: 1.15rem; line-height: 1.75; color: var(--text-light); }
.hc-step .hc-step-time { display: inline-block; margin-top: 8px; font-size: 1.05rem; color: var(--primary-color); background: rgba(28,151,101,.08); border-radius: 6px; padding: 3px 8px; }
.hc-flow-link { text-align: center; margin-top: 26px; }

.hc-iol { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hc-iol-card { flex: 1 1 220px; min-width: 0; background: linear-gradient(180deg, rgba(28,151,101,.05), rgba(28,151,101,.12)); border: 1px solid rgba(28,151,101,.16); border-radius: 14px; padding: 22px 20px; box-sizing: border-box; }
.hc-iol-card h5 { font-size: 1.45rem; color: var(--primary-dark); margin: 0 0 8px; }
.hc-iol-card p { margin: 0; font-size: 1.15rem; line-height: 1.75; color: var(--text-color); }
.hc-iol-link { text-align: center; margin-top: 26px; }

.hc-faq { max-width: 860px; margin: 0 auto 72px; padding: 0 4%; box-sizing: border-box; }
@media screen and (min-width: 1024px) { .hc-faq { padding: 0; } }
.hc-faq details { border: 1px solid var(--border-light); border-radius: 12px; margin-bottom: 12px; background: var(--background-light); overflow: hidden; }
.hc-faq summary { cursor: pointer; padding: 16px 46px 16px 20px; font-size: 1.25rem; font-weight: 600; color: var(--text-color); list-style: none; position: relative; }
.hc-faq summary::-webkit-details-marker { display: none; }
.hc-faq summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.7rem; color: var(--primary-color); font-weight: 400; transition: transform .2s ease; }
.hc-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.hc-faq .faq-body { padding: 0 20px 18px; font-size: 1.2rem; line-height: 1.85; color: var(--text-light); }

/* ===== 白内障页 · 去除侧栏锚点导航后内容区全宽 ===== */
@media screen and (min-width: 1240px) {
	.column-main.column-main-full {
		width: 100%;
		padding: 96px 96px 180px;
		border-left: none;
	}
}

/* ===== 白内障页 · 类型四卡 + 阶段总览图 ===== */
.cata-types { margin-top: 48px; }
.cata-types h4, .cata-stages h4 { font-size: 2rem; color: #222; }
.cata-types .text-green, .cata-stages .text-green { display: inline-block; margin: 6px 0 18px; }
.cata-type-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.cata-type-card { flex: 1 1 220px; min-width: 0; background: #fff; border: 1px solid #e2e9e4; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(28,151,101,.05); box-sizing: border-box; }
.cata-type-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: #f2f6f3; }
.cata-type-card figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cata-type-card h5 { margin: 14px 16px 6px; font-size: 1.6rem; color: #1c9765; }
.cata-type-card p { margin: 0 16px 16px; font-size: 1.25rem; line-height: 1.75; color: #555; }
.cata-stages { margin-top: 56px; }
.cata-stage-overview { margin: 24px 0 0; background: #fff; border: 1px solid #e2e9e4; border-radius: 16px; padding: 12px; box-shadow: 0 2px 10px rgba(28,151,101,.05); box-sizing: border-box; }
.cata-stage-overview img { width: 100%; height: auto; display: block; border-radius: 10px; }
.cata-stage-overview figcaption { margin-top: 8px; font-size: 1.2rem; color: #999; text-align: center; }
@media (max-width: 560px) {
	.cata-type-grid { gap: 14px; }
}
/* 白内障四期经典图示 */
.cata-stage-senile { margin: 18px 0 0; background: #fff; border: 1px solid #e2e9e4; border-radius: 16px; padding: 10px; box-shadow: 0 2px 10px rgba(28,151,101,.05); box-sizing: border-box; }
.cata-stage-senile img { width: 100%; height: auto; display: block; border-radius: 10px; }
.cata-stage-senile figcaption { margin-top: 8px; font-size: 1.2rem; color: #999; text-align: center; line-height: 1.6; }
/* 四阶段刻度尺改用真实临床照片：移除模拟模糊滤镜 */
.stage-item[data-stage="1"] .stage-fig img,
.stage-item[data-stage="2"] .stage-fig img,
.stage-item[data-stage="3"] .stage-fig img,
.stage-item[data-stage="4"] .stage-fig img { filter: none !important; }
/* 人工晶状体视距对比 · 点击提示 */
.iol-click-hint { margin: 12px 0 0; text-align: center; font-size: 1.35rem; color: #1c9765; font-weight: 600; line-height: 1.6; animation: iolHintPulse 2.2s ease-in-out infinite; }
@keyframes iolHintPulse {
	0%, 100% { opacity: .75; transform: translateY(0); }
	50% { opacity: 1; transform: translateY(-2px); }
}
/* 非激活按钮轻微呼吸提示可点击 */
.d-btn:not(.is-active) { animation: dBtnBreath 2.4s ease-in-out infinite; }
@keyframes dBtnBreath {
	0%, 100% { box-shadow: 0 0 0 0 rgba(28,151,101,.18); }
	50% { box-shadow: 0 0 0 6px rgba(28,151,101,0); }
}
.d-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(28,151,101,.18); }
.d-btn:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.iol-click-hint, .d-btn:not(.is-active) { animation: none; }
}
/* healthcare 头部全景图（img 标签替代 CSS 背景，完整显示不裁切） */
.about-head {
	position: relative;
	height: 540px !important;
	max-height: 540px !important;
	background-image: none !important;
	margin-bottom: 80px !important;
	overflow: hidden;
}
.about-head > img.about-head-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	display: block;
}
@media screen and (max-width: 1023px) {
	.about-head { height: 400px !important; max-height: 400px !important; }
}
@media screen and (max-width: 519px) {
	.about-head { height: 280px !important; max-height: 280px !important; margin-bottom: 60px !important; }
}

/* healthcare overview 字体放大 */
.page .overview { padding-top: 70px; padding-bottom: 50px; }
.page .overview .page-center-head span { font-size: 16px; }
.page .overview h3 { font-size: 38px !important; }
.page .overview p.hc-lead { font-size: 20px !important; line-height: 1.9 !important; max-width: 920px; margin-top: 28px; }

/* === 资讯页患者口碑模块适配 === */
.news-reviews-section {
    background: transparent !important;
    padding: 0 0 40px 0 !important;
    margin-bottom: 0 !important;
}
.news-reviews-section-inner {
    max-width: 100% !important;
    padding: 0 !important;
}
.news-reviews-section .top-second-head {
    margin-bottom: 16px !important;
}
.news-reviews-section .top-second-head h3 {
    font-size: 28px !important;
}
.news-reviews-section-note {
    font-size: 13px !important;
    margin-bottom: 20px !important;
}
.news-reviews-section-grid {
    gap: 16px !important;
}
.news-reviews-section .review-card {
    padding: 20px 18px !important;
}
.news-reviews-section .review-card .review-text p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}
.news-reviews-section .review-card .review-author {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 14px !important;
}
.news-reviews-section .review-card .review-name {
    font-size: 13px !important;
    white-space: nowrap !important;
}
.news-reviews-section .review-card .review-meta {
    font-size: 12px !important;
    white-space: nowrap !important;
}
.news-reviews-section-disclaimer {
    font-size: 12px !important;
    margin-top: 16px !important;
}

/* === 口碑卡片封面图样式 === */
.news-reviews-section .review-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow: hidden !important;
}
.news-reviews-section .review-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-reviews-section .review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-reviews-section .review-body {
    padding: 18px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-reviews-section .review-body .review-stars {
    margin-bottom: 10px;
}
.news-reviews-section .review-body .review-text {
    flex: 1;
}
.news-reviews-section .review-body .review-text p {
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    margin: 0;
}
.news-reviews-section .review-body .review-author {
    margin-top: 12px !important;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* === 悬浮在线咨询按钮 === */
.float-consult {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1c9765, #15a86e);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(28,151,101,0.35);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff;
}
.float-consult:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(28,151,101,0.45);
}
.float-consult .fc-icon {
    font-size: 22px;
    line-height: 1;
}
.float-consult .fc-text {
    font-size: 10px;
    margin-top: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* === 二维码弹窗 === */
.qr-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.qr-modal.active {
    display: flex;
}
.qr-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}
.qr-modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    animation: qrPop 0.25s ease-out;
}
@keyframes qrPop {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.qr-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.qr-close:hover {
    color: #333;
    background: #f5f5f5;
}
.qr-modal-img {
    margin-bottom: 16px;
}
.qr-modal-img img {
    width: 240px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}
.qr-modal-info .qr-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1b1c;
    margin: 0 0 8px;
}
.qr-modal-info .qr-name {
    font-size: 15px;
    color: #1c9765;
    font-weight: 600;
    margin: 0 0 4px;
}
.qr-modal-info .qr-dept {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .float-consult {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 20px;
    }
    .float-consult .fc-icon { font-size: 20px; }
    .float-consult .fc-text { font-size: 9px; }
    .qr-modal-box { padding: 24px 18px 18px; }
    .qr-modal-img img { width: 200px; }
}

/* === 互动模块通用样式 === */
.interactive-section .guide-cont {
    max-width: 800px;
    margin: 0 auto;
}

/* === 白内障症状自测 === */
.selftest-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.selftest-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.selftest-progress-bar {
    flex: 1;
    height: 8px;
    background: #e8f5ee;
    border-radius: 4px;
    overflow: hidden;
}
.selftest-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1c9765, #2ecc71);
    border-radius: 4px;
    width: 16.67%;
    transition: width 0.3s ease;
}
.selftest-progress-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}
.selftest-question h4 {
    font-size: 20px;
    color: #1a1b1c;
    margin: 0 0 20px;
    line-height: 1.5;
}
.selftest-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.selftest-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8faf9;
    border: 2px solid #e4e3dd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    color: #1a1b1c;
}
.selftest-option:hover {
    border-color: #1c9765;
    background: #f0f9f4;
}
.selftest-option.selected {
    border-color: #1c9765;
    background: #e8f5ee;
    color: #1c9765;
    font-weight: 600;
}
.selftest-option .option-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    flex-shrink: 0;
}
.selftest-option.selected .option-num {
    background: #1c9765;
    border-color: #1c9765;
    color: #fff;
}
.selftest-result {
    text-align: center;
    padding: 20px 0;
}
.st-result-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.selftest-result h4 {
    font-size: 24px;
    margin: 0 0 12px;
}
.selftest-result p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.st-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.st-restart-btn {
    background: #f5f5f5;
    color: #555;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.st-restart-btn:hover {
    background: #e8e8e8;
}

/* === 手术过程动画 === */
.surgery-anim-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.surgery-anim-stage {
    background: linear-gradient(135deg, #f8faf9, #f0f9f4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.surgery-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.anim-step {
    transition: opacity 0.3s;
}
.surgery-anim-controls {
    text-align: center;
}
.surgery-step-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.step-dot:hover {
    border-color: #1c9765;
    color: #1c9765;
}
.step-dot.active {
    background: #1c9765;
    border-color: #1c9765;
    color: #fff;
}
.surgery-step-info {
    background: #f8faf9;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    text-align: left;
}
.surgery-step-info h4 {
    font-size: 17px;
    color: #1c9765;
    margin: 0 0 8px;
}
.surgery-step-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.surgery-nav-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.surgery-nav-btn {
    padding: 10px 28px;
    font-size: 14px;
}
.surgery-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === 术前注意事项清单 === */
.preop-checklist-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.preop-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.preop-progress span {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}
.preop-progress strong {
    color: #1c9765;
    font-size: 18px;
}
.preop-progress-bar {
    flex: 1;
    height: 8px;
    background: #e8f5ee;
    border-radius: 4px;
    overflow: hidden;
}
.preop-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1c9765, #2ecc71);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}
.preop-groups {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}
.preop-group h4 {
    font-size: 16px;
    color: #1a1b1c;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f5ee;
}
.preop-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 4px;
}
.preop-item:hover {
    background: #f8faf9;
}
.preop-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    accent-color: #1c9765;
    flex-shrink: 0;
    cursor: pointer;
}
.preop-item span {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.preop-item input:checked + span {
    color: #999;
    text-decoration: line-through;
}
.preop-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* === 晶体选择互动工具 === */
.iol-selector-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.iol-selector-progress {
    margin-bottom: 28px;
}
.iol-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.iol-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5ee;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.iol-step-dot.active {
    background: #1c9765;
    color: #fff;
}
.iol-step-dot.done {
    background: #2ecc71;
    color: #fff;
}
.iol-step-line {
    width: 60px;
    height: 3px;
    background: #e8f5ee;
    margin: 0 8px;
    transition: background 0.3s;
}
.iol-step-line.done {
    background: #2ecc71;
}
.iol-question h4 {
    font-size: 20px;
    color: #1a1b1c;
    margin: 0 0 20px;
    text-align: center;
    line-height: 1.5;
}
.iol-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.iol-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8faf9;
    border: 2px solid #e4e3dd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    color: #1a1b1c;
}
.iol-option:hover {
    border-color: #1c9765;
    background: #f0f9f4;
}
.iol-option.selected {
    border-color: #1c9765;
    background: #e8f5ee;
    color: #1c9765;
    font-weight: 600;
}
.iol-result {
    text-align: center;
}
.iol-result-header {
    margin-bottom: 16px;
}
.iol-result-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1c9765, #2ecc71);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.iol-result h4 {
    font-size: 24px;
    color: #1a1b1c;
    margin: 0;
}
.iol-result > p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 12px auto 20px;
    max-width: 500px;
}
.iol-result-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.iol-feature-tag {
    padding: 6px 14px;
    background: #f0f9f4;
    color: #1c9765;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}
.iol-result-note {
    font-size: 12px !important;
    color: #999 !important;
    margin-bottom: 20px !important;
}
.iol-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 移动端适配 */
@media (max-width: 600px) {
    .selftest-box, .surgery-anim-box, .preop-checklist-box, .iol-selector-box {
        padding: 20px 16px;
    }
    .selftest-question h4, .iol-question h4 {
        font-size: 17px;
    }
    .selftest-option, .iol-option {
        padding: 14px 16px;
        font-size: 14px;
    }
    .surgery-step-dots {
        gap: 6px;
    }
    .step-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .preop-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .preop-progress-bar {
        width: 100%;
    }
}

/* === 页面大段落分隔标题 === */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 56px 0 24px;
    padding: 0 8px;
}
.section-divider .divider-num {
    font-size: 42px;
    font-weight: 800;
    color: #1c9765;
    opacity: 0.25;
    line-height: 1;
    font-family: Georgia, serif;
}
.section-divider .divider-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1b1c;
    margin: 0;
    letter-spacing: 1px;
}
.section-divider .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #1c9765, transparent);
    opacity: 0.3;
}

/* === 互动模块视觉区分 === */
.interactive-section {
    background: linear-gradient(135deg, #f8faf9, #f0f9f4);
    border-radius: 20px;
    padding: 36px 28px;
    margin: 32px 0;
    border: 1px solid rgba(28,151,101,0.12);
}
.interactive-section .page-main-head {
    margin-bottom: 20px;
}
.interactive-section .guide-cont {
    max-width: 800px;
    margin: 0 auto;
}

/* === sec01 内部发展阶段分隔 === */
.cata-stages {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px dashed rgba(28,151,101,0.2);
}
.cata-stages > h4 {
    font-size: 20px;
    color: #1a1b1c;
    margin: 0 0 8px;
    font-weight: 700;
}

/* ===== 子页面页头与首页对齐（左对齐全屏效果） ===== */
@media screen and (min-width: 520px) {
  .page .page-head {
    width: 86vw;
    margin-left: calc(-6vw);
    border-radius: 0 0 0 48px;
    background-size: cover;
    overflow: hidden;
  }
}

@media screen and (min-width: 1024px) {
  .page .page-head {
    border-radius: 0 0 0 64px;
  }
}

/* ===== recruit 页面内容居中 ===== */
.page .recruit-greeting-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page .person-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page .recruit-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 导航栏字体调大 */
@media screen and (min-width: 1024px) {
  .main-nav li a {
    font-size: 1.6rem;
  }
}

/* ===== 页头背景图自适应修复 ===== */
/* 合作页：移动/平板任意比例生成图都完整覆盖，避免拉伸留白 */
.page-head.recruit-head {
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 1210px) {
  .page-head:after {
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
  }
  .recruit-head:after {
    background-position: center center !important;
  }
}


/* ===== 按钮呼吸脉冲动画 ===== */
@keyframes pulse-breath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(28, 151, 101, 0.35);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(28, 151, 101, 0);
  }
}
.top-btn {
  animation: pulse-breath 2.8s ease-in-out infinite;
  transition: all 0.3s ease;
}
.top-btn:hover {
  animation-play-state: paused;
  transform: scale(1.06);
  background-color: #1c9765;
  color: #fff;
}
.top-btn:hover .arrow {
  transform: translateX(4px);
}
.top-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
/* ===== 首页轮播 Ken Burns 效果 + 文字淡入 ===== */
@keyframes kenburns-zoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

.top-slider .slide-img {
  animation: kenburns-zoom 8s ease-out infinite alternate;
  will-change: transform;
}

/* 每张幻灯片错开动画节奏 */
.top-slider .slide02 {
  animation-delay: -2s;
}
.top-slider .slide03 {
  animation-delay: -4s;
}

/* 文字淡入上移动画 */
@keyframes slide-fade-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-slider .top-slide-head {
  opacity: 0;
  transform: translateY(36px);
}

.top-slider .swiper-slide-active .top-slide-head {
  animation: slide-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.top-slider .swiper-slide-active .top-slide-head p {
  animation: slide-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
/* ===== 移动端汉堡菜单可见性修复 ===== */
/* 原主题汉堡线条为白色，在白色header上不可见，改为品牌绿 */
.menu-trigger > span {
  background: #1c9765 !important;
}

/* 确保1024px以下PC导航隐藏，汉堡按钮显示 */
@media screen and (max-width: 1023px) {
  .pc-nav-wrap {
    display: none !important;
  }
  .menu-trigger-wrap {
    display: block !important;
  }
  .sp-nav-wrap {
    display: none;
  }
  .sp-nav-wrap.open {
    display: block !important;
  }
}
/* ===== 首次就诊指南-电话预约按钮文字颜色修复 ===== */
.guide-btn-tel {
  color: #1c9765 !important;
  background: #fff !important;
  border: 1px solid #1c9765 !important;
}
.guide-btn-tel:hover {
  background: #1c9765 !important;
  color: #fff !important;
}
/* ===== 首次就诊指南-微信二维码并排布局（与就诊流程图标右对齐） ===== */
.guide-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 0 40px;
}
.guide-intro-row > p {
  width: 660px;
  margin: 0 48px 0 0;
  line-height: 1.9;
  padding-top: 4px;
}
.guide-wechat-qr {
  flex-shrink: 0;
  width: 128px;
  text-align: center;
}
.guide-wechat-qr img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: block;
  margin: 0 auto;
}
.guide-wechat-qr span {
  display: block;
  font-size: 1.2rem;
  color: #666;
  margin-top: 6px;
}
@media screen and (max-width: 1023px) {
  .guide-intro-row {
    flex-direction: column;
    padding: 0;
  }
  .guide-intro-row > p {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .guide-wechat-qr {
    margin: 0 auto;
  }
}
/* ===== 散瞳提示红色强调 ===== */
.warning-red {
  color: #e53935;
  font-weight: 600;
}
/* ===== 注释文字颜色加深，提高可读性 ===== */
.warning,
.medical-warning > p:last-child,
.medical-warning .note {
  color: #c62828 !important;
}
/* ===== 散瞳提示框注释颜色加深 ===== */
.medocal-warnig-list li {
  color: #c62828 !important;
}
/* ===== 首次就诊指南-全页面文字行间距统一 ===== */
.guide-cont p,
.medical-flow-text p,
.medical-warning p,
.guide-hours p,
.guide-cont li,
.medical-flow li {
  line-height: 1.9 !important;
}
.guide-cont p {
  margin-bottom: 20px !important;
}
.guide-cont p:last-child {
  margin-bottom: 0 !important;
}
.medical-flow-text p {
  margin-bottom: 0 !important;
}
/* ===== healthcare轮播图居中 ===== */
.features-slide {
  width: 86vw !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  overflow: hidden;
}
/* ===== 人工晶体卡片图片 ===== */
.hc-iol-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hc-iol-img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hc-iol-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* ===== 白内障成因对比图 ===== */
.cata-causes-img {
  width: 100%;
  margin: 20px 0 24px;
  text-align: center;
}
.cata-causes-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
/* ===== 白内障临床照片展示区 ===== */
.cata-clinical {
  margin: 48px 0;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cata-clinical h4 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.cata-clinical .text-green {
  display: block;
  color: #1c9765;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.cata-clinical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cata-clinical-card {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cata-clinical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.cata-clinical-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.cata-clinical-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cata-clinical-card h5 {
  font-size: 1.05rem;
  color: #1a1a1a;
  padding: 14px 16px 6px;
  margin: 0;
}
.cata-clinical-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  padding: 0 16px 16px;
  margin: 0;
}
/* ===== 白内障视角模拟滑杆提示动画 ===== */
.vision-sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #1c9765 0%, #1c9765 0%, #e0e0e0 0%, #e0e0e0 100%);
  outline: none;
  cursor: pointer;
  margin: 20px 0 10px;
}
.vision-sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1c9765;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  animation: slider-hint 2s ease-in-out 3;
}
.vision-sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.vision-sim-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1c9765;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: slider-hint 2s ease-in-out 3;
}
@keyframes slider-hint {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}
.vision-sim-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}
/* ===== 高危人群与风险因素 字体层级优化 ===== */
.guide-cont h4 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f5ef;
}
.guide-cont .text-green {
  font-size: 0.92rem !important;
  color: #1c9765 !important;
  display: block;
  margin-bottom: 16px !important;
}
.guide-cont .order-list dt {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
.guide-cont .order-list dd p {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
.guide-cont .dot-green-list li {
  font-size: 0.95rem !important;
  line-height: 2 !important;
  color: #444 !important;
}
.guide-cont .dot-green-list li span {
  font-size: 0.95rem !important;
}
/* ===== 预防与日常护眼 字体层级强制统一 ===== */
.specialized-cont .guide-cont > h4 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e8f5ef !important;
}
.specialized-cont .guide-cont > .text-green {
  font-size: 0.92rem !important;
  color: #1c9765 !important;
  display: block !important;
  margin-bottom: 16px !important;
}
.specialized-cont .guide-cont .order-list > dt {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
.specialized-cont .guide-cont .order-list > dd > p {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
/* ===== 预防与日常护眼(#sec09) 字体层级强制覆盖 ===== */
#sec09 .guide-cont h4 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e8f5ef !important;
}
#sec09 .guide-cont .text-green {
  font-size: 0.92rem !important;
  color: #1c9765 !important;
  display: block !important;
  margin-bottom: 16px !important;
}
#sec09 .guide-cont .order-list dt {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
#sec09 .guide-cont .order-list dd p {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
/* ===== 全页面 guide-cont 字体层级统一（用px单位，避免rem根字体问题） ===== */
.guide-cont h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e8f5ef !important;
}
.guide-cont .text-green {
  font-size: 14px !important;
  color: #1c9765 !important;
  display: block !important;
  margin-bottom: 16px !important;
}
.guide-cont .order-list dt {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
.guide-cont .order-list dd p {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
.guide-cont .dot-green-list li {
  font-size: 15px !important;
  line-height: 2 !important;
  color: #444 !important;
}
/* ===== 最高优先级：全页面 guide-cont 字体统一（覆盖主题默认样式） ===== */
body .specialized-cont .guide-cont > h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e8f5ef !important;
}
body .specialized-cont .guide-cont > .text-green {
  font-size: 14px !important;
  color: #1c9765 !important;
  display: block !important;
  margin-bottom: 16px !important;
}
body .specialized-cont .guide-cont .order-list > dt {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
body .specialized-cont .guide-cont .order-list > dd > p {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
body .specialized-cont .guide-cont .dot-green-list > li {
  font-size: 15px !important;
  line-height: 2 !important;
  color: #444 !important;
}
/* ===== 最终最高优先级：ID+类选择器，覆盖所有重复规则 ===== */
body #sec04.specialized-cont .guide-cont > h4,
body #sec09.specialized-cont .guide-cont > h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 36px 0 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #e8f5ef !important;
}
body #sec04.specialized-cont .guide-cont > .text-green,
body #sec09.specialized-cont .guide-cont > .text-green {
  font-size: 14px !important;
  color: #1c9765 !important;
  display: block !important;
  margin-bottom: 16px !important;
}
body #sec04.specialized-cont .guide-cont .order-list > dt,
body #sec09.specialized-cont .guide-cont .order-list > dt {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #1c9765 !important;
  margin: 24px 0 10px !important;
}
body #sec04.specialized-cont .guide-cont .order-list > dd > p,
body #sec09.specialized-cont .guide-cont .order-list > dd > p {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: #444 !important;
  margin-bottom: 12px !important;
}
body #sec04.specialized-cont .guide-cont .dot-green-list > li,
body #sec09.specialized-cont .guide-cont .dot-green-list > li {
  font-size: 15px !important;
  line-height: 2 !important;
  color: #444 !important;
}
/* ===== 调大 s-doctor-img 图片，让白内障特写更醒目 ===== */
@media (min-width: 1024px) {
  .s-doctor-img {
    width: 420px !important;
    margin: 0 48px 0 0 !important;
  }
  .s-doctor-img img {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 1400px) {
  .s-doctor-img {
    width: 460px !important;
    margin: 0 56px 0 0 !important;
  }
}
/* ===== 调大 s-doctor-img 图片（最高优先级，防止flex压缩） ===== */
@media (min-width: 1024px) {
  body .specialized-cont .s-doctor-cont .s-doctor-img {
    width: 420px !important;
    min-width: 420px !important;
    flex: 0 0 420px !important;
    margin: 0 48px 0 0 !important;
  }
  body .specialized-cont .s-doctor-cont .s-doctor-img img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 1400px) {
  body .specialized-cont .s-doctor-cont .s-doctor-img {
    width: 480px !important;
    min-width: 480px !important;
    flex: 0 0 480px !important;
    margin: 0 56px 0 0 !important;
  }
}
/* ===== 认识白内障：左侧双图上下排列（正常眼 vs 白内障眼） ===== */
.specialized-cont .s-doctor-img {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.s-doctor-img-item {
  position: relative;
  width: 100%;
}
.s-doctor-img-item img {
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  display: block !important;
}
.s-doctor-img-label {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #1c9765;
  margin-top: 10px;
}
/* ===== 典型症状：模糊视力背景图区块 ===== */
.symptom-bg-block {
  position: relative;
  background-image: url('../images/symptom-blur-bg.webp');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  padding: 36px 40px;
  margin-bottom: 32px;
}
.symptom-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}
.symptom-bg-content {
  position: relative;
  z-index: 2;
}
.symptom-bg-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.95), 0 0 8px rgba(255,255,255,0.7);
}
.symptom-subtitle {
  display: block;
  font-size: 15px;
  color: #1c9765;
  font-weight: 500;
  margin-bottom: 20px;
}
.symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.symptom-list li {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 6px rgba(255,255,255,0.8);
}
.symptom-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1c9765;
}
@media (max-width: 640px) {
  .symptom-bg-block {
    padding: 24px 20px;
  }
  .symptom-list {
    grid-template-columns: 1fr;
  }
}
/* ===== 症状自测标题强制单行显示 ===== */
#sec-selftest .page-main-head h3 {
  white-space: nowrap !important;
  font-size: 28px !important;
}
/* ===== 高危人群列表字体调整 ===== */
#sec04 .dot-green-list li span {
  font-size: 15px !important;
  line-height: 1.8 !important;
}
#sec04 .dot-green-list li {
  margin-bottom: 8px !important;
}
/* ===== cataract页面内容与页眉页脚对齐修复 ===== */
.page.column-box {
  width: 1200px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
.page.column-box .column {
  width: 100% !important;
}
/* 调整主内容区padding，让内容合理分布 */
.page.column-box .column-main {
  padding: 60px 0 120px 60px !important;
  width: calc(100% - 240px) !important;
}
/* ===== 首页轮播第4张（手术图片）- 只设背景图 ===== */
.top-slider div.slide04 {
  background-image: url('../images/top-slide04.webp') !important;
}


/* 团队页面轮播图宽度统一 */
.nurse-img {
  width: 86vw !important;
  max-width: 1200px !important;
  margin: 48px auto 0 !important;
  overflow: hidden;
}

@media screen and (min-width: 520px) {
  .nurse-img {
    margin-top: 56px !important;
  }
}

@media screen and (min-width: 1024px) {
  .nurse-img {
    margin-top: 64px !important;
  }
}


/* ===== 团队页面上半部分版块间距统一 ===== */
/* 移动端 */
body.page-team .greeting {
  margin-bottom: 48px !important;
  padding-bottom: 0 !important;
}
body.page-team .profile {
  margin-bottom: 48px !important;
}
body.page-team .surgeon {
  margin-bottom: 48px !important;
}
body.page-team .nurse {
  margin-bottom: 48px !important;
}

/* 桌面端 */
@media screen and (min-width: 1024px) {
  body.page-team .greeting {
    margin-bottom: 72px !important;
    padding-bottom: 0 !important;
  }
  body.page-team .profile {
    margin-bottom: 72px !important;
  }
  body.page-team .surgeon {
    margin-bottom: 72px !important;
  }
  body.page-team .nurse {
    margin-bottom: 72px !important;
  }
}

/* ===== 团队页面间距优化v2 ===== */
/* 减小greeting-inner固定高度，消除致辞与主任简介之间的大空白 */
@media (min-width: 1024px) {
  body.page-team .greeting .greeting-inner {
    height: 680px !important;
  }
  body.page-team .greeting .greeting-text {
    top: 80px !important;
  }
  body.page-team .greeting::after {
    height: 320px !important;
  }
}

/* 会员客服外联文字左对齐 */
body.page-team .service-section .service-text p {
  text-align: left !important;
}

/* 统一所有版块间距（桌面端） */
@media (min-width: 1024px) {
  body.page-team .greeting,
  body.page-team .profile,
  body.page-team .surgeon,
  body.page-team .nurse,
  body.page-team .service-section,
  body.page-team .features {
    margin-bottom: 96px !important;
  }
}

/* 统一所有版块间距（移动端） */
@media (max-width: 1023px) {
  body.page-team .greeting,
  body.page-team .profile,
  body.page-team .surgeon,
  body.page-team .nurse,
  body.page-team .service-section,
  body.page-team .features {
    margin-bottom: 56px !important;
  }
}
/* ========== 相关推荐交叉链接板块 ========== */
.cross-links {
    padding: 64px 0;
    background: #fff;
}
.cross-links-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cross-links-title {
    text-align: center;
    margin-bottom: 40px;
}
.cross-links-title span {
    display: block;
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.cross-links-title h3 {
    font-size: 2.4rem;
    color: #222;
    font-weight: 600;
}
.cross-links-title h3 .text-green {
    color: #1c9765;
}
.cross-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cross-link-card {
    display: block;
    padding: 32px 28px;
    background: #f8f5f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.cross-link-card:hover {
    background: #fff;
    border-color: #1c9765;
    box-shadow: 0 8px 24px rgba(28,151,101,0.12);
    transform: translateY(-4px);
}
.cross-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(28,151,101,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.cross-link-card h4 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 600;
}
.cross-link-card p {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
}
.cross-link-card .cross-link-more {
    font-size: 1.2rem;
    color: #1c9765;
    font-weight: 500;
}
.cross-link-card .cross-link-more::after {
    content: " →";
    transition: transform 0.3s;
    display: inline-block;
}
.cross-link-card:hover .cross-link-more::after {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .cross-links {
        padding: 40px 0;
    }
    .cross-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cross-links-title h3 {
        font-size: 2rem;
    }
    .cross-link-card {
        padding: 24px 20px;
    }
}
/* ========== 首诊指南携带材料列表字体调大（老年人友好） ========== */
body .page-template-default .first-guide-list.dot-green-list li,
body .page-template-default .first-guide-list.dot-green-list li span {
    font-size: 1.7rem !important;
    line-height: 2.2 !important;
    color: #333 !important;
}
@media (max-width: 768px) {
    body .page-template-default .first-guide-list.dot-green-list li,
    body .page-template-default .first-guide-list.dot-green-list li span {
        font-size: 1.5rem !important;
        line-height: 2 !important;
    }
}
/* ========== 首诊指南携带材料列表：纵向排列+大字体（老年人友好） ========== */
body.page-id-4 .first-guide-list.dot-green-list {
    display: block !important;
    padding: 28px 28px 28px 48px !important;
}
body.page-id-4 .first-guide-list.dot-green-list li {
    display: list-item !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    font-size: 1.7rem !important;
    line-height: 2 !important;
    color: #333 !important;
}
body.page-id-4 .first-guide-list.dot-green-list li span {
    font-size: 1.7rem !important;
    color: #333 !important;
}
@media (max-width: 768px) {
    body.page-id-4 .first-guide-list.dot-green-list li,
    body.page-id-4 .first-guide-list.dot-green-list li span {
        font-size: 1.5rem !important;
    }
}
/* ========== 首诊指南列表最终字体（老年人友好，约22px） ========== */
html body.page-id-4 .first-guide-list.dot-green-list > li,
html body.page-id-4 .first-guide-list.dot-green-list > li > span {
    font-size: 1.8rem !important;
    line-height: 2.2 !important;
}
/* ========== 首诊指南接诊时间注释字体调大 ========== */
body.page-id-4 .guide-hours-note {
    font-size: 1.5rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
}
@media (max-width: 768px) {
    body.page-id-4 .guide-hours-note {
        font-size: 1.3rem !important;
    }
}
/* ========== 首诊指南排班表样式 ========== */
body.page-id-4 .guide-schedule {
    list-style: none;
    padding: 0;
    margin: 16px 0 12px 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}
body.page-id-4 .guide-schedule li {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.5rem;
}
body.page-id-4 .guide-schedule li:last-child {
    border-bottom: none;
}
body.page-id-4 .guide-schedule li:nth-child(even) {
    background: #fafafa;
}
body.page-id-4 .guide-schedule .day {
    font-weight: 600;
    color: #1c9765;
    width: 60px;
    flex-shrink: 0;
}
body.page-id-4 .guide-schedule .type {
    flex: 1;
    color: #333;
}
body.page-id-4 .guide-schedule .type.surgery {
    color: #e67e22;
    font-weight: 500;
}
body.page-id-4 .guide-schedule .type.rest {
    color: #999;
}
body.page-id-4 .guide-schedule .time {
    color: #666;
    font-size: 1.3rem;
}
body.page-id-4 .guide-hours-time {
    margin-top: 12px;
    font-size: 1.4rem;
    color: #555;
    font-weight: 500;
}
@media (max-width: 768px) {
    body.page-id-4 .guide-schedule li {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
    body.page-id-4 .guide-schedule .day {
        width: 48px;
    }
}
/* ========== 排班表字体加大（核心信息醒目） ========== */
html body.page-id-4 .guide-schedule li {
    font-size: 1.7rem !important;
    padding: 16px 24px !important;
}
html body.page-id-4 .guide-schedule .day {
    font-size: 1.7rem !important;
    width: 70px !important;
}
html body.page-id-4 .guide-schedule .type {
    font-size: 1.7rem !important;
}
html body.page-id-4 .guide-schedule .time {
    font-size: 1.6rem !important;
    color: #1c9765 !important;
    font-weight: 600 !important;
}
html body.page-id-4 .guide-hours-time {
    font-size: 1.6rem !important;
    margin-top: 16px !important;
}
@media (max-width: 768px) {
    html body.page-id-4 .guide-schedule li {
        font-size: 1.4rem !important;
        padding: 12px 16px !important;
    }
    html body.page-id-4 .guide-schedule .day {
        font-size: 1.4rem !important;
        width: 56px !important;
    }
    html body.page-id-4 .guide-schedule .type {
        font-size: 1.4rem !important;
    }
    html body.page-id-4 .guide-schedule .time {
        font-size: 1.3rem !important;
    }
}
/* ========== healthcare页面字体统一加大加深（老年人友好） ========== */
/* 服务介绍正文 */
.page .hc-lead {
    font-size: 1.8rem !important;
    line-height: 2 !important;
    color: #333 !important;
}
/* 英文小标题 */
.hc-section header > span {
    font-size: 1.3rem !important;
    color: #1c9765 !important;
    opacity: 0.8 !important;
}
/* 中文大标题 */
.hc-section header h3 {
    font-size: 2.6rem !important;
}
/* 流程步骤 */
.hc-step {
    padding: 24px 20px !important;
}
.hc-step-badge {
    font-size: 1.3rem !important;
}
.hc-step-badge .step-num {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.4rem !important;
}
.hc-step h5 {
    font-size: 1.7rem !important;
    color: #222 !important;
    margin: 14px 0 10px !important;
}
.hc-step p {
    font-size: 1.4rem !important;
    line-height: 1.9 !important;
    color: #444 !important;
}
.hc-step .hc-step-time {
    font-size: 1.2rem !important;
    padding: 5px 10px !important;
}
/* 人工晶体卡片 */
.hc-iol-card h5 {
    font-size: 1.7rem !important;
}
.hc-iol-card p {
    font-size: 1.4rem !important;
    line-height: 1.9 !important;
    color: #444 !important;
}
/* FAQ */
.faq-item summary {
    font-size: 1.6rem !important;
}
.faq-body {
    font-size: 1.4rem !important;
    line-height: 1.9 !important;
    color: #444 !important;
}
/* 数据统计 */
.hc-stat-num {
    font-size: 2.8rem !important;
}
.hc-stat-label {
    font-size: 1.4rem !important;
    color: #444 !important;
}
@media (max-width: 768px) {
    .page .hc-lead {
        font-size: 1.5rem !important;
    }
    .hc-step h5 {
        font-size: 1.5rem !important;
    }
    .hc-step p {
        font-size: 1.25rem !important;
    }
}
/* ========== healthcare适老化：纵向流程 + 大字体 + 纯中文 ========== */
/* 纵向流程时间线 */
.hc-steps-vertical {
    max-width: 700px;
    margin: 32px auto 0;
    position: relative;
    padding-left: 60px;
}
.hc-steps-vertical::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #1c9765, #77c1a3);
    border-radius: 2px;
}
.hc-step-v {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
}
.hc-step-v:last-child {
    margin-bottom: 0;
}
.hc-step-v-num {
    position: absolute;
    left: -60px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1c9765;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(28,151,101,0.3);
}
.hc-step-v-content {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px 24px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hc-step-v-content h5 {
    font-size: 1.9rem !important;
    color: #1c9765 !important;
    margin: 0 0 10px 0 !important;
    font-weight: 600 !important;
}
.hc-step-v-content p {
    font-size: 1.6rem !important;
    line-height: 1.9 !important;
    color: #333 !important;
    margin: 0 !important;
}
.hc-step-v-content .hc-step-time {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.4rem !important;
    color: #1c9765 !important;
    background: rgba(28,151,101,0.1);
    border-radius: 8px;
    padding: 6px 14px !important;
    font-weight: 500;
}

/* 适老化整体字体 */
.page .hc-lead {
    font-size: 1.9rem !important;
    line-height: 2.1 !important;
    color: #222 !important;
    max-width: 900px !important;
}
.hc-section header h3 {
    font-size: 2.8rem !important;
    color: #222 !important;
}
.hc-entry-card h4 {
    font-size: 2rem !important;
}
.hc-entry-card p {
    font-size: 1.6rem !important;
    line-height: 1.9 !important;
    color: #333 !important;
}
.hc-entry-more {
    font-size: 1.6rem !important;
}
.hc-iol-card h5 {
    font-size: 1.9rem !important;
}
.hc-iol-card p {
    font-size: 1.5rem !important;
    line-height: 1.9 !important;
    color: #333 !important;
}
.faq-item summary {
    font-size: 1.8rem !important;
    padding: 18px 24px !important;
}
.faq-body {
    font-size: 1.6rem !important;
    line-height: 2 !important;
    color: #333 !important;
    padding: 16px 24px !important;
}
.btn.guide-btn {
    font-size: 1.7rem !important;
    padding: 16px 36px !important;
}

/* 隐藏英文小标题（如果其他页面还有） */
.hc-section header > span,
.page-center-head > span {
    display: none !important;
}

@media (max-width: 768px) {
    .hc-steps-vertical {
        padding-left: 50px;
    }
    .hc-steps-vertical::before {
        left: 22px;
    }
    .hc-step-v-num {
        left: -50px;
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
    .hc-step-v-content {
        padding: 16px 18px;
    }
    .hc-step-v-content h5 {
        font-size: 1.6rem !important;
    }
    .hc-step-v-content p {
        font-size: 1.4rem !important;
    }
    .page .hc-lead {
        font-size: 1.6rem !important;
    }
    .hc-section header h3 {
        font-size: 2.2rem !important;
    }
}
/* ========== surgical手术方式页适老化：大字体 ========== */
/* 左侧目录 */
.page-id-7 .o-scroll-list li a, .t-scroll-list li a, .scroll-list li a {
    font-size: 1.6rem !important;
    padding: 12px 16px !important;
    line-height: 1.6 !important;
}
/* 正文标题 */
.page-id-7 .guide-title-head h3 {
    font-size: 2.6rem !important;
}
/* 正文段落 */
.page-id-7 .guide-cont p {
    font-size: 1.6rem !important;
    line-height: 2 !important;
    color: #333 !important;
}
/* 正文列表 */
.page-id-7 .guide-cont ol li,
.page-id-7 .guide-cont ul li {
    font-size: 1.5rem !important;
    line-height: 1.9 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}
/* 提示框 */
.page-id-7 .surgical-note {
    font-size: 1.5rem !important;
    line-height: 1.9 !important;
}
/* 子标题 */
.page-id-7 .guide-cont h4 {
    font-size: 2rem !important;
}
.page-id-7 .guide-cont h5 {
    font-size: 1.8rem !important;
}
/* 视距对比等互动模块文字 */
.page-id-7 .iol-compare-desc,
.page-id-7 .iol-vision-label {
    font-size: 1.5rem !important;
}
@media (max-width: 768px) {
    .page-id-7 .guide-cont p {
        font-size: 1.4rem !important;
    }
    .page-id-7 .guide-cont ol li,
    .page-id-7 .guide-cont ul li {
        font-size: 1.3rem !important;
    }
    .page-id-7 .guide-title-head h3 {
        font-size: 2.2rem !important;
    }
}
/* ========== 医生占位图样式 ========== */
.surgeon-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.surgeon-placeholder span {
    color: #999;
    font-size: 1.4rem;
}
/* ========== team-service服务团队页样式 ========== */
/* 统一标签样式 */
.service-tag {
    padding: 8px 18px;
    background: rgba(28,151,101,0.1);
    color: #1c9765;
    border-radius: 20px;
    font-size: 1.4rem;
    display: inline-block;
}
/* 特检技师职责列表 */
.duty-list {
    margin-top: 8px;
}
.duty-item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}
.duty-item:last-child {
    border-bottom: none;
}
.duty-num {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1c9765;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.duty-content h4 {
    font-size: 1.8rem !important;
    color: #222 !important;
    margin: 0 0 8px 0 !important;
}
.duty-content p {
    font-size: 1.5rem !important;
    line-height: 1.9 !important;
    color: #444 !important;
    margin: 0 !important;
}
/* team-service页适老化字体 */
.page-id-13 .guide-cont p {
    font-size: 1.6rem !important;
    line-height: 2 !important;
    color: #333 !important;
}
.page-id-13 .guide-title-head h3 {
    font-size: 2.6rem !important;
}
.page-id-13 .o-scroll-list li a, .t-scroll-list li a, .scroll-list li a {
    font-size: 1.6rem !important;
    padding: 12px 16px !important;
}
.page-id-13 .work-orthoptist-cont h4 {
    font-size: 1.7rem !important;
}
.page-id-13 .work-orthoptist-cont p {
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
}
@media (max-width: 768px) {
    .duty-item {
        gap: 16px;
    }
    .duty-num {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        flex: 0 0 40px;
    }
    .duty-content h4 {
        font-size: 1.6rem !important;
    }
    .duty-content p {
        font-size: 1.4rem !important;
    }
}
/* 调大服务团队页标签字体 */
.page-id-13 .service-tag {
    font-size: 1.6rem !important;
    padding: 10px 22px !important;
}
/* 所有页面左侧栏文字加粗 */
.o-scroll-list li a, .t-scroll-list li a, .scroll-list li a {
    font-weight: 600 !important;
}

/* ===== recruit greeting 图片调小+左右布局 ===== */
body .page .recruit-greeting-inner {
  display: flex !important;
  align-items: center;
  gap: 48px;
  position: relative;
}
body .page .recruit-greeting-img {
  width: 55% !important;
  margin: 0 !important;
  flex-shrink: 0;
}
body .page .recruit-greeting-img img {
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  object-fit: cover;
}
body .page .recruit-greeting-text {
  width: 45% !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  top: auto !important;
  right: auto !important;
}
body .page .recruit-greeting-text-inner {
  width: 100% !important;
}
@media (max-width: 768px) {
  body .page .recruit-greeting-inner {
    flex-direction: column;
    gap: 24px;
  }
  body .page .recruit-greeting-img,
  body .page .recruit-greeting-text {
    width: 100% !important;
  }
}


/* ===== recruit greeting v2 左右布局 ===== */
.recruit-greeting-v2 {
  margin-bottom: 56px;
}
.recruit-greeting-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.recruit-greeting-v2-img {
  width: 55%;
  flex-shrink: 0;
}
.recruit-greeting-v2-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.recruit-greeting-v2-text {
  width: 45%;
}
.recruit-greeting-v2-text-inner > span {
  font-size: 1.2rem;
  color: #666;
}
.recruit-greeting-v2-text-inner h3 {
  margin: 10px 0 16px;
  font-size: 2.4rem;
  color: #222;
  line-height: 1.4;
}
.recruit-greeting-v2-text-inner p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .recruit-greeting-v2-inner {
    flex-direction: column;
    gap: 24px;
  }
  .recruit-greeting-v2-img,
  .recruit-greeting-v2-text {
    width: 100%;
  }
}


/* ===== recruit页面在column-main内适配 ===== */
.column-main .person-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding: 40px 32px !important;
  box-sizing: border-box;
  display: block !important;
}
.column-main .person-head {
  width: 100% !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #ddd;
}
.column-main .person-head h3 {
  font-size: 2.2rem !important;
}
.column-main .person-cont {
  width: 100% !important;
  padding-left: 0 !important;
}
.column-main .requirements {
  padding: 0 !important;
}
.column-main .recruit-contact-inner {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}


/* ===== recruit-person 自定义样式（上下布局） ===== */
.recruit-person {
  margin-bottom: 48px;
}
.recruit-person-inner {
  padding: 40px 32px;
  border: 1px solid #ddd;
  border-radius: 24px;
  background: #fff;
}
.recruit-person-head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
.recruit-person-head > p {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 8px;
}
.recruit-person-head h3 {
  font-size: 2.4rem;
  color: #222;
  line-height: 1.4;
}
.recruit-person-cont dl {
  display: flex;
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.recruit-person-cont dl dt {
  width: 40px;
  flex-shrink: 0;
  font-weight: 600;
}
.recruit-person-cont dl dd {
  color: #444;
}
.recruit-person-cont dl dd strong {
  color: #222;
}


/* ========================================
   页脚移动端响应式修复
   ======================================== */

/* 页脚底部容器 */
.footer-bottom-box {
    padding: 20px 16px;
    text-align: center;
}

.footer-bottom-box .footer-phone-section {
    margin: 0 0 16px 0;
    padding: 16px;
}

.footer-bottom-box .footer-phone-main {
    font-size: 15px;
    margin-bottom: 6px;
}

.footer-bottom-box .footer-phone-main a {
    font-size: 17px;
}

.footer-bottom-box .footer-phone-sub {
    font-size: 13px;
}

/* 版权信息 - 覆盖原固定高度 */
.footer .copy {
    display: block !important;
    height: auto !important;
    padding: 12px 0 0 0 !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;
    text-align: center !important;
    line-height: 1.6 !important;
}

.footer .copy p {
    margin: 4px 0 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    word-break: break-all !important;
    color: #fff !important;
}

.footer .copy .icp-beian {
    font-size: 11px !important;
    opacity: 1 !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.footer .copy a {
    color: #fff !important;
}

/* 页脚上半部分（logo+排班）移动端 */
@media (max-width: 768px) {
    .footer-top-box {
        padding: 30px 16px !important;
    }
    
    .footer-top-box .footer-info-inner {
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .footer-top-box .footer-info-box,
    .footer-top-box .footer-hour {
        width: 100% !important;
    }
    
    .footer-site-logo a img {
        max-width: 200px !important;
        height: auto !important;
    }
    
    .footer-top-box .address {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .footer-map-links {
        font-size: 13px !important;
    }
    
    .footer-map-links a {
        display: inline-block !important;
        margin: 4px 8px 4px 0 !important;
    }
    
    /* 排班表移动端 */
    .footer-schedule li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        padding: 12px 0 !important;
    }
    
    .footer-schedule .fs-label {
        font-size: 14px !important;
        font-weight: 600 !important;
        min-width: auto !important;
    }
    
    .footer-schedule .fs-days {
        font-size: 13px !important;
    }
    
    .footer-schedule .fs-time {
        font-size: 12px !important;
        color: #666 !important;
    }
    
    .footer-schedule-note {
        font-size: 12px !important;
        line-height: 1.5 !important;
        padding: 8px 0 0 0 !important;
    }
}

/* 小屏幕手机（480px以下） */
@media (max-width: 480px) {
    .footer-bottom-box {
        padding: 16px 12px;
    }
    
    .footer-bottom-box .footer-phone-section {
        padding: 12px;
    }
    
    .footer-bottom-box .footer-phone-main {
        font-size: 14px;
    }
    
    .footer-bottom-box .footer-phone-main a {
        font-size: 16px;
    }
    
    .footer-bottom-box .footer-phone-sub {
        font-size: 12px;
    }
    
    .footer .copy p {
        font-size: 11px !important;
        color: #fff !important;
    }
    
    .footer .copy .icp-beian {
        font-size: 10px !important;
        opacity: 1 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    }
    
    .footer-top-box {
        padding: 24px 12px !important;
    }
}


/* ========================================
   手术方式页面 - 人工晶体选择部分字体统一
   ======================================== */
.iol-how-to-choose {
    margin-top: 24px;
    padding: 20px;
    background: #f8faf9;
    border-radius: 8px;
    border-left: 4px solid #1c9765;
}

.iol-how-to-choose h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1c9765 !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.4 !important;
}

.iol-how-to-choose .dot-green-list {
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.iol-how-to-choose .dot-green-list li {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    padding-left: 20px !important;
    position: relative !important;
}

.iol-how-to-choose .dot-green-list li::before {
    content: "●";
    color: #1c9765;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
}

.iol-how-to-choose .dot-green-list li span {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #333 !important;
}

.iol-how-to-choose .dot-green-list li strong {
    color: #1c9765 !important;
    font-weight: 600 !important;
}

.iol-how-to-choose .iol-tip {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #c0392b !important;
    background: #fdf2f2 !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
    margin: 0 !important;
    border-left: 3px solid #c0392b !important;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .iol-how-to-choose {
        padding: 16px;
    }
    .iol-how-to-choose h4 {
        font-size: 16px !important;
    }
    .iol-how-to-choose .dot-green-list li,
    .iol-how-to-choose .dot-green-list li span {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    .iol-how-to-choose .iol-tip {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
}


/* ========================================
   左侧导航栏滚动高亮样式
   ======================================== */
.o-scroll-list, .t-scroll-list, .scroll-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.o-scroll-list li, .t-scroll-list li, .scroll-list li {
    margin-bottom: 4px;
}

.o-scroll-list li a, .t-scroll-list li a, .scroll-list li a {
    display: block;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    border-left: 3px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all 0.25s ease;
    font-weight: 500;
}

.o-scroll-list li a:hover, .t-scroll-list li a:hover, .scroll-list li a:hover {
    color: #1c9765;
    background-color: rgba(28, 151, 101, 0.06);
    border-left-color: rgba(28, 151, 101, 0.3);
}

.o-scroll-list li a.active, .t-scroll-list li a.active, .scroll-list li a.active {
    color: #1c9765;
    background-color: rgba(28, 151, 101, 0.1);
    border-left-color: #1c9765;
    font-weight: 700;
}

/* 手机端隐藏左侧导航（如果需要） */
@media (max-width: 768px) {
    .side-fixed {
        display: none;
    }
}

/* 导航菜单：有子菜单的主项设置为不可点击 */
.no-click > a {
    cursor: default !important;
    pointer-events: none !important;
}

.no-click > a:hover {
    color: inherit !important;
    background-color: transparent !important;
}

/* 移动端菜单：no-click项的样式 */
.sp-main-nav .no-click > a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* 修复预约指南按钮样式：覆盖main-btn的固定宽度 */
.guide-btn-row .btn.main-btn {
    width: auto !important;
    min-width: 200px;
    height: auto !important;
    padding: 16px 36px !important;
    font-size: 1.5rem !important;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 电话预约按钮特殊样式 */
.guide-btn-row .guide-btn-tel {
    background: #df6060 !important;
    border-color: #df6060 !important;
    color: #fff !important;
    white-space: nowrap;
}

.guide-btn-row .guide-btn-tel:hover {
    background: #c94a4a !important;
    border-color: #c94a4a !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .guide-btn-row {
        flex-direction: column;
        align-items: stretch;
    }
    .guide-btn-row .btn.main-btn {
        width: 100% !important;
        font-size: 1.4rem !important;
        padding: 14px 24px !important;
    }
}

/* ========================================
   通用按钮样式修复：覆盖main-btn固定宽高
   适用于所有使用 btn main-btn guide-btn 的按钮
   ======================================== */
.btn.main-btn.guide-btn,
.hc-iol-link .btn.main-btn,
.guide-btn-row .btn.main-btn {
    width: auto !important;
    min-width: 220px;
    height: auto !important;
    padding: 16px 36px !important;
    font-size: 1.5rem !important;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 28px;
    transition: all 0.3s ease;
}

/* 按钮hover效果 */
.btn.main-btn.guide-btn:hover,
.hc-iol-link .btn.main-btn:hover,
.guide-btn-row .btn.main-btn:hover {
    background: #1c9765 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 151, 101, 0.3);
}

/* 按钮中的箭头 */
.btn.main-btn.guide-btn .arrow,
.hc-iol-link .btn.main-btn .arrow,
.guide-btn-row .btn.main-btn .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn.main-btn.guide-btn:hover .arrow,
.hc-iol-link .btn.main-btn:hover .arrow,
.guide-btn-row .btn.main-btn:hover .arrow {
    transform: translateX(4px);
}

/* healthcare页面按钮容器居中 */
.hc-iol-link {
    text-align: center;
    margin-top: 32px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .btn.main-btn.guide-btn,
    .hc-iol-link .btn.main-btn,
    .guide-btn-row .btn.main-btn {
        width: 100% !important;
        min-width: 0;
        font-size: 1.4rem !important;
        padding: 14px 24px !important;
    }
    
    .guide-btn-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========================================
   页面背景色修复：确保背景色始终完整显示
   防止刷新时背景色显示不全（FOUC问题）
   ======================================== */
html {
    background-color: #F8F5F0 !important;
    min-height: 100%;
}

body {
    background-color: #F8F5F0 !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 确保所有主要容器都有正确的背景色 */
#page,
.site-content,
.content-area,
.main-content,
#content,
.wrap,
.container {
    background-color: transparent;
}

/* 防止页面加载时白色闪烁 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F8F5F0;
    z-index: -1;
    pointer-events: none;
}

/* 确保绿色元素背景完整显示 */
.btn.gra,
.main-btn:hover,
.header-call:hover,
.guide-btn-tel {
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

/* 页面加载动画：淡入效果，替代白色闪烁 */
body {
    animation: pageFadeIn 0.3s ease-in-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* 移动端背景色优化 */
@media (max-width: 768px) {
    html, body {
        background-color: #F8F5F0 !important;
        background-attachment: fixed;
    }
}

/* ============================================
   导航菜单悬停变色效果
   ============================================ */

/* 主菜单项悬停效果 */
.header .nav-menu > li > a:hover,
.header .nav-menu > li:hover > a {
    color: #1c9765 !important;
    background-color: rgba(28, 151, 101, 0.08);
}

/* no-click类主按钮（白内障和手术、我们的团队）悬停效果 */
.header .nav-menu > li.no-click > a:hover,
.header .nav-menu > li.no-click:hover > a {
    color: #1c9765 !important;
    background-color: rgba(28, 151, 101, 0.1) !important;
    cursor: default !important;
}

/* 子菜单容器 */
.header .nav-menu > li > .sub-menu {
    background-color: #ffffff;
    border: 1px solid #e8e5de;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
}

/* 子菜单项 */
.header .nav-menu > li > .sub-menu > li > a {
    color: #333333 !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
    transition: all 0.2s ease;
}

/* 子菜单项悬停效果 */
.header .nav-menu > li > .sub-menu > li > a:hover {
    background-color: rgba(28, 151, 101, 0.1) !important;
    color: #1c9765 !important;
    padding-left: 25px !important;
}

/* 子菜单中的"白内障和手术"第一项特殊样式 */
.header .nav-menu > li > .sub-menu > li:first-child > a {
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

/* 移动端导航菜单悬停效果 */
@media (max-width: 768px) {
    .sp-nav .nav-menu > li > a:hover,
    .sp-nav .nav-menu > li:hover > a {
        color: #1c9765 !important;
        background-color: rgba(28, 151, 101, 0.08);
    }
    
    .sp-nav .nav-menu > li.no-click > a:hover,
    .sp-nav .nav-menu > li.no-click:hover > a {
        color: #1c9765 !important;
        background-color: rgba(28, 151, 101, 0.1) !important;
    }
    
    .sp-nav .nav-menu > li > .sub-menu > li > a:hover {
        background-color: rgba(28, 151, 101, 0.1) !important;
        color: #1c9765 !important;
    }
}
