/*
  佛山慈康悦来普通专科门诊部官网样式
  页面文字在 index.html 修改；图片在 assets 文件夹替换。
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2f2a22;
  background: #f7f1e6;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
  overflow: hidden;
}

/* 顶部品牌区 */
.site-header {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(222, 245, 145, 0.75), transparent 34%),
    linear-gradient(180deg, #0b3a2a 0%, #13583f 47%, #b7dd79 100%);
  color: #f6fff4;
  box-shadow: 0 12px 28px rgba(20, 68, 47, 0.16);
}

.brand-area {
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 18px 18px;
  text-align: center;
}

.brand-sign {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sign-main {
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.26);
}

.sign-roman {
  margin-top: 10px;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.sign-full {
  margin-top: 8px;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.brand-slogan {
  margin: 16px 0 0;
  color: #fbffe9;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

/* 导航栏 */
.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 18px 14px;
  background: linear-gradient(180deg, rgba(237, 250, 194, 0.82), rgba(216, 237, 158, 0.76));
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.nav-shell::before,
.nav-shell::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(98, 123, 50, 0.32);
  font-size: 14px;
  pointer-events: none;
}

.nav-shell::before {
  left: 6px;
}

.nav-shell::after {
  right: 6px;
}

.nav-shell a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 8px;
  color: #173f2a;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(60, 94, 45, 0.32);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 246, 0.78), rgba(231, 244, 196, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 7px 16px rgba(47, 78, 42, 0.08);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-shell a:hover {
  transform: translateY(-1px);
  color: #0b5a39;
  border-color: rgba(63, 116, 54, 0.52);
}

/* 首屏照片与简介 */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #c2df86 0%, #4e7f51 22%, #103d2e 100%);
}

.hero-gradient {
  height: 46px;
  background: linear-gradient(180deg, rgba(218, 241, 151, 0.98), rgba(139, 180, 91, 0.76), rgba(13, 62, 46, 0));
  pointer-events: none;
}

.hero-photo-box {
  position: relative;
  max-width: 1536px;
  margin: 0 auto;
  background: #0b3228;
}

.hero-photo {
  width: 100%;
  height: auto;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(196, 224, 126, 0.34) 0%, rgba(5, 43, 32, 0.32) 21%, rgba(4, 39, 30, 0.46) 60%, rgba(5, 36, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 42, 31, 0.82) 0%, rgba(5, 42, 31, 0.52) 50%, rgba(5, 42, 31, 0.18) 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: max(24px, calc((100vw - 1160px) / 2 + 18px));
  right: max(24px, calc((100vw - 1160px) / 2 + 18px));
  bottom: clamp(24px, 5vw, 76px);
  max-width: 860px;
  color: #f8fff7;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 18px;
  color: #fffdec;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(5px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0.08em;
}

.hero-copy p {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(16px, 1.7vw, 23px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.09);
}

/* 通用内容区 */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 18px;
}

.section-soft {
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2 + 18px));
  padding-right: max(18px, calc((100vw - 1160px) / 2 + 18px));
  background: linear-gradient(180deg, rgba(255, 251, 238, 0.7), rgba(235, 244, 213, 0.65));
}

.section-title {
  margin: 0 0 10px;
  color: #173f2a;
  font-size: 32px;
  letter-spacing: 0.06em;
}

.section-subtitle {
  margin: 0 0 28px;
  color: #766c5d;
}

.info-grid,
.service-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: 1.35fr 0.65fr;
}

.info-card,
.service-card,
.contact-box,
.doctor-card,
.gallery-card {
  background: #fffaf1;
  border: 1px solid rgba(45, 91, 62, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(52, 70, 39, 0.08);
}

.info-card,
.service-card,
.contact-box {
  padding: 22px;
}

.info-card h3,
.service-card h3,
.contact-box h3,
.doctor-info h3 {
  margin: 0 0 8px;
  color: #173f2a;
}

.info-card p,
.service-card p,
.contact-box p,
.doctor-info p {
  margin: 0;
  color: #61594d;
  font-size: 15px;
}

.notice {
  margin-top: 22px;
  padding: 18px 22px;
  color: #5c4027;
  background: #fff5df;
  border-left: 5px solid #b98542;
  border-radius: 16px;
}

.notice button {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #173f2a;
  cursor: pointer;
}

.notice-detail {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 12px;
}

.notice-detail.show {
  display: block;
}

/* 环境展示 */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(21, 60, 41, 0.78);
}

