/* ai-new.css
 */

/* ==============================
   ============================== */
:root {
  /* === AI 主题色（自动从 logo 提取）meiweishi.com 青蓝色系 === */
  --color-primary:     #1B9CB8;
  --color-primary-dark:#136E84;
  --color-primary-light: #edf9fc;
  --color-primary-accent: #b8eef5;

  /* 辅助色 - logo 金棕色 */
  --color-accent: #C0A050;
  --color-secondary: #f0fbfd;
  --color-secondary-dark: #cdeef5;

  /* RGB值（用于 rgba） */
  --color-primary-rgb: 27, 156, 184;
  --color-primary-dark-rgb: 19, 110, 132;
  --color-primary-accent-rgb: 184, 238, 245;
  --color-primary-light-rgb: 237, 249, 252;

  /* 背景色 */
  --color-bg: #f6fcfe;
  --color-bg-white: #ffffff;
  --color-bg-light: #edf9fc;

  /* 文字色 */
  --color-text-dark: #0d3a42;
  --color-text-normal: #1a5463;
  --color-text-light: #2a7a8e;
  --color-text-lighter: #7ab8c6;
  --color-text-white: #f0fbfd;

  /* 边框色 */
  --color-border: rgba(var(--color-primary-dark-rgb), 0.24);
  --color-border-light: rgba(var(--color-primary-rgb), 0.18);
}

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

.site-header {
  position: relative;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 28px rgba(var(--color-primary-rgb), 0.06);
}

/* 单行三栏：左 Logo | 中搜索（居中）| 右联络 */
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px 14px;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 20px 28px;
  box-sizing: border-box;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

.site-header__search {
  min-width: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  justify-self: center;
}

.site-header__search-box {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 42px;
  padding: 3px 4px 3px 16px;
  background: rgba(var(--color-primary-rgb), 0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header__search-box:focus-within {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.12);
}

.site-header__input {
  flex: 1;
  min-width: 0;
  height: 34px;
  padding: 0 8px 0 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: var(--color-text-dark);
  font-size: 14px;
}

.site-header__input::placeholder {
  color: var(--color-text-lighter);
}

.site-header__btn {
  flex: 0 0 auto;
  min-width: 72px;
  height: 34px;
  padding: 0 16px;
  border: none !important;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.25);
}

.site-header__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.site-header__extra {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  justify-self: end;
}

.site-header__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 8px 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(var(--color-primary-rgb), 0.1) 0%, rgba(var(--color-primary-rgb), 0.04) 100%);
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(var(--color-primary-rgb), 0.12);
}

.site-header__phone:hover {
  background: rgba(var(--color-primary-rgb), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--color-primary-rgb), 0.22), 0 4px 14px rgba(var(--color-primary-rgb), 0.1);
}

.site-header__phone-label {
  color: var(--color-text-light);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.site-header__phone-num {
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.site-header__qr {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px rgba(var(--color-primary-rgb), 0.1), 0 4px 12px rgba(var(--color-primary-rgb), 0.06);
  transition: box-shadow 0.2s ease;
}

.site-header__qr:hover {
  box-shadow: 0 0 0 1px rgba(var(--color-primary-rgb), 0.18), 0 6px 16px rgba(var(--color-primary-rgb), 0.1);
}

.site-header__qr-img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
}

/* ==============================
   涓诲鑸?nav
   ============================== */
/* Nav：毛玻璃（NA5） */
.site-nav {
  position: relative;
  z-index: 110;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.12);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.06);
}

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

.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: space-between;
  gap: 2px;
  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: 76px;
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.5px;
}

.site-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px 2px 0 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.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: var(--color-text-lighter);
  font-size: 11px;
  line-height: 1;
}

.site-nav__phone-num {
  color: var(--color-primary-dark);
  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: 26px;
}

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

/* ==============================
   区域标题统一样式（T-A：渐变色块横幅）
   ============================== */
.sec-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding: 22px 24px 20px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(
    125deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 42%,
    rgba(var(--color-primary-rgb), 0.88) 100%
  );
  box-shadow: 0 18px 40px rgba(var(--color-primary-rgb), 0.22);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.sec-head::before {
  content: "MEIWEISHI";
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-46%) rotate(-8deg);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.sec-head:hover {
  transform: none;
  box-shadow: 0 22px 48px rgba(var(--color-primary-rgb), 0.28);
}

