/* 上海瑞椿医院官网样式表 */

/* 重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #10B981;
  --primary-dark: #059669;
  --secondary-color: #3B82F6;
  --gradient-start: #10B981;
  --gradient-end: #3B82F6;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-dark: #1F2937;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', '微软雅黑', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* 顶部栏 - 浅灰色背景 */
.top-bar {
  background: #F5F5F5;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.top-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hospital-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo图片 */
.logo-icon {
  width: auto;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .cn-name {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: 0.5px;
}

.logo-text .en-name {
  font-size: 11px;
  color: #6B7280;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hospital-tags {
  display: flex;
  gap: 24px;
  align-items: center;
}

.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4B5563;
  white-space: nowrap;
}

.tag .icon {
  font-size: 14px;
}

.hospital-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-address {
  font-size: 13px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-phone {
  background: linear-gradient(135deg, #3B82F6, #0EA5E9);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  /*display: flex;*/
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-phone:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* 导航栏 - 白色背景 */
.navbar {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-item {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  margin: 8px 4px;
}

.nav-item:hover {
  color: var(--primary-color);
}

/* 当前选中状态 - 绿色圆角按钮 */
.nav-item.active {
  background: var(--primary-color);
  color: white;
}

/* 下拉菜单 */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  border-radius: 6px;
  margin: 8px 4px;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-color);
}

/* 下拉菜单当前选中状态 */
.nav-dropdown-toggle.active {
  background: var(--primary-color);
  color: white;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
  margin-top: -4px;
  border: 1px solid #E5E7EB;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align:center;
}

.dropdown-item:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary-color);
}

.dropdown-item.active {
  color: var(--primary-color);
  background: rgba(16, 185, 129, 0.1);
  font-weight: 500;
}

/* 页面横幅 */
.page-banner {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 60px 20px;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.banner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.banner-desc {
  font-size: 14px;
  opacity: 0.8;
}

/* 首页横幅特殊样式 */
.hero-banner {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 80px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-info {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  font-size: 14px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 统计数据区 */
.stats-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.stats-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 为什么选择我们 */
.why-us-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

.why-us-cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-btn {
  text-align: center;
  margin-top: 40px;
}

.btn-green {
  background: var(--primary-color);
  color: white;
}

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 科室特色 */
.departments-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.departments-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.departments-info {
  padding-right: 20px;
}

.departments-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.departments-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.departments-list {
  list-style: none;
  margin-bottom: 28px;
}

.departments-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-primary);
}

.departments-list li .icon {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 2px;
}

.departments-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.department-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.department-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.department-card .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.department-card .doctors {
  font-size: 13px;
  color: var(--primary-color);
}

/* 医院简介 */
.hospital-intro {
  padding: 80px 20px;
  background: var(--bg-white);
}

.intro-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-text {
  padding-right: 20px;
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-title .icon {
  color: var(--primary-color);
}

.intro-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.intro-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.intro-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-primary);
}

.intro-tag .icon {
  font-size: 20px;
}

.intro-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1F2937;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.video-placeholder {
  text-align: center;
  color: white;
}

.video-placeholder .play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-placeholder .play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-placeholder .duration {
  font-size: 12px;
  opacity: 0.7;
}

/* 核心价值观 */
.values-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.values-cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-card .desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 医疗服务页面 */
.services-grid {
  padding: 60px 20px;
  background: var(--bg-light);
}

.services-grid-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:260px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.service-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-card .name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.service-card .desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .doctors {
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-card .features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .feature-tag {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
}

/* 预约咨询 */
.booking-section {
  padding: 60px 20px;
  background: var(--bg-white);
  text-align: center;
}

.booking-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.booking-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* 医院概况页面 */
.overview-content {
  padding: 60px 20px;
  background: var(--bg-light);
}

.overview-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 20px;
  text-indent: 2em;
}

.collaboration-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.collaboration-content {
  max-width: 1280px;
  margin: 0 auto;
}

.collaboration-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.collab-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.collab-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.collab-card .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.collab-card .desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 新闻中心 */
.news-content {
  padding: 60px 20px;
  background: var(--bg-light);
}

.news-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.news-sidebar {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.news-sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.news-categories {
  list-style: none;
}

.news-categories li {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.news-categories li:hover,
.news-categories li.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-color);
}

.news-categories li .count {
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.news-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.news-item .category {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.news-item .date {
  font-size: 12px;
  color: var(--text-light);
}

.news-item .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.news-item .summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-item .read-more {
  color: var(--primary-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.news-item .read-more:hover {
  text-decoration: underline;
}

/* 加入瑞椿 */
.join-content {
  padding: 60px 20px;
  background: var(--bg-light);
}

.join-section {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 48px;
}

.join-section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.join-section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.benefit-card:nth-child(1) { background: #EFF6FF; }
.benefit-card:nth-child(2) { background: #F0FDF4; }
.benefit-card:nth-child(3) { background: #FAF5FF; }
.benefit-card:nth-child(4) { background: #FFFBEB; }

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.benefit-card .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.benefit-card .desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.jobs-list {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.job-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job-item:last-child {
  border-bottom: none;
}

.job-item:hover {
  background: var(--bg-light);
}

.job-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.job-location {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 便民服务页面 */
.service-page-content {
  padding: 60px 20px;
  background: var(--bg-light);
}

.service-page-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.service-page-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-section {
  margin-bottom: 28px;
}

.service-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-section-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
}

.service-list li .icon {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 2px;
}

.tip-box {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
}

.tip-box-title {
  font-size: 14px;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 8px;
}

.tip-box-content {
  font-size: 13px;
  color: #92400E;
  line-height: 1.7;
}

.tip-box-content li {
  margin-bottom: 6px;
  padding-left: 4px;
}

/* 就诊流程 */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.process-step:hover {
  background: rgba(16, 185, 129, 0.05);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 联系我们 */
.qr-code-section {
  text-align: center;
  padding: 40px 0;
}

.qr-code {
  width: 200px;
  height: 200px;
  background: var(--bg-light);
  border-radius: 12px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.qr-code-text {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* 门诊排班 */
.schedule-section {
  margin-bottom: 28px;
}

.schedule-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
}

.schedule-card .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.schedule-card .time {
  font-size: 14px;
  color: var(--text-secondary);
}

.expert-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.expert-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.expert-section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tip-box-blue {
  background: #EFF6FF;
  border-left: 4px solid var(--secondary-color);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

.tip-box-blue .tip-box-title {
  color: #1E40AF;
}

.tip-box-blue .tip-box-content {
  color: #1E40AF;
}

/* 医保政策 */
.insurance-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.insurance-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.insurance-card:nth-child(1) { background: #EFF6FF; }
.insurance-card:nth-child(2) { background: #F0FDF4; }
.insurance-card:nth-child(3) { background: #FAF5FF; }
.insurance-card:nth-child(4) { background: #FFFBEB; }

.insurance-card .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.insurance-card .desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.reimbursement-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.reimbursement-table th,
.reimbursement-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.reimbursement-table th {
  background: var(--bg-light);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.reimbursement-table td {
  font-size: 14px;
  color: var(--text-secondary);
}

/* 关注我们 */
.follow-section {
  padding: 60px 20px;
  background: var(--bg-white);
  text-align: center;
}

.follow-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.follow-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.follow-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

/* 页脚 */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 48px 20px 24px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-section .slogan {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-section .phone {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact .email {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 13px;
  opacity: 0.6;
}

/* 响应式设计 */

/* 平板端 */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-info {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .departments-content {
    grid-template-columns: 1fr;
  }
  
  .departments-info {
    padding-right: 0;
    order: 1;
  }
  
  .departments-cards {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-content {
    grid-template-columns: 1fr;
  }
  
  .intro-text {
    padding-right: 0;
  }
  
  .values-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collaboration-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-layout {
    grid-template-columns: 1fr;
  }
  
  .news-sidebar {
    position: static;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insurance-types {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* 手机端 */
@media (max-width: 768px) {
  /* 顶部栏手机端 */
  .top-bar {
    padding: 10px 0;
  }
  
  .top-bar-content {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 16px;
  }
  
  .hospital-logo {
    justify-content: center;
  }
  
  .logo-text .cn-name {
    font-size: 16px;
  }
  
  .logo-text .en-name {
    font-size: 10px;
  }
  
  .hospital-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .tag {
    font-size: 11px;
    gap: 4px;
  }
  
  .hospital-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .contact-address {
    font-size: 12px;
  }
  
  .contact-phone {
    width: fit-content;
  }
  
  /* 导航栏手机端 */
  .navbar {
    position: relative;
  }
  
  .navbar-content {
    flex-wrap: wrap;
    padding: 8px 16px;
    gap: 4px;
  }
  
  .nav-item {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 4px;
    margin: 4px 2px;
  }
  
  .nav-dropdown-toggle {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 4px;
    margin: 4px 2px;
  }
  
  /* 下拉菜单手机端改为点击展开 */
  .dropdown-menu {
    position: fixed;
    top: auto;
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    min-width: auto;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .nav-dropdown:hover .dropdown-menu,
  .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  /* 首页横幅手机端 */
  .hero-banner {
    padding: 40px 16px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-desc {
    font-size: 14px;
  }
  
  .hero-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* 页面横幅手机端 */
  .page-banner {
    padding: 40px 16px;
  }
  
  .banner-title {
    font-size: 26px;
  }
  
  .banner-subtitle {
    font-size: 15px;
  }
  
  .banner-desc {
    font-size: 13px;
  }
  
  /* 统计数据手机端 */
  .stats-section {
    padding: 40px 16px;
  }
  
  .stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-icon {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .stat-desc {
    font-size: 12px;
  }
  
  /* 为什么选择我们手机端 */
  .why-us-section {
    padding: 40px 16px;
  }
  
  .section-header {
    margin-bottom: 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .why-us-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .why-us-card {
    padding: 24px;
  }
  
  /* 科室特色手机端 */
  .departments-section {
    padding: 40px 16px;
  }
  
  .departments-content {
    gap: 24px;
  }
  
  .departments-info .section-title {
    font-size: 24px;
    text-align: center;
  }
  
  .departments-desc {
    font-size: 13px;
  }
  
  .departments-list li {
    font-size: 13px;
  }
  
  .departments-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .department-card {
    padding: 16px;
  }
  
  .department-card .icon {
    font-size: 28px;
  }
  
  /* 医院简介手机端 */
  .hospital-intro {
    padding: 40px 16px;
  }
  
  .intro-content {
    gap: 24px;
  }
  
  .intro-title {
    font-size: 22px;
    justify-content: center;
  }
  
  .intro-desc {
    font-size: 13px;
  }
  
  .intro-tags {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .intro-tag {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  /* 核心价值观手机端 */
  .values-section {
    padding: 40px 16px;
  }
  
  .values-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .value-card {
    padding: 20px;
  }
  
  /* 医疗服务手机端 */
  .services-grid {
    padding: 40px 16px;
  }
  
  .services-grid-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card .name {
    font-size: 16px;
  }
  
  .service-card .desc {
    font-size: 12px;
  }
  
  .service-card .features {
    gap: 6px;
  }
  
  .service-card .feature-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  /* 医院概况手机端 */
  .overview-content {
    padding: 40px 16px;
  }
  
  .overview-card {
    padding: 24px;
  }
  
  .overview-card p {
    font-size: 13px;
    line-height: 1.8;
  }
  
  .collaboration-section {
    padding: 40px 16px;
  }
  
  .collaboration-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .collab-card {
    padding: 20px;
  }
  
  /* 新闻中心手机端 */
  .news-content {
    padding: 40px 16px;
  }
  
  .news-layout {
    gap: 20px;
  }
  
  .news-sidebar {
    padding: 16px;
  }
  
  .news-sidebar-title {
    font-size: 15px;
  }
  
  .news-categories li {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .news-item {
    padding: 16px;
  }
  
  .news-item .title {
    font-size: 16px;
  }
  
  .news-item .summary {
    font-size: 13px;
  }
  
  .follow-section {
    padding: 40px 16px;
  }
  
  .follow-title {
    font-size: 18px;
  }
  
  .follow-desc {
    font-size: 13px;
  }
  
  /* 加入瑞椿手机端 */
  .join-content {
    padding: 40px 16px;
  }
  
  .join-section {
    margin-bottom: 32px;
  }
  
  .join-section-title {
    font-size: 18px;
  }
  
  .join-section-desc {
    font-size: 13px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-card .icon {
    font-size: 28px;
  }
  
  .job-item {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .job-title {
    font-size: 14px;
  }
  
  .job-location {
    font-size: 12px;
  }
  
  /* 便民服务手机端 */
  .service-page-content {
    padding: 40px 16px;
  }
  
  .service-page-card {
    padding: 24px;
  }
  
  .service-page-title {
    font-size: 20px;
    justify-content: center;
  }
  
  .service-section-title {
    font-size: 15px;
  }
  
  .service-section-content {
    font-size: 13px;
  }
  
  .service-list li {
    font-size: 13px;
  }
  
  /* 就诊流程手机端 */
  .process-step {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .step-title {
    font-size: 15px;
  }
  
  .step-desc {
    font-size: 13px;
  }
  
  /* 门诊排班手机端 */
  .schedule-card {
    padding: 12px 16px;
  }
  
  .schedule-card .name {
    font-size: 14px;
  }
  
  .schedule-card .time {
    font-size: 13px;
  }
  
  .expert-section-title {
    font-size: 16px;
  }
  
  .expert-section-desc {
    font-size: 13px;
  }
  
  /* 医保政策手机端 */
  .insurance-types {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .insurance-card {
    padding: 16px;
  }
  
  .insurance-card .title {
    font-size: 13px;
  }
  
  .insurance-card .desc {
    font-size: 12px;
  }
  
  .reimbursement-table th,
  .reimbursement-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  /* 提示框手机端 */
  .tip-box,
  .tip-box-blue {
    padding: 12px 16px;
  }
  
  .tip-box-title {
    font-size: 13px;
  }
  
  .tip-box-content {
    font-size: 12px;
  }
  
  /* 二维码手机端 */
  .qr-code-section {
    padding: 24px 0;
  }
  
  .qr-code {
    width: 160px;
    height: 160px;
  }
  
  .qr-code img {
    width: 150px;
    height: 150px;
  }
  
  /* 页脚手机端 */
  .footer {
    padding: 32px 16px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-section {
    align-items: center;
  }
  
  .footer-section-title {
    font-size: 15px;
  }
  
  .footer-section .slogan {
    font-size: 12px;
  }
  
  .footer-section .phone {
    font-size: 13px;
    justify-content: center;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-contact .email {
    font-size: 12px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
  
  /* 按钮手机端 */
  .section-btn .btn {
    width: auto;
    display: inline-flex;
  }
}

/* 超小屏幕 */
@media (max-width: 375px) {
  .logo-text .cn-name {
    font-size: 14px;
  }
  
  .hospital-tags {
    gap: 8px;
  }
  
  .tag {
    font-size: 10px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .banner-title {
    font-size: 22px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .departments-cards {
    grid-template-columns: 1fr;
  }
  
  .stats-content {
    grid-template-columns: 1fr;
  }
}

/* 面包屑导航 */
.breadcrumb {
  background: var(--bg-white);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
  color: var(--primary-color);
}

.breadcrumb-content .separator {
  color: var(--text-light);
}

.breadcrumb-content .current {
  color: var(--text-primary);
  font-weight: 500;
}

/* 科室详情页 */
.department-detail {
  padding: 40px 20px;
  background: var(--bg-light);
}

.department-detail-content {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.department-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.department-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.department-info {
  flex: 1;
}

.department-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.department-slogan {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.department-stats {
  display: flex;
  gap: 32px;
}

.department-stats .stat {
  text-align: center;
}

.department-stats .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.department-stats .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.department-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--primary-color);
}

.section-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.section-content p {
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tag {
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

/* 专家网格 */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.expert-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.expert-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 600;
}

.expert-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.expert-title {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.expert-specialty {
  font-size: 12px;
  color: var(--text-secondary);
}

/* 设备网格 */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equipment-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.equipment-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.equipment-item h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.equipment-item p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 就诊指南卡片 */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.guide-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.guide-card h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 专家详情页 */
.expert-detail {
  padding: 40px 20px;
  background: var(--bg-light);
}

.expert-detail-content {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.expert-header {
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.expert-avatar-large {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.avatar-placeholder-large {
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: white;
  font-weight: 600;
}

.expert-info-detail {
  flex: 1;
}

.expert-name-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.expert-title-large {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.expert-department {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-tag {
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 16px;
  font-size: 13px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.expert-booking {
  width: 220px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.expert-booking h3 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.booking-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.booking-time {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.booking-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.booking-btn:hover {
  background: var(--primary-dark);
}

/* 专长网格 */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.specialty-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.specialty-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.specialty-item h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.specialty-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* 成就列表 */
.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.achievement-icon {
  font-size: 24px;
}

.achievement-content h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.achievement-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* 评论网格 */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.review-stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-author {
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
}

/* 新闻详情页 */
.news-detail {
  padding: 40px 20px;
  background: var(--bg-light);
}

.news-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.news-article {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.article-category {
  padding: 4px 12px;
  background: var(--primary-color);
  color: white;
  border-radius: 16px;
  font-size: 12px;
}

.article-date,
.article-views {
  font-size: 13px;
  color: var(--text-secondary);
}

.article-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content blockquote {
  padding: 20px 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-primary);
}

.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-style: normal;
}

.article-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.article-image {
  text-align: center;
}

.image-placeholder {
  height: 200px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  margin-bottom: 8px;
}

.image-caption {
  font-size: 13px;
  color: var(--text-secondary);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  margin-top: 32px;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.article-tag {
  padding: 4px 12px;
  background: var(--bg-light);
  border-radius: 16px;
  font-size: 12px;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.article-tag:hover {
  background: var(--primary-color);
  color: white;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.share-btn {
  padding: 6px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.3s ease;
}

.share-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* 相关新闻 */
.related-news {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.related-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.related-item:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.related-date {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.related-text {
  font-size: 14px;
  color: var(--text-primary);
}

/* 文章导航 */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nav-prev,
.nav-next {
  padding: 20px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
  box-shadow: var(--shadow-md);
}

.nav-next {
  text-align: right;
}

.nav-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.nav-title {
  font-size: 14px;
  color: var(--text-primary);
}

/* 响应式 - 科室详情页 */
@media (max-width: 1024px) {
  .experts-grid,
  .equipment-grid,
  .guide-cards,
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .department-header {
    flex-direction: column;
    text-align: center;
  }
  
  .department-stats {
    justify-content: center;
  }
  
  .expert-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .expert-booking {
    width: 100%;
  }
  
  .experts-grid,
  .equipment-grid,
  .guide-cards,
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .article-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .article-nav {
    grid-template-columns: 1fr;
  }
  
  .nav-next {
    text-align: left;
  }
  
  .article-images {
    grid-template-columns: 1fr;
  }
}
