/* ai-new.css
   璇存槑锛氱敤浜庢壙鎺ラ椤垫ā鍧楅噸鏋勫悗鐨勬柊鏍峰紡
   褰撳墠鐢?James 鍒涘缓锛屽彲缁х画鎸夋ā鍧楄拷鍔犵淮鎶ゃ€?*/

/* ==============================`r`n   涓婚鍙橀噺
   ============================== */
/* === AI 主题色（自动从 logo 提取）=== */
/* 主色：青绿 teal（logo 圆形图标渐变主色）  辅色：深海蓝（logo 品牌文字） */
:root {
  --color-primary:        #00bfa5;
  --color-primary-dark:   #009e87;
  --color-primary-light:  #e0f7f4;
  --color-primary-accent: #b2ede7;

  --color-accent:         #1a3060;
  --color-secondary:      #f0faf9;
  --color-secondary-dark: #c8ebe6;

  --color-primary-rgb:        0, 191, 165;
  --color-primary-dark-rgb:   0, 158, 135;
  --color-primary-accent-rgb: 178, 237, 231;
  --color-primary-light-rgb:  224, 247, 244;

  --color-bg:       #f5fdf9;
  --color-bg-white: #ffffff;
  --color-bg-light: #ecf8f5;

  --color-text-dark:    #1a3060;
  --color-text-normal:  #2e5a50;
  --color-text-light:   #4a7a70;
  --color-text-lighter: #8abcb4;
  --color-text-white:   #f0fdf9;

  --color-border:       rgba(0, 191, 165, 0.24);
  --color-border-light: rgba(0, 191, 165, 0.18);
}

.news-mode {
  display: none !important;
}
.filter_img{
  filter: blur(15px) !important;
}

/* ==============================
   椤堕儴澶撮儴 header
   ============================== */
/* ==============================
   Header — 主色横幅型
   品牌 teal 渐变背景 / Logo 浮白卡 / 半透明搜索 / 白字电话
   ============================== */

/* 底部白色装饰分割线 */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: relative;
  z-index: 120;
  background: linear-gradient(135deg, #00c4a7 0%, #00bfa5 45%, #00a896 100%);
  box-shadow: 0 4px 20px rgba(0, 191, 165, 0.35);
}

/* 单行横排：Logo | 搜索 | 电话+QR */
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  box-sizing: border-box;
}

/* Logo — 浮于白色小卡片，保持原色 */
.site-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 8px 18px 8px 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.22s, transform 0.22s;
}

.site-header__brand:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.site-header__logo {
  display: block;
  max-height: 44px;
  width: auto;
}

/* 搜索框 — 白色半透明 */
.site-header__search {
  flex: 1;
  min-width: 0;
  max-width: 500px;
}

