/* 色值来自 design/色值.jpg */
:root {
  --primary: #0086FE;
  --primary-dark: #0066CC;
  --primary-deep: #0055C5;
  --nav-gradient-start: #0176FE;
  --nav-gradient-end: #12A9F0;
  --notice-bg: #D1ECF5;
  --notice-width: 620px;
  --light-blue: #D1ECF5;
  --page-blue: #00A0EB;
  --home-services-bg: #008AEB;
  --panel-blue: #0077D2;
  --accent: #FFD66E;
  --accent-warm: #FF8F8F;
  --footer-bg: #006FEB;
  --text: #333333;
  --muted: #666666;
  --border: #E5E5E5;
  --placeholder: #D9D9D9;
  --page-margin-x: 128px;
  --radius-lg: 20px;
  --radius-md: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
body.appointment-modal-open,
body.sidebar-sheet-open,
body.nav-open {
  overflow: hidden;
}
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  margin: 0 var(--page-margin-x);
  padding: 0;
  width: auto;
  max-width: none;
}

/* ===== 顶部 Banner + 浮动导航 ===== */
.top-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top-area--home {
  overflow: visible;
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  color: inherit;
  flex-shrink: 0;
  z-index: 2;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-bar-pill {
  flex: 1;
  display: flex;
  align-items: center;
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  padding: 0 24px 0 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--nav-gradient-start) 0%, var(--nav-gradient-end) 100%);
  box-shadow: 0 4px 16px rgba(6, 23, 239, .22);
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  width: 100%;
}
.main-nav > .nav-item {
  width: 120px;
  flex: none;
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-item.has-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}
.main-nav .nav-item-link,
.main-nav .nav-sub a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.main-nav .nav-item.active > .nav-item-link,
.main-nav .nav-sub a.active {
  background: #fff;
  color: var(--primary);
}
.main-nav .nav-item.active > .nav-item-link:hover,
.main-nav .nav-sub a.active:hover {
  background: #fff;
  color: var(--primary);
}
.main-nav .nav-item:not(.active) > .nav-item-link:hover,
.main-nav .nav-sub a:not(.active):hover {
  background: rgba(255, 255, 255, .15);
}
.main-nav .nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 120;
}
.main-nav .nav-sub a {
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 15px;
  border-radius: 6px;
  justify-content: flex-start;
}
.main-nav .nav-item.has-sub:hover .nav-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone-icon {
  width: 130px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.header-phone-number {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.nav-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 20px;
  margin-left: auto;
  cursor: pointer;
  box-sizing: border-box;
}
.nav-toggle__icon {
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.nav-toggle__icon--close {
  display: none;
}
body.nav-open .nav-toggle__icon--menu {
  display: none;
}
body.nav-open .nav-toggle__icon--close {
  display: inline-block;
}
.nav-backdrop {
  display: none;
}

/* ===== 首页 Hero (Swiper) ===== */
.hero { position: relative; width: 100%; }
.hero-swiper { width: 100%; height: 640px; }
.hero-swiper .swiper-slide { position: relative; height: 640px; }
.hero-swiper--mobile { display: none; }
.hero-slide { position: relative; height: 100%; }
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--notice-bg), #fff);
}

.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .55;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #fff;
  --swiper-navigation-size: 36px;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 28px;
}