.sec-head__main {
  min-width: 0;
  padding-left: 0;
}

.sec-head__title {
  margin: 0;
  color: #f8fdff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 40, 50, 0.25);
  transition: color 0.22s ease;
}

.sec-head:hover .sec-head__title {
  color: #fff;
  letter-spacing: 0.01em;
}

.sec-head__en {
  display: inline-block;
  margin-left: 10px;
  color: rgba(248, 253, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  vertical-align: middle;
  transition: color 0.22s ease;
}

.sec-head:hover .sec-head__en {
  transform: none;
  opacity: 1;
  color: rgba(248, 253, 255, 0.98);
}

.sec-head__desc {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(248, 253, 255, 0.92);
  font-size: 14px;
  line-height: 1.85;
  text-shadow: 0 1px 1px rgba(0, 40, 50, 0.2);
  transition: color 0.22s ease;
}

.sec-head:hover .sec-head__desc {
  color: #f8fdff;
}

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

.sec-head__tabs .title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sec-head__tabs .title:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  transform: none;
  box-shadow: none;
}

.sec-head__tabs .title.current {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
  font-weight: 700;
  box-shadow: none;
}

.sec-head__side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sec-head__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 40, 50, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sec-head__more a:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 40, 50, 0.14);
}

/* ==============================
   鍖婚櫌妯″潡妯℃澘鏍峰紡
   ============================== */
/* H5：首条全宽横版 + 下方3列竖版（首页医院 H3 专区除外） */
.hos-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.index-hos-con:not(.index-hos-con--home-hospital) .hos-list .hos-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}

.index-hos-con:not(.index-hos-con--home-hospital) .hos-list .hos-card:first-child .hos-card__media {
  width: 420px;
  min-width: 420px;
  flex-shrink: 0;
  border-radius: 14px;
  aspect-ratio: auto;
}

.index-hos-con:not(.index-hos-con--home-hospital) .hos-list .hos-card:first-child .hos-card__img {
  min-height: 260px;
  height: 100%;
}

.index-hos-con:not(.index-hos-con--home-hospital) .hos-list .hos-card:first-child .hos-card__title {
  font-size: 26px;
}

.hos-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  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);
  overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.hos-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(var(--color-primary-rgb), 0.12);
}

.hos-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-primary-light);
  aspect-ratio: 16 / 10;
}

.hos-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.hos-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.2) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hos-card:hover .hos-card__media::after {
  opacity: 1;
}

.hos-card__view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--color-text-dark);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.hos-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.hos-card__title {
  margin: 0 0 12px;
  color: var(--color-text-dark);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.hos-card:hover .hos-card__title {
  color: var(--color-primary-dark);
}

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

.hos-card__label {
  flex: 0 0 auto;
  color: var(--color-text-lighter);
  font-size: 13px;
  line-height: 1.8;
}

.hos-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.hos-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hos-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.16);
  background: var(--color-primary-light);
  color: var(--color-text-normal);
  font-size: 13px;
  line-height: 32px;
  text-decoration: none;
  transition: all 0.22s ease;
  margin-bottom: 5px;
}

.hos-card__tag:hover {
  background: #fff;
  border-color: rgba(var(--color-primary-rgb), 0.28);
  color: var(--color-primary-dark);
}

.hos-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.hos-card__time {
  color: var(--color-text-lighter);
  font-size: 13px;
  line-height: 1;
}

/* 首页医院 H3：大图叠层卡片 */
.index-hos-con--home-hospital .hos-list .hos-card:first-child {
  grid-column: auto;
}

.index-hos-con--home-hospital .hos-card {
  position: relative;
  flex-direction: column;
  padding: 0;
  background: #0d3a42;
  border-color: rgba(var(--color-primary-rgb), 0.15);
}

.index-hos-con--home-hospital .hos-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.index-hos-con--home-hospital .hos-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.index-hos-con--home-hospital .hos-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(
    to top,
    rgba(10, 35, 42, 0.92) 0%,
    rgba(10, 35, 42, 0.45) 55%,
    transparent 100%
  );
}

.index-hos-con--home-hospital .hos-card__title,
.index-hos-con--home-hospital .hos-card__title-link,
.index-hos-con--home-hospital .hos-card__info,
.index-hos-con--home-hospital .hos-card__tags,
.index-hos-con--home-hospital .hos-card__foot {
  color: #f0fbfd;
}