.site-header__search-box {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 46px;
  padding: 4px 4px 4px 6px;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.site-header__search-box:focus-within {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.site-header__input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 14px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #fff;
  font-size: 14px;
}

.site-header__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* 搜索按钮 — 白色底+主色深字，反差感 */
.site-header__btn {
  flex: 0 0 auto;
  min-width: 76px;
  height: 38px;
  padding: 0 18px;
  border: none !important;
  border-radius: 8px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.site-header__btn:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

/* 右侧电话+QR，左侧白色细线分割 */
.site-header__extra {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-header__phone:hover {
  opacity: 0.82;
  box-shadow: none;
}

.site-header__phone-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

.site-header__phone-num {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

/* 二维码 — 白色边框圆角，hover 放大 */
.site-header__qr {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.22s, transform 0.22s, background 0.22s;
}

.site-header__qr:hover {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.site-header__qr-img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

/* ==============================
   涓诲鑸?nav
   ============================== */
/* Nav — 白底 + teal 底线激活，与 Header 形成明暗层次 */
.site-nav {
  position: relative;
  z-index: 110;
  background: #fff;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.1);
  box-shadow: 0 2px 10px rgba(var(--color-primary-rgb), 0.08);
}

.site-nav.scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 4px 18px rgba(var(--color-primary-rgb), 0.16);
}

.site-nav__shell {
  width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 48px;
}

.site-nav__item {
  position: relative;
  flex: 0 0 auto;
}

.site-nav__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 48px;
  padding: 0 22px;
  border-radius: 0;
  color: var(--color-text-normal);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.5px;
  transition: color 0.22s ease, background 0.22s ease;
}

/* 底部 teal 下划线（弹簧弹出） */
.site-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.site-nav__item:hover a {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.04);
}

.site-nav__item:hover a::after {
  transform: translateX(-50%) scaleX(0.6);
}

.site-nav__item.active a {
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(var(--color-primary-rgb), 0.05);
}

.site-nav__item.active a::after {
  transform: translateX(-50%) scaleX(1);
}

/* 电话区块 */
.site-nav__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav__phone-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1;
}

.site-nav__phone-num {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

/* ==============================
   椤甸潰瀹藉害缁熶竴
   ============================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 26px 24px 42px;
  box-sizing: border-box;
}

.container > .index-hos-con {
  margin-top: 0;
  margin-bottom: 0;
  padding: 32px 0;
}

.container > .index-hos-con:last-child {
  padding-bottom: 0;
}

/* 偶数区块用极浅暖灰分隔，不再用 teal 避免绿色过多 */
.container > .index-hos-con:nth-child(even) {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 32px 20px;
  margin: 0 -20px;
}

/* ==============================
   鍖哄煙鏍囬缁熶竴鏍峰紡
   ============================== */
/* 区块标题 — 白底 + 左侧 teal 竖线，teal 仅作点缀 */
.sec-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 18px 24px 16px 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 5px solid var(--color-primary);
  transition: box-shadow 0.22s;
}

.sec-head::before {
  display: none;
}

.sec-head::after {
  display: none;
}

.sec-head:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sec-head__main {
  min-width: 0;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.sec-head__title {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: none;
  transition: color 0.2s;
}

.sec-head:hover .sec-head__title {
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
}

.sec-head__en {
  display: inline-block;
  margin-left: 10px;
  color: var(--color-text-lighter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  vertical-align: middle;
}

.sec-head:hover .sec-head__en {
  color: var(--color-primary);
  opacity: 1;
  transform: none;
}

.sec-head__desc {
  max-width: 600px;
  margin: 6px 0 0;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.8;
  transition: none;
}

.sec-head:hover .sec-head__desc {
  color: var(--color-text-normal);
}

.sec-head__tabs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* Tab 按钮：白底描边胶囊 */
.sec-head__tabs .title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sec-head__tabs .title:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.04);
  transform: none;
  box-shadow: none;
}

/* 激活 Tab：teal 实底白字 */
.sec-head__tabs .title.current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.28);
}

.sec-head__side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* 更多按钮：简洁白底 + teal 文字 */
.sec-head__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 36px;
  padding: 0 16px;
  border: 1.5px solid rgba(var(--color-primary-rgb), 0.3);
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sec-head__more a:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  transform: none;
  box-shadow: none;
}

/* ==============================
   鍖婚櫌妯″潡妯℃澘鏍峰紡
   ============================== */
/* H3：大图叠层卡片 — 图片铺满，文字渐变遮罩浮在底部 */
.hos-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hos-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 3 / 4;
  background: #0a1f1a;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 图片作为背景铺满 */
.hos-card__media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-primary-light);
  aspect-ratio: auto;
}

.hos-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hos-card:hover .hos-card__img {
  transform: scale(1.07);
}

/* 底部渐变遮罩+文字 */
.hos-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(5,20,15,0.88) 0%, rgba(5,20,15,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  transition: padding-bottom 0.3s ease;
}

.hos-card:hover .hos-card__body {
  padding-bottom: 24px;
}

/* "查看详情" hover 显示按钮 */
.hos-card__view {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--color-text-dark);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hos-card:hover .hos-card__view {
  opacity: 1;
  transform: translateY(0);
}

.hos-card__title-link {
  display: block;
  text-decoration: none;
}

.hos-card__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.hos-card__info {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.hos-card__label {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.8;
}

.hos-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  line-height: 1.8;
}

.hos-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.hos-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hos-card__tag:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

.hos-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.hos-card__time {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1;
}

/* ==============================
   鍖荤敓妯″潡妯℃澘鏍峰紡
   ============================== */
/* D4：杂志错位排版 — 奇数行左图右文，偶数行右图左文 */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 20px;
  /* 中性底部投影 */
  box-shadow: 0 3px 0 0 #c8d0d8, 0 6px 24px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.26s ease, transform 0.26s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 0 0 #b0bac4, 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* 偶数行：右图左文 */
.doc-card:nth-child(even) {
  flex-direction: row-reverse;
}

.doc-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.doc-card__avatar {
  flex: 0 0 38%;
  width: 38%;
  min-width: 38%;
  min-height: 240px;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-primary-light);
  border: none;
  transition: none;
}

.doc-card:hover .doc-card__avatar {
  border-color: transparent;
  transform: none;
}

.doc-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.doc-card:hover .doc-card__img {
  transform: scale(1.05);
}