.notice-bar {
  background: transparent;
  padding: 0;
}
.top-area--home .notice-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 90;
  pointer-events: none;
}
.top-area--home .notice-inner {
  pointer-events: auto;
}
.notice-bar-inner {
  display: flex;
  justify-content: flex-start;
}
.notice-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  width: var(--notice-width);
  max-width: 100%;
  font-size: .88rem;
  background: var(--notice-bg);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  box-shadow: 0 2px 12px rgba(0, 134, 254, .12);
}
.notice-label {
  height: 20px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.notice-inner a,
.notice-text {
  color: var(--text);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-inner a:hover { color: var(--primary); }

/* 首页三栏 - 蓝色大容器 */
.home-main {
  position: relative;
  padding: 0;
  margin-top: 0;
  background: none;
}
.home-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--page-margin-x);
  width: 100%;
  height: 100%;
  background: var(--page-blue);
  z-index: 0;
}
.home-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 10;
  background: var(--page-blue);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  min-height: 360px;
}
.home-panel .card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 32px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.home-panel .home-services {
  background: var(--home-services-bg);
}
.home-panel .card:last-child { border-right: 0; }
.home-panel h2, .home-panel h3 { color: #fff; margin: 0; }
.panel-heading {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 0;
  line-height: 1;
}
.panel-heading-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.panel-heading-en {
  font-size: 14px;
  font-weight: 400;
  opacity: .78;
  letter-spacing: .5px;
  line-height: 1;
  text-transform: uppercase;
}
.home-intro .intro-logo {
  height: 50px;
  width: auto;
  margin-top: 12px;
}
.home-intro p {
  font-size: 14px;
  line-height: 1.8;
  opacity: .92;
  margin: 24px 0 36px;
  text-indent: 2em;
}
.home-intro .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  padding: 0;
  font-size: 14px;
  color: #fff;
  background: #22AEEF;
  border: 1px solid #00A0EB;
  border-radius: 0;
}
.home-intro .btn:hover { background: #1ba3e5; opacity: 1; }

.service-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.home-services .service-grid {
  gap: 16px;
  margin-top: 36px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  background: rgba(0, 0, 0, .15);
  color: #fff;
  border-radius: var(--radius-md);
  gap: 8px;
  min-height: 108px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .15s;
}
.home-services .service-item {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: calc((100% - 16px) / 2);
  flex: 0 0 calc((100% - 16px) / 2);
  box-sizing: border-box;
  min-width: 0;
  padding: 14px 16px;
  min-height: 72px;
  gap: 12px;
  background: #006FEB;
  border: none;
}
.home-services .service-item:hover { background: #0066d9; }
.home-services .service-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.home-services .service-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.home-services .service-item-en {
  font-size: 9.5px;
  font-weight: 700;
  opacity: 1;
  letter-spacing: .3px;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-reservation .service-grid {
  gap: 2px;
  margin-top: 36px;
}
.home-reservation .service-item {
  background: #008AEB;
  border-radius: 0;
  border: none;
  font-size: 14px;
  width: calc((100% - 6px) / 4);
  flex: 0 0 calc((100% - 6px) / 4);
  height: auto;
  min-height: 108px;
  padding: 8px;
  line-height: 24px;
  box-sizing: border-box;
  min-width: 0;
}
.home-reservation .service-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.home-reservation .service-item:hover { background: #007ecf; }
.service-item img { border-radius: 4px; background: rgba(255, 255, 255, .12); flex-shrink: 0; }
.service-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.service-item-title {
  font-size: .9rem;
  line-height: 1.3;
}
.service-item-en {
  font-size: .58rem;
  opacity: .75;
  letter-spacing: .3px;
  line-height: 1.2;
  text-transform: uppercase;
}
.service-item-sm { font-size: .82rem; }

/* ===== 内页 Banner ===== */
.page-banner {
  position: relative;
  width: 100%;
  height: 460px;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-color: #eef6fc;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}
.page-banner-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px;
  color: var(--primary);
}
.page-banner-caption h1 { margin: 0 0 6px; font-size: 2.2rem; font-weight: 700; }
.page-banner-caption p { margin: 0; font-size: .78rem; letter-spacing: .6px; opacity: .75; text-transform: uppercase; }

/* 内页蓝色主区域 */
body.page-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-inner > .top-area {
  flex-shrink: 0;
}

.page-main {
  position: relative;
  z-index: 2;
  background: var(--page-blue);
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: -60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  overflow: hidden;
}

.page-main .main {
  display: grid;
  grid-template-columns: 332px 1fr 128px;
  gap: 0;
  align-items: stretch;
  position: relative;
  flex: 1 1 auto;
  min-height: 100%;
}

.page-main .main--full,
.page-main .main--simple,
.page-main .main--no-left {
  grid-template-columns: 1fr 128px;
}

.page-main .main--full .main-content,
.page-main .main--simple .main-content,
.page-main .main--no-left .main-content {
  padding-left: 0;
}

.breadcrumb-blue {
  background: transparent;
  padding: 32px 0;
  flex-shrink: 0;
  line-height: 24px;
}
.breadcrumb-inner {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  line-height: 24px;
}
.breadcrumb-label { opacity: .75; }
.breadcrumb-inner a { color: #fff; }
.breadcrumb-inner .sep { margin: 0 8px; opacity: .6; }

/* 左侧栏 */
.sidebar-left {
  width: 332px;
  background: #008AEB;
  color: #fff;
  align-self: stretch;
  min-height: 100%;
  padding: 48px 0 0;
}

.sidebar-left h3 {
  margin: 0 0 20px;
  padding: 0 36px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  background: none;
  border: none;
}

.sidebar-left ul {
  list-style: none;
  margin: 0;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-left li { margin: 0; }

.sidebar-left li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 12px 20px;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  text-align: left;
  transition: background .15s, color .15s;
}

.sidebar-left li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  box-sizing: border-box;
}

.sidebar-left li a.active {
  background: #fff;
  color: #006FEB;
  font-weight: 600;
}

.sidebar-left li a.active:hover {
  background: #fff;
  color: #006FEB;
}

.sidebar-left li a:not(.active):hover {
  background: rgba(255, 255, 255, .12);
}

/* 移动端侧栏下拉（桌面隐藏） */
.sidebar-left-select,
.sidebar-sheet {
  display: none;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 0 20px 32px 24px;
}

.main-content > .content-card {
  flex: 1 1 auto;
  min-height: 0;
}

.content-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}
.content-card > h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 700;
}

.article-content {
  min-height: 900px;
  line-height: 1.9;
  font-size: .92rem;
  color: var(--text);
}
.article-content p { margin: 0 0 1rem; }
.article-content img {
  max-width: 100% !important;
  width: auto;
  height: auto !important;
  box-sizing: border-box;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5em;
}
.article-content a { color: var(--primary); }
.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 1.5rem 0 .75rem;
  color: var(--text);
  line-height: 1.4;
}
.meta {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e3e3;
}
.content-card > h1 + .meta {
  margin-top: 0;
}
.article-pager {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.article-pager__item {
  flex: 1;
  min-width: 0;
  display: block;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  box-sizing: border-box;
  background: #eeeeee;
  color: var(--primary);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.article-pager__item:hover {
  color: var(--primary-dark);
}
.article-pager__item.is-disabled {
  color: var(--primary);
  opacity: .55;
  cursor: default;
}
/* 新闻列表 */
.news-item {
  display: flex;
  gap: 24px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: #f7f7f7;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
  cursor: pointer;
}
.news-item:hover {
  background: #f0f0f0;
}
.news-item:last-child { margin-bottom: 0; }
.news-item-body { flex: 1; min-width: 0; }
.news-item h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--primary);
  font-weight: 600;
}
.news-item:hover h2 { color: var(--primary-dark); }
.news-item p { margin: 0 0 10px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.news-item .meta {
  display: inline-block;
  margin: 0;
  padding: 4px 12px;
  border: 0;
  background: #eee;
  border-radius: 4px;
  font-size: .8rem;
  color: var(--muted);
}
.news-item > img,
.news-item-cover {
  width: 168px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--placeholder);
  flex-shrink: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #fff;
}
.pagination a.active, .pagination .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* 科室 */
.dept-list-page { padding-top: 48px; }
.dept-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.dept-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.dept-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dept-section-header h2 { margin: 0; color: var(--text); font-size: 1.2rem; font-weight: 700; }
.dept-section-title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.dept-section-title a {
  color: inherit;
  text-decoration: none;
}
.dept-section-title a:hover { color: var(--primary); }
.dept-section-empty {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.dept-sub-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.dept-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 190px;
  box-sizing: border-box;
  padding: 14px 16px;
  background: #f7f7f7;
  color: var(--text);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  border: 0;
  transition: background .15s, color .15s;
}
.dept-sub-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  box-sizing: border-box;
}
.dept-sub-item:hover {
  background: #eee;
  color: var(--primary);
}

