/* 诺贝尔一诺口腔集团品牌官网 - 全局样式 */
/* 全局样式：CSS 变量与主题色 */
:root {
  --primary: #0A2C6E;
  --primary-light: #143d8f;
  --accent: #C0A062;
  --accent-light: #d4b87a;
  --background: #F8F8F8;
  --foreground: #1A1A1A;
  --muted: #EAEAEA;
  --border: #D4D4D4;
  --secondary: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(10, 44, 110, 0.08);
  --shadow-hover: 0 8px 30px rgba(10, 44, 110, 0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1280px;
  --header-height: 72px;
}

/* 全局样式：* { */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 全局样式：html { */
html {
  scroll-behavior: smooth;
}

/* 全局样式：body { */
body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 全局样式：h1, h2, h3, h4, h5, h6 { */
h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-weight: 600;
  line-height: 1.3;
}

/* 全局样式：img { */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 全局样式：a { */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* 全局样式：button { */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 全局样式：ul, ol { */
ul, ol {
  list-style: none;
}

/* 全局样式：.container { */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* 全局样式：.section { */
.section {
  padding: 72px 0;
}

/* 全局样式：.section-title { */
.section-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* 全局样式：.section-subtitle { */
.section-subtitle {
  color: var(--secondary);
  font-size: 1rem;
  max-width: 640px;
}

/* 全局样式：.section-header { */
.section-header {
  margin-bottom: 40px;
}

/* 全局样式：.section-header.center { */
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 全局样式：.section-header.row { */
.section-header.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* 全局样式：.section-header-text { */
.section-header-text {
  display: flex;
  flex-direction: column;
}

/* 全局样式：.section-header-link { */
.section-header-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* 全局样式：.section-header-link:hover { */
.section-header-link:hover {
  color: var(--accent);
}

/* 全局样式：.text-accent { */
.text-accent {
  color: var(--accent);
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* 按钮：.btn-primary { */
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

/* 按钮：.btn-primary:hover { */
.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

/* 按钮：.btn-outline { */
.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* 按钮：.btn-outline:hover { */
.btn-outline:hover {
  background-color: var(--accent);
  color: var(--foreground);
}

/* 按钮：.btn-ghost { */
.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

/* 按钮：.btn-ghost:hover { */
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* 按钮：.btn-white { */
.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}

/* 按钮：.btn-white:hover { */
.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

/* 按钮：.booking-form-submit { */
.booking-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* 按钮：.booking-form-submit:hover { */
.booking-form-submit:hover {
  background-color: var(--primary-light);
}

/* 按钮：.btn-sm { */
.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* 头部 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(248, 248, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* 头部：.header.scrolled { */
.header.scrolled {
  box-shadow: var(--shadow);
}

/* 头部：.header .container { */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* 头部：.logo { */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 头部：.logo img { */
.logo img {
  max-height: 30px;
  width: auto;
  display: block;
}

/* 头部：.footer-brand .logo img { */
.footer-brand .logo img {
  max-height: 34px;
}

/* 头部：.nav { */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 头部：.nav-link { */
.nav-link {
  position: relative;
  font-size: 0.9375rem;
  color: var(--foreground);
  padding: 6px 0;
}

/* 头部：.nav-link::after { */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

/* 头部：.nav-link:hover */
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* 头部：.nav-link:hover::after */
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* 头部：.header-actions { */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 头部：.header-phone { */
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary);
}

/* 头部：.header-phone svg { */
.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* 头部：.menu-toggle { */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

/* 头部：.menu-toggle span { */
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 44, 110, 0.4);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* 移动端菜单：.mobile-menu.open { */
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

/* 移动端菜单：.mobile-menu-panel { */
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85%);
  height: 100%;
  background-color: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* 移动端菜单：.mobile-menu.open .mobile-menu-panel { */
.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

/* 移动端菜单：.mobile-menu-header { */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

/* 移动端菜单：.mobile-menu-close { */
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* 移动端菜单：.mobile-nav { */
.mobile-nav {
  flex: 1;
  padding: 16px 24px;
  overflow-y: auto;
}

/* 移动端菜单：.mobile-nav a { */
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--muted);
}

/* 移动端菜单：.mobile-nav a:hover */
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

/* 移动端菜单：.mobile-menu-footer { */
.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  height: auto;
  min-height: auto;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* 首页 Hero 视频轮播 */
.hero-video-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  z-index: 0;
}

/* 首页 Hero 视频轮播：.hero-video { */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 首页 Hero 视频轮播：序号 */
.hero-video-index {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
}

/* 首页 Hero 视频轮播：.hero-video-prev, .hero-video-next */
.hero-video-prev,
.hero-video-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
}

.hero-video-prev { left: 20px; }
.hero-video-next { right: 20px; }

.hero-video-prev:hover,
.hero-video-next:hover {
  background-color: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .hero-video-prev,
  .hero-video-next {
    width: 32px;
    height: 32px;
  }
  .hero-video-prev { left: 12px; }
  .hero-video-next { right: 12px; }
}

/* 核心导航卡片 */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* 核心导航卡片：.explore-card { */
.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* 核心导航卡片：.explore-card:hover { */
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

/* 核心导航卡片：.explore-icon { */
.explore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #F2F2F2;
  border-radius: var(--radius);
  margin-bottom: 12px;
  color: var(--primary);
}

/* 核心导航卡片：.explore-icon svg { */
.explore-icon svg {
  width: 22px;
  height: 22px;
}

/* 核心导航卡片：.explore-card h3 { */
.explore-card h3 {
  font-size: 0.9375rem;
  color: var(--primary);
  margin-bottom: 4px;
}

/* 核心导航卡片：.explore-card p { */
.explore-card p {
  font-size: 0.75rem;
  color: var(--secondary);
  margin: 0;
}

/* 标题装饰线 */
.title-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin: 6px 0 20px;
}

/* 标题装饰线：.section-header.center .title-line { */
.section-header.center .title-line {
  margin: 6px auto 20px;
}

/* 核心诊疗项目轮播 */
.core-services {
  position: relative;
}

/* 核心诊疗项目轮播：.core-services-track { */
.core-services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

/* 核心诊疗项目轮播：.core-services-track::-webkit-scrollbar { */
.core-services-track::-webkit-scrollbar {
  display: none;
}

/* 核心诊疗项目轮播：.core-service-card { */
.core-service-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(7, 31, 77, 0.08);
  text-align: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 2 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 核心诊疗项目轮播：.core-service-card:hover { */
.core-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(7, 31, 77, 0.14);
}

/* 核心诊疗项目轮播：.core-service-text { */
.core-service-text {
  flex: 0 0 38%;
  padding: 32px 20px 12px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

/* 核心诊疗项目轮播：.core-service-text h3 { */
.core-service-text h3 {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}

/* 核心诊疗项目轮播：.core-service-en { */
.core-service-en {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* 核心诊疗项目轮播：.core-service-star { */
.core-service-star {
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 auto 8px;
  color: #c9a86c;
}

/* 核心诊疗项目轮播：.core-service-divider { */
.core-service-divider {
  width: 36px;
  height: 1px;
  background-color: #c9a86c;
  margin: 0 auto 10px;
}

/* 核心诊疗项目轮播：.core-service-text p { */
.core-service-text p {
  font-size: 0.8125rem;
  color: var(--secondary);
  line-height: 1.7;
}

/* 核心诊疗项目轮播：.core-service-image { */
.core-service-image {
  flex: 1 1 62%;
  width: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

/* 核心诊疗项目轮播：.core-service-image img { */
.core-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

/* 核心诊疗项目轮播：.core-services-prev */
.core-services-prev,
.core-services-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(7, 31, 77, 0.15);
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}

/* 核心诊疗项目轮播：.core-services-prev { */
.core-services-prev {
  left: -24px;
}

/* 核心诊疗项目轮播：.core-services-next { */
.core-services-next {
  right: -24px;
}

/* 核心诊疗项目轮播：.core-services-prev:hover */
.core-services-prev:hover,
.core-services-next:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(7, 31, 77, 0.2);
}

/* 核心诊疗项目轮播：.core-services-prev svg */
.core-services-prev svg,
.core-services-next svg {
  width: 22px;
  height: 22px;
}

/* AI口腔视界视频板块 */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* AI口腔视界视频板块：.video-card { */
.video-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 31, 77, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* AI口腔视界视频板块：.video-card:hover { */
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(7, 31, 77, 0.12);
}

/* AI口腔视界视频板块：.video-thumb { */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #1a1a1a;
}

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

/* AI口腔视界视频板块：.video-thumb img { */
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* AI口腔视界视频板块：.video-card:hover .video-thumb img { */
.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

/* AI口腔视界视频板块：.video-play { */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(7, 31, 77, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* AI口腔视界视频板块：.video-card:hover .video-play { */
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: var(--white);
}

/* AI口腔视界视频板块：.video-play svg { */
.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

/* AI口腔视界视频板块：.video-card-body { */
.video-card-body {
  padding: 20px;
}

/* AI口腔视界视频板块：.video-card-body h3 { */
.video-card-body h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

/* AI口腔视界视频板块：.video-card-body p { */
.video-card-body p {
  font-size: 0.8125rem;
  color: var(--secondary);
  line-height: 1.6;
}

/* 品牌连锁全景展示 */
.chain-showcase-section {
  background-color: var(--white);
}

/* 品牌连锁全景展示：.chain-showcase { */
.chain-showcase {
  --chain-thumb-width: 148px;
  background-color: var(--white);
  border: 1px solid #c9a86c;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 48px rgba(7, 31, 77, 0.08);
}

/* 品牌连锁全景展示：.chain-showcase-main { */
.chain-showcase-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 21 / 9;
  background-color: var(--muted);
}

/* 品牌连锁全景展示：.chain-showcase-slides { */
.chain-showcase-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 品牌连锁全景展示：.chain-showcase-slide { */
.chain-showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* 品牌连锁全景展示：.chain-showcase-slide.active { */
.chain-showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* 品牌连锁全景展示：.chain-showcase-image { */
.chain-showcase-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 品牌连锁全景展示：.chain-showcase-image img { */
.chain-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 品牌连锁全景展示：.chain-showcase-overlay { */
.chain-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px;
  background: linear-gradient(to right, rgba(7, 31, 77, 0.72) 0%, rgba(7, 31, 77, 0.38) 38%, transparent 65%);
}

/* 品牌连锁全景展示：.chain-showcase-en { */
.chain-showcase-en {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 108, 0.55);
  letter-spacing: 4px;
  margin-bottom: 4px;
  user-select: none;
}

/* 品牌连锁全景展示：.chain-showcase-overlay h3 { */
.chain-showcase-overlay h3 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(7, 31, 77, 0.25);
}

/* 品牌连锁全景展示：.chain-booking-btn { */
.chain-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* 品牌连锁全景展示：.chain-booking-btn:hover { */
.chain-booking-btn:hover {
  background-color: #0c2a6d;
  transform: translateY(-2px);
}

/* 品牌连锁全景展示：.chain-booking-btn svg { */
.chain-booking-btn svg {
  width: 22px;
  height: 22px;
}

/* 品牌连锁全景展示：.chain-btn-group { */
.chain-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: fit-content;
  margin-top: 16px;
}

/* 品牌连锁全景展示：.chain-btn-group .chain-booking-btn */
.chain-btn-group .chain-booking-btn,
.chain-btn-group .chain-official-btn {
  width: 100%;
  justify-content: center;
}

/* 品牌连锁全景展示：.chain-showcase-prev */
.chain-showcase-prev,
.chain-showcase-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7, 31, 77, 0.18);
  transition: background-color 0.2s ease, color 0.2s ease;
  z-index: 3;
}

/* 品牌连锁全景展示：.chain-showcase-prev:hover */
.chain-showcase-prev:hover,
.chain-showcase-next:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* 品牌连锁全景展示：.chain-showcase-prev { */
.chain-showcase-prev {
  left: 16px;
}

/* 品牌连锁全景展示：.chain-showcase-next { */
.chain-showcase-next {
  right: 16px;
}

/* 品牌连锁全景展示：.chain-showcase-prev svg */
.chain-showcase-prev svg,
.chain-showcase-next svg {
  width: 20px;
  height: 20px;
}

/* 品牌连锁全景展示：.chain-thumbs { */
.chain-thumbs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

/* 品牌连锁全景展示：.chain-thumbs::-webkit-scrollbar { */
.chain-thumbs::-webkit-scrollbar {
  display: none;
}

/* 品牌连锁全景展示：.chain-thumb { */
.chain-thumb {
  flex: 0 0 var(--chain-thumb-width);
  scroll-snap-align: start;
  position: relative;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(7, 31, 77, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* 品牌连锁全景展示：.chain-thumb:hover { */
.chain-thumb:hover {
  border-color: var(--primary);
}

/* 品牌连锁全景展示：.chain-thumb.active { */
.chain-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(7, 31, 77, 0.12);
}

/* 品牌连锁全景展示：.chain-thumb-num { */
.chain-thumb-num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background-color: #c9a86c;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* 品牌连锁全景展示：.chain-thumb-image { */
.chain-thumb-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: var(--muted);
}

/* 品牌连锁全景展示：.chain-thumb-image img { */
.chain-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 品牌连锁全景展示：.chain-thumb-name { */
.chain-thumb-name {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

/* 品牌连锁全景展示：.chain-thumb-en { */
.chain-thumb-en {
  display: block;
  font-size: 0.625rem;
  color: var(--secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* 品牌连锁全景展示：.chain-thumb-loc { */
.chain-thumb-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--secondary);
}

/* 品牌连锁全景展示：.chain-thumb-loc svg { */
.chain-thumb-loc svg {
  width: 12px;
  height: 12px;
}

/* 品牌连锁全景展示：.chain-dots { */
.chain-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

/* 品牌连锁全景展示：.chain-dots button { */
.chain-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: var(--border);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* 品牌连锁全景展示：.chain-dots button.active { */
.chain-dots button.active {
  background-color: var(--primary);
}

/* 品牌动态 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 品牌动态：.news-card { */
.news-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 品牌动态：.news-card:hover { */
.news-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

/* 品牌动态：.news-card img { */
.news-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* 品牌动态：.news-card-body { */
.news-card-body {
  padding: 20px;
}

/* 品牌动态：.news-meta { */
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
}

/* 品牌动态：.news-tag { */
.news-tag {
  color: var(--accent);
  font-weight: 500;
}

/* 品牌动态：.news-date { */
.news-date {
  color: var(--secondary);
}

/* 品牌动态：.news-card h3 { */
.news-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.5;
}

/* CTA */
.cta-section {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

/* CTA：.cta-section::before { */
.cta-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA：.cta-section .section-title { */
.cta-section .section-title {
  color: var(--white);
  font-size: 1.5rem;
}

/* CTA：.cta-section .section-subtitle { */
.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 16px;
}

/* 页脚 */
.footer {
  background-color: #071f4d;
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 32px;
}

/* 页脚：.footer-grid { */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) 1fr 1fr minmax(150px, 1fr);
  align-items: start;
  gap: 36px;
  margin-bottom: 48px;
}

/* 页脚：.footer-brand .logo-mark { */
.footer-brand .logo-mark {
  background-color: #c9a86c;
  color: #071f4d;
  border-radius: 4px;
}

/* 页脚：.footer-brand .logo-name { */
.footer-brand .logo-name {
  color: var(--white);
}

/* 页脚：.footer-desc { */
.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

/* 页脚：.footer-phone { */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #c9a86c;
}

/* 页脚：.footer-phone svg { */
.footer-phone svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* 页脚：.footer-title { */
.footer-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

/* 页脚：.footer-nav-list { */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 页脚：.footer-nav-list a { */
.footer-nav-list a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

/* 页脚：.footer-nav-list a:hover { */
.footer-nav-list a:hover {
  color: var(--accent);
}

/* 页脚：.footer-contact { */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 页脚：.footer-contact-item { */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

/* 页脚：.footer-contact-item svg { */
.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #c9a86c;
}

/* 页脚：.footer-contact-item div { */
.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 页脚：.footer-contact-item strong { */
.footer-contact-item strong {
  color: var(--white);
  font-weight: 500;
}

/* 页脚：.footer-qr { */
.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* 页脚：.footer-qr img { */
.footer-qr img {
  width: 110px;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* 页脚：.footer-qr p { */
.footer-qr p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
}


/* 页脚：.footer-bottom { */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* 页脚：.footer-legal { */
.footer-legal {
  display: flex;
  gap: 24px;
}

/* 页脚：.footer-legal a { */
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

/* 页脚：.footer-legal a:hover { */
.footer-legal a:hover {
  color: var(--accent);
}

/* 返回顶部 */
.back-top {
  position: fixed;
  right: 31px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}

/* 返回顶部：.back-top.visible { */
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 悬浮客服 */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
}

/* 悬浮客服：.chat-button { */
.chat-button {
  width: 56px;
  height: 56px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: all 0.25s ease;
}

/* 悬浮客服：.chat-button:hover { */
.chat-button:hover {
  background-color: var(--accent-light);
  transform: scale(1.05);
}

/* 悬浮客服：.chat-button svg { */
.chat-button svg {
  width: 26px;
  height: 26px;
  animation: icon-blink 1.2s ease-in-out infinite;
}

@keyframes icon-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* 悬浮客服：.chat-panel { */
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 320px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* 悬浮客服：.chat-widget.open .chat-panel { */
.chat-widget.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 悬浮客服：.chat-header { */
.chat-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* 悬浮客服：.chat-close { */
.chat-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
  z-index: 1;
}

.chat-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* 悬浮客服：.chat-body { */
.chat-body {
  padding: 16px;
  min-height: 180px;
}

/* 悬浮客服：.chat-body p { */
.chat-body p {
  font-size: 0.9375rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* 悬浮客服：.chat-footer { */
.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

/* 面包屑 */
.breadcrumb {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 0.875rem;
  color: var(--secondary);
}

/* 面包屑：.breadcrumb a:hover { */
.breadcrumb a:hover {
  color: var(--primary);
}

/* 面包屑：.breadcrumb span { */
.breadcrumb span {
  color: var(--primary);
}

/* 筛选标签 */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* 筛选标签：.filter-tab { */
.filter-tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9375rem;
  color: var(--secondary);
  background-color: var(--white);
  transition: all 0.25s ease;
}

/* 筛选标签：.filter-tab:hover */
.filter-tab:hover,
.filter-tab.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* 诊疗项目页：.service-features { */
.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

/* 诊疗项目页：.service-feature-item { */
.service-feature-item {
  padding: 36px 32px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* 诊疗项目页：.service-feature-item:last-child { */
.service-feature-item:last-child {
  border-right: none;
}

/* 诊疗项目页：.service-feature-icon { */
.service-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}

/* 诊疗项目页：.service-feature-title { */
.service-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

/* 诊疗项目页：.service-feature-desc { */
.service-feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* 诊疗项目页：.service-grid { */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 诊疗项目页：.service-card { */
.service-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}

/* 诊疗项目页：.service-card:hover { */
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(10, 44, 110, 0.08);
}

/* 诊疗项目页：.service-card-image { */
.service-card-image {
  width: 100%;
  overflow: hidden;
}

/* 诊疗项目页：.service-card-image img { */
.service-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  overflow: hidden;
}

/* 诊疗项目页：.service-card-body { */
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

/* 诊疗项目页：.service-card-title { */
.service-card-title {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* 诊疗项目页：.service-card-tags { */
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

/* 诊疗项目页：.service-card-tag { */
.service-card-tag {
  font-size: 0.75rem;
  background-color: #f4f4f4;
  color: #555;
  padding: 4px 10px;
  border-radius: 4px;
}

/* 诊疗项目页：.service-card-desc { */
.service-card-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* 诊疗项目页：.service-card-actions { */
.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* 诊疗项目页：.service-card-link { */
.service-card-link {
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 诊疗项目页：.service-card-link:hover { */
.service-card-link:hover {
  color: var(--accent);
}

/* 诊疗项目页：.service-card-btn { */
.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

/* 诊疗项目页：.service-card-btn:hover { */
.service-card-btn:hover {
  background-color: #0b204f;
}

/* 分院卡片：.branch-tags { */
.branch-tags {
  font-size: 0.8125rem;
  color: var(--secondary);
  line-height: 1.6;
  margin: 6px 0 12px;
}

/* 分院卡片：.branch-meta { */
.branch-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--secondary);
}

/* 分院卡片：.branch-meta li { */
.branch-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 分院卡片：.branch-meta svg { */
.branch-meta svg {
  flex-shrink: 0;
  color: var(--accent);
  width: 14px;
  height: 14px;
}

/* 分院卡片：.branch-actions { */
.branch-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 分院卡片：.branch-actions .btn { */
.branch-actions .btn {
  flex: 1;
  padding: 6px 14px;
  font-size: 0.8125rem;
}

/* 分院卡片：.branch-actions .btn-full { */
.branch-actions .btn-full {
  flex: none;
  width: 100%;
}

/* 详情页 */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

/* 详情页：防止窄屏下网格列被内容撑开 */
.detail-layout > * {
  min-width: 0;
}

/* 详情页：.detail-main { */
.detail-main {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.detail-main img{
  max-width: 100%;
  height: auto;
  display: block;
}


/* 详情页：.detail-sidebar { */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 详情页：.sidebar-card { */
.sidebar-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 0;
}

/* 详情页：.sidebar-card h3 { */
.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--muted);
}

/* 文章 */
.article-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 32px 0 16px;
}

/* 文章：.article-content h3 { */
.article-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 24px 0 12px;
}

/* 文章：.article-content p { */
.article-content p {
  margin-bottom: 16px;
  color: var(--foreground);
  line-height: 1.8;
}

/* 文章：.article-content img { */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 专家卡片 */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
/* 响应式（max-width: 1024px）：.expert-grid { */
  .expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
/* 响应式（max-width: 480px）：.expert-grid { */
  .expert-grid {
    grid-template-columns: 1fr;
  }
}

/* 响应式（max-width: 480px）：.expert-card { */
.expert-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* 响应式（max-width: 480px）：.expert-card:hover { */
.expert-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* 响应式（max-width: 480px）：.expert-photo { */
.expert-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--muted);
}

/* 响应式（max-width: 480px）：.expert-photo img { */
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

/* 响应式（max-width: 480px）：.expert-card:hover .expert-photo img { */
.expert-card:hover .expert-photo img {
  transform: scale(1.03);
}

/* 响应式（max-width: 480px）：.expert-info { */
.expert-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 响应式（max-width: 480px）：.expert-header { */
.expert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

/* 响应式（max-width: 480px）：.expert-header h3 { */
.expert-header h3 {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

/* 响应式（max-width: 480px）：.expert-tag { */
.expert-tag {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: rgba(10, 44, 110, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* 响应式（max-width: 480px）：.expert-title { */
.expert-title {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* 响应式（max-width: 480px）：.expert-meta { */
.expert-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--secondary);
}

/* 响应式（max-width: 480px）：.expert-meta li { */
.expert-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 响应式（max-width: 480px）：.expert-meta svg { */
.expert-meta svg {
  flex-shrink: 0;
  color: var(--accent);
  width: 14px;
  height: 14px;
}

/* 响应式（max-width: 480px）：.expert-summary { */
.expert-summary {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 响应式（max-width: 480px）：.expert-link { */
.expert-link {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 响应式（max-width: 480px）：.expert-link span { */
.expert-link span {
  color: var(--accent);
}

/* 响应式（max-width: 480px）：.expert-card-link { */
.expert-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

/* 专家团队卡片操作区：.expert-actions { */
.expert-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
}

/* 专家团队卡片操作区按钮：.expert-actions .btn { */
.expert-actions .btn {
  flex: 1;
  padding: 10px 20px;
  font-size: 0.875rem;
  white-space: nowrap;
}


/* 连锁中心新版样式：.chain-branches { */
.chain-branches {
  background-color: var(--white);
}

/* 连锁中心新版样式：.chain-branches .section-title em { */
.chain-branches .section-title em {
  color: var(--accent);
  font-style: normal;
}

/* 连锁中心新版样式：.branch-grid { */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* 连锁中心新版样式：.branch-card-h { */
.branch-card-h {
  display: flex;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 连锁中心新版样式：.branch-card-h:hover { */
.branch-card-h:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

/* 连锁中心新版样式：.branch-card-media { */
.branch-card-media {
  width: 45%;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  overflow: hidden;
}

/* 连锁中心新版样式：.branch-card-media img { */
.branch-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 连锁中心新版样式：.branch-card-body { */
.branch-card-body {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* 连锁中心新版样式：.branch-card-body h3 { */
.branch-card-body h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* 连锁中心新版样式：.branch-card-body .branch-tags { */
.branch-card-body .branch-tags {
  font-size: 0.8125rem;
  color: var(--secondary);
  line-height: 1.6;
  margin: 0 0 14px;
}

/* 连锁中心新版样式：.branch-card-body .branch-meta { */
.branch-card-body .branch-meta {
  margin-bottom: 18px;
}

/* 连锁中心新版样式：.branch-card-body .branch-meta li { */
.branch-card-body .branch-meta li {
  font-size: 0.8125rem;
}

/* 连锁中心新版样式：.branch-card-body .branch-actions { */
.branch-card-body .branch-actions {
  margin-top: auto;
}


/* 专家团队页面新版样式：.expert-filter .filter-tab { */
.expert-filter .filter-tab {
  background-color: transparent;
  border-color: var(--border);
  color: var(--secondary);
  font-size: 0.875rem;
  padding: 6px 18px;
}

/* 专家团队页面新版样式：.expert-filter .filter-tab:hover */
.expert-filter .filter-tab:hover,
.expert-filter .filter-tab.active {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

/* 专家团队页面新版样式：.expert-card .expert-photo { */
.expert-card .expert-photo {
  aspect-ratio: 4 / 5;
  background-color: #f5f5f5;
}

/* 专家团队页面新版样式：.expert-card .expert-photo img { */
.expert-card .expert-photo img {
  object-fit: cover;
  object-position: top center;
}

/* 专家团队页面新版样式：.expert-card .expert-info { */
.expert-card .expert-info {
  padding: 18px;
}

/* 专家团队页面新版样式：.expert-card .expert-header { */
.expert-card .expert-header {
  margin-bottom: 4px;
}

/* 专家团队页面新版样式：.expert-card .expert-header h3 { */
.expert-card .expert-header h3 {
  font-size: 1.05rem;
  color: var(--foreground);
}

/* 专家团队页面新版样式：.expert-card .expert-tag { */
.expert-card .expert-tag {
  background-color: rgba(10, 44, 110, 0.08);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
}

/* 专家团队页面新版样式：.expert-card .expert-title { */
.expert-card .expert-title {
  font-size: 0.8125rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* 专家团队页面新版样式：.expert-card .expert-meta { */
.expert-card .expert-meta {
  gap: 5px;
  margin-bottom: 10px;
}

/* 专家团队页面新版样式：.expert-card .expert-meta li { */
.expert-card .expert-meta li {
  font-size: 0.75rem;
}

/* 专家团队页面新版样式：.expert-card .expert-summary { */
.expert-card .expert-summary {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* 专家团队页面新版样式：.expert-card .expert-link { */
.expert-card .expert-link {
  display: block;
  margin-top: 0;
  padding: 12px 18px 18px;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
}

/* 专家团队页面新版样式：.expert-card .expert-link > span { */
.expert-card .expert-link > span {
  color: var(--accent);
}


/* 首页专家团队板块 */
.home-expert-section {
  background-color: var(--background);
}

/* 首页专家团队板块：.home-expert-grid { */
.home-expert-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* 首页专家团队板块：.home-expert-grid .expert-card { */
.home-expert-grid .expert-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(10, 44, 110, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 首页专家团队板块：.home-expert-grid .expert-card:hover { */
.home-expert-grid .expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 44, 110, 0.1);
}

/* 首页专家团队板块：.home-expert-grid .expert-card .expert-photo { */
.home-expert-grid .expert-card .expert-photo {
  aspect-ratio: 4 / 3;
}

/* 首页专家团队板块：.home-expert-grid .expert-card .expert-photo img { */
.home-expert-grid .expert-card .expert-photo img {
  object-position: center;
}

/* 首页专家团队板块：.home-expert-grid .expert-header h3 { */
.home-expert-grid .expert-header h3 {
  font-size: 1.25rem;
}

/* 首页专家团队板块：.home-expert-grid .expert-title { */
.home-expert-grid .expert-title {
  font-size: 0.9375rem;
}

/* 首页专家团队板块：.home-expert-grid .expert-meta { */
.home-expert-grid .expert-meta {
  font-size: 0.875rem;
}

/* 首页专家团队板块：.home-expert-grid .expert-summary */
.home-expert-grid .expert-summary,
.home-expert-grid .expert-link {
  font-size: 0.9375rem;
}

/* 首页专家团队板块：.home-expert-more { */
.home-expert-more {
  text-align: center;
}

/* 首页专家团队板块：.article-back { */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
/* 首页专家团队板块：.article-back::before { */
.article-back::before {
  content: "←";
}
/* 首页专家团队板块：.article-back:hover { */
.article-back:hover {
  background-color: var(--muted);
}

/* ========== 预约表单样式 ========== */
.booking-page-header {
  text-align: center;
  padding: 32px 0 16px;
}
.booking-page-header h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.booking-title-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: var(--primary);
  margin: 0 16px;
  vertical-align: middle;
  opacity: 0.4;
}
.booking-title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

.booking-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.booking-form-group.error .form-error {
  display: block;
}
.booking-form-group.error .booking-form-input,
.booking-form-group.error .booking-form-textarea {
  border-color: #dc2626;
}
.booking-form-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.booking-form-label .required {
  color: #dc2626;
  margin-left: 2px;
}
.booking-form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
  box-sizing: border-box;
}
.booking-form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,160,98,0.12);
}
.booking-form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.booking-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.25s;
}
.booking-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,160,98,0.12);
}

.booking-phone-input {
  display: flex;
  gap: 0;
}
.booking-phone-code {
  width: 80px;
  height: 48px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  text-align: center;
  flex-shrink: 0;
}
.booking-phone-code + .booking-form-input {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.booking-input-icon {
  position: relative;
}
.booking-input-icon .booking-form-input {
  padding-right: 44px;
}

.booking-form-actions {
  text-align: center;
  margin-top: 8px;
}
.booking-form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--secondary);
  margin-top: 16px;
  line-height: 1.6;
}
.form-success {
  display: none;
}

@media (max-width: 768px) {
  .booking-form {
    padding: 24px 20px;
  }
  .booking-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .booking-page-header h1 {
    font-size: 1.5rem;
  }
}

/* ========== 响应式适配（从 responsive.css 合并） ========== */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 992px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .service-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .service-feature-item:last-child {
    border-bottom: none;
  }
  .service-card {
    grid-template-columns: 180px 1fr;
  }
  .service-card-body {
    padding: 20px;
  }
  .news-grid,
  .expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .detail-sidebar .sidebar-card {
    flex: 1 1 calc(50% - 12px);
  }
  .core-service-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chain-showcase-main {
    aspect-ratio: 16 / 9;
  }
  .chain-showcase-overlay {
    padding: 32px;
  }
  .chain-showcase-en {
    font-size: 2rem;
  }
  .chain-showcase-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  .chain-thumb {
    flex: 0 0 132px;
  }
  .core-services-prev {
    left: 0;
  }
  .core-services-next {
    right: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-contact {
    align-items: center;
    text-align: center;
  }
  .footer-qr {
    align-items: center;
  }
  .footer-qr img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .explore-card {
    padding: 16px 8px;
  }
  .explore-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  .explore-icon svg {
    width: 18px;
    height: 18px;
  }
  .explore-card h3 {
    font-size: 0.875rem;
  }
  .explore-card p {
    font-size: 0.6875rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card-image {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .service-card-body {
    padding: 20px;
  }
  .service-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .service-card-desc {
    font-size: 0.875rem;
  }
  .service-card-actions {
    gap: 12px;
  }
  .core-services-track {
    gap: 16px;
    padding: 12px 0 42px;
  }
  .core-service-card {
    flex: 0 0 85%;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .chain-showcase {
    padding: 16px;
    border-radius: 20px;
  }
  .chain-showcase-main {
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
  }
  .chain-showcase-overlay {
    justify-content: flex-end;
    padding: 24px;
    align-items: center;
    text-align: center;
    background: linear-gradient(to top, rgba(7, 31, 77, 0.8) 0%, rgba(7, 31, 77, 0.4) 45%, transparent 72%);
  }
  .chain-showcase-en {
    font-size: 1.5rem;
  }
  .chain-showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .chain-btn-group {
    margin-top: 12px;
    gap: 10px;
  }
  .chain-booking-btn {
    padding: 12px 22px;
    font-size: 0.875rem;
  }
  .chain-booking-btn svg {
    width: 18px;
    height: 18px;
  }
  .chain-showcase-prev,
  .chain-showcase-next {
    width: 36px;
    height: 36px;
  }
  .chain-showcase-prev {
    left: 10px;
  }
  .chain-showcase-next {
    right: 10px;
  }
  .btn {
    padding: 10px 22px;
    font-size: 0.875rem;
  }
  .service-card-btn {
    padding: 6px 14px;
    font-size: 0.8125rem;
  }
  .filter-tab,
  .expert-filter .filter-tab {
    padding: 6px 16px;
    font-size: 0.875rem;
  }
  .booking-form-submit {
    padding: 10px 36px;
    font-size: 0.9375rem;
  }
  .service-features {
    margin-bottom: 40px;
  }
  .service-feature-item {
    padding: 28px 24px;
  }
  .service-feature-icon {
    width: 40px;
    height: 40px;
  }
  .service-feature-title {
    font-size: 1.125rem;
  }
  .service-feature-desc {
    font-size: 0.8125rem;
  }
  .chain-thumb {
    flex: 0 0 120px;
    padding: 8px;
  }
  .chain-thumb-en,
  .chain-thumb-loc {
    display: none;
  }
  .chain-thumb-name {
    font-size: 0.8125rem;
  }
  .core-service-text h3 {
    font-size: 1.25rem;
  }
  .core-services-prev,
  .core-services-next {
    width: 40px;
    height: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: auto;
    align-items: center;
    text-align: center;
  }
  .footer-brand .logo {
    justify-content: center;
  }
  .footer-phone {
    justify-content: center;
    font-size: 1.125rem;
  }
  .footer-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav-list {
    align-items: center;
    gap: 10px;
  }
  .footer-nav-list a {
    font-size: 0.875rem;
  }
  .footer-qr {
    align-items: center;
  }
  .footer-qr img {
    width: 120px;
  }
  .footer {
    padding: 48px 0 24px;
  }
  .footer-title {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .service-card {
    padding: 18px 12px;
  }
  .service-card h3 {
    font-size: 0.9375rem;
  }
  .service-card p {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .service-card .link {
    font-size: 0.75rem;
  }
  .section {
    padding: 48px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 16px;
  }
  .nav,
  .header-phone {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions .btn {
    display: none;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding: var(--header-height) 0 0;
  }
  .news-grid,
  .expert-grid {
    grid-template-columns: 1fr;
  }
  .detail-main {
    padding: 24px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-main,
  .detail-sidebar {
    min-width: 0;
  }
  .detail-sidebar {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .detail-sidebar .sidebar-card {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .news-card-body {
    padding: 16px;
  }
  .filter-tabs {
    gap: 8px;
  }
  .filter-tab {
    padding: 6px 14px;
    font-size: 0.875rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cta-section {
    padding: 32px 0;
  }
  .cta-section .section-title {
    font-size: 1.25rem;
  }
  .cta-section .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }
  .cta-section .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  .chat-widget {
    right: 16px;
    bottom: 16px;
  }
  .chat-panel {
    width: calc(100vw - 32px);
  }
  .back-top {
    right: 24px;
    bottom: 80px;
  }
  .expert-filter {
    gap: 8px;
  }
  .expert-filter .filter-tab {
    padding: 5px 12px;
    font-size: 0.8125rem;
  }
  .expert-grid,
  .home-expert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .expert-card .expert-photo {
    aspect-ratio: 4 / 3;
  }
  .expert-card .expert-info {
    padding: 12px;
  }
  .expert-card .expert-header h3 {
    font-size: 0.9375rem;
  }
  .expert-card .expert-title {
    font-size: 0.75rem;
  }
  .expert-card .expert-meta li,
  .expert-card .expert-summary,
  .expert-card .expert-link {
    font-size: 0.75rem;
  }
  .home-expert-grid .expert-card .expert-header h3 {
    font-size: 1rem;
  }
  .home-expert-grid .expert-card .expert-title {
    font-size: 0.8125rem;
  }
  .home-expert-grid .expert-card .expert-meta li,
  .home-expert-grid .expert-card .expert-summary,
  .home-expert-grid .expert-card .expert-link {
    font-size: 0.8125rem;
  }
  .expert-actions .btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }
  .branch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .branch-card-h {
    flex-direction: column;
  }
  .branch-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .branch-card-body {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 1rem;
  }
  .footer-phone {
    font-size: 1rem;
  }
  .footer-legal {
    gap: 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  .expert-grid,
  .home-expert-grid {
    grid-template-columns: 1fr;
  }
  .branch-card-body {
    padding: 14px;
  }
  .service-features {
    margin-bottom: 32px;
    border-radius: var(--radius);
  }
  .service-feature-item {
    padding: 22px 18px;
  }
  .service-feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
  .service-feature-title {
    font-size: 1rem;
  }
  .service-feature-desc {
    font-size: 0.75rem;
  }
  .chain-btn-group {
    gap: 8px;
    margin-top: 10px;
  }
  .chain-booking-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  .chain-booking-btn svg {
    width: 16px;
    height: 16px;
  }
  .btn {
    padding: 8px 18px;
    font-size: 0.8125rem;
  }
  .expert-actions .btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .service-card-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .filter-tab,
  .expert-filter .filter-tab {
    padding: 5px 14px;
    font-size: 0.8125rem;
  }
  .booking-form-submit {
    padding: 8px 28px;
    font-size: 0.875rem;
  }
}

/* ========== 列表页顶部 Banner ========== */
.list-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== 品牌动态页面样式（从 news.css 合并） ========== */

/* ---- Banner 轮播 ---- */
.news-banner-carousel {
  width: 100%;
  /* aspect-ratio: 21 / 9; */
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  width: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.carousel-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-slide.active img {
  height: auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 44, 110, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.carousel-arrow:hover {
  background: rgba(10, 44, 110, 0.85);
}
.carousel-prev {
  left: 16px;
}
.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}
.carousel-dots button.active {
  background: #fff;
}

/* ---- Filter 筛选标签 ---- */
.filter-tabs.news-filter {
  justify-content: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-tabs.news-filter .filter-tab {
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 0.875rem;
}
.filter-tabs.news-filter .filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---- 新闻卡片 ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.news-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.8125rem;
}
.news-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius);
  background: rgba(10, 44, 110, 0.08);
  color: var(--primary);
}
.news-date {
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-card-body h3 {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.news-card-body p {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.news-readmore {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.news-readmore span {
  transition: transform 0.25s ease;
}
.news-card:hover .news-readmore span {
  transform: translateX(4px);
}
.news-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 6px 0 10px;
  line-height: 1.4;
}

/* ---- 分页 ---- */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.news-page-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.news-page-prev {
  background: var(--accent);
  color: var(--white);
}
.news-page-prev:hover {
  background: var(--accent-light);
}
.news-page-next {
  background: var(--primary);
  color: var(--white);
}
.news-page-next:hover {
  background: var(--primary-light);
}
.news-page-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---- 文章页标题块 ---- */
.article-title-block {
  margin-bottom: 20px;
}
.article-main-title {
  font-size: 1.875rem;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1.3;
}
/* ---- 品牌动态响应式 ---- */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
  .carousel-prev {
    left: 8px;
  }
  .carousel-next {
    right: 8px;
  }
  .carousel-dots {
    bottom: 10px;
  }
}

/* ========== 公共工具类（从内联 style 提取） ========== */

/* 主内容区顶部留白 */
.main-content {
  padding-top: var(--header-height);
}

/* 侧栏描述文字 */
.sidebar-desc {
  font-size: 0.9375rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

/* 全宽按钮 */
.btn-full {
  width: 100%;
  justify-content: center;
}

/* 侧栏列表布局 */
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 侧栏联系信息行 */
.sidebar-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--secondary);
}

/* 侧栏联系信息图标 */
.sidebar-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* 侧栏专家链接 */
.sidebar-expert-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* 侧栏专家头像 */
.sidebar-avatar {
  width: 48px;
  height: 48px;
  background: var(--muted);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 侧栏专家姓名 */
.sidebar-expert-name {
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 500;
}

/* 侧栏专家科室 */
.sidebar-expert-dept {
  font-size: 0.8125rem;
  color: var(--secondary);
}

/* 侧栏查看更多链接 */
.sidebar-link-more {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--accent);
}

/* 侧栏相关链接项 */
.sidebar-related-link {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: var(--secondary);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.sidebar-related-link .accent {
  color: var(--accent);
}

/* 侧栏所在分院链接 */
.sidebar-branch-link {
  display: block;
  padding: 12px;
  background: rgba(10, 44, 110, 0.05);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--primary);
}

/* 侧栏相关动态项 */
.sidebar-news-item {
  border-bottom: 1px solid var(--muted);
  padding-bottom: 12px;
}

.sidebar-news-meta {
  font-size: 0.8125rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.sidebar-news-title {
  font-size: 0.9375rem;
  color: var(--primary);
}

/* 间距工具类 */
.mt-32 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-10 {
  margin-bottom: 10px;
}

/* section 间距变体 */
.section-compact {
  padding-bottom: 24px;
}

.section-flush-top {
  padding-top: 0;
}

/* section-header 紧凑间距 */
.section-header-compact {
  margin-bottom: 10px !important;
}

/* 白色背景 section */
.section-white {
  background-color: var(--white);
}

/* 专家详情页头部布局 */
.expert-detail-hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.expert-detail-portrait {
  flex-shrink: 0;
  width: 40%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.expert-detail-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.expert-detail-info {
  flex: 1;
  min-width: 200px;
}

.expert-detail-name {
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.expert-detail-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.expert-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.expert-detail-tag {
  background: rgba(10, 44, 110, 0.07);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.875rem;
}

.expert-detail-bio {
  color: var(--secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .expert-detail-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .expert-detail-portrait {
    width: 100%;
  }
  .expert-detail-tags {
    justify-content: center;
  }
}