.doc-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
}

.doc-card__head {
  min-width: 0;
}

.doc-card__name {
  margin: 0 0 8px;
  color: var(--color-text-dark);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.doc-card:hover .doc-card__name {
  color: var(--color-primary-dark);
}

.doc-card__title {
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.doc-card__hospital {
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.6;
}

.doc-card__intro {
  margin: 14px 0 0;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.doc-card__meta {
  margin-top: 12px;
  color: var(--color-text-lighter);
  font-size: 12px;
  line-height: 1.6;
}

.doc-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 100px;
  height: 36px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.doc-card:hover .doc-card__btn {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.doc-side {
  min-width: 0;
}

.doc-side {
  min-width: 0;
}

.doc-side__panel {
  position: sticky;
  top: 120px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.06);
}

.doc-side__title {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.doc-side__links {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.doc-side__links::before,
.doc-side__links::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 1;
  pointer-events: none;
}

.doc-side__links::before {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}

.doc-side__links::after {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.doc-side__scroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: docSideScroll 12s linear infinite;
}

.doc-side__scroll:hover {
  animation-play-state: paused;
}

@keyframes docSideScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.doc-side__link {
  display: block;
  color: var(--color-text-normal);
  font-size: 13px;
  line-height: 1;
  padding: 7px 4px;
  text-decoration: none;
  border-bottom: 1px dashed var(--color-border-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s, padding-left 0.2s;
}

.doc-side__link:last-child {
  border-bottom: none;
}

.doc-side__link:hover {
  color: var(--color-primary-dark);
  padding-left: 8px;
}

/* D4：医生板块铺满布局（单列交替） */
.ind-doc-list .doc-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.ind-doc-list .doc-card__meta {
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* ==============================
   璧勮妯″潡妯℃澘鏍峰紡
   ============================== */
/* 资讯：首条英雄横版 + 下方3列白底竖卡 + 底部速览条 */
.news-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow-x: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
  scrollbar-width: auto;
}

.news-grid::-webkit-scrollbar {
  height: auto;
}
.news-grid::-webkit-scrollbar-track {
  background: none;
}
.news-grid::-webkit-scrollbar-thumb {
  background: none;
}

/* ---- 首条英雄卡 ---- */
.news-card:first-child {
  grid-column: 1 / -1;
  flex: none;
  height: 280px;
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  overflow: hidden;
  background: #1e2d3d;
  scroll-snap-align: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  min-width: 0;
  margin-bottom: 0;
  position: relative;
}

.news-card:first-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

/* 英雄卡：图片左半 */
.news-card:first-child .news-card__media {
  position: relative;
  inset: auto;
  width: 52%;
  min-width: 52%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-primary-light);
  aspect-ratio: auto;
}

.news-card:first-child .news-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:first-child:hover .news-card__img {
  transform: scale(1.06);
}

.news-card:first-child .news-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--color-primary);
}

/* 英雄卡：内容右半（深绿色背景） */
.news-card:first-child .news-card__content {
  position: relative;
  bottom: auto;
  flex: 1;
  min-width: 0;
  padding: 32px 36px;
  background: linear-gradient(140deg, #1e2d3d 0%, #2a4060 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: auto;
  transition: none;
}

.news-card:first-child:hover .news-card__content {
  padding-bottom: 32px;
}

.news-card:first-child .news-card__title {
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 800;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:first-child .news-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 10px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:first-child .news-card__bottom {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-card:first-child .news-card__date {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.news-card:first-child .news-card__action {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  height: 30px;
  min-width: 80px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 700;
}

/* ---- 其余3张：白底竖版卡 ---- */
.news-card:not(:first-child) {
  flex: none;
  height: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 3px 0 0 #c8d0d8, 0 4px 16px rgba(0,0,0,0.06);
  scroll-snap-align: none;
  position: relative;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 0;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.news-card:not(:first-child):hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 0 0 #b0bac4, 0 14px 28px rgba(0,0,0,0.1);
}

/* 图片区：顶部固定高度 */
.news-card:not(:first-child) .news-card__media {
  position: relative;
  inset: auto;
  aspect-ratio: 16 / 9;
  height: 160px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--color-primary-light);
}

.news-card:not(:first-child) .news-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:not(:first-child):hover .news-card__img {
  transform: scale(1.06);
}

.news-card:not(:first-child) .news-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary-dark);
  border: 1px solid rgba(var(--color-primary-rgb),0.2);
  height: 22px;
  min-width: 40px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 内容区：正常流布局 */
.news-card:not(:first-child) .news-card__content {
  position: relative;
  bottom: auto;
  background: none;
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: none;
}

.news-card:not(:first-child):hover .news-card__content {
  padding-bottom: 16px;
}

.news-card:not(:first-child) .news-card__title {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card:not(:first-child) .news-card__desc {
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card:not(:first-child) .news-card__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.news-card:not(:first-child) .news-card__time-row,
.news-card:not(:first-child) .news-card__action-row {
  width: auto;
}

.news-card:not(:first-child) .news-card__action-row {
  display: flex;
  justify-content: flex-end;
}

.news-card:not(:first-child) .news-card__date {
  color: var(--color-text-lighter);
  font-size: 12px;
  white-space: nowrap;
  display: inline-block;
}

.news-card:not(:first-child) .news-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  border: none;
}

/* ---- 侧栏：改为底部横向速览条 ---- */
.news-side {
  min-width: 0;
}

.news-side__panel {
  position: static;
  height: auto;
  min-height: unset;
  padding: 12px 18px;
  background: var(--color-primary-light);
  border: none;
  border-radius: 12px;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}

.news-side__title {
  flex-shrink: 0;
  display: block;
  margin-bottom: 0;
  color: var(--color-primary-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
}

.news-side__links {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-top: none;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.news-side__links::-webkit-scrollbar {
  display: none;
}

.news-side__link {
  position: relative;
  display: inline-block;
  padding: 4px 14px;
  color: var(--color-text-normal);
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: none;
  border-right: 1px solid rgba(var(--color-primary-rgb), 0.18);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.news-side__link::before {
  display: none;
}

.news-side__link:last-child {
  border-bottom: none;
  border-right: none;
}

.news-side__link:hover {
  color: var(--color-primary-dark);
  background: rgba(var(--color-primary-rgb), 0.08);
  padding-left: 14px;
  border-radius: 6px;
}

.news-side__link:hover::before {
  background: none;
}

/* ==============================
   鍒嗕韩 / 椤圭洰 / 闂瓟 / 鐑瘝妯″潡
   ============================== */
/* 分享：4列竖版画廊 — 图片铺满，hover文字从底部上滑 */
.share-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: start;
}

.share-side {
  min-width: 0;
}

.share-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

/* 分享卡：竖版3:4肖像比，图片铺满 */
.share-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  background: var(--color-primary-light);
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.share-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.project-card:hover,
.qa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 0 0 #b0bac4, 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* 图片：绝对定位铺满卡片 */
.share-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex: none;
  min-width: unset;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-primary-light);
  aspect-ratio: auto;
}

.share-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.share-card:hover .share-card__img {
  transform: scale(1.08);
}

/* 内容区：默认隐藏在底部，hover上滑显现 */
.share-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 20, 15, 0.92) 0%, rgba(5, 20, 15, 0.35) 65%, transparent 100%);
  padding: 52px 14px 14px;
  flex: none;
  min-width: 0;
  transform: translateY(68%);
  transition: transform 0.34s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.share-card:hover .share-card__content {
  transform: translateY(0);
}

/* 分享卡：白色文字（叠层卡特有） */
.share-card__title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.share-card__desc {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.share-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
}

/* 项目/问答：深色文字（白底卡） */
.project-card__title,
.qa-card__question {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.project-card__desc,
.qa-card__answer {
  margin-top: 10px;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.project-card__footer,
.qa-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

/* Q3：问题标题 — 普通左对齐文字 */
.qa-card__question {
  display: block;
  align-self: auto;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* Q3：答案摘要 */
.qa-card__answer {
  align-self: auto;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 6px;
}

.share-card__time-row,
.share-card__action-row {
  width: auto;
}

.share-card__action-row {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.share-card__time {
  display: inline-block;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.project-card__meta,
.qa-card__time,
.hot-chip__time {
  color: var(--color-text-lighter);
  font-size: 13px;
}

/* 分享卡"更多"：白色ghost按钮 */
.share-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
}

/* 项目/问答"更多" */
.project-card__more,
.qa-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.share-side__panel {
  position: sticky;
  top: 80px;
  padding: 14px 12px;
  background: var(--color-primary-light);
  border: none;
  border-radius: 12px;
  box-shadow: none;
}

.share-side__title {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.share-side__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.share-side__link {
  position: relative;
  display: block;
  padding: 8px 6px 8px 18px;
  color: var(--color-text-normal);
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.12);
  transition: color 0.2s ease, background 0.2s ease;
}

.share-side__link::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.4);
}

.share-side__link:last-child {
  border-bottom: none;
}

.share-side__link:hover {
  color: var(--color-primary-dark);
  background: rgba(var(--color-primary-rgb), 0.06);
  padding-left: 18px;
}

.share-side__link:hover::before {
  background: var(--color-primary-dark);
}

/* P2：3列竖版卡片 — 图片在上，标题价格标签在下 */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 3px 0 0 #c8d0d8, 0 4px 20px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.26s ease, transform 0.26s ease;
}

/* P2 无需奇偶交替 */
.project-card:nth-child(even) {
  flex-direction: column;
}

.project-card__media {
  width: 100%;
  min-width: unset;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-primary-light);
  aspect-ratio: 4 / 3;
  position: relative;
}

.project-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-card__img {
  transform: scale(1.06);
}

.project-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}

.project-card__price {
  margin-top: 14px;
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.project-card__price-num {
  font-size: 22px;
  color: #d93a2f;
}



.project-card__price-origin {
  margin-left: 10px;
  color: var(--color-text-lighter);
  font-size: 13px;
  font-weight: 500;
  text-decoration: line-through;
}

/* Q3：左色块右文 — 左侧主题色宽色块含Q字，右侧内容 */
.qa-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.qa-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 3px 0 0 var(--color-primary-dark), 0 4px 18px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.26s ease, transform 0.26s ease;
}

/* 左侧主色宽色块 */
.qa-card__icon {
  flex: 0 0 52px;
  width: 52px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0;
  height: auto;
  min-height: 100%;
}

.qa-card__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 18px;
}

.qa-card__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.qa-card__status {
  order: 0;
  align-self: flex-start;
  flex-shrink: 0;
  min-width: 52px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* T4：字体大小渐变 — 第1位字号最大，逐渐缩小，权重感强 */
.hot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.hot-chip {
  display: inline-flex;
  min-width: 0;
  text-decoration: none;
  transition: transform 0.22s ease;
}

.hot-chip:hover {
  transform: translateY(-2px);
}

.hot-chip__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  min-width: 0;
  width: auto;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid rgba(var(--color-primary-rgb), 0.16);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.06);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hot-chip:hover .hot-chip__body {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.14);
}