/* 团队介绍 */
.doctors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.doctor-card {
  overflow: hidden;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: zoom-in;
}

.doctor-info {
  padding: 18px 20px 22px;
}

/* 联系我们 */
.phone-placeholder {
  color: #8a6b38;
  font-weight: 700;
}

.map-placeholder {
  margin-top: 18px;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #6d735d;
  text-align: center;
  border: 1px dashed rgba(45, 91, 62, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 247, 216, 0.68), rgba(255, 251, 239, 0.9));
}

.disclaimer {
  margin-top: 16px;
  padding: 14px;
  color: #74624c;
  border-radius: 14px;
  background: rgba(245, 237, 216, 0.74);
}

/* 底部 */
.footer {
  padding: 30px 18px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  background: #123b2b;
}

.footer p {
  margin: 4px 0;
}

/* 图片预览 */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
}

.lightbox.show {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

/* 平板与手机适配 */
@media (max-width: 1024px) {
  .info-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 28px 18px 42px;
    background: linear-gradient(180deg, rgba(5, 43, 32, 0.9), rgba(10, 61, 44, 0.96));
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(196, 224, 126, 0.25) 0%, rgba(5, 43, 32, 0.22) 28%, rgba(5, 43, 32, 0.1) 100%);
  }
}

@media (max-width: 900px) {
  .nav-shell a {
    font-size: 13px;
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 720px) {
  .brand-area {
    padding: 20px 14px 14px;
  }

  .brand-logo {
    width: 76px;
  }

  .sign-main {
    letter-spacing: 0.12em;
  }

  .sign-roman,
  .sign-full {
    letter-spacing: 0.05em;
  }

  .brand-slogan {
    letter-spacing: 0.08em;
  }

  .nav-shell {
    gap: 5px;
    padding: 8px 8px 10px;
  }

  .nav-shell::before,
  .nav-shell::after {
    display: none;
  }

  .nav-shell a {
    min-height: 34px;
    padding: 4px 3px;
    font-size: 12px;
    border-radius: 8px;
  }

  .hero-gradient {
    height: 30px;
  }

  .hero-copy {
    padding: 24px 16px 34px;
  }

  .hero-badge {
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: 30px;
    letter-spacing: 0.04em;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .section,
  .section-soft {
    padding: 44px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .info-grid,
  .service-grid,
  .gallery,
  .doctors {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .nav-shell a {
    font-size: 11px;
  }
}

/* 页面重排后新增样式 */
.subsection-title {
  margin: 38px 0 8px;
  color: #173f2a;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.section-subtitle.compact {
  margin-bottom: 20px;
}

.about-gallery-block {
  margin-top: 36px;
}

.coming-soon-card {
  position: relative;
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 34px 24px;
  text-align: center;
  color: #5f634d;
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 241, 174, 0.76), transparent 44%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.95), rgba(236, 246, 212, 0.88));
  border: 1px dashed rgba(45, 91, 62, 0.28);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(52, 70, 39, 0.08);
}

.coming-soon-card span {
  color: #173f2a;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.coming-soon-card p {
  max-width: 620px;
  margin: 0;
  color: #766c5d;
}


/* 医师资料 HTML 图文分离版 */
.doctor-team-html {
  align-items: stretch;
}

.doctor-profile-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.96), rgba(237, 229, 205, 0.94));
  border: 1px solid rgba(177, 126, 55, 0.22);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(92, 72, 43, 0.10);
}

.doctor-card-main {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.doctor-avatar-wrap {
  position: relative;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(178, 123, 47, 0.18), rgba(255, 255, 255, 0.58));
  box-shadow: inset 0 0 0 1px rgba(160, 112, 49, 0.18);
}

.doctor-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 20px;
  border: 1px solid rgba(184, 132, 62, 0.28);
  pointer-events: none;
}

.doctor-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(79, 58, 31, 0.16);
}

.doctor-summary-text h3 {
  margin: 10px 0 6px;
  color: #2f2922;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.06em;
}

.doctor-brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7c5728;
}

.doctor-brand-mini img {
  width: 48px;
  height: auto;
}

.doctor-brand-mini span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.doctor-brand-mini strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.doctor-brand-mini em {
  color: #8d6a3d;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.02em;
}

.doctor-role-line,
.doctor-origin-line,
.doctor-brief {
  margin: 0 0 8px;
}

.doctor-role-line {
  color: #3e392e;
  font-weight: 800;
  font-size: 17px;
}

.doctor-origin-line {
  color: #6a5032;
  font-weight: 700;
}

