/* ============================================
 * 开封市眼病医院 - 首页样式文件 (index.css)
 * 版本: 1.0.0
 * 最后更新: 2025-12-10
 * 命名规范: BEM (块-元素-修饰符)
 * 示例: .block__element--modifier
 ============================================ */

/* ============================================
   1. 页面通用样式
   ============================================ */

/* 主要区域基础样式 */
.main-content {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 容器样式 */
.container-xxl {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.container-1200 {
  max-width: 1200px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* ============================================
   2. 横幅区域 (Hero Banner)
   ============================================ */

.hero-banner {
  background-image: url('/kfsybyy/assets/images/banner_eye.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  width: 100%;
  position: relative;
}

/* ============================================
   3. 特色服务区域 (Features Section)
   ============================================ */

.features-section {
  padding: 25px 0 10px;
  width: 100%;
  overflow: hidden;
}

.features-section__box {
  overflow: hidden;
}

/* 确保a标签没有下划线 */
.index__features-list a {
  text-decoration: none !important;
}

/* 清除浮动 */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

.cf {
  *zoom: 1; /* 兼容IE6/7 */
}

/* 旋转动画 */
@keyframes rot {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@-webkit-keyframes rot {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

/* 特色服务列表 */
.index__features-list {
  padding: 10px 0 0;
  width: 100%;
  overflow: hidden;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.index__features-item {
  float: left;
  width: calc(25% - 7.5px);
  height: 207px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

/* 确保最后一个li没有右边距 */
.index__features-item:last-child {
  margin-right: 0;
}

.index__features-link {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none !important;
}

.index__features-icon {
  padding: 55px 0 10px;
  transition: transform 0.3s ease;
}

.index__features-icon img {
  height: 65px;
  width: 80px;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
}

.index__features-title {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  padding: 0 10px;
}

/* 悬停效果 */
.index__features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}

.index__features-item:hover .index__features-icon {
  transform: scale(1.05);
}

.index__features-item:hover .index__features-icon img {
  animation: rot 0.5s;
  -webkit-animation: rot 0.5s;
}

/* 各列表项背景颜色 */
.index__features-item--opd-schedule {
  background-color: #528eb5;
}

.index__features-item--visit-guide {
  background-color: #e5ca8f;
}

.index__features-item--location {
  background-color: #fff;
}

.index__features-item--doctor-search {
  background-color: #01763a;
}

/* 特殊文本颜色 */
.index__features-item--location .index__features-title {
  color: #474747;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* ============================================
   4. 医院简介区域 (Intro Section)
   ============================================ */

.intro-section {
  padding: 40px 0;
  background-color: var(--page-bg-light);
  position: relative;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.intro-text {
  flex: 1;
}

.intro-text__paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.intro-text__paragraph--normal {
  font-weight: normal;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.intro-stat__item {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--page-bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-stat__item:hover {
  background-color: var(--theme-color);
  color: white;
  transform: translateY(-5px);
}

.intro-stat__item:hover .intro-stat__number,
.intro-stat__item:hover .intro-stat__label {
  color: white;
}

.intro-stat__number {
  font-size: 36px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.intro-stat__label {
  font-size: 16px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.intro-image {
  flex: 1;
  min-height: 300px;
  max-width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--accent-secondary) 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: block;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/kfsybyy/assets/images/ybyy-center.jpg) center/cover no-repeat;
  z-index: 1;
}

/* ============================================
   5. 医院文化区域 (Culture Section)
   ============================================ */

.culture-section {
  position: relative;
  height: 400px;
}

.culture-section__container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 背景图片 */
.culture-section__bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(255 255 255 / 0%), rgb(167 199 219 / 74%)), url(/kfsybyy/assets/images/culture-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 叠加层 */
.culture-section__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 内容 */
.culture-section__content {
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 800px;
}

/* 标题 */
.culture-section__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
  position: relative;
  display: inline-block;
}

.culture-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--theme-color);
  margin: 10px auto 0;
}

/* 院训 */
.culture-motto {
  margin-bottom: 25px;
}

.culture-motto__chinese {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.culture-motto__english {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* 摘要 */
.culture-summary {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ============================================
   6. 专家介绍区域 (Experts Section)
   ============================================ */

.experts-section {
  padding: 80px 0;
  background-color: var(--page-bg-light);
  position: relative;
}

/* 标题区域 */
.experts-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.experts-section__title {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  position: relative;
  display: inline-block;
}

.experts-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--theme-color);
  margin-top: 10px;
}

/* 更多专家链接 */
.experts-section__more-link {
  color: #0083b6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 15px;
  border: 1px solid #0083b6;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.experts-section__more-link:hover {
  background: #0083b6;
  color: white;
  text-decoration: none;
}

/* 专家列表 */
.experts-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

/* 专家卡片 */
.expert-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
}

/* 图片容器 */
.expert-card__image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 146.4%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.expert-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-card__image {
  transform: scale(1.05);
}

.expert-card__tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--theme-color);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
}

.expert-card__info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: white;
}

.expert-card__name {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.3;
}

.expert-card__title {
  color: var(--theme-color);
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   7. 九大亚专业区域 (Specialties Section)
   ============================================ */

.specialties-section {
  padding: 60px 0;
  background-color: white;
  position: relative;
}

/* 标题区域 */
.specialties-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.specialties-section__title {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  position: relative;
  display: inline-block;
}

.specialties-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--theme-color);
  margin-top: 10px;
}

/* 描述 */
.specialties-section__description {
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
}

/* 更多链接 */
.specialties-section__more-link {
  color: #0083b6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 15px;
  border: 1px solid #0083b6;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.specialties-section__more-link:hover {
  background: #0083b6;
  color: white;
  text-decoration: none;
}

/* 亚专业网格布局 */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 亚专业卡片 */
.specialty-card {
  background-color: #f8f9fa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景遮罩层 */
.specialty-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(157 145 145 / 70%), rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
  z-index: 1;
}

.specialty-card:hover .specialty-card__overlay {
  background: linear-gradient(to bottom, rgba(0, 131, 182, 0.8), rgba(0, 131, 182, 0.6));
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.specialty-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.specialty-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.specialty-card:hover .specialty-card__icon {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.specialty-card__name {
  font-size: 18px;
  color: white;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.specialty-card__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  max-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================
   8. 新闻公告区域 (News Section)
   ============================================ */

.news-section {
  padding: 80px 0;
  background-color: var(--page-bg-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.news-card__image {
  height: 200px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 25px;
}

.news-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.news-card__title {
  font-size: 1.5rem;
  color: #0083b6;
  margin: 0;
  font-weight: 600;
}

.news-card__more-link {
  color: #0083b6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 15px;
  border: 1px solid #0083b6;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.news-card__more-link:hover {
  background: #0083b6;
  color: white;
  text-decoration: none;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list__item {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.news-list__item:last-child {
  border-bottom: none;
}

.news-list__item a {
  color: #333;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
}

.news-list__item a:hover {
  color: #0083b6;
  text-decoration: none;
}

/* ============================================
   9. 右侧导航栏 (Right Sidebar)
   ============================================ */

.right-sidebar {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

/* 导航链接基础样式 */
.sidebar-nav__item {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 3px;
  background: #fff;
  color: #333;
  text-align: center;
  line-height: 56px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
  text-decoration: none;
}

/* 悬停效果 */
.sidebar-nav__item:hover {
  background: #0083b6;
  color: #fff;
}

/* 图标容器 */
.sidebar-nav__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 悬停时隐藏图标 */
.sidebar-nav__item:hover .sidebar-nav__icon {
  opacity: 0;
  visibility: hidden;
}

/* 文字容器 */
.sidebar-nav__label {
  display: inline-block;
  width: 36px;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  vertical-align: middle;
}

/* 悬停时显示文字 */
.sidebar-nav__item:hover .sidebar-nav__label {
  opacity: 1;
  visibility: visible;
}

/* 图片样式 */
.sidebar-nav__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

/* 二维码链接的特殊样式 */
.sidebar-nav__item--qrcode {
  position: relative;
}

/* 二维码容器 */
.qrcode-popup {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 二维码链接悬停时显示二维码容器 */
.sidebar-nav__item--qrcode:hover .qrcode-popup {
  opacity: 1;
  visibility: visible;
}

/* 为二维码容器添加一个三角形箭头指向链接 */
.qrcode-popup::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid white;
}

/* 二维码图片样式 */
.qrcode-popup__image {
  max-width: 100%;
  max-height: 100%;
}

/* ============================================
   10. 响应式设计 (Responsive)
   ============================================ */

/* 中等屏幕（1279px以下） */
@media only screen and (max-width: 1279px) {
  .container-xxl {
    max-width: 984px;
  }
  
  /* 调整特色服务项目 */
  .index__features-item {
    width: calc(50% - 10px);
    height: 180px;
    margin-bottom: 20px;
  }
  
  .index__features-icon {
    padding-top: 40px;
  }
  
  .index__features-icon img {
    height: 55px;
    width: 70px;
  }
  
  .index__features-title {
    font-size: 16px;
  }
  
  /* 专家列表调整为4列 */
  .experts-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 平板（1023px以下） */
@media only screen and (max-width: 1023px) {
  .container-xxl {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .features-section {
    padding: 40px 0;
  }
  
  .index__features-list {
    padding: 40px 0 0;
  }
  
  /* 1023px以下改为每行2个 */
  .index__features-item {
    width: calc(50% - 10px);
    height: 200px;
    margin-bottom: 20px;
  }
  
  .index__features-icon {
    padding: 45px 0 10px;
  }
  
  .index__features-icon img {
    height: 60px;
    width: 75px;
  }
  
  /* 专家列表调整为3列 */
  .experts-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* 亚专业网格调整为2列 */
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specialty-card {
    height: 190px;
  }
}

/* 手机（768px以下） */
@media only screen and (max-width: 768px) {
  .hero-banner {
    min-height: 300px;
  }
  
  .features-section {
    padding: 30px 0;
  }
  
  .index__features-list {
    padding: 30px 0 0;
    flex-direction: column;
  }
  
  .index__features-item {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
  }
  
  .index__features-item:last-child {
    margin-bottom: 0;
  }
  
  .index__features-icon {
    padding: 40px 0 10px;
  }
  
  .index__features-icon img {
    height: 55px;
    width: 70px;
  }
  
  .index__features-title {
    font-size: 16px;
  }
  
  /* 减小悬停效果在移动端的幅度 */
  .index__features-item:hover {
    transform: translateY(-3px);
  }
  
  .news-section {
    padding: 50px 0;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card {
    margin-bottom: 30px;
  }
  
  /* 专家列表调整为2列 */
  .experts-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* 专家区域标题 */
  .experts-section__title {
    font-size: 24px;
  }
  
  .experts-section__more-link {
    font-size: 0.85rem;
    padding: 4px 12px;
  }
  
  /* 亚专业网格调整为2列 */
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .specialties-section__title {
    font-size: 24px;
  }
  
  .specialties-section__description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .specialty-card {
    height: 180px;
  }
}

/* 手机（576px以下） */
@media (max-width: 576px) {
  .hero-banner {
    min-height: 250px;
  }
  
  .news-card {
    padding: 15px;
  }
  
  .news-card__image {
    height: 160px;
  }
  
  /* 专家列表调整为1列 */
  .experts-list {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .experts-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .experts-section__more-link {
    margin-top: 10px;
  }
  
  .experts-section__title {
    font-size: 22px;
  }
  
  .experts-section__title::after {
    width: 40px;
    height: 2px;
    margin-top: 8px;
  }
  
  .expert-card__info {
    padding: 10px;
  }
  
  /* 亚专业网格调整为1列 */
  .specialties-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 15px;
  }
  
  .specialties-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .specialties-section__more-link {
    margin-top: 10px;
  }
  
  .specialties-section__title {
    font-size: 22px;
  }
  
  .specialties-section__title::after {
    width: 40px;
    height: 2px;
    margin-top: 8px;
  }
  
  .specialties-section__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .specialty-card {
    height: 170px;
  }
  
  .specialty-card__content {
    padding: 15px;
  }
  
  /* 医院文化区域 */
  .culture-section {
    height: 350px;
    margin: 30px 0;
  }
  
  .culture-section__content {
    padding: 20px;
  }
  
  .culture-section__title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .culture-motto__chinese {
    font-size: 32px;
    letter-spacing: 6px;
  }
  
  .culture-summary {
    font-size: 16px;
  }
}

/* 小手机（400px以下） */
@media (max-width: 400px) {
  .culture-section {
    height: 300px;
  }
  
  .culture-motto__chinese {
    font-size: 28px;
    letter-spacing: 4px;
  }
  
  .culture-summary {
    font-size: 15px;
  }
  
  .specialty-card {
    height: 150px;
  }
}

/* 响应式调整 - 侧边栏 */
@media (max-width: 1200px) {
  .right-sidebar {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 20px 0;
  }
  
  .qrcode-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .qrcode-popup::after {
    display: none;
  }
}

/* 医院简介响应式 */
@media (max-width: 992px) {
  .intro-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .intro-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .intro-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-stat__item {
    padding: 15px 10px;
  }
  
  .intro-stat__number {
    font-size: 28px;
  }
  
  .intro-stat__label {
    font-size: 14px;
  }
}