.hot-chip__label {
  margin: 0;
  color: var(--color-text-dark);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.3;
  transition: color 0.22s ease;
}

.hot-chip:hover .hot-chip__label {
  color: var(--color-primary-dark);
}

/* 字号渐变：前8条从大到小，其余统一 */
.hot-grid .hot-chip:nth-child(1) .hot-chip__label { font-size: 22px; }
.hot-grid .hot-chip:nth-child(2) .hot-chip__label { font-size: 20px; }
.hot-grid .hot-chip:nth-child(3) .hot-chip__label { font-size: 19px; }
.hot-grid .hot-chip:nth-child(4) .hot-chip__label { font-size: 18px; }
.hot-grid .hot-chip:nth-child(5) .hot-chip__label { font-size: 17px; }
.hot-grid .hot-chip:nth-child(6) .hot-chip__label { font-size: 16px; }
.hot-grid .hot-chip:nth-child(7) .hot-chip__label { font-size: 15px; }
.hot-grid .hot-chip:nth-child(n+8) .hot-chip__label { font-size: 14px; }

/* ==============================
   鍏煎鏃ч椤垫ā鍧楁爣棰樺懡鍚?   ============================== */
.yrxiu-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px 0 0;
}

.yrxiu-section-head__main,
.yrxiu-section-head__aside {
  min-width: 0;
}