.doctor-brief {
  max-width: 600px;
  color: #665c4f;
}

.doctor-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-width: 132px;
  min-height: 42px;
  padding: 8px 20px;
  color: #fffdf5;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: linear-gradient(135deg, #a46b2b, #c2914e);
  box-shadow: 0 12px 24px rgba(146, 94, 38, 0.22);
}

.doctor-detail-panel {
  display: none;
  margin-top: 24px;
}

.doctor-detail-panel.is-open {
  display: block;
}

.doctor-html-poster {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px);
  color: #2f2922;
  border-radius: 30px;
  border: 1px solid rgba(171, 124, 61, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 78% 4%, rgba(232, 210, 170, 0.30), transparent 34%),
    repeating-radial-gradient(circle at 10px 10px, rgba(178, 149, 93, 0.08) 0 2px, transparent 3px 13px),
    linear-gradient(180deg, #faf5e7 0%, #f8f2e3 46%, #fbf9f4 100%);
  box-shadow: 0 18px 45px rgba(92, 72, 43, 0.12);
}

.doctor-poster-bgmark {
  position: absolute;
  inset: auto 0 0 0;
  height: 56%;
  opacity: 0.48;
  background:
    radial-gradient(120% 30% at 16% 38%, rgba(178, 187, 176, 0.20), transparent 55%),
    radial-gradient(120% 28% at 68% 48%, rgba(158, 170, 160, 0.16), transparent 58%),
    linear-gradient(165deg, transparent 35%, rgba(213, 220, 216, 0.28) 35% 42%, transparent 42%),
    linear-gradient(12deg, transparent 54%, rgba(207, 216, 211, 0.24) 54% 61%, transparent 61%);
  pointer-events: none;
}

.doctor-poster-head,
.doctor-honor-box,
.doctor-poster-section {
  position: relative;
  z-index: 1;
}

.doctor-poster-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
  gap: 22px;
  align-items: end;
}

.doctor-poster-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #765325;
}

.doctor-poster-logo img {
  width: 54px;
}

