/**
 * 九江市第一人民医院 - 内页设计系统
 * 布局基准：container 1334px | 主栏 986px | 侧栏 280px | 间距 30px
 */
:root {
  --c-primary: #063f9a;
  --c-primary-light: #3293f5;
  --c-primary-pale: #1885ff;
  --c-accent: #4eace1;
  --c-bg-page: #eef3f9;
  --c-bg-card: #ffffff;
  --c-bg-soft: #f0f7ff;
  --c-border: #dce6f2;
  --c-border-light: #e8eef5;
  --c-text: #2c3e50;
  --c-text-secondary: #5a6b7d;
  --c-text-muted: #8a9aab;
  --c-gradient: linear-gradient(135deg, #063f9a 0%, #3293f5 55%, #1885ff 100%);
  --c-gradient-soft: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  --font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  --inner-main-width: 986px;
  --inner-side-width: 280px;
  --inner-gap: 30px;
  --radius: 6px;
  --shadow-card: 0 4px 20px rgba(6, 63, 154, 0.07);
  --shadow-hover: 0 12px 32px rgba(50, 147, 245, 0.16);
}

/* ========== 全局字体与基础 ========== */
.inner-page {
  font-family: var(--font-family);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  background: var(--c-bg-page);
}

.inner-page a {
  color: inherit;
  transition: color 0.2s ease;
}

.inner-page .header .header_content .nav li {
  width: auto;
  min-width: 0;
  padding: 0 4px;
}

.inner-page .header .header_content .nav li a {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.inner-page .footer .content div {
  color: var(--c-text-secondary);
  font-size: 15px;
}

.inner-page .footer .content ul li span {
  display: block;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ========== 页面容器 ========== */
.page-inner {
  background: var(--c-bg-page);
  min-height: 640px;
  padding-bottom: 60px;
}

.page-inner .container {
  width: 1334px;
  margin: 0 auto;
}

/* ========== 页头 Banner ========== */
.inner-hero {
  height: 220px;
  background: url(../images/rjxq_banner1.png) center top / cover no-repeat;
  position: relative;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gradient);
  opacity: 0.92;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.inner-hero h1 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.inner-hero .en {
  font-size: 13px;
  letter-spacing: 0.4em;
  opacity: 0.88;
  text-transform: uppercase;
  font-weight: 300;
}

/* ========== 面包屑 ========== */
.path-bar {
  background: var(--c-bg-card);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 0;
  font-size: 14px;
  color: var(--c-text-muted);
}

.path-bar a {
  color: var(--c-text-secondary);
}

.path-bar a:hover {
  color: var(--c-primary-light);
}

.path-bar span {
  margin: 0 10px;
  color: #c5d0dc;
}

/* ========== 双栏布局 ========== */
.inner-wrap {
  display: flex;
  gap: var(--inner-gap);
  padding-top: 32px;
  align-items: flex-start;
}

.inner-main {
  width: var(--inner-main-width);
  flex-shrink: 0;
}

.inner-side {
  width: var(--inner-side-width);
  flex-shrink: 0;
}

.inner-full {
  padding-top: 32px;
}

.inner-page .container.inner-full {
  padding-top: 32px;
}

/* ========== 内容卡片 ========== */
.box-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.box-card h3 {
  font-size: 22px;
  color: var(--c-primary);
  font-weight: 600;
  padding-left: 16px;
  border-left: 4px solid var(--c-primary-light);
  margin-bottom: 24px;
  line-height: 1.3;
}

.rich-text {
  font-size: 16px;
  line-height: 2;
  color: var(--c-text-secondary);
  text-align: justify;
}

.rich-text p {
  margin-bottom: 16px;
}

.rich-text strong {
  color: var(--c-primary);
  font-weight: 600;
}

.rich-text img {
  max-width: 100%;
  display: block;
  margin: 24px auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========== Tab 模块 ========== */
.tab-module {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  overflow: hidden;
}

.tab-nav {
  display: flex;
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
}

.tab-nav a {
  flex: 1;
  text-align: center;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text-secondary);
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.tab-nav a:hover,
.tab-nav a.active {
  color: var(--c-primary-light);
  border-bottom-color: var(--c-primary-light);
  background: var(--c-bg-card);
  font-weight: 600;
}

.tab-panel {
  display: none;
  padding: 0;
}

.tab-panel.active {
  display: block;
}

.tab-panel .box-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

/* ========== 侧边栏 ========== */
.side-box {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.side-box-title {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--c-gradient);
}

.side-box-list a {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  color: var(--c-text-secondary);
  border-bottom: 1px dashed var(--c-border-light);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.side-box-list a:last-child {
  border-bottom: none;
}

.side-box-list a:hover,
.side-box-list a.active {
  color: var(--c-primary-light);
  background: var(--c-bg-soft);
  padding-left: 26px;
}

.side-box-list a.active {
  font-weight: 600;
  border-left: 4px solid var(--c-primary-light);
  color: var(--c-primary);
}

.hot-list a {
  position: relative;
  padding-left: 48px !important;
  font-size: 14px;
}

.hot-list .num {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #9a9a9a;
  border-radius: 3px;
}

.hot-list a:nth-child(1) .num { background: #ea5501; }
.hot-list a:nth-child(2) .num { background: #179ed8; }
.hot-list a:nth-child(3) .num { background: #04ca97; }

/* ========== 医院概况 ========== */
.intro-block {
  display: flex;
  gap: 36px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.intro-block .intro-img {
  width: 400px;
  height: 268px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-border-light);
  box-shadow: 0 4px 16px rgba(6, 63, 154, 0.1);
}

.intro-block .intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-block .intro-text {
  flex: 1;
  min-width: 0;
}

.intro-block .intro-text h2 {
  font-size: 28px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.3;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--c-gradient-soft);
  border: 1px solid #d6e8fa;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.stat-item b {
  display: block;
  font-size: 34px;
  color: var(--c-primary-light);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: var(--c-text-muted);
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.honor-item {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  background: var(--c-bg-card);
}

.honor-item:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.honor-item .img {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: url(../images/mainIcon1.png) center / contain no-repeat;
}

.honor-item p {
  font-size: 15px;
  color: var(--c-text-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  background: var(--c-bg-card);
}

.leader-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-hover);
}

.leader-card .avatar {
  width: 120px;
  height: 160px;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, #e8eef5, #d6e8fa);
  border-radius: var(--radius);
  overflow: hidden;
}

.leader-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h4 {
  font-size: 18px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.leader-card .role {
  font-size: 13px;
  color: var(--c-primary-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.leader-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.75;
  text-align: left;
}

.btn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 0 32px;
  height: 40px;
  line-height: 40px;
  background: var(--c-gradient);
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(50, 147, 245, 0.35);
  transition: all 0.25s ease;
}

.btn-more:hover {
  opacity: 0.92;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(50, 147, 245, 0.45);
}

/* ========== 新闻列表 ========== */
.featured-news {
  display: block;
  height: 340px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: url(/pic/11.jpg) center / cover no-repeat;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.featured-news::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(6, 63, 154, 0.88));
}

.featured-news .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 32px 36px;
  color: #fff;
}

.featured-news h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.45;
}

.featured-news p {
  font-size: 14px;
  opacity: 0.9;
}

.news-list-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px dashed var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  align-items: flex-start;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:hover {
  background: var(--c-bg-soft);
  margin: 0 -12px;
  padding: 26px 12px;
  border-radius: var(--radius);
}

.news-list-item .thumb {
  width: 220px;
  height: 140px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-border-light);
}

.news-list-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-list-item:hover .thumb img {
  transform: scale(1.06);
}

.news-list-item .body {
  flex: 1;
  min-width: 0;
}

.news-list-item .body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 12px;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.news-list-item:hover .body h3 {
  color: var(--c-primary-light);
}

.news-list-item .summary {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-item .meta {
  font-size: 13px;
  color: #b0bcc8;
}

.news-list-item .meta span + span {
  margin-left: 18px;
}

.news-date-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--c-border);
  text-decoration: none;
  color: inherit;
}

.news-date-item:last-child {
  border-bottom: none;
}

.news-date-item:hover .news-text {
  color: var(--c-primary-light);
}

.date-box {
  width: 62px;
  text-align: center;
  flex-shrink: 0;
}

.date-box b {
  display: block;
  font-size: 30px;
  color: var(--c-primary-light);
  font-weight: 600;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-border);
}

.date-box span {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 6px;
}

.news-text {
  flex: 1;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.55;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 0 12px;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text-secondary);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a:hover,
.pagination span.current {
  background: var(--c-primary-light);
  border-color: var(--c-primary-light);
  color: #fff;
  font-weight: 600;
}

/* ========== 新闻详情 ========== */
.article-title {
  font-size: 30px;
  color: var(--c-text);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 8px 0 20px;
}

.article-meta {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}

.article-meta span {
  margin: 0 14px;
}

.article-share {
  text-align: right;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.article-share a {
  margin-left: 14px;
  color: var(--c-primary-light);
  font-weight: 500;
}

.article-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.article-nav a {
  display: block;
  font-size: 14px;
  color: var(--c-text-secondary);
  padding: 10px 0;
  text-decoration: none;
  line-height: 1.6;
}

.article-nav a:hover {
  color: var(--c-primary-light);
}

/* ========== 专家列表 / 详情 ========== */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
}

.tab-panel .expert-grid {
  padding: 28px 24px;
}

.tab-panel .expert-grid .expert-card {
  border: 1px solid var(--c-border-light);
}

.expert-card {
  display: block;
  text-align: center;
  padding: 28px 14px 24px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
}

.expert-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.expert-card .photo {
  width: 100px;
  height: 130px;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, #e8eef5, #d6e8fa);
  border-radius: var(--radius);
  overflow: hidden;
}

.expert-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card .name {
  font-size: 17px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.expert-card .tit {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.expert-card::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--c-primary-light);
  margin: 14px auto 0;
  border-radius: 2px;
}

.doctor-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.doctor-profile .photo {
  width: 180px;
  height: 240px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #e8eef5, #d6e8fa);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(6, 63, 154, 0.12);
}

.doctor-profile .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-profile h1 {
  font-size: 30px;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.doctor-profile .title-line {
  font-size: 16px;
  color: var(--c-primary-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.doctor-profile .dept-link {
  display: inline-block;
  padding: 6px 16px;
  background: var(--c-bg-soft);
  color: var(--c-primary-light);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 16px;
  text-decoration: none;
  border: 1px solid #d6e8fa;
}

.doctor-profile .dept-link:hover {
  background: var(--c-primary-light);
  color: #fff;
  border-color: var(--c-primary-light);
}

.doctor-profile .intro {
  font-size: 15px;
  color: var(--c-text-secondary);
  line-height: 1.9;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.info-table th,
.info-table td {
  border: 1px solid var(--c-border);
  padding: 12px 16px;
  font-size: 15px;
  text-align: center;
}

.info-table tr:first-child th,
.info-table tr:first-child td {
  background: var(--c-bg-soft);
  color: var(--c-text-muted);
  font-weight: 600;
}

.info-table td:not(:first-child) {
  color: var(--c-primary);
  font-weight: 500;
}

/* ========== 科室导航 ========== */
.dept-wrap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.dept-cat-nav {
  display: flex;
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
}

.dept-cat-nav a {
  flex: 1;
  text-align: center;
  height: 58px;
  line-height: 58px;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-text-secondary);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dept-cat-nav a:hover,
.dept-cat-nav a.active {
  color: var(--c-primary-light);
  border-bottom-color: var(--c-primary-light);
  background: var(--c-bg-card);
  font-weight: 600;
}

.dept-panel {
  padding: 32px 28px;
}

.dept-panel.dept-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dept-links a {
  display: block;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--c-border);
  font-size: 15px;
  color: var(--c-text-secondary);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 10px;
  text-decoration: none;
  background: var(--c-bg-card);
}

.dept-links a:hover {
  color: #fff;
  background: var(--c-gradient);
  border-color: var(--c-primary-light);
  box-shadow: 0 6px 18px rgba(50, 147, 245, 0.3);
  transform: translateY(-1px);
}

.dept-header {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.dept-header .dept-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: url(../images/departmentIcon8.png) center / contain no-repeat;
}

.dept-header h2 {
  font-size: 30px;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.dept-header .sub {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.dept-tags span {
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-primary-light);
  background: var(--c-bg-soft);
  border: 1px solid #d6e8fa;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 12px;
}

.dept-tags span.key {
  color: #fff;
  background: var(--c-gradient);
  border: none;
}

.dept-experts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dept-expert-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.dept-expert-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-card);
}

.dept-expert-card .photo {
  width: 68px;
  height: 88px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #e8eef5, #d6e8fa);
  border-radius: 4px;
  overflow: hidden;
}

.dept-expert-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-expert-card h4 {
  font-size: 16px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.dept-expert-card .title {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}

.dept-expert-card .link {
  font-size: 13px;
  color: var(--c-primary-light);
  font-weight: 500;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.treatment-card {
  padding: 22px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  background: var(--c-bg-card);
}

.treatment-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-card);
}

.treatment-card h4 {
  font-size: 16px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.treatment-card .label {
  font-size: 12px;
  color: var(--c-primary-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.treatment-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ========== 重点专科 ========== */
.specialty-hero-wrap {
  width: 100%;
  overflow: hidden;
}

.specialty-banner {
  height: 300px;
  background: url(/pic/22.jpg) center / cover no-repeat;
  position: relative;
}

.specialty-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gradient);
  opacity: 0.9;
}

.specialty-banner .container {
  position: relative;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
}

.specialty-banner .info {
  color: #fff;
  max-width: 800px;
}

.specialty-banner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.specialty-banner p {
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.75;
}

.specialty-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.specialty-stats .item {
  text-align: center;
  padding: 28px 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}

.specialty-stats .item:hover {
  transform: translateY(-2px);
}

.specialty-stats b {
  display: block;
  font-size: 32px;
  color: var(--c-primary-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.specialty-stats span {
  font-size: 14px;
  color: var(--c-text-muted);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-item {
  padding: 28px 22px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  background: var(--c-bg-card);
}

.tech-item:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.tech-item .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: url(../images/mainIcon2.png) center / contain no-repeat;
}

.tech-item h4 {
  font-size: 16px;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.tech-item p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
  text-align: left;
}

.timeline {
  padding-left: 24px;
  border-left: 3px solid #d6e8fa;
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--c-primary-light);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--c-primary-light);
}

.timeline-item .year {
  font-size: 20px;
  color: var(--c-primary-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

.specialty-actions {
  text-align: center;
  padding: 36px 0 16px;
}

.specialty-actions a {
  display: inline-block;
  padding: 0 40px;
  height: 46px;
  line-height: 46px;
  margin: 0 10px;
  border-radius: 23px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.specialty-actions .btn-primary {
  background: var(--c-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(50, 147, 245, 0.35);
}

.specialty-actions .btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.specialty-actions .btn-outline {
  border: 2px solid var(--c-primary-light);
  color: var(--c-primary-light);
  background: transparent;
}

.specialty-actions .btn-outline:hover {
  background: var(--c-bg-soft);
}

.related-experts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-expert {
  display: block;
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
}

.related-expert:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-card);
}

.related-expert .photo {
  width: 68px;
  height: 88px;
  margin: 0 auto 12px;
  background: linear-gradient(180deg, #e8eef5, #d6e8fa);
  border-radius: 4px;
}

.related-expert .name {
  font-size: 15px;
  color: var(--c-primary);
  font-weight: 600;
}

.related-expert .tit {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 6px;
}
