/* =============================================
   有好牙口腔 · 全局样式表
   主色调：白色 #FFFFFF + 薄荷绿 #1670b9
   蓝色#1670b9
   ============================================= */ :root {
  --mint: #1670b9;
  --mint-light: #E8F2FB;
  --mint-dark: #0f559a;
  --white: #FFFFFF;
  --text-dark: #1a2a3a;
  --text-mid: #4A6080;
  --text-light: #8FA3B8;
  --border: #D6E8F7;
  --shadow: rgba(22, 112, 185, 0.15);
  --radius: 14px;
  --font: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ── 按钮 ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--mint);
  color: #fff;
}
.btn-primary:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--mint);
  border: 2px solid var(--mint);
}
.btn-outline:hover {
  background: var(--mint);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--mint-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, .15);
}
/* ── Section 标题 ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .tag {
  display: inline-block;
  background: #bddcf5;
  /* background: var(--mint-light); */
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
/* ── 导航栏 ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}
.nav-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--mint);
}
.nav-logo .logo-text span {
  color: var(--mint);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--mint);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px var(--shadow);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}
.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  width: 100%;
}
/* ── 页脚 ── */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  color: var(--mint);
}
.footer-brand .logo-text span {
  color: var(--mint);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: var(--mint);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item .icon {
  color: var(--mint);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}
/* ── 预约弹窗 ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 82vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  margin: auto;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
}
.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.modal-box > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-dark);
  transition: border-color .2s;
  background: #FAFFFE;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 16px;
  padding: 14px;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}
/* ── 悬浮预约按钮 ── */
.float-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  background: var(--mint);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(22, 112, 185, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  border: none;
  font-family: var(--font);
}
.float-btn:hover {
  background: var(--mint-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(22, 112, 185, 0.50);
}
.page-body {
  padding-top: 70px;
}
/* ── Hero ── */
.hero {
  min-height: calc(100vh - 170px);
  background: linear-gradient(135deg, #EEF5FC 0%, #E8F2FB 50%, #fff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(22, 112, 185, .10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 30px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--mint);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--mint);
}
.hero-stat .label {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
}
.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(110, 207, 181, .25);
}
.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
/* ── 关于简介 ── */
.about-strip {
  padding: 30px 0;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-content .tag {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.about-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.about-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-badge {
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
}
/* ── 特色优势 ── */
.features {
  padding: 50px 0;
  background: var(--mint-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  transition: all .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}
.feature-card-img {
  height: 160px;
  overflow: hidden;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.feature-card:hover .feature-card-img img {
  transform: scale(1.05);
}
.feature-card-body {
  padding: 24px;
}
.feature-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card-body p {
  font-size: 14px;
  color: var(--text-mid);
}
/* ── 服务预览 ── */
.services-preview {
  padding: 50px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all .3s;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.service-card-img {
  height: 180px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 4px;
}
/* ── 医生预览 ── */
.doctors-preview {
  padding: 50px 0;
  background: var(--mint-light);
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doctor-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .3s;
}
.doctor-card:hover {
  border-color: var(--mint);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}
.doctor-photo {
  height: 240px;
  overflow: hidden;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.doctor-card:hover .doctor-photo img {
  transform: scale(1.04);
}
.doctor-info {
  padding: 24px;
}
.doctor-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.doctor-title {
  font-size: 13px;
  color: var(--mint-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.doctor-info p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-item {
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}
/* ── 患者评价 ── */
.reviews-preview {
  padding: 50px 0;
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  transition: all .3s;
}
.review-card:hover {
  border-color: var(--mint);
  box-shadow: 0 12px 32px var(--shadow);
}
.review-stars {
  color: #FFB800;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
}
.author-service {
  font-size: 12px;
  color: var(--text-light);
}
/* ── CTA ── */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ── 页面内页 Hero ── */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #EEF5FC, #E8F2FB);
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: var(--mint);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
/* ── 服务详情页 ── */
.services-detail {
  padding: 30px 0;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.service-detail-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.service-detail-card.reverse .service-detail-visual {
  order: 2;
}
.service-detail-card.reverse .service-detail-content {
  order: 1;
}
.service-detail-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
}
.service-detail-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.service-detail-content .badge {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.service-detail-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
}
.service-detail-content p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}
.service-features-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.service-features-list li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
/* ── 医生详情页 ── */
.team-stats {
  background: var(--mint-light);
  padding: 60px 0;
}
.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.team-stat-item .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--mint);
}
.team-stat-item .label {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 4px;
}
.doctors-full {
  padding: 80px 0;
}
.doctors-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.doctor-full-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .3s;
}
.doctor-full-card:hover {
  border-color: var(--mint);
  box-shadow: 0 16px 48px var(--shadow);
  transform: translateY(-6px);
}
.doctor-full-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.doctor-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.doctor-full-card:hover .doctor-full-photo img {
  transform: scale(1.04);
}
.doctor-badge-pos {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--mint);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.doctor-full-info {
  padding: 28px;
}
.doctor-full-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.doctor-full-title {
  font-size: 13px;
  color: var(--mint-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.doctor-full-info .divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.doctor-exp-list {
  list-style: none;
  margin-bottom: 16px;
}
.doctor-exp-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.doctor-exp-list li::before {
  content: '▸';
  color: var(--mint);
  flex-shrink: 0;
}
.doctor-specialty {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.doctor-appt-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}
/* ── 评价页 ── */
.reviews-full {
  padding: 80px 0;
}
.rating-summary {
  background: var(--mint-light);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.rating-big .score {
  font-size: 72px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}
.rating-big .stars {
  font-size: 22px;
  color: #FFB800;
  margin: 8px 0;
}
.rating-big .count {
  font-size: 14px;
  color: var(--text-mid);
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rating-bar-row .bar-label {
  font-size: 13px;
  color: var(--text-mid);
  width: 36px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(22, 112, 185, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--mint);
  border-radius: 4px;
}
.rating-bar-row .bar-count {
  font-size: 13px;
  color: var(--text-mid);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-full-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all .3s;
}
.review-full-card:hover {
  border-color: var(--mint);
  box-shadow: 0 12px 32px var(--shadow);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.review-author-full {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar-lg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.author-info span {
  font-size: 12px;
  color: var(--text-light);
}
.review-service-tag {
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.review-full-stars {
  color: #FFB800;
  font-size: 15px;
  margin-bottom: 12px;
}
.review-full-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.review-date {
  font-size: 12px;
  color: var(--text-light);
}
/* ── 联系我们页 ── */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--mint-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 14px;
  color: var(--text-mid);
}
.hours-table {
  width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
}
.hours-table tr td {
  font-size: 14px;
  color: var(--text-mid);
  padding: 4px 0;
}
.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 90px;
}
.map-wrap {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.contact-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
}
.contact-form-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-form-box > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
/* ── 成功提示 ── */
.success-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--mint-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 3000;
  opacity: 0;
  transition: all .4s;
  pointer-events: none;
}
.success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* ── 响应式 ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .team-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctors-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-visual {
    display: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .doctors-full-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-full-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .service-detail-card.reverse .service-detail-visual {
    order: 0;
  }
  .service-detail-card.reverse .service-detail-content {
    order: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .rating-summary {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-box {
    padding: 0px;
  }
  .float-btn {
    bottom: 20px;
    right: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .team-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 16px;
  }
  .rating-summary {
    padding: 24px;
  }
}
/* ── 弹窗优化样式 ── */
.modal-header {
  margin-bottom: 24px;
}
.modal-tag {
  display: inline-block;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.modal-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.modal-desc {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 0;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  display: block;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--mint-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  width: 100%;
  color: var(--text-dark);
  font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(22, 112, 185, 0.10);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.form-note strong {
  color: var(--mint-dark);
}
/* ── 弹窗头部优化 ── */
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  animation: modalIn .3s ease;
}
.modal-header {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  padding: 28px 32px 24px;
  margin-bottom: 0;
  position: relative;
}
.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.modal-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.modal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 0;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.modal-body {
  padding: 24px 32px 28px;
}
/* ── 首页最新科普模块 ── */
.bg-light {
  background: #F4F8FC;
  padding: 50px 0
}
.section-more {
  text-align: center;
  margin-top: 40px;
}
.lnews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lnews-skeleton {
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(90deg, #dce8f5 25%, #eaf2fb 50%, #dce8f5 75%);
  background-size: 200% 100%;
  animation: lnews-shimmer 1.4s infinite;
}
@keyframes lnews-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.lnews-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #D6E8F7;
  transition: all .3s;
  overflow: hidden;
}
.lnews-card:hover {
  border-color: #1670b9;
  box-shadow: 0 8px 28px rgba(22, 112, 185, .13);
  transform: translateY(-4px);
}
.lnews-card a {
  display: block;
  padding: 26px 24px 22px;
  text-decoration: none;
  color: inherit;
}
.lnews-cat {
  display: inline-block;
  background: #E8F2FB;
  color: #1670b9;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.lnews-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lnews-card:hover .lnews-title {
  color: #1670b9;
}
.lnews-summary {
  font-size: 13px;
  color: #4A6080;
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lnews-meta {
  font-size: 12px;
  color: #8FA3B8;
}
@media (max-width: 900px) {
  .lnews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 弹窗关闭按钮 ── */
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
/* ── 返回顶部按钮 ── */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--mint);
  border: 2px solid var(--mint);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--mint);
  color: #fff;
}

@media (max-width: 768px) {
  .back-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/* 文章页样式增加 */
/* 左右布局容器 */
.article-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.article-main {
    flex: 1;
    min-width: 0; /* 防止长文本撑破布局 */
}

/* 侧边栏样式 */
.article-sidebar {
    width: 300px;
    position: sticky;
    top: 100px; /* 随屏滚动 */
}

.sidebar-card {
    background: #fff;
    border: 1.5px solid #D6E8F7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a2a3a;
}

.clinic-card p {
    font-size: 14px;
    color: #4A6080;
    line-height: 1.6;
    margin-bottom: 15px;
}

.clinic-meta p {
    margin-bottom: 8px;
    font-size: 13px;
}

.sidebar-appoint-btn {
    width: 100%;
    background: #1670b9;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}

/* 适配移动端 */
@media (max-width: 1024px) {
    .article-layout {
        flex-direction: column;
    }
    .article-sidebar {
        width: 100%;
        position: static;
    }
}

/* 底部CTA横幅 */
.article-footer-cta {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #F0F7FF, #E1EFFF);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #1670b9;
}

.cta-text h4 { font-size: 20px; color: #1a2a3a; margin-bottom: 5px; }
.cta-text p { font-size: 14px; color: #4A6080; margin: 0; }
.cta-btn {
    background: #1670b9; color: #fff; border: none; padding: 12px 24px;
    border-radius: 50px; font-weight: 700; cursor: pointer;
}
/* 列表页样式增加 */
.news-layout { display: flex; gap: 40px; }
.news-main { flex: 1; }
.news-sidebar { width: 360px; }

/* 分类导航条样式 */
.cat-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.cat-nav a {
    white-space: nowrap;
    padding: 8px 18px;
    background: #F4F8FC;
    border: 1px solid #D6E8F7;
    border-radius: 50px;
    font-size: 14px;
    color: #4A6080;
    text-decoration: none;
}
.cat-nav a.active {
    background: #1670b9;
    color: #fff;
    border-color: #1670b9;
}

@media (max-width: 1024px) {
    .news-layout { flex-direction: column; }
    .news-sidebar { display: none; } /* 移动端列表页可以隐藏侧边栏 */
}
/* 列表页头部文字精修 */
.news-header h1 {
    font-size: 32px;
    color: #1a2a3a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.news-header p {
    font-size: 15px;
    color: #8FA3B8;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 3px solid #1670b9; /* 蓝色竖线装饰 */
    line-height: 1.2;
}

.news-count {
    font-size: 13px;
    color: #B2C4D6;
    font-weight: 500;
    margin-bottom: 25px !important;
    display: block;
}

/* 分类导航微调 */
.cat-nav {
    margin-bottom: 35px;
    padding-bottom: 5px;
}
.cat-nav a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 112, 185, 0.15);
}