.yrxiu-section-head__title {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.yrxiu-section-head__title-en {
  color: var(--color-text-lighter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.yrxiu-section-head__lead {
  margin: 10px 0 0;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.yrxiu-section-head__tabs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.yrxiu-section-head__tabs .title,
.sec-head__tabs--qa .title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.yrxiu-section-head__tabs .title:hover,
.sec-head__tabs--qa .title:hover {
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.28);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.08);
}

.yrxiu-section-head__tabs .title.current,
.sec-head__tabs--qa .title.current {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
  box-shadow: 0 10px 18px rgba(var(--color-primary-rgb), 0.14);
}

.yrxiu-section-head__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* ==============================
   鍝嶅簲寮忛€傞厤
   ============================== */
@media (max-width: 1200px) {
  .site-header__inner {
    max-width: 1240px;
    grid-template-columns: 180px minmax(0, 1fr) 232px;
    gap: 16px;
  }

  .site-header__phone-num {
    font-size: 16px;
  }

  .sec-head__title {
    font-size: 24px;
  }

  /* H5：首条媒体宽度收窄 */
  .hos-list .hos-card:first-child .hos-card__media {
    width: 340px;
    min-width: 340px;
  }

  .hos-card__title {
    font-size: 20px;
  }

  .news-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .news-card__title {
    font-size: 18px;
  }

  .share-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  /* P4：在1200px以下改回3列grid太宽，保持flex column即可 */
}

@media (max-width: 991px) {
  .site-header__inner {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .container {
    padding: 22px 16px 34px;
  }

  .container > .index-hos-con {
    margin-bottom: 22px;
  }

  /* HE3 991px：搜索框全宽，QR隐藏 */
  .site-header__inner {
    padding: 16px 16px 12px;
    gap: 10px;
  }

  .site-header__brand-row .site-header__qr {
    display: none;
  }

  /* NA4 991px：电话隐藏，导航可横滑 */
  .site-nav__phone {
    display: none;
  }

  .site-nav__shell {
    padding: 0 16px;
  }

  .site-nav__list {
    gap: 4px;
    min-height: 48px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav__list::-webkit-scrollbar {
    display: none;
  }

  /* T-C：991px下标题略小，改单列 */
  .sec-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 16px 0;
  }

  .sec-head__title {
    font-size: 28px;
  }

  .sec-head__side {
    justify-content: flex-start;
  }

  .sec-head__more a {
    min-width: 124px;
    height: 42px;
  }

  /* H3：991px下3列改2列 */
  .hos-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* D4：991px下头像宽度收窄 */
  .doc-card__avatar {
    flex: 0 0 32%;
    width: 32%;
    min-width: 32%;
    min-height: 200px;
  }

  .doc-card__body {
    padding: 20px 22px;
  }


  .doc-side__panel {
    position: static;
  }

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

  .news-side__panel {
    position: static;
  }

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

  .share-side__panel {
    position: static;
  }

  /* P2：991px下项目3列改2列 */
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Q3：991px下问答改单列 */
  .qa-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  /* H3：767px下2列改单列 */
  .hos-list {
    grid-template-columns: 1fr;
  }

  /* D4：767px下交替卡片改为竖版 */
  .doc-card,
  .doc-card:nth-child(even) {
    flex-direction: column;
  }

  .doc-card__avatar {
    flex: 0 0 auto;
    width: 100%;
    min-width: unset;
    min-height: 220px;
  }

  .doc-card__body {
    padding: 18px;
  }

  /* N5：767px下资讯区改单列布局 */
  .news-layout {
    grid-template-columns: 1fr;
  }

  /* S4：767px下分享改单列，卡片改竖版 */
  .share-list {
    grid-template-columns: 1fr;
  }

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

  .share-card__media {
    flex: 0 0 auto;
    width: 100%;
    min-width: unset;
    position: relative;
    aspect-ratio: 16 / 9;
  }

  /* P2：767px下2列改单列 */
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card__body {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 18px 12px 28px;
  }

  .container > .index-hos-con {
    margin-bottom: 18px;
  }

  .sec-head {
    padding: 0 0 14px 0;
  }

  .sec-head__title {
    font-size: 24px;
  }

  .sec-head__en {
    margin-left: 6px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .sec-head__tabs {
    gap: 10px;
  }

  .sec-head__tabs .title {
    min-width: 96px;
    height: 38px;
    padding: 0 16px;
  }

  .sec-head__more a {
    min-width: 116px;
    height: 40px;
    border-radius: 12px;
  }

  .hos-card {
    padding: 14px;
    border-radius: 14px;
  }

  .hos-card__img {
    min-height: 180px;
  }

  .hos-card__title {
    font-size: 17px;
  }

  .hos-card__tags {
    gap: 8px;
  }

  .hos-card__tag {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 30px;
  }

  .doc-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .doc-card__avatar img {
    height: 180px;
  }

  .doc-card__name {
    font-size: 18px;
  }

  .news-card {
    padding: 14px;
    border-radius: 14px;
  }

  .news-card__img {
    min-height: 180px;
  }

  .news-card__title {
    font-size: 17px;
  }

  .news-card__bottom {
    flex-wrap: wrap;
  }

  .share-card,
  .project-card {
    border-radius: 12px;
  }

  /* Q3 不加 padding，由内部 .qa-card__main 控制 */
  .qa-card {
    padding: 0;
    border-radius: 12px;
  }
  .qa-card__main {
    padding: 12px 14px;
  }

  .share-card__title,
  .project-card__title,
  .qa-card__question {
    font-size: 17px;
  }

  .project-card__img {
    height: 180px;
  }

  .share-card__footer,
  .project-card__footer,
  .qa-card__footer {
    flex-wrap: wrap;
  }

  .hot-chip__body {
    min-width: 140px;
    padding: 14px;
  }
}

/* ==============================
   页脚 footer
   ============================== */
/* F5：图片背景虚化 — logo背景毛玻璃，深色文字 */
#footer {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3830 0%, #145248 50%, #0e3e32 100%);
  border-top: 3px solid var(--color-primary);
  color: rgba(255,255,255,0.85);
}

#footer::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: url('/statics/hhp/image/logo111.png') center/60% no-repeat;
  opacity: 0.05;
  filter: blur(24px);
  transform: scale(1.15);
  z-index: 0;
}

#footer > .containers,
#footer > .footer-bottom {
  position: relative;
  z-index: 1;
}

#footer > .containers {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 36px;
  display: flex;
  align-items: center;
  gap: 40px;
}