.dept-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.dept-header-title {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.dept-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.dept-phone-icon {
  flex-shrink: 0;
}

.dept-tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
  background: #eeeeee;
}
.dept-tab-nav a {
  display: flex;
  align-items: center;
  height: 64px;
  box-sizing: border-box;
  padding: 0 28px;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.dept-tab-nav a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.dept-tab-nav a:not(.active):hover {
  background: #e0e0e0;
}

.dept-catalog-block {
  margin-bottom: 40px;
}
.dept-catalog-block:last-child {
  margin-bottom: 0;
}
.dept-summary,
.dept-catalog-text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  text-align: justify;
}
.dept-summary {
  white-space: pre-wrap;
}
.dept-catalog-text p {
  margin: 0 0 1em;
  text-indent: 2em;
}
.dept-catalog-text p:last-child {
  margin-bottom: 0;
}

/* 设计图：标题 + 下方蓝色短下划线 */
.dept-block-title {
  display: inline-block;
  margin: 0 0 22px;
  padding: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  border-bottom: 3px solid var(--primary);
}

.dept-doctor-featured-row {
  container-type: inline-size;
  container-name: dept-doctor-featured;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
@container dept-doctor-featured (max-width: 639px) {
  .dept-doctor-featured {
    grid-column: 1 / -1;
  }
}
.dept-doctor-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 2px;
}
.dept-doctor-featured__main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.dept-doctor-featured--single {
  flex-direction: row;
  margin-bottom: 36px;
  padding: 28px;
  background: #f5f5f5;
  border-radius: 2px;
}
.dept-doctor-featured__photo {
  width: 140px;
  height: 160px;
  border-radius: 0;
  object-fit: cover;
  background: var(--placeholder);
  flex-shrink: 0;
}
.dept-doctor-featured__avatar {
  flex-shrink: 0;
  margin: 0;
}
.dept-doctor-featured__photo--rect {
  width: 200px;
  height: 260px;
  border-radius: 0;
}
.dept-doctor-featured__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.dept-doctor-featured__name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.dept-doctor-featured__title {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}
.dept-doctor-meta {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--text);
}
.dept-doctor-featured .dept-doctor-meta--specialty,
.dept-doctor-featured .dept-doctor-meta--intro {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.dept-doctor-meta--bio {
  flex: none;
}
.dept-doctor-bio {
  display: inline;
  color: var(--muted);
}
.dept-doctor-bio p {
  display: inline;
  margin: 0;
}
.dept-doctor-featured__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.dept-doctor-featured__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 40px;
  padding: 0;
  border-radius: 20px;
  font-size: 14px;
  box-sizing: border-box;
}
.dept-doctor-featured__actions .btn-outline {
  background: #fff;
  color: #999;
  border: 1px solid #999;
}
.dept-doctor-featured__actions .btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.dept-doctor-featured__actions .btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.dept-doctor-featured__actions .btn-primary:hover {
  opacity: .9;
}
.dept-doctor-featured--single .dept-doctor-featured__actions {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 8px;
}
.dept-doctor-featured--single .dept-doctor-featured__actions .btn {
  width: auto;
  min-width: 128px;
  padding: 0 20px;
}