.index-hos-con--home-hospital .hos-card__label {
  color: rgba(240, 251, 253, 0.75);
}

.index-hos-con--home-hospital .hos-card__tag {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.index-hos-con--home-hospital .hos-card:hover .hos-card__title {
  color: #fff;
}

/* ==============================
   医生板块模板样式
   ============================== */
.doc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* 首页医生 D4：杂志错位单列 */
.index-hos-con--home-doctor .doc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.index-hos-con--home-doctor .doc-card:nth-child(even) {
  flex-direction: row-reverse;
}

.index-hos-con--home-doctor .doc-card__avatar {
  flex: 0 0 200px;
  width: 200px;
  height: auto;
  min-height: 200px;
  border-radius: 16px;
}

.index-hos-con--home-doctor .doc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* D1：头像左固定80px圆形，内容右侧，2列 */
.doc-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 5px 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);
  text-decoration: none;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(var(--color-primary-rgb), 0.12);
}

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

.doc-card__avatar {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 3px solid rgba(var(--color-primary-rgb), 0.18);
  transition: border-color 0.26s ease, transform 0.26s ease;
}

.doc-card:hover .doc-card__avatar {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.doc-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.doc-card__name {
  margin: 0 0 8px;
  color: var(--color-text-dark);
  font-size: 20px;
  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: 13px;
  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: 12px 0 0;
  color: var(--color-text-light);
  font-size: 13px;
  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: 92px;
  height: 34px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.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;
}

/* ==============================
   医生板块去 aside 后的铺满布局
   ============================== */
.ind-doc-list .doc-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.index-hos-con--home-doctor .ind-doc-list .doc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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


.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: stretch;
}

/* 首页资讯：首条重磅 + 双列卡片（替代横向条） */
.index-hos-con--home-news .news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: stretch;
}

.index-hos-con--home-news .news-card {
  margin-bottom: 0;
}

/* 第一条：左图右文，占满主栏宽度 */
.index-hos-con--home-news .news-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.1);
}

.index-hos-con--home-news .news-card:first-child .news-card__media {
  aspect-ratio: auto;
  min-height: 220px;
  height: 100%;
  border-radius: 0;
}

.index-hos-con--home-news .news-card:first-child .news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 58, 66, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.index-hos-con--home-news .news-card:first-child .news-card__content {
  padding: 22px 26px;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 120%);
}

.index-hos-con--home-news .news-card:first-child .news-card__title {
  font-size: 22px;
  line-height: 1.35;
}

.index-hos-con--home-news .news-card:first-child .news-card__bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  gap: 12px;
}

/* 其余：上图下文卡片 */
.index-hos-con--home-news .news-card:not(:first-child) {
  border-radius: 16px;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__media {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 16px 16px 0 0;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__content {
  padding: 14px 16px 16px;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__title {
  font-size: 17px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__desc {
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 13px;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__bottom {
  padding-top: 12px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.index-hos-con--home-news .news-card:not(:first-child) .news-card__action {
  min-width: 0;
  padding: 0 12px;
  height: 30px;
  font-size: 11px;
}

/* 侧栏精读区：与主栏视觉统一 */
.index-hos-con--home-news .news-side__panel {
  border-radius: 20px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  box-shadow: 0 10px 32px rgba(var(--color-primary-rgb), 0.08);
  background: linear-gradient(180deg, #fff 0%, var(--color-secondary) 100%);
}

.index-hos-con--home-news .news-side__title {
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--color-primary-rgb), 0.15);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  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);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
  margin-bottom: 20px;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(var(--color-primary-rgb), 0.12);
}

.news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-primary-light);
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  height: 170px;
}

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

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

.news-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
}

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

.news-card__title {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.news-card:hover .news-card__title {
  color: var(--color-primary-dark);
}

.news-card__desc {
  margin-top: 12px;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.news-card__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.news-card__time-row,
.news-card__action-row {
  width: 100%;
}

.news-card__action-row {
  display: flex;
  justify-content: flex-start;
}

.news-card__date {
  display: inline-block;
  white-space: nowrap;
  color: var(--color-text-lighter);
  font-size: 13px;
  line-height: 1.4;
}

.news-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;
}

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

.news-side__panel {
  position: sticky;
  top: 120px;
  height: 100%;
  min-height: 100%;
  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);
  box-sizing: border-box;
}

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

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

.news-side__link {
  position: relative;
  display: block;
  padding: 12px 10px 12px 28px;
  color: var(--color-text-normal);
  font-size: 13px;
  line-height: 1.8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.12);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.news-side__link::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.08);
}

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