#footer .logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

#footer .footer-copyright-con {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-copyright-con p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

#footer .footer-copyright-con a {
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  text-decoration: none;
}

#footer .footer-copyright-con a:hover {
  color: var(--color-primary);
}

#footer .footer-copyright-con .beizhu {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
}

#footer .code {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  object-fit: cover;
}

#footer .footer-bottom {
  background: rgba(0,0,0,0.28);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 12px 0;
  letter-spacing: 0.5px;
}


/* 热词 T4 — 排名前3彩色背景强化 */
.hot-grid .hot-chip:nth-child(1) .hot-chip__body {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.32);
}
.hot-grid .hot-chip:nth-child(1) .hot-chip__label,
.hot-grid .hot-chip:nth-child(1) .hot-chip__time {
  color: #fff;
}

.hot-grid .hot-chip:nth-child(2) .hot-chip__body {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
}
.hot-grid .hot-chip:nth-child(2) .hot-chip__label {
  color: var(--color-primary-dark);
}

.hot-grid .hot-chip:nth-child(3) .hot-chip__body {
  background: rgba(var(--color-primary-rgb), 0.08);
  border-color: rgba(var(--color-primary-rgb), 0.3);
}
.hot-grid .hot-chip:nth-child(3) .hot-chip__label {
  color: var(--color-primary-dark);
}

