

/* CSS 变量 */
:root {
  --primary: #0186D5;
  --primary-dark: #0160A0;
  --primary-light: #39A8F0;
  --accent: #F0A030;
  --accent-light: #FFB84D;
  --bg-light: #F0F4F8;
  --bg-white: #F8FAFC;
  --text-primary: #1A2B3C;
  --text-secondary: #3A5068;
  --text-light: #6A8A9E;
  --border: #D0DCE6;
  --shadow: 0 2px 12px rgba(1, 134, 213, 0.08);
  --shadow-hover: 0 8px 30px rgba(1, 134, 213, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* ========================================
   顶部导航
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:#0186D5 url(../images/bg2.png) repeat-x ;
  border-bottom: 2px solid var(--accent);
  transition: var(--transition);
}

.header.scrolled {
    background:#0186D5 url(../images/bg2.png);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;bg.png
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background:#F5F0E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-dark);
  font-weight: bold;
}

.logo span {
  color: var(--accent);
}

/* 主导航 */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  font-size: 15px;
  border-radius: var(--radius);
  position: relative;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: #fff;
 background: rgba(34, 56, 95, 0.45);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-top: 22px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Hero Banner
   ======================================== */
.hero {
  margin-top: 72px;
  background: linear-gradient(rgba(1, 134, 213, 0.6), rgba(1, 96, 160, 0.7)), url('../images/banner_internal.jpg') center/cover no-repeat;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '仁心仁术 传承创新';
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  letter-spacing: 12px;
  writing-mode: vertical-rl;
}

.hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 16px;
  position: relative;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-search {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  border: 1px solid rgba(200, 164, 92, 0.3);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 24px;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-search button {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.hero-search button:hover {
  background: var(--accent-light);
}

/* ========================================
   通用容器
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section-header {
  background:url(../images/titlebg.png) no-repeat center ;
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 16px;
}

/* ========================================
   服务分类卡片（首页7大板块）
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 92, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.service-card h3 {
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.service-card.wide {
  grid-column: span 2;
}

/* ========================================
   名医专家
   ======================================== */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doctor-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.doctor-avatar {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #f6f7f8, #d9e5ed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.doctor-avatar .name-seal {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.doctor-info {
  padding: 20px;
}

.doctor-info h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.doctor-info .title {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}

.doctor-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   特色诊疗
   ======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid var(--accent);
 cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.feature-card h3 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card h3 .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.feature-card .tag {
  background: var(--bg-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ========================================
   科普 / 新闻列表
   ======================================== */
.news-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.news-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.news-item .thumb {
  width: 180px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 32px;
}

.news-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item .info h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item .info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item .info .meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

/* 侧边栏 */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-block {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.sidebar-block h3 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-block h3::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li:hover {
  color: var(--primary);
}

.sidebar-list li .date {
  font-size: 12px;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ========================================
   中药服务
   ======================================== */
.medicine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.medicine-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.medicine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.medicine-card .img-area {
  height: 160px;
  background: linear-gradient(135deg, #3D6B50, #5A8A6E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.medicine-card .img-area .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.medicine-card .body {
  padding: 16px;
}

.medicine-card .body h4 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.medicine-card .body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   面包屑
   ======================================== */
.breadcrumb {
  padding: 16px 0;
  margin-top: 72px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--primary);
}

/* ========================================
   列表页
   ======================================== */
.list-page {
  padding: 40px 0;
}

.list-layout {
  display: grid;
  grid-template-columns:300px 1fr;
  gap: 30px;
}

.list-main .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}

.list-header h2 {
  font-size: 20px;
  color: var(--primary-dark);
}

.list-header .total {
  font-size: 13px;
  color: var(--text-light);
}

.list-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  gap: 20px;
}

.list-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.list-card .thumb {
  width: 200px;
  height: 140px;
  background:linear-gradient(135deg, #f6f7f8, #d9e5ed)
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 36px;
}



.list-card .content h3 {
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.list-card .content h3:hover {
  color: var(--primary);
}

.list-card .content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-card .content .meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========================================
   详情页
   ======================================== */
.detail-page {
  padding: 40px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 30px;
}

.detail-main {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.detail-main h1 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.detail-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.detail-content {
  font-size: 16px;
  line-height: 2;
  color: var(--text-primary);
}

.detail-content p {
  margin-bottom: 16px;
  text-indent: 2em;
}

.detail-content h2 {
  font-size: 20px;
  color: var(--primary-dark);
  margin: 28px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.detail-content h3 {
  font-size: 17px;
  color: var(--primary-dark);
  margin: 20px 0 12px;
}

.detail-content ul {
  margin: 12px 0;
  padding-left: 2em;
}

.detail-content ul li {
  margin-bottom: 6px;
  list-style: disc;
}

.detail-content img {
  border-radius: var(--radius);
  margin: 16px auto;
  display:;
   max-width:700px;height: auto;
  
}

.detail-tags {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.detail-tags .tag {
  background: var(--bg-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ========================================
   单页
   ======================================== */
.single-page {
  padding: 40px 0;
}

.single-layout {
  display: grid;
  grid-template-columns:300px 1fr ;
  gap: 30px;
}

/* 左侧子导航 */
.side-nav {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  box-shadow: var(--shadow);
  align-self: start;
  position: sticky;
  top: 92px;
}

.side-nav h3 {
  font-size: 16px;
  color: var(--primary-dark);
  padding: 12px 20px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 8px;
}

.side-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.side-nav a:hover {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.04);
}

.side-nav a.active {
  color: var(--primary);
  background: rgba(200, 164, 92, 0.08);
  border-left-color: var(--accent);
  font-weight: 600;
}

.single-main {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.single-main h1 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}

/* ========================================
   页脚
   ======================================== */
.footer {
   background:#0186D5 url(../images/bg2.png);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about .logo-text {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-about .logo-text span {
  color: var(--accent);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200, 164, 92, 0.3);
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   就医服务快捷入口
   ======================================== */
.quick-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-item {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: #fff;
  transition: var(--transition);
  cursor: pointer;
}

.quick-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 134, 213, 0.3);
}

.quick-item .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.quick-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.quick-item p {
  font-size: 12px;
  opacity: 0.7;
}

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

  .service-card.wide {
    grid-column: span 1;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-section {
    grid-template-columns: 1fr;
  }

  .list-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .single-layout {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px;
  }

  .side-nav h3 {
    width: 100%;
  }

  .side-nav a {
    border-left: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--bg-light);
  }

  .side-nav a.active {
    background: var(--primary);
    color: #fff;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr; display:none
  }
  .mbnone{display:none}
  .doctor-grid,
  .feature-grid,
  .medicine-grid {
    grid-template-columns: 1fr;
  }

  .quick-service {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
  }

  .news-item .thumb {
    width: 100%;
    height: 160px;
  }

  .list-card {
    flex-direction: column;
  }

  .list-card .thumb {
    width: 100%;
    height: 160px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ========================================
   动画
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