.dept-expert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.dept-expert-item {
  width: 108px;
  text-align: center;
  color: inherit;
  transition: color .15s, transform .15s;
}
.dept-expert-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.dept-expert-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--placeholder);
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}
.dept-expert-avatar--initial {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  user-select: none;
}
.dept-expert-name {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 24px;
}
.dept-expert-item:hover .dept-expert-name {
  color: var(--primary);
}
.dept-expert-title {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.dept-article-block + .dept-article-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.dept-article-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.dept-header h1 { margin: 0; color: var(--text); font-size: 1.5rem; }

/* 表单 */
.form label { display: block; margin-bottom: 18px; font-size: .9rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 100px 1fr; align-items: start; gap: 12px; margin-bottom: 16px; }
.form-row-actions { align-items: center; }
.form-row-actions .btn { margin: 0; }
.form-row label { margin: 8px 0 0; text-align: right; }
.form-row .required::after { content: " *"; color: #e53935; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.form-hint { font-size: .82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.form-char-count {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  color: var(--muted);
  text-align: right;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: opacity .15s;
}
.btn:hover { opacity: .88; }
.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent-warm); color: #fff; }
.btn-yellow { background: var(--accent); color: var(--text); }
.btn-link { background: transparent; color: var(--primary); padding: 0; }
.btn-outline { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.btn-sm { padding: 6px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

/* 在线预约弹窗 */
.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.appointment-modal[hidden] {
  display: none;
}
.appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}
.appointment-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow: visible;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
}
.appointment-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 85px;
  padding: 0 32px;
  background: var(--primary);
  color: #fff;
  box-sizing: border-box;
  border-radius: 12px 12px 0 0;
}
.appointment-modal__title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.appointment-modal__title-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.appointment-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.appointment-modal__close:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.appointment-modal__body {
  flex: 1;
  overflow: auto;
  padding: 32px 120px 64px;
  box-sizing: border-box;
  border-radius: 0 0 12px 12px;
  background: #fff;
}
.appointment-modal__form {
  margin: 0;
}
.appointment-modal__form .btn-block {
  margin-top: 8px;
}
.appointment-req {
  font-style: normal;
  color: #e53935;
  font-weight: 600;
}
.appointment-field {
  display: block;
  margin-bottom: 18px;
}
.appointment-field__label {
  display: block;
  margin-bottom: 8px;
}
.appointment-select,
.appointment-cascader {
  position: relative;
  z-index: 1;
}
.appointment-cascader.is-open {
  z-index: 6;
}
.appointment-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  font: inherit;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.appointment-select__trigger:disabled {
  background: #f5f7fa;
  color: var(--muted);
  cursor: not-allowed;
}
.appointment-select__text.is-placeholder {
  color: var(--muted);
}
.appointment-select__arrow {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #8a94a6;
  flex-shrink: 0;
}
.appointment-select__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 5;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  max-height: 280px;
  overflow: auto;
}
.appointment-select__panel[hidden],
.appointment-cascader__panel[hidden] {
  display: none !important;
}
.appointment-cascader__panel {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.appointment-cascader__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
}
.appointment-cascader__col {
  flex: 0 0 180px;
  width: 180px;
  max-height: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  box-sizing: border-box;
}
.appointment-cascader__col:only-child {
  flex: 1 1 auto;
  width: auto;
  min-width: 180px;
}
.appointment-cascader__col:last-child {
  border-right: 0;
}
.appointment-select__list,
.appointment-cascader__list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.appointment-select__option,
.appointment-cascader__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1.4;
  color: var(--text);
}
.appointment-select__option:hover,
.appointment-cascader__option:hover,
.appointment-cascader__option.is-active {
  background: #f0f6ff;
  color: var(--primary);
}
.appointment-cascader__option.is-leaf.is-selected,
.appointment-select__option.is-selected {
  background: #e8f1ff;
  color: var(--primary);
  font-weight: 600;
}
.appointment-cascader__option-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #b0b8c4;
  flex-shrink: 0;
}
.appointment-select__empty {
  padding: 14px;
  color: var(--muted);
  font-size: .9rem;
}
.appointment-datetime {
  cursor: pointer;
  background: #fff;
}
.flatpickr-calendar {
  z-index: 400 !important;
}