/* 项目价格标签强化 */
.project-card__price-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.project-card__price-num {
  font-size: 24px;
  font-weight: 900;
  color: #e03a3a;
}
.project-card__price-origin {
  margin-left: 8px;
  color: #bbb;
  font-size: 12px;
  text-decoration: line-through;
}

/* 医院卡片圆角调整 */
.hos-card {
  border-radius: 20px;
}

/* ==============================
   面包屑导航覆盖样式
   ============================== */
.list_top .position_con {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  margin-bottom: 0;
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(var(--color-primary-light-rgb),0.85) 100%);
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.05);
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.8;
  box-sizing: border-box;
}

.list_top .position_con a {
  color: var(--color-text-normal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.list_top .position_con a:hover {
  color: var(--color-primary-dark);
}

.list_top .position_con .gary_color {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.list_top .position_con i {
  margin: 0 2px;
  color: var(--color-text-lighter);
  font-style: normal;
}

@media (max-width: 767px) {
  .list_top .position_con {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
  }
}

/* ==============================
   医生列表地区筛选覆盖样式
   ============================== */
.yyys_topcon {
  margin-bottom: 22px;
}

.yyys_topcon .regionalFiltering {
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: 18px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(var(--color-primary-light-rgb), 0.82) 100%);
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.05);
}

.yyys_topcon .regionalFilteringBox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.yyys_topcon .regionalFilteringBox + .regionalFilteringBox {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.yyys_topcon .regionalFilteringLeft {
  width: 64px;
  flex-shrink: 0;
  padding-top: 7px;
  color: var(--color-text-normal);
  font-size: 14px;
  font-weight: 700;
}

.yyys_topcon .regionalFilteringRight {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.yyys_topcon .regionalFilteringRight > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--color-text-normal);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.yyys_topcon .regionalFilteringRight > a:hover {
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.26);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.08);
}

.yyys_topcon .regionalFilteringRight > a.cursorActive {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-color: var(--color-primary-dark);
  box-shadow: 0 10px 18px rgba(var(--color-primary-rgb), 0.16);
}