.news-side__link:hover {
  color: var(--color-primary-dark);
  background: rgba(var(--color-primary-rgb), 0.05);
  padding-left: 32px;
}

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


.share-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: start;
}

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

/* S3：砖块流，首条2倍宽（首页分享 S1 专区除外） */
.share-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.index-hos-con:not(.index-hos-con--home-share) .share-list .share-card:first-child {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

.index-hos-con:not(.index-hos-con--home-share) .share-list .share-card:first-child .share-card__media {
  width: 48%;
  min-width: 48%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 220px;
}

.index-hos-con:not(.index-hos-con--home-share) .share-list .share-card:first-child .share-card__img {
  min-height: 220px;
  height: 100%;
}

/* 首页分享 S1：4 列叠层画廊 */
.index-hos-con--home-share .share-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.index-hos-con--home-share .share-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #0d3a42;
  border-radius: 16px;
}

.index-hos-con--home-share .share-card__media {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.index-hos-con--home-share .share-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.index-hos-con--home-share .share-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(
    to top,
    rgba(10, 35, 42, 0.9) 0%,
    transparent 85%
  );
}

.index-hos-con--home-share .share-card__title,
.index-hos-con--home-share .share-card__desc,
.index-hos-con--home-share .share-card__footer {
  color: #f8fdff;
}

@media (max-width: 1199px) {
  .index-hos-con--home-share .share-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.share-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  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);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.share-card:hover,
.project-card:hover,
.qa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(var(--color-primary-rgb), 0.12);
}

.share-card__media {
  overflow: hidden;
  border-radius: 0;
  background: var(--color-primary-light);
  aspect-ratio: 4 / 3;
}

.share-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

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

.share-card__title,
.project-card__title,
.qa-card__question {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

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

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

/* Q5：问题右气泡 */
.qa-card__question {
  display: inline-block;
  align-self: flex-end;
  max-width: 85%;
  padding: 5px 18px;
  border-radius: 18px 4px 18px 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* Q5：答案左气泡 */
.qa-card__answer {
  align-self: flex-start;
  max-width: 85%;
  padding: 5px 18px;
  border-radius: 4px 18px 18px 18px;
  background: var(--color-bg-light);
  color: var(--color-text-normal);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

.share-card__footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

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

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

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

.share-card__time {
  display: inline-block;
  white-space: nowrap;
}

.share-card__more,
.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: 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);
}

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

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

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

.share-side__link::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.08);
}

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

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

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

/* 首页项目 P2：3 列竖版卡片 */
.index-hos-con--project .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.index-hos-con--project .project-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding: 0;
  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);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.index-hos-con--project .project-card__media {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-primary-light);
  aspect-ratio: 16 / 10;
}

.index-hos-con--project .project-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.index-hos-con--project .project-card:hover .project-card__img {
  transform: scale(1.05);
}

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

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

.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;
}

/* Q5：气泡对话样式，Q右对齐，A左对齐 */
.qa-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.qa-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.06);
  text-decoration: none;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