@media (max-width: 768px) {
  .appointment-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  .appointment-modal__dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
  .appointment-modal__header,
  .appointment-modal__body {
    border-radius: 0;
  }
  .appointment-modal__body {
    padding: 24px 20px 64px;
  }
  .appointment-cascader__col {
    width: 148px;
  }
}

.hotline {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  color: #006FEB;
}
.hotline-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hotline-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #006FEB;
}
.hotline-subtitle {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #006FEB;
}
.hotline-phone {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #006FEB;
  white-space: nowrap;
}

.appointment-page { max-width: 520px; margin: 0 auto; }

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-nav a {
  padding: 12px 16px;
  background: var(--light-blue);
  border-radius: 6px;
  font-size: .85rem;
  color: var(--primary);
}

/* 页脚 */
.site-footer {
  position: relative;
  background: transparent;
  color: #fff;
  border-top-left-radius: 32px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left:0;
  right:0;
  height: 100%;
  background: #008aeb;
  z-index: 0;
}
.page-home .site-footer::before {
  background: var(--page-blue);
}
.page-home .site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: var(--page-margin-x);
  width: 100%;
  height: 100%;
  background: var(--footer-bg);
  z-index: 1;
}
.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 32px;
  background: var(--footer-bg);
  border-top-left-radius: 32px;
}
.footer-logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-info {
  font-size: .82rem;
  line-height: 1.8;
  opacity: .92;
}
.footer-info p { margin: 0; }