.yyys_topcon .regionalFilteringRight > a.cursorActive:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .yyys_topcon .regionalFiltering {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .yyys_topcon .regionalFilteringBox {
    flex-direction: column;
    gap: 10px;
  }

  .yyys_topcon .regionalFilteringLeft {
    width: auto;
    padding-top: 0;
  }

  .yyys_topcon .regionalFilteringRight {
    gap: 8px;
  }

  .yyys_topcon .regionalFilteringRight > a {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }
}


/* ==============================
   医生列表左侧主体覆盖样式
   ============================== */
.list_left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list_left .hospital-tabs {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(var(--color-primary-light-rgb), 0.80) 100%);
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.05);
}

.list_left .hospital-tab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--color-text-normal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.list_left .hospital-tab-item:hover {
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.24);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.08);
}

.list_left .hospital-tab-item.active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-color: var(--color-primary-dark);
  box-shadow: 0 10px 18px rgba(var(--color-primary-rgb), 0.16);
}

.list_left .none_yy {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.8;
}

.list_left .content_con {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list_left .card_con.yylist_acrdcon {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.06);
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.list_left .card_con.yylist_acrdcon:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(var(--color-primary-rgb), 0.12);
}

.list_left .card_con.yylist_acrdcon .card_img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 16px;
}

.list_left .card_con.yylist_acrdcon .card_textcon {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list_left .card_con.yylist_acrdcon .list_tit {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.list_left .card_con.yylist_acrdcon .card_txt_item {
  color: var(--color-text-normal);
  font-size: 14px;
  line-height: 1.8;
}

.list_left .card_con.yylist_acrdcon .card_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.list_left .card_con.yylist_acrdcon .but_item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-primary-dark);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.list_left .card_con.yylist_acrdcon .but_item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.14);
}

.list_left .card_con.yylist_acrdcon .but_item.but_yh {
  background: #fff;
  color: var(--color-primary-dark);
}

.list_left .page_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .list_left .card_con.yylist_acrdcon {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .list_left .card_con.yylist_acrdcon .card_button {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
  }

  .list_left .card_con.yylist_acrdcon .but_item {
    width: auto;
    min-width: 110px;
  }
}

@media (max-width: 767px) {
  .list_left .hospital-tabs {
    flex-wrap: wrap;
  }

  .list_left .card_con.yylist_acrdcon {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .list_left .card_con.yylist_acrdcon .card_img {
    min-height: 210px;
  }

  .list_left .card_con.yylist_acrdcon .card_button {
    flex-wrap: wrap;
  }
}

/* ==============================
   医生列表右侧栏覆盖样式
   ============================== */
.aside_con {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.05);
  box-sizing: border-box;
}

.aside_titcon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.aside_tit {
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 700;
}

.aside_more {
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

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

.aside_con .card_rightcon {
  display: flex;
  align-items: center;
 justify-content: space-between;
  height: auto !important;
  padding: 0 0 12px;
  border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.10);
  text-decoration: none;
}

.aside_con .card_rightcon:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.aside_card_img {
  width: 92px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.aside_con .card_textcon {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aside_fz {
  color: var(--color-text-normal);
  font-size: 13px;
  line-height: 1.7;
}

.aside_con .xm_but {
  max-width: 60px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  margin: 4px 6px 0 0;
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary-dark);
  font-size: 12px;
  text-decoration: none;
  box-sizing: border-box;
}

.aside_con .xm_but:hover {
  background: rgba(var(--color-primary-rgb), 0.14);
}

@media (max-width: 767px) {
  .aside_con {
    padding: 16px;
    border-radius: 16px;
  }

  .aside_con .card_rightcon {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .aside_card_img {
    width: 82px;
    height: 74px;
  }
}

/* ==============================
   右侧栏时间完整显示修正
   ============================== */
.aside_con .card_textcon > a:last-child,
.aside_con .card_textcon > a:last-child > div,
.aside_con .card_textcon > div:last-child {
  display: block;
  width: 100%;
  min-width: 0;
}

.aside_con .card_textcon > a:last-child > div,
.aside_con .card_textcon > div:last-child {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

/* ==============================
   分页覆盖样式
   ============================== */
.page_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 6px 0;
}

.page_con a,
.page_con span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text-normal);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page_con a:hover {
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.26);
  background: rgba(var(--color-primary-rgb), 0.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(var(--color-primary-rgb), 0.08);
}

.page_con span,
.page_con .current,
.page_con a.current {
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%) !important;
  border-color: var(--color-primary-dark) !important;
  box-shadow: 0 10px 18px rgba(var(--color-primary-rgb), 0.14);
}

@media (max-width: 767px) {
  .page_con {
    gap: 8px;
    margin-top: 14px;
  }

  .page_con a,
  .page_con span {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
  }
}