.doctor-poster-logo div {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.doctor-poster-logo strong {
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 0.1em;
}

.doctor-poster-logo span {
  color: #8a6739;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.doctor-name-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.doctor-name-row h3 {
  margin: 0;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.doctor-title-stack {
  display: grid;
  gap: 3px;
  color: #3d362c;
  font-weight: 800;
  font-size: clamp(15px, 2vw, 20px);
}

.doctor-family-line {
  margin: 16px 0 0;
  color: #4f4030;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 20px);
}

.doctor-poster-avatar {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px 24px 46px 46px;
  box-shadow: 0 20px 42px rgba(95, 61, 27, 0.14);
}

.doctor-honor-box {
  margin-top: 24px;
  padding: 22px 26px;
  color: #fff9ea;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(160, 104, 39, 0.96), rgba(184, 128, 55, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 28px rgba(119, 83, 41, 0.14);
}

.doctor-honor-box ul,
.study-section ul {
  margin: 0;
  padding-left: 1.2em;
}

.doctor-honor-box li {
  margin: 2px 0;
  line-height: 1.65;
}

.doctor-poster-section {
  margin-top: 26px;
  padding: 30px clamp(18px, 4vw, 42px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(177, 126, 55, 0.10);
}

.doctor-poster-section h4 {
  width: fit-content;
  margin: -48px auto 24px;
  padding: 10px 36px;
  color: #fffaf0;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(135deg, #a46b2b, #bd8640);
  box-shadow: 0 10px 22px rgba(128, 83, 36, 0.18);
}

.doctor-disease-group {
  margin-bottom: 16px;
}

.doctor-disease-group h5 {
  display: inline-flex;
  margin: 0 0 6px;
  padding: 2px 12px;
  color: #fff8e9;
  font-size: 17px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9f692f, #b9823e);
}

.doctor-disease-group p,
.study-section li {
  margin: 0;
  color: #343027;
  font-size: 15px;
  line-height: 1.78;
}

.study-section {
  margin-top: 38px;
}

.study-section li {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .doctor-card-main,
  .doctor-poster-head {
    grid-template-columns: 1fr;
  }

  .doctor-avatar-wrap {
    max-width: 260px;
    margin: 0 auto;
  }

  .doctor-summary-text {
    text-align: center;
  }

  .doctor-brand-mini {
    justify-content: center;
  }

  .doctor-poster-avatar {
    max-width: 260px;
    margin: 0 auto;
  }

  .doctor-name-row {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .doctor-poster-logo {
    justify-content: center;
  }

  .doctor-family-line {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .doctor-card-main {
    padding: 18px;
    gap: 18px;
  }

  .doctor-summary-text h3 {
    font-size: 40px;
  }

  .doctor-role-line {
    font-size: 15px;
  }

  .doctor-html-poster {
    padding: 20px 14px 26px;
    border-radius: 22px;
  }

  .doctor-honor-box {
    padding: 16px 16px;
    font-size: 13px;
  }

  .doctor-poster-section {
    padding: 28px 14px 20px;
    border-radius: 20px;
  }

  .doctor-poster-section h4 {
    margin-top: -42px;
    padding: 8px 22px;
  }

  .doctor-disease-group h5 {
    font-size: 15px;
  }

  .doctor-disease-group p,
  .study-section li {
    font-size: 14px;
  }
}


/* 多页面版补充样式 */
.nav-shell a.active {
  color: #0c4f34;
  border-color: rgba(45, 112, 57, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 249, 0.94), rgba(224, 242, 178, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(47, 78, 42, 0.13);
}

.page-main {
  background: linear-gradient(180deg, #fbf6ec 0%, #f7f1e6 42%, #eef4dc 100%);
}

.subpage-hero {
  position: relative;
  padding: 54px 18px 46px;
  color: #f9fff5;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 241, 151, 0.38), transparent 38%),
    linear-gradient(180deg, #123d2d 0%, #185a40 48%, #7cae5e 100%);
  overflow: hidden;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(204, 230, 140, 0), rgba(247, 241, 230, 0.92));
  pointer-events: none;
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.subpage-kicker {
  display: inline-flex;
  padding: 5px 16px;
  margin-bottom: 12px;
  color: #fff8df;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.16;
  letter-spacing: 0.1em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.subpage-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(15px, 1.7vw, 19px);
}

.home-only-note {
  padding: 22px 18px 42px;
  text-align: center;
  color: #6f684d;
  background: linear-gradient(180deg, #f8f1df, #f6f1e7);
}

.home-only-note p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 15px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.card-link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card-link {
  display: block;
  padding: 20px 22px;
  border-radius: 20px;
  color: #173f2a;
  background: linear-gradient(135deg, rgba(255, 250, 238, 0.98), rgba(231, 244, 196, 0.84));
  border: 1px solid rgba(45, 91, 62, 0.14);
  box-shadow: 0 12px 30px rgba(52, 70, 39, 0.08);
}

.card-link strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.card-link span {
  display: block;
  color: #696250;
  font-size: 14px;
}

.doctor-detail-panel.is-open {
  scroll-margin-top: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .subpage-hero {
    padding-top: 44px;
  }

  .card-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .subpage-hero {
    padding: 38px 16px 36px;
  }

  .card-link-list {
    grid-template-columns: 1fr;
  }

  .home-only-note {
    padding: 18px 16px 34px;
  }
}


/* V2 修正：桌面导航固定六栏、首页图片不裁切、简介从图片里拆出 */
.nav-shell {
  width: min(1160px, calc(100% - 36px));
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  align-items: center;
}

.nav-shell a {
  min-width: 0;
  width: 100%;
}

.home-hero-section {
  background: linear-gradient(180deg, #d5efa2 0%, #103d2e 34%, #083125 100%);
}

.home-hero-section .hero-gradient {
  height: 34px;
  background: linear-gradient(180deg, rgba(224, 244, 163, 0.98), rgba(154, 194, 96, 0.72), rgba(12, 62, 46, 0));
}

.home-hero-section .hero-photo-box {
  max-width: 1160px;
  width: calc(100% - 36px);
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 20px 46px rgba(6, 45, 32, 0.22);
}

.home-hero-section .hero-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-hero-section .hero-shade {
  background: linear-gradient(180deg, rgba(218, 241, 151, 0.32) 0%, rgba(218, 241, 151, 0.08) 14%, rgba(5, 43, 32, 0) 30%);
}

.home-hero-section .hero-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 1160px;
  width: calc(100% - 36px);
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 46px) 58px;
  border-radius: 0 0 26px 26px;
  color: #f8fff7;
  background: linear-gradient(180deg, rgba(4, 47, 35, 0.96), rgba(5, 57, 42, 0.98));
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.home-hero-section .hero-copy h1,
.home-hero-section .hero-copy p {
  max-width: 920px;
}

.home-hero-section .hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.home-hero-section .hero-copy p {
  font-size: clamp(17px, 1.35vw, 21px);
}

.home-hero-section .hero-actions {
  margin-top: 28px;
}

@media (min-width: 1100px) {
  .brand-area {
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .brand-logo {
    width: 88px;
  }

  .nav-shell {
    padding: 10px 14px 14px;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    width: calc(100% - 16px);
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: 100%;
    gap: 5px;
  }

  .nav-shell a {
    min-height: 34px;
    padding: 4px 2px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .home-hero-section .hero-gradient {
    height: 28px;
  }

  .home-hero-section .hero-photo-box,
  .home-hero-section .hero-copy {
    width: 100%;
    border-radius: 0;
  }

  .home-hero-section .hero-photo-box {
    box-shadow: none;
  }

  .home-hero-section .hero-copy {
    padding: 26px 16px 40px;
  }
}

@media (max-width: 390px) {
  .nav-shell a {
    font-size: 11px;
  }
}


/* V3 修正：全站导航铺满横向区域，桌面首页门面图与简介左右排布 */
.site-header {
  background:
    radial-gradient(circle at 50% -18%, rgba(225, 247, 151, 0.72), transparent 30%),
    linear-gradient(180deg, #083424 0%, #0f5539 52%, #b8df78 100%);
}

.nav-shell {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 10px max(18px, calc((100vw - 1360px) / 2 + 18px)) 14px !important;
  background:
    linear-gradient(180deg, rgba(239, 251, 198, 0.86), rgba(213, 235, 146, 0.78));
}

.nav-shell a {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 38px;
  padding: 6px 8px;
  font-size: clamp(13px, 0.92vw, 15px);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .brand-area {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .brand-logo {
    width: 74px;
  }

  .sign-main {
    font-size: clamp(34px, 3vw, 46px);
    letter-spacing: 0.16em;
  }

  .sign-roman {
    margin-top: 8px;
    font-size: 17px;
  }

  .sign-full {
    margin-top: 5px;
    font-size: 15px;
  }

  .brand-slogan {
    margin-top: 10px;
    font-size: 18px;
  }

  .home-hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: stretch;
    gap: 0;
    padding: 34px max(24px, calc((100vw - 1360px) / 2 + 24px)) 52px;
    background:
      linear-gradient(180deg, rgba(224, 244, 163, 0.92) 0%, rgba(161, 200, 95, 0.72) 4%, rgba(9, 57, 42, 0.98) 20%, #062d23 100%);
  }

  .home-hero-section .hero-gradient {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(224, 244, 163, 0.96), rgba(158, 195, 93, 0.56), rgba(12, 62, 46, 0));
    z-index: 1;
  }

  .home-hero-section .hero-photo-box,
  .home-hero-section .hero-copy {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .home-hero-section .hero-photo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: min(52vw, 560px);
    border-radius: 26px 0 0 26px;
    background: linear-gradient(180deg, #0f4431, #082d23);
    box-shadow: 0 22px 48px rgba(6, 45, 32, 0.24);
  }

  .home-hero-section .hero-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .home-hero-section .hero-shade {
    background:
      linear-gradient(180deg, rgba(218, 241, 151, 0.18) 0%, rgba(218, 241, 151, 0.03) 18%, rgba(5, 43, 32, 0) 34%);
  }

  .home-hero-section .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(52vw, 560px);
    padding: clamp(30px, 3vw, 48px) clamp(30px, 3.4vw, 56px) !important;
    border-radius: 0 26px 26px 0 !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(185, 219, 116, 0.16), transparent 34%),
      linear-gradient(135deg, rgba(4, 47, 35, 0.98), rgba(6, 66, 48, 0.96));
    box-shadow: 0 22px 48px rgba(6, 45, 32, 0.20);
  }

  .home-hero-section .hero-badge {
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 16px;
    font-size: 15px;
  }

  .home-hero-section .hero-copy h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(32px, 3.1vw, 46px);
    letter-spacing: 0.06em;
  }

  .home-hero-section .hero-copy p {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.78;
  }

  .home-hero-section .hero-actions {
    margin-top: 18px;
  }

  .home-hero-section .button {
    min-height: 42px;
    padding: 8px 24px;
  }
}

@media (min-width: 1500px) {
  .home-hero-section {
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  }

  .home-hero-section .hero-photo-box,
  .home-hero-section .hero-copy {
    min-height: 540px;
  }
}

@media (max-width: 1099px) {
  .nav-shell {
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 6px !important;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 5px !important;
    padding: 8px 8px 10px !important;
  }

  .nav-shell a {
    min-height: 34px;
    padding: 4px 2px;
    font-size: 12px;
    letter-spacing: 0;
  }
}

/* V4 修正：首页左右布局的 HTML 层级已调整，下面专门兜底宽屏显示 */
@media (min-width: 1100px) {
  .brand-area {
    padding-top: 12px !important;
    padding-bottom: 10px !important;
  }

  .brand-logo {
    width: 58px !important;
  }

  .sign-main {
    font-size: clamp(30px, 2.4vw, 40px) !important;
    letter-spacing: 0.14em !important;
  }

  .sign-roman {
    margin-top: 6px !important;
    font-size: 15px !important;
  }

  .sign-full {
    margin-top: 4px !important;
    font-size: 13px !important;
  }

  .brand-slogan {
    margin-top: 8px !important;
    font-size: 16px !important;
  }

  .nav-shell {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding-top: 9px !important;
    padding-bottom: 12px !important;
  }

  .home-hero-section {
    display: grid !important;
    grid-template-columns: minmax(520px, 1.02fr) minmax(430px, 0.98fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 26px max(24px, calc((100vw - 1360px) / 2 + 24px)) 38px !important;
    background:
      linear-gradient(180deg, rgba(225, 244, 164, 0.95) 0%, rgba(154, 194, 95, 0.68) 6%, rgba(10, 62, 45, 0.96) 24%, #062d23 100%) !important;
  }

  .home-hero-section .hero-gradient {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    height: 44px !important;
    z-index: 1 !important;
    background: linear-gradient(180deg, rgba(224, 244, 163, 0.96), rgba(158, 195, 93, 0.52), rgba(12, 62, 46, 0)) !important;
  }

  .home-hero-section .hero-photo-box,
  .home-hero-section .hero-copy {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 0 !important;
  }

  .home-hero-section .hero-photo-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 26px 0 0 26px !important;
    background: linear-gradient(180deg, #0f4431, #082d23) !important;
    box-shadow: 0 22px 48px rgba(6, 45, 32, 0.24) !important;
  }

  .home-hero-section .hero-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .home-hero-section .hero-shade {
    background:
      linear-gradient(180deg, rgba(218, 241, 151, 0.16) 0%, rgba(218, 241, 151, 0.03) 18%, rgba(5, 43, 32, 0) 34%) !important;
  }

  .home-hero-section .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: clamp(24px, 2.4vw, 38px) clamp(30px, 3vw, 46px) !important;
    border-radius: 0 26px 26px 0 !important;
    color: #f8fff7 !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(185, 219, 116, 0.16), transparent 34%),
      linear-gradient(135deg, rgba(4, 47, 35, 0.98), rgba(6, 66, 48, 0.96)) !important;
    box-shadow: 0 22px 48px rgba(6, 45, 32, 0.20) !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.24) !important;
  }

  .home-hero-section .hero-badge {
    width: fit-content !important;
    margin-bottom: 12px !important;
    padding: 6px 14px !important;
    font-size: 14px !important;
  }

  .home-hero-section .hero-copy h1 {
    margin-bottom: 12px !important;
    font-size: clamp(30px, 2.65vw, 40px) !important;
    letter-spacing: 0.06em !important;
  }

  .home-hero-section .hero-copy p {
    max-width: none !important;
    margin-bottom: 10px !important;
    font-size: clamp(14px, 0.95vw, 16px) !important;
    line-height: 1.68 !important;
  }

  .home-hero-section .hero-actions {
    margin-top: 14px !important;
  }

  .home-hero-section .button {
    min-height: 40px !important;
    padding: 7px 22px !important;
  }
}

@media (max-width: 1099px) {
  .home-hero-section {
    display: block !important;
  }

  .home-hero-section .hero-copy {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}


/* V5 团队页：谢医生 HTML 图文分离版补充 */
.doctor-profile-card.is-xie {
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.97), rgba(238, 229, 205, 0.95));
}

.doctor-profile-card.is-xie .doctor-avatar {
  object-position: center top;
}

.doctor-cert-badges {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 28px auto 0;
}

.doctor-cert-badge {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px 12px;
  color: #fff8e9;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.22), transparent 32%),
    linear-gradient(135deg, #9f692f, #c29453);
  box-shadow: 0 12px 24px rgba(128, 83, 36, 0.18);
}

.doctor-poster-section.work-section p {
  margin: 0;
  color: #343027;
  font-size: 15px;
  line-height: 1.95;
  text-align: left;
}

@media (max-width: 720px) {
  .doctor-cert-badges {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 260px;
  }

  .doctor-cert-badge {
    min-height: 92px;
    font-size: 16px;
  }

  .doctor-poster-section.work-section p {
    font-size: 14px;
  }
}


/* V6 联系我们：企业微信跳转按钮 + 二维码预留位 */
.wechat-consult-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(45, 91, 62, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 241, 168, 0.58), transparent 40%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.96), rgba(236, 246, 214, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 26px rgba(52, 70, 39, 0.08);
}

.wechat-consult-card h4 {
  margin: 0 0 8px;
  color: #173f2a;
  font-size: 19px;
  letter-spacing: 0.06em;
}

.wechat-consult-card p {
  margin: 0 0 10px;
}

.wechat-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 4px 0 10px;
  padding: 8px 22px;
  color: #fffdf5;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: linear-gradient(135deg, #176044, #9d7437);
  box-shadow: 0 12px 24px rgba(23, 96, 68, 0.18);
}

.wechat-consult-btn:hover {
  transform: translateY(-1px);
}

.wechat-tip {
  color: #7a674c !important;
  font-size: 14px !important;
}

.wechat-qr-box {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(157, 116, 55, 0.20);
}

.wechat-qr-box img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .wechat-consult-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wechat-qr-box {
    width: fit-content;
    margin: 0 auto;
  }
}


/* V7 新闻中心：列表卡片 + 独立详情页占位模板 */
.news-list-section {
  padding-top: 58px;
  padding-bottom: 78px;
}

.section-heading-row {
  max-width: 1120px;
  margin: 0 auto 26px;
}

.news-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(62, 98, 48, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(34, 78, 54, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(34, 78, 54, 0.18);
}

.news-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf4d7;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 20px 22px 24px;
}

.news-date,
.news-detail-date {
  margin: 0 0 8px;
  color: #9a743e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-body h2 {
  margin: 0 0 12px;
  color: #173f2a;
  font-size: 21px;
  line-height: 1.36;
  letter-spacing: 0.04em;
}

.news-excerpt {
  margin: 0;
  color: #56665d;
  font-size: 15px;
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 36px;
  padding: 6px 18px;
  color: #fffdf4;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, #176044, #9d7437);
  box-shadow: 0 10px 20px rgba(23, 96, 68, 0.14);
}

.news-detail-section {
  padding: 58px 18px 82px;
  background: linear-gradient(180deg, rgba(236, 246, 214, 0.76), rgba(255, 251, 238, 0.92));
}

.news-detail-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 30px;
  border: 1px solid rgba(62, 98, 48, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(34, 78, 54, 0.13);
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: #176044;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: #9d7437;
}

.news-detail-card h1 {
  margin: 0;
  color: #173f2a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.28;
  letter-spacing: 0.06em;
}

.news-detail-image {
  margin: 30px 0 34px;
  overflow: hidden;
  border-radius: 24px;
  background: #edf4d7;
  box-shadow: 0 12px 28px rgba(34, 78, 54, 0.10);
}

.news-detail-image img {
  width: 100%;
  height: auto;
}

.news-detail-content {
  color: #344f44;
  font-size: 17px;
  line-height: 2;
}

.news-detail-content p {
  margin: 0 0 18px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-list-section {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-body h2 {
    font-size: 19px;
  }

  .news-detail-section {
    padding: 36px 12px 58px;
  }

  .news-detail-card {
    border-radius: 24px;
  }

  .news-detail-content {
    font-size: 16px;
  }
}
.process-page {
  padding-bottom: 80px;
}

.process-timeline {
  max-width: 980px;
  margin: 42px auto 0;
  position: relative;
  display: grid;
  gap: 22px;
}

.process-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(130, 170, 96, 0.25);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(20, 78, 54, 0.12);
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f6b4f, #91b957);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.process-content h2 {
  margin: 0 0 8px;
  color: #174735;
  font-size: 22px;
}

.process-content p {
  margin: 0;
  color: #4f665c;
  font-size: 16px;
  line-height: 1.9;
}

.process-note {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(246, 251, 231, 0.96);
  border: 1px solid rgba(144, 174, 91, 0.26);
  color: #365346;
  line-height: 1.9;
  box-shadow: 0 10px 26px rgba(20, 78, 54, 0.08);
}

@media (max-width: 640px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 22px;
  }

  .process-content h2 {
    font-size: 20px;
  }

  .process-content p {
    font-size: 15px;
  }
}
/* 看诊流程页 V2：横版流程卡 + 箭头 + 就诊指南展开 */
.visit-process-page {
  padding: 58px 18px 82px;
}

.visit-process-page .section-title {
  margin-bottom: 38px;
}

.visit-flow-track {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 34px;
  align-items: stretch;
  overflow-x: auto;
  padding: 10px 8px 24px;
  scroll-snap-type: x proximity;
}

.visit-flow-track::-webkit-scrollbar {
  height: 8px;
}

.visit-flow-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.visit-flow-track::-webkit-scrollbar-thumb {
  background: rgba(31, 107, 79, 0.45);
  border-radius: 999px;
}

.visit-flow-card {
  position: relative;
  flex: 0 0 155px;
  min-height: 210px;
  padding: 22px 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(145, 185, 87, 0.35);
  box-shadow: 0 16px 38px rgba(10, 70, 45, 0.16);
  color: #24483a;
  text-align: center;
  scroll-snap-align: start;
}

.visit-flow-card::after {
  content: "→";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: #f7fff1;
  font-size: 30px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(10, 70, 45, 0.32);
}

.visit-flow-card:last-child::after {
  content: "";
}

.visit-flow-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f6b4f, #8fb957);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(31, 107, 79, 0.22);
}

.visit-flow-card h2 {
  margin: 0 0 12px;
  color: #174735;
  font-size: 20px;
  line-height: 1.35;
}

.visit-flow-card p {
  margin: 0;
  color: #4f665c;
  font-size: 14px;
  line-height: 1.75;
}

.visit-guide-box {
  max-width: 980px;
  margin: 32px auto 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(145, 185, 87, 0.34);
  box-shadow: 0 14px 34px rgba(10, 70, 45, 0.12);
  overflow: hidden;
}

.visit-guide-box summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  background: linear-gradient(135deg, #1f6b4f, #8fb957);
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
}

.visit-guide-box summary::-webkit-details-marker {
  display: none;
}

.visit-guide-box summary::after {
  content: "＋";
  float: right;
  font-weight: 800;
}

.visit-guide-box[open] summary::after {
  content: "－";
}

.visit-guide-content {
  padding: 24px 28px 28px;
}

.visit-guide-content h2 {
  margin: 0 0 14px;
  color: #174735;
  font-size: 22px;
}

.visit-guide-content p {
  margin: 0 0 14px;
  color: #40584e;
  font-size: 16px;
  line-height: 1.9;
}

.visit-process-note {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(246, 251, 231, 0.96);
  border: 1px solid rgba(144, 174, 91, 0.28);
  color: #365346;
  line-height: 1.9;
  box-shadow: 0 10px 26px rgba(20, 78, 54, 0.08);
}

@media (min-width: 1280px) {
  .visit-flow-card {
    flex-basis: 150px;
  }
}

@media (max-width: 900px) {
  .visit-flow-track {
    max-width: 100%;
    padding-left: 2px;
    padding-right: 2px;
  }

  .visit-flow-card {
    flex-basis: 180px;
  }
}

@media (max-width: 640px) {
  .visit-process-page {
    padding: 42px 14px 64px;
  }

  .visit-flow-track {
    gap: 28px;
  }

  .visit-flow-card {
    flex-basis: 76%;
    min-height: auto;
    padding: 22px 18px;
  }

  .visit-guide-box summary {
    padding: 18px 20px;
    font-size: 19px;
  }

  .visit-guide-content {
    padding: 22px 20px 24px;
  }

  .visit-process-note {
    padding: 18px 20px;
  }
}
/* 看诊流程页 V3：电脑端一行显示，无横向拉条 */
@media (min-width: 901px) {
  .visit-flow-track {
    max-width: 1280px;
    width: calc(100% - 56px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 10px 0 24px;
  }

  .visit-flow-card {
    flex: initial;
    min-width: 0;
    min-height: 205px;
    padding: 20px 14px 22px;
  }

  .visit-flow-card::after {
    right: -17px;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(10, 70, 45, 0.36);
    z-index: 2;
  }

  .visit-flow-card:last-child::after {
    content: "";
  }

  .visit-flow-num {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
    font-size: 18px;
  }

  .visit-flow-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .visit-flow-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* 手机端继续保留横向滑动，避免小屏幕挤爆 */
@media (max-width: 900px) {
  .visit-flow-track {
    display: flex;
    overflow-x: auto;
  }
}