/* 微信公众号浮动 */
.wechat-float {
  position: fixed;
  left: 28px;
  bottom: 20px;
  z-index: 85;
  width: 72px;
  text-align: center;
  font-size: .82rem;
  color: var(--primary);
}
.wechat-float img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 6px;
  display: block;
}
.wechat-float span {
  display: block;
  line-height: 1.3;
  font-size: .78rem;
}

/* 右侧服务栏（内嵌于 main 区域） */
.sidebar-right {
  align-self: stretch;
  padding: 88px 0 16px;
  display: flex;
  flex-direction: column;
  width: 128px;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.sidebar-right-head {
  text-align: left;
  color: #fff;
  padding: 0 18px;
}

.sidebar-right-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.sidebar-right-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
  opacity: .9;
}

.sidebar-right-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 18px;
  margin-top: 8px;
}

.sidebar-right-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 92px;
  height: 92px;
  border-radius: 0;
  background: #006FEB;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  transition: background .15s;
}

.sidebar-right-item:hover {
  background: rgba(255, 255, 255, .15);
}

.sidebar-right-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.sidebar-right-item span {
  display: block;
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty { color: var(--muted); text-align: center; padding: 48px; }
.page-404 { text-align: center; padding: 80px 24px; color: #fff; }
.page-404 h1 { font-size: 4rem; margin: 0; }

/* 内页 footer 与蓝色区域衔接 */
.page-inner .site-footer {
  margin-top: 0;
}

@media (max-width: 1680px) {
  .header-phone { display: none; }
  .main-nav { flex-wrap: nowrap; }
}

@media (max-width: 1200px) {
  .home-panel { grid-template-columns: 1fr; }
  .home-panel .card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 992px) {
  .page-main .main,
  .page-main .main--full,
  .page-main .main--simple {
    grid-template-columns: 1fr;
  }
  .main-content { padding: 0 0 24px; }
  .sidebar-left {
    width: auto;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 20px 0 24px;
  }
  .sidebar-left ul { padding: 0 16px; }
  .sidebar-left li a { width: 100%; max-width: none; margin: 0; }
  .sidebar-right {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    border-radius: 0;
    transform: none;
    z-index: 1;
    padding: 0;
    height: auto;
    min-height: 0;
  }
  .sidebar-right-head { display: none; }
  .sidebar-right-list {
    flex-direction: row;
    width: 100%;
    padding: 0;
    gap: 0;
  }
  .sidebar-right-item {
    flex: 1;
    width: auto;
    height: auto;
    min-height: 72px;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, .12);
  }
  .sidebar-right-item:first-child { border-left: 0; }
  .dept-doctor-featured-row { grid-template-columns: 1fr; }
  .dept-doctor-featured__main,
  .dept-doctor-featured--single {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dept-doctor-featured__actions { justify-content: center; }
  .dept-doctor-featured--single .dept-doctor-featured__actions { justify-content: center; }
  .dept-expert-row { gap: 24px 32px; justify-content: center; }
}

@media (max-width: 768px) {
  :root { --page-margin-x: 0; }
  body.nav-open {
    overflow: hidden;
  }
  .page-main {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 24px;
  }
  .main-content {
    padding-bottom: 0;
  }
  .sidebar-right {
    margin-top: 0;
    padding: 16px 0;
    background: #006FEB;
    border: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 0;
  }
  .breadcrumb-blue {
    padding: 8px 20px;
    line-height: 24px;
  }
  .dept-sub-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .dept-sub-item {
    width: calc((100% - 8px) / 2);
    flex: 0 0 calc((100% - 8px) / 2);
    box-sizing: border-box;
    min-width: 0;
  }
  .dept-tab-nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 0;
  }
  .dept-tab-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    flex: 0 0 calc(100% / 3);
    height: 64px;
    box-sizing: border-box;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
  }
  .home-services .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .home-services .service-item {
    width: calc((100% - 12px) / 2);
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    min-height: 56px;
    gap: 8px;
  }
  .home-services .service-item img {
    width: 36px;
    height: 36px;
  }
  .home-services .service-item-title {
    font-size: 14px;
  }
  .home-services .service-item-en {
    font-size: 8px;
  }
  .home-reservation .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
  .home-reservation .service-item {
    width: calc((100% - 6px) / 4);
    flex: 0 0 calc((100% - 6px) / 4);
    box-sizing: border-box;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 10px 4px;
    font-size: 12px;
    line-height: 1.3;
    gap: 6px;
  }
  .home-reservation .service-item img {
    width: 36px;
    height: 36px;
  }
  .header-inner {
    flex-wrap: nowrap;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-panel .card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 130;
  }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, .5);
  }
  body.nav-open .nav-backdrop {
    display: block;
  }
  .nav-bar-pill {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 0;
    padding: 88px 24px 32px;
    background: var(--page-blue);
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility .25s ease;
    overflow-y: auto;
    box-sizing: border-box;
    font-size: 18px;
  }
  body.nav-open .nav-bar-pill {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav { flex-direction: column; width: 100%; gap: 0; }
  .main-nav > .nav-item,
  .main-nav .nav-item { width: 100%; }
  .main-nav .nav-item.has-sub::after { display: none; }
  .main-nav .nav-item-link,
  .main-nav .nav-sub a {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 14px 24px;
    font-size: 18px;
  }
  .main-nav .nav-sub {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 12px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .main-nav .nav-sub a { color: #fff; }
  .main-nav .nav-item.has-sub:hover .nav-sub,
  .main-nav .nav-item.has-sub .nav-sub { display: flex; }
  .header-phone {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .header-phone-number {
    font-size: 22px;
  }
  .hero-swiper--pc { display: none; }
  .hero-swiper--mobile {
    display: block;
    height: 100vw;
  }
  .hero-swiper--mobile .swiper-slide { height: 100vw; }
  .page-banner {
    height: 240px;
    min-height: 240px;
  }
  .page-banner-caption h1 { font-size: 1.6rem; }
  .page-banner-caption p { font-size: .48rem; }
  .wechat-float { display: none; }
  .news-item { flex-direction: column-reverse; padding: 16px; }
  .news-item > img,
  .news-item-cover { width: 100%; height: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row label { text-align: left; }
  .content-card {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-content {
    min-height: auto;
  }
  .hotline-left {
    flex-shrink: 0;
  }
  .hotline-phone {
    font-size: 32px;
  }
  .footer-inner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .sidebar-left {
    width: auto;
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    min-height: 0;
  }
  .sidebar-left h3,
  .sidebar-left__menu {
    display: none !important;
  }
  .sidebar-left-select {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
  }
  .sidebar-left-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
  }
  .sidebar-left-select__arrow {
    width: 0;
    height: 0;
    margin-left: 12px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #8a94a6;
    flex-shrink: 0;
  }
  .sidebar-sheet[hidden] {
    display: none !important;
  }
  .sidebar-sheet:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 250;
  }
  .sidebar-sheet__mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
  }
  .sidebar-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: var(--page-blue);
    border-radius: 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .12);
    box-sizing: border-box;
  }
  .sidebar-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
  .sidebar-sheet__title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }
  .sidebar-sheet__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }
  .sidebar-sheet__list {
    list-style: none;
    margin: 0;
    padding: 8px 0 24px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar-sheet__option {
    display: block;
    padding: 14px 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
  }
  .sidebar-sheet__option.is-active {
    color: #006FEB;
    font-weight: 600;
    background: #fff;
  }
}