/* Q图标：小圆形装饰，右上角 */
.qa-card__icon {
  align-self: flex-end;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

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

/* Q 问题气泡：右对齐 */
.qa-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.qa-card__status {
  order: -1;
  align-self: flex-end;
  min-width: 60px;
  height: 24px;
  padding: 0 10px;
  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;
}

/* T1：胶囊标签云 */
.hot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.hot-chip__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: auto;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid rgba(var(--color-primary-rgb), 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.08);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.hot-chip:hover .hot-chip__body {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
}

.hot-chip__label {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  white-space: nowrap;
}

/* 首页热词 T4：前几条字号略大，形成渐变层次 */
.index-hos-con--home-hot .hot-grid {
  justify-content: center;
}

.index-hos-con--home-hot .hot-chip:nth-child(1) .hot-chip__label {
  font-size: 1.35rem;
}

.index-hos-con--home-hot .hot-chip:nth-child(2) .hot-chip__label {
  font-size: 1.22rem;
}

.index-hos-con--home-hot .hot-chip:nth-child(3) .hot-chip__label {
  font-size: 1.12rem;
}

.index-hos-con--home-hot .hot-chip:nth-child(n + 4) .hot-chip__label {
  font-size: 1rem;
}

/* ==============================
   兼容旧首页模块标题命名
   ============================== */
.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 {
    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) {
  .container {
    padding: 22px 16px 34px;
  }

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

  /* 991px：顶栏两行 — 上行 Logo+电话，下行通栏搜索 */
  .site-header__inner {
    padding: 12px 16px 14px;
    gap: 12px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .site-header__brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header__extra {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .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-A：991px 下标题区堆叠 */
  .sec-head {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 18px;
  }

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

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

  .hos-list {
    gap: 14px;
  }

  /* H5：991px下3列改2列，首条媒体再收窄（首页医院 H3 除外） */
  .hos-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-hos-con:not(.index-hos-con--home-hospital) .hos-list .hos-card:first-child .hos-card__media {
    width: 280px;
    min-width: 280px;
  }

  .index-hos-con--project .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-hos-con--project .project-card__media {
    width: 100%;
    min-width: 0;
  }

  .hos-card {
    gap: 16px;
    padding: 16px;
  }

  .hos-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .ind-doc-list .doc-list {
    grid-template-columns: 1fr;
  }

  .index-hos-con--home-doctor .ind-doc-list .doc-list {
    display: flex;
    flex-direction: column;
  }

  .doc-side__panel {
    position: static;
  }

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

  /* 首页资讯：窄屏双列改单列，首条改上图下文 */
  .index-hos-con--home-news .news-grid {
    grid-template-columns: 1fr;
  }

  .index-hos-con--home-news .news-card:first-child {
    grid-template-columns: 1fr;
  }

  .index-hos-con--home-news .news-card:first-child .news-card__media {
    min-height: 200px;
    border-radius: 20px 20px 0 0;
  }

  .index-hos-con--home-news .news-card:first-child .news-card__media::after {
    background: linear-gradient(180deg, rgba(13, 58, 66, 0.2) 0%, transparent 65%);
  }

  .index-hos-con--home-news .news-card:first-child .news-card__content {
    padding: 18px 20px 20px;
  }

  .news-side__panel {
    position: static;
  }

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

  .share-side__panel {
    position: static;
  }


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

@media (max-width: 767px) {
  .hos-card {
    grid-template-columns: 1fr;
  }

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


  /* D1：767px下头像缩小保持圆形 */
  .doc-card {
    gap: 14px;
  }

  .doc-card__avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .index-hos-con--home-doctor .doc-card__avatar {
    flex: 0 0 140px;
    width: 140px;
    min-height: 140px;
    height: auto;
    border-radius: 14px;
  }

  /* N3：767px 下资讯列表单列 */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* S3：767px下改单列，首条变竖版（首页分享 S1 除外） */
  .share-list {
    grid-template-columns: 1fr;
  }

  .index-hos-con--home-share .share-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-hos-con:not(.index-hos-con--home-share) .share-list .share-card:first-child {
    grid-column: span 1;
    flex-direction: column;
  }

  .index-hos-con:not(.index-hos-con--home-share) .share-list .share-card:first-child .share-card__media {
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
  }

  /* 首页项目：窄屏单列竖卡 */
  .index-hos-con--project .project-grid {
    grid-template-columns: 1fr;
  }

  /* Q5：767px已在991px改单列 */
}

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

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

  .sec-head {
    padding: 14px 16px 14px 32px;
  }

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

  .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;
  }

  .index-hos-con--home-news .news-card {
    padding: 0;
  }

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

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

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

  .share-card,
  .project-card,
  .qa-card {
    padding: 14px;
    border-radius: 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
   ============================== */
/* F4：纯白 + 顶部分割线（极简） */
#footer {
  margin-top: 48px;
  background: #fff;
  border-top: 3px solid var(--color-primary);
  color: #495057;
  box-shadow: none;
}

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

#footer .logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

#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: #6c757d;
}

#footer .footer-copyright-con a {
  color: var(--color-primary-dark);
  transition: color 0.2s;
}

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

#footer .footer-copyright-con .beizhu {
  font-size: 12px;
  color: #adb5bd;
}

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

#footer .footer-bottom {
  background: #fff;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.12);
  text-align: center;
  font-size: 12px;
  color: #adb5bd;
  padding: 12px 0;
  letter-spacing: 0.5px;
}


/* ==============================
   面包屑导航覆盖样式
   ============================== */
.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;
  }
}

