:root {
  --blue: #1788ff;
  --blue-dark: #0d67de;
  --line: #d6e8ff;
  --bg: #f4faff;
  --text: #24517d;
  --sub: #6f8fb2;
  --red: #2a82ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 1280px;
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Noto Sans SC', sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.top-strip {
  height: 2px;
  background: #2f79f8;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid #d8e9ff;
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 6px 18px rgba(33, 128, 237, 0.08);
}

.topbar-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 74px;
  max-width: 420px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: #4b6f97;
  align-self: flex-end;
  height: 100%;
}

.nav a {
  padding: 7px 4px 17px;
  border-bottom: 3px solid transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
  border-bottom-color: var(--red);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-end;
  height: 100%;
  padding-bottom: 18px;
}

.nav-search {
  display: flex;
  align-items: center;
  border: 1px solid #d3e5fb;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbff;
}

.nav-search input {
  width: 170px;
  height: 34px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 10px;
  font-size: 13px;
  color: #466086;
}

.nav-search button {
  width: 62px;
  height: 34px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #2c8df2, #1778df);
  font-size: 13px;
  cursor: pointer;
}

.hotline {
  color: #5e7ea3;
  font-size: 14px;
}

.hotline b {
  color: var(--blue);
  font-size: 18px;
}

.sub-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #d8e9ff;
  background: #fff;
}

.sub-topbar-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--red);
}

.sub-brand strong {
  font-size: 22px;
}

.sub-brand small {
  color: var(--sub);
  font-size: 13px;
}

.sub-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #4b6f97;
}

.sub-nav a {
  padding: 7px 4px 17px;
  border-bottom: 3px solid transparent;
}

.sub-nav a.active,
.sub-nav a:hover {
  color: var(--blue);
  border-bottom-color: var(--red);
}

.sub-back {
  border: 1px solid #d6e8ff;
  border-radius: 4px;
  padding: 7px 13px;
  color: #5a7fa8;
  background: #fff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-main {
  padding: 20px 0 28px;
}

.page-hero {
  border-radius: 8px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  background: #fff;
  color: var(--text);
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(22, 40, 67, 0.05);
}

.page-hero h1 {
  margin: 0;
  font-size: 30px;
}

.page-hero p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--sub);
}

.board {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 40, 67, 0.05);
  padding: 16px 18px 18px;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7edf3;
}

.board-head h2 {
  margin: 0;
  font-size: 20px;
  color: #23364c;
  position: relative;
  padding-left: 14px;
}

.board-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: var(--red);
}

.board-tip {
  font-size: 12px;
  color: var(--sub);
}

.layout-2 {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 12px;
}

.side-tabs {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-tabs button,
.row-tabs button {
  border: 1px solid #e0e6ed;
  border-radius: 4px;
  background: #fff;
  color: #52667e;
  font-size: 14px;
  padding: 9px 10px;
  cursor: pointer;
}

.side-tabs button.active,
.row-tabs button.active {
  color: var(--blue);
  border-color: #ccd8e3;
  background: #f4f8fb;
  box-shadow: inset 3px 0 0 var(--red);
}

.panel-box {
  border: 1px solid #e1e7ee;
  border-radius: 6px;
  background: #fbfcfd;
  padding: 12px;
}

.booking-layout {
  --booking-pane-height: clamp(360px, calc(100vh - 360px), 500px);
  align-items: stretch;
  grid-template-columns: 228px 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

body[data-page='booking'] .page-main {
  padding: 14px 0 22px;
}

.booking-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 14% 12%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 26%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

.booking-page-hero::before {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -36px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

.booking-page-hero::after {
  content: '';
  position: absolute;
  right: -64px;
  top: -54px;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 220, 255, 0.34) 0%, rgba(175, 220, 255, 0.08) 56%, rgba(175, 220, 255, 0) 72%);
  pointer-events: none;
}

.booking-hero-main,
.booking-hero-side {
  position: relative;
  z-index: 1;
}

.booking-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(50, 132, 233, 0.1);
  color: #2776d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.booking-hero-eyebrow i {
  font-size: 14px;
}

.booking-page-hero h1 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.2;
  color: #183f69;
}

.booking-page-hero p {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.9;
  color: #59708f;
}

.booking-hero-tags {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(203, 223, 246, 0.95);
  color: #40658f;
  font-size: 13px;
  font-weight: 700;
}

.booking-hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.booking-hero-stat {
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(206, 223, 244, 0.96);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(48, 103, 171, 0.08);
}

.booking-hero-stat strong {
  display: block;
  color: #1d66cc;
  font-size: 24px;
  line-height: 1.1;
}

.booking-hero-stat span {
  display: block;
  margin-top: 8px;
  color: #607898;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

body[data-page='booking'] .board {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  border: 0;
  border-radius: 26px;
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 86% 20%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

body[data-page='booking'] .board::before {
  content: '';
  position: absolute;
  left: -20px;
  bottom: -34px;
  width: 214px;
  height: 126px;
  border-radius: 44px;
  background:
    repeating-linear-gradient(135deg, rgba(123, 184, 255, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(123, 184, 255, 0.12), rgba(123, 184, 255, 0.02));
  pointer-events: none;
}

body[data-page='booking'] .board-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 0;
}

body[data-page='booking'] .board-head::after {
  content: '';
  position: absolute;
  left: 158px;
  right: 0;
  top: 22px;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.24), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.42) 0 5px, transparent 5px 10px);
}

body[data-page='booking'] .board-head h2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-right: 18px;
  padding-left: 0;
  font-size: 20px;
  color: #1b2430;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

body[data-page='booking'] .board-head h2::before {
  display: none;
}

body[data-page='booking'] .board-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='booking'] .board-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

.booking-section-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='booking'] .board-tip {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 14px;
  font-weight: 700;
  color: #89a4c6;
}

.ai-booking-board {
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 204, 255, 0.18) 0, rgba(148, 204, 255, 0) 18%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
}

.ai-booking-box {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(202, 222, 244, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(48, 103, 171, 0.06);
}

.ai-demand-input {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid #d7e6f8;
  border-radius: 16px;
  padding: 14px 16px;
  box-sizing: border-box;
  outline: none;
  font: inherit;
  line-height: 1.8;
  color: #24405f;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ai-demand-input:focus {
  border-color: #91bced;
  box-shadow: 0 0 0 4px rgba(54, 121, 210, 0.12);
  background: #fff;
}

.ai-booking-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ai-booking-hint {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  color: #5f7590;
  line-height: 1.75;
}

.ai-booking-btn {
  min-width: 136px;
  height: 46px;
  padding: 0 24px;
  white-space: nowrap;
}

.booking-service-board {
  background:
    radial-gradient(circle at 84% 16%, rgba(193, 228, 255, 0.16) 0, rgba(193, 228, 255, 0) 24%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
}

.booking-content-head {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  padding: 0 4px;
}

.booking-content-head strong {
  display: block;
  color: #20476f;
  font-size: 20px;
  line-height: 1.2;
}

.booking-content-head p {
  margin: 6px 0 0;
  color: #6c84a2;
  font-size: 14px;
  line-height: 1.75;
}

.booking-layout .side-tabs {
  position: relative;
  height: var(--booking-pane-height);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #2e89ef 0%, #4a9dff 50%, #5baeff 100%);
  padding: 18px 18px 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.booking-layout .side-tabs::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(23, 85, 191, 0.24)),
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2px) 0 0 / 16px 16px;
  opacity: 0.7;
  pointer-events: none;
}

.booking-layout .side-tabs::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 18px calc(100% - 86px) / 28px 72px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) 52px calc(100% - 104px) / 34px 90px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 92px calc(100% - 74px) / 20px 58px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) 118px calc(100% - 98px) / 42px 86px no-repeat,
    radial-gradient(circle at 132px calc(100% - 124px), rgba(255, 255, 255, 0.12) 0 14px, transparent 15px),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(16, 82, 192, 0.28));
  opacity: 0.72;
  pointer-events: none;
}

body[data-page='booking'] .side-tabs button {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

body[data-page='booking'] .side-tabs button.active {
  color: #1b76e4;
  border-color: rgba(255,255,255,0.82);
  background: #fff;
  box-shadow: 0 10px 20px rgba(30, 102, 199, 0.18);
}

.booking-panel-box {
  height: var(--booking-pane-height);
  overflow: hidden;
  border: 0;
  border-radius: 0 20px 20px 0;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(214, 230, 249, 0.9);
}

.booking-panel-box .booking-sections {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
}

.booking-sub-section + .booking-sub-section {
  margin-top: 16px;
}

.booking-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #2f5685;
  font-size: 16px;
  font-weight: 800;
}

.booking-sub-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 5px rgba(91, 141, 255, 0.1);
  flex: 0 0 auto;
}

body[data-page='booking'] .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page='booking'] .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(196, 218, 243, 0.94);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.95) 100%);
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body[data-page='booking'] .service-item::before {
  content: '';
  position: absolute;
  right: -26px;
  top: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 188, 255, 0.18) 0%, rgba(131, 188, 255, 0.05) 60%, rgba(131, 188, 255, 0) 72%);
  pointer-events: none;
}

body[data-page='booking'] .service-item::after {
  content: '';
  position: absolute;
  inset: auto 18px 16px auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(155, 197, 255, 0.14), rgba(155, 197, 255, 0.14)) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(155, 197, 255, 0.14), rgba(155, 197, 255, 0.14)) 0 0 / 1px 100% no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

body[data-page='booking'] .service-item:hover {
  transform: translateY(-4px);
  border-color: #c7dcf6;
  box-shadow: 0 16px 30px rgba(41, 97, 165, 0.1);
}

body[data-page='booking'] .service-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #234a73;
}

body[data-page='booking'] .service-item p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6880a0;
}

body[data-page='booking'] .service-item .action {
  position: static;
  margin-top: auto;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid #d3e3f7;
  border-radius: 999px;
  background: #fff;
  color: #2778d6;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body[data-page='booking'] .service-item .action:hover {
  transform: translateY(-1px);
  border-color: #bfd8f7;
  box-shadow: 0 8px 16px rgba(41, 97, 165, 0.1);
}

.booking-empty {
  grid-column: 1 / -1;
  min-height: 132px;
  border: 1px dashed #d2e2f7;
  border-radius: 16px;
  background: #f8fbff;
  color: #6683a6;
  font-size: 14px;
  line-height: 1.8;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 860px) {
  .ai-booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-booking-btn {
    width: 100%;
  }
}

.row-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.org-item img,
.news-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 160px;
  display: block;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: linear-gradient(135deg, #e8edf2, #f6f8fa);
}

.news-cover {
  position: relative;
}

.org-float-logo {
  position: absolute;
  right: 18px;
  bottom: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #eef4fb;
  box-shadow: 0 8px 16px rgba(22, 40, 67, 0.14);
}

.org-item .copy,
.news-item .copy {
  padding: 10px;
}

.org-item h3,
.news-item h3 {
  margin: 0;
  font-size: 15px;
}

.org-item p,
.news-item p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
}

.star-person-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.star-person-card {
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  padding: 12px 10px 11px;
  border-top: 3px solid #d3dce6;
}

.star-person-avatar-link {
  display: block;
  width: 96px;
  margin: 0 auto;
}

.star-person-avatar {
  width: 96px;
  height: 128px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, #89a9ca, #4f6f94);
}

.star-bg-1 {
  background: linear-gradient(135deg, #89a9ca, #4f6f94);
}

.star-bg-2 {
  background: linear-gradient(135deg, #c7b18b, #9d7647);
}

.star-bg-3 {
  background: linear-gradient(135deg, #98b6b0, #5f857e);
}

.star-bg-4 {
  background: linear-gradient(135deg, #a5a3ba, #696787);
}

.star-bg-5 {
  background: linear-gradient(135deg, #caa5ad, #8f6570);
}

.star-bg-6 {
  background: linear-gradient(135deg, #98afc7, #5f7694);
}

.star-bg-7 {
  background: linear-gradient(135deg, #9db8cc, #567e9d);
}

.star-bg-8 {
  background: linear-gradient(135deg, #adc0d6, #6e88a5);
}

.star-person-name {
  display: block;
  margin-top: 9px;
  font-size: 16px;
  color: #284f80;
  font-weight: 700;
}

.star-person-service {
  margin: 6px 0 0;
  font-size: 13px;
  color: #4b6f99;
}

.star-person-company {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6f86a4;
}

.star-person-card .jump {
  margin-top: 8px;
}

body[data-page='org'] .page-main {
  padding: 14px 0 22px;
}

.org-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 14% 12%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 26%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

.org-page-hero::before {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -36px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

.org-page-hero::after {
  content: '';
  position: absolute;
  right: -64px;
  top: -54px;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 220, 255, 0.34) 0%, rgba(175, 220, 255, 0.08) 56%, rgba(175, 220, 255, 0) 72%);
  pointer-events: none;
}

.org-hero-main,
.org-hero-side {
  position: relative;
  z-index: 1;
}

.org-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(50, 132, 233, 0.1);
  color: #2776d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.org-hero-eyebrow i {
  font-size: 14px;
}

.org-page-hero h1 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.2;
  color: #183f69;
}

.org-page-hero p {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.9;
  color: #59708f;
}

.org-hero-tags {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.org-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(203, 223, 246, 0.95);
  color: #40658f;
  font-size: 13px;
  font-weight: 700;
}

.org-hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.org-hero-stat {
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(206, 223, 244, 0.96);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(48, 103, 171, 0.08);
}

.org-hero-stat strong {
  display: block;
  color: #1d66cc;
  font-size: 24px;
  line-height: 1.1;
}

.org-hero-stat span {
  display: block;
  margin-top: 8px;
  color: #607898;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

body[data-page='org'] .board {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  border: 0;
  border-radius: 26px;
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 86% 20%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

body[data-page='org'] .board::before {
  content: '';
  position: absolute;
  left: -20px;
  bottom: -34px;
  width: 214px;
  height: 126px;
  border-radius: 44px;
  background:
    repeating-linear-gradient(135deg, rgba(123, 184, 255, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(123, 184, 255, 0.12), rgba(123, 184, 255, 0.02));
  pointer-events: none;
}

body[data-page='org'] .board-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 0;
}

body[data-page='org'] .board-head::after {
  content: '';
  position: absolute;
  left: 176px;
  right: 0;
  top: 22px;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.24), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.42) 0 5px, transparent 5px 10px);
}

body[data-page='org'] .board-head h2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-right: 18px;
  padding-left: 0;
  font-size: 20px;
  color: #1b2430;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

body[data-page='org'] .board-head h2::before {
  display: none;
}

body[data-page='org'] .board-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='org'] .board-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

.org-section-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='org'] .board-tip {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 14px;
  font-weight: 700;
  color: #89a4c6;
}

.org-top-tabs {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  gap: 10px;
}

body[data-page='org'] .org-top-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 218, 241, 0.92);
  background: rgba(255, 255, 255, 0.82);
  color: #587190;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body[data-page='org'] .org-top-tabs button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2d8cf2, #4eadff);
  box-shadow: 0 10px 20px rgba(27, 136, 246, 0.18);
}

body[data-page='org'] .org-panel {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: transparent;
}

.org-agency-layout {
  --org-pane-height: clamp(460px, calc(100vh - 320px), 760px);
  align-items: stretch;
  grid-template-columns: 228px 1fr;
  gap: 0;
}

body[data-page='org'] .org-agency-layout .side-tabs {
  position: relative;
  min-height: var(--org-pane-height);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #2e89ef 0%, #4a9dff 50%, #5baeff 100%);
  padding: 18px 18px 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

body[data-page='org'] .org-agency-layout .side-tabs::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(23, 85, 191, 0.24)),
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2px) 0 0 / 16px 16px;
  opacity: 0.7;
  pointer-events: none;
}

body[data-page='org'] .org-agency-layout .side-tabs::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 18px calc(100% - 86px) / 28px 72px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) 52px calc(100% - 104px) / 34px 90px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 92px calc(100% - 74px) / 20px 58px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) 118px calc(100% - 98px) / 42px 86px no-repeat,
    radial-gradient(circle at 132px calc(100% - 124px), rgba(255, 255, 255, 0.12) 0 14px, transparent 15px),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(16, 82, 192, 0.28));
  opacity: 0.72;
  pointer-events: none;
}

body[data-page='org'] .org-agency-layout .side-tabs button {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

body[data-page='org'] .org-agency-layout .side-tabs button.active {
  color: #1b76e4;
  border-color: rgba(255,255,255,0.82);
  background: #fff;
  box-shadow: 0 10px 20px rgba(30, 102, 199, 0.18);
}

.org-agency-panel {
  min-height: var(--org-pane-height);
  border: 0;
  border-radius: 0 20px 20px 0;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(214, 230, 249, 0.9);
}

.org-section-head {
  margin-bottom: 14px;
  padding: 0 4px;
}

.org-section-head strong {
  display: block;
  color: #20476f;
  font-size: 20px;
  line-height: 1.2;
}

.org-section-head p {
  margin: 6px 0 0;
  color: #6c84a2;
  font-size: 14px;
  line-height: 1.75;
}

.star-section-head {
  margin-bottom: 16px;
}

body[data-page='org'] .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page='org'] .news-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 182px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, #f6f8fa 0%, #eef2f5 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body[data-page='org'] .org-item {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(196, 218, 243, 0.94);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.95) 100%);
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body[data-page='org'] .org-item:hover {
  transform: translateY(-4px);
  border-color: #c7dcf6;
  box-shadow: 0 16px 30px rgba(41, 97, 165, 0.1);
}

body[data-page='org'] .org-item .copy {
  padding: 14px 16px 16px;
}

body[data-page='org'] .org-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  color: #234a73;
}

body[data-page='org'] .org-item p {
  margin: 8px 0 0;
  min-height: 44px;
  font-size: 13px;
  line-height: 1.8;
  color: #6880a0;
}

body[data-page='org'] .org-float-logo {
  right: 30px;
  bottom: -17px;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  background-color: #eef4fb;
  box-shadow: 0 8px 14px rgba(22, 40, 67, 0.12);
  z-index: 6;
}

body[data-page='org'] .star-showcase-panel {
  padding: 18px 18px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(214, 230, 249, 0.9);
}

body[data-page='org'] .star-person-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body[data-page='org'] .star-person-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(194, 219, 246, 0.92);
  border-radius: 22px;
  text-align: center;
  padding: 16px 12px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.96) 100%);
  box-shadow: 0 16px 30px rgba(64, 124, 191, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body[data-page='org'] .star-person-card::before {
  content: '';
  position: absolute;
  right: -24px;
  top: -26px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 188, 255, 0.2) 0%, rgba(131, 188, 255, 0.05) 60%, rgba(131, 188, 255, 0) 72%);
  pointer-events: none;
}

body[data-page='org'] .star-person-card:hover {
  transform: translateY(-4px);
  border-color: #c9def6;
  box-shadow: 0 18px 34px rgba(41, 97, 165, 0.14);
}

body[data-page='org'] .star-person-avatar-link {
  width: 114px;
}

body[data-page='org'] .star-person-avatar {
  width: 114px;
  height: 152px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

body[data-page='org'] .star-person-name {
  margin-top: 12px;
  font-size: 16px;
  color: #284f80;
}

body[data-page='org'] .star-person-service {
  margin-top: 6px;
  color: #4c6f98;
  font-weight: 700;
}

body[data-page='org'] .star-person-company {
  margin-top: 4px;
  line-height: 1.55;
  color: #7488a3;
}

body[data-page='org'] .jump {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d3e3f7;
  border-radius: 999px;
  color: #2778d6;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body[data-page='org'] .jump:hover {
  transform: translateY(-1px);
  border-color: #bfd8f7;
  box-shadow: 0 8px 16px rgba(41, 97, 165, 0.1);
}

body[data-page='org'] .pager {
  margin-top: 18px;
  gap: 8px;
}

body[data-page='org'] .pager button {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  border-color: #d3e3f7;
  color: #4d678b;
}

body[data-page='org'] .pager .pager-text {
  color: #6982a3;
}

body[data-page='about'] .page-main,
body[data-page='contact'] .page-main,
body[data-page='policy'] .page-main,
body[data-page='map'] .page-main,
body[data-page='query-worker'] .page-main,
body[data-page='query-certificate'] .page-main {
  padding: 14px 0 22px;
}

.simple-page-hero,
.policy-page-hero,
.map-page-hero,
.query-page-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 14% 12%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 26%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

.simple-page-hero::before,
.policy-page-hero::before,
.map-page-hero::before,
.query-page-hero::before {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -36px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

.simple-page-hero::after,
.policy-page-hero::after,
.map-page-hero::after,
.query-page-hero::after {
  content: '';
  position: absolute;
  right: -64px;
  top: -54px;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 220, 255, 0.34) 0%, rgba(175, 220, 255, 0.08) 56%, rgba(175, 220, 255, 0) 72%);
  pointer-events: none;
}

.simple-page-hero h1,
.policy-page-hero h1,
.map-page-hero h1,
.query-page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #183f69;
  font-size: 32px;
  line-height: 1.2;
}

.simple-page-hero p,
.policy-page-hero p,
.map-page-hero p,
.query-page-hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  max-width: 820px;
  color: #59708f;
  font-size: 15px;
  line-height: 1.9;
}

.simple-content-board,
body[data-page='policy'] .board,
body[data-page='map'] .board,
body[data-page='query-worker'] .board,
body[data-page='query-certificate'] .board {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  border: 0;
  border-radius: 26px;
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 86% 20%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

.simple-content-board::before,
body[data-page='policy'] .board::before,
body[data-page='map'] .board::before,
body[data-page='query-worker'] .board::before,
body[data-page='query-certificate'] .board::before {
  content: '';
  position: absolute;
  left: -20px;
  bottom: -34px;
  width: 214px;
  height: 126px;
  border-radius: 44px;
  background:
    repeating-linear-gradient(135deg, rgba(123, 184, 255, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(123, 184, 255, 0.12), rgba(123, 184, 255, 0.02));
  pointer-events: none;
}

.simple-content-board .article-content,
.simple-content-article {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 230, 249, 0.9);
  padding: 22px 24px;
}

body[data-page='policy'] .board-head,
body[data-page='map'] .board-head,
body[data-page='query-worker'] .board-head,
body[data-page='query-certificate'] .board-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 0;
}

body[data-page='policy'] .board-head::after,
body[data-page='map'] .board-head::after,
body[data-page='query-worker'] .board-head::after,
body[data-page='query-certificate'] .board-head::after {
  content: '';
  position: absolute;
  left: 158px;
  right: 0;
  top: 22px;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.24), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.42) 0 5px, transparent 5px 10px);
}

body[data-page='policy'] .board-head h2,
body[data-page='map'] .board-head h2,
body[data-page='query-worker'] .board-head h2,
body[data-page='query-certificate'] .board-head h2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-right: 18px;
  padding-left: 0;
  font-size: 20px;
  color: #1b2430;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

body[data-page='policy'] .board-head h2::before,
body[data-page='map'] .board-head h2::before,
body[data-page='query-worker'] .board-head h2::before,
body[data-page='query-certificate'] .board-head h2::before {
  display: none;
}

body[data-page='policy'] .board-head h2 span,
body[data-page='map'] .board-head h2 span,
body[data-page='query-worker'] .board-head h2 span,
body[data-page='query-certificate'] .board-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='policy'] .board-head h2 span::after,
body[data-page='map'] .board-head h2 span::after,
body[data-page='query-worker'] .board-head h2 span::after,
body[data-page='query-certificate'] .board-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

body[data-page='policy'] .board-tip,
body[data-page='map'] .board-tip,
body[data-page='query-worker'] .board-tip,
body[data-page='query-certificate'] .board-tip {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 14px;
  font-weight: 700;
  color: #89a4c6;
}

.policy-section-icon,
.map-section-icon,
.query-section-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='policy'] .policy-top-tabs,
body[data-page='policy'] .policy-sub-tabs {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

body[data-page='policy'] .policy-top-tabs button,
body[data-page='policy'] .policy-sub-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 218, 241, 0.92);
  background: rgba(255, 255, 255, 0.82);
  color: #587190;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body[data-page='policy'] .policy-top-tabs button.active,
body[data-page='policy'] .policy-sub-tabs button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2d8cf2, #4eadff);
  box-shadow: 0 10px 20px rgba(27, 136, 246, 0.18);
}

body[data-page='policy'] .news-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page='policy'] .policy-news-item {
  overflow: hidden;
  border: 1px solid rgba(196, 218, 243, 0.94);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.95) 100%);
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body[data-page='policy'] .policy-news-item:hover {
  transform: translateY(-4px);
  border-color: #c7dcf6;
  box-shadow: 0 16px 30px rgba(41, 97, 165, 0.1);
}

body[data-page='policy'] .policy-news-item .copy {
  padding: 14px 16px 16px;
}

body[data-page='policy'] .policy-news-item .news-cover {
  min-height: 188px;
  border-radius: 0;
}

body[data-page='policy'] .policy-title-link {
  color: #234a73;
  font-size: 17px;
  line-height: 1.45;
}

body[data-page='policy'] .policy-news-item p {
  color: #6880a0;
  line-height: 1.8;
}

body[data-page='policy'] .policy-news-item .meta {
  color: #8aa0bc;
}

body[data-page='map'] .map-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.picker-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -2px 0 10px;
  padding: 14px 16px;
  border: 1px solid #d7e7fa;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.picker-selected {
  color: #4b6386;
  font-size: 13px;
  line-height: 1.8;
}

.picker-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.picker-confirm,
.picker-close,
.map-load-more {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.picker-confirm {
  border: 0;
  background: linear-gradient(135deg, #2d8cf2, #4eadff);
  color: #fff;
  box-shadow: 0 10px 20px rgba(27, 136, 246, 0.18);
}

.picker-close,
.map-load-more {
  border: 1px solid #bfd9f9;
  background: #f2f8ff;
  color: #2d7fdf;
}

.map-location-text {
  margin: -2px 0 10px;
  color: #577397;
  font-size: 13px;
}

body[data-page='map'] .map-meta-bar {
  position: relative;
  z-index: 1;
}

body[data-page='map'] .map-box {
  border: 1px solid rgba(196, 218, 243, 0.94);
  border-radius: 20px;
  background: #edf4fd;
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
}

body[data-page='map'] .demand-panel {
  border: 1px solid rgba(196, 218, 243, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
  padding: 18px;
}

body[data-page='map'] .demand-panel strong {
  display: block;
  color: #20476f;
  font-size: 20px;
}

body[data-page='map'] .demand-list {
  margin-top: 12px;
}

body[data-page='map'] .demand-list li {
  border-radius: 16px;
  border: 1px solid #dbe7f6;
  background: #f8fbff;
  padding: 14px 14px 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body[data-page='map'] .demand-list li.active,
body[data-page='map'] .demand-list li:hover {
  transform: translateY(-1px);
  border-color: #c7dcf6;
  box-shadow: 0 10px 20px rgba(41, 97, 165, 0.08);
}

body[data-page='map'] .demand-list h4 {
  color: #234a73;
}

body[data-page='map'] .demand-list p {
  color: #6880a0;
}

body[data-page='map'] .demand-list button {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d3e3f7;
  background: #fff;
  color: #2778d6;
  font-size: 12px;
  font-weight: 700;
}

.map-qrcode-modal {
  width: 520px;
  border-radius: 22px;
}

.map-qrcode-desc {
  margin: 0 0 16px;
  color: #637d9f;
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
}

.map-qrcode-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.map-qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.map-qrcode-item strong {
  font-size: 14px;
  color: #2a4266;
}

.map-qrcode-item span {
  font-size: 12px;
  color: #6d85a3;
}

.map-qrcode-foot {
  justify-content: center;
}

body[data-page='query-worker'] .query-box,
body[data-page='query-certificate'] .query-box {
  position: relative;
  z-index: 1;
}

body[data-page='query-worker'] .query-form,
body[data-page='query-certificate'] .query-form {
  border: 1px solid rgba(202, 222, 244, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-shadow: 0 14px 28px rgba(48, 103, 171, 0.06);
}

body[data-page='query-worker'] .query-form input,
body[data-page='query-worker'] .query-form select,
body[data-page='query-certificate'] .query-form input,
body[data-page='query-certificate'] .query-form select {
  border-radius: 12px;
  background: #f8fbff;
  padding: 12px 14px;
  color: #24486f;
}

body[data-page='query-worker'] .query-form input:focus,
body[data-page='query-worker'] .query-form select:focus,
body[data-page='query-certificate'] .query-form input:focus,
body[data-page='query-certificate'] .query-form select:focus {
  border-color: #86b8ee;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 121, 232, 0.12);
}

body[data-page='query-worker'] .query-result,
body[data-page='query-certificate'] .query-result {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(202, 222, 244, 0.96);
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(41, 97, 165, 0.06);
}

body[data-page='query-worker'] .query-result h3,
body[data-page='query-certificate'] .certificate-result-head h3 {
  color: #20476f;
}

body[data-page='query-worker'] .query-grid p {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e3edf9;
}

body[data-page='query-worker'] .cert-list {
  margin-top: 14px;
}

body[data-page='query-worker'] .cert-item {
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #dbe6f5;
  padding: 14px 16px;
}

body[data-page='org-detail'] .page-main {
  padding-top: 12px;
}

body[data-page='resume'] .page-main {
  padding-top: 14px;
}

.resume-page-hero {
  padding: 18px 20px;
}

.resume-guide-board {
  margin-top: 12px;
  border: 1px solid #dbe7f6;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(115, 186, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #eef5ff 100%);
  overflow: hidden;
}

.resume-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 22px;
}

.resume-guide-main {
  min-width: 0;
}

.resume-guide-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 125, 229, 0.1);
  color: #2b73ca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.resume-guide-main h2 {
  margin: 14px 0 10px;
  color: #183f69;
  font-size: 28px;
  line-height: 1.25;
}

.resume-guide-summary {
  margin: 0;
  max-width: 720px;
  color: #58708f;
  font-size: 14px;
  line-height: 1.9;
}

.resume-guide-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resume-guide-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resume-step-card {
  min-width: 0;
  padding: 16px 16px 15px;
  border-radius: 14px;
  border: 1px solid #dbe6f5;
  background: rgba(255, 255, 255, 0.92);
}

.resume-step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #edf5ff;
  color: #2b72c8;
  font-size: 14px;
}

.resume-step-card h3 {
  margin: 12px 0 8px;
  color: #204970;
  font-size: 17px;
}

.resume-step-card p {
  margin: 0;
  color: #617997;
  font-size: 13px;
  line-height: 1.75;
}

.resume-guide-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resume-qrcode-card,
.resume-note-card {
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
}

.resume-qrcode-card {
  text-align: center;
}

.resume-qrcode-image {
  width: 168px;
  height: 168px;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
  border-radius: 14px;
  border: 1px solid #d6e4f6;
  background: #fff;
}

.resume-qrcode-card h3,
.resume-note-card h3 {
  margin: 0;
  color: #20466f;
  font-size: 18px;
}

.resume-qrcode-card p {
  margin: 8px 0 0;
  color: #6c82a0;
  font-size: 13px;
  line-height: 1.7;
}

.resume-note-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5e7694;
  font-size: 13px;
  line-height: 1.9;
}

.detail-page-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  background: #fff;
}

.detail-page-hero h1 {
  margin-bottom: 6px;
  font-size: 24px;
}

.detail-page-hero p {
  font-size: 13px;
  line-height: 1.7;
}

.detail-page-hero::after {
  content: '';
  position: absolute;
  right: -48px;
  top: -52px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 154, 255, 0.12) 0%, rgba(72, 154, 255, 0.01) 62%, transparent 72%);
  pointer-events: none;
}

.detail-showcase-board {
  margin-top: 10px;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.detail-showcase {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.detail-media-panel {
  position: relative;
  padding-bottom: 40px;
}

.detail-cover {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeafb, #eff5fd);
  box-shadow: none;
}

.detail-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
}

.detail-cover::after {
  content: '';
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(180deg, transparent, rgba(2, 19, 44, 0.18));
}

.detail-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: none;
}

.detail-avatar-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dce7f5;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.detail-avatar-shell {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #2b72c8, #8cc2ff);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.detail-avatar-shell img,
.detail-avatar-fallback {
  width: 100%;
  height: 100%;
}

.detail-avatar-shell img {
  object-fit: cover;
  display: none;
}

.detail-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-avatar-note {
  margin: 0;
  color: #4d6486;
  font-size: 12px;
  line-height: 1.7;
}

.detail-main-panel {
  min-width: 0;
  padding: 2px 0 0;
}

.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(29, 130, 246, 0.1);
  color: #2777d5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-headline {
  margin: 12px 0 8px;
  font-size: 26px;
  line-height: 1.25;
  color: #173b63;
}

.detail-summary {
  margin: 0;
  max-width: 620px;
  color: #54708f;
  font-size: 13px;
  line-height: 1.75;
}

.detail-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.detail-badge-1 {
  color: #1f73d2;
  background: rgba(34, 125, 229, 0.12);
}

.detail-badge-2 {
  color: #17786d;
  background: rgba(29, 175, 141, 0.12);
}

.detail-badge-3 {
  color: #8c5a13;
  background: rgba(238, 180, 70, 0.18);
}

.detail-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-stat-card {
  padding: 12px 12px 11px;
  border-radius: 12px;
  border: 1px solid #dce7f5;
  background: #f8fbff;
  box-shadow: none;
}

.detail-stat-card strong {
  display: block;
  font-size: 21px;
  color: #163e6c;
  line-height: 1.15;
}

.detail-stat-card span {
  display: block;
  margin-top: 6px;
  color: #3f6089;
  font-size: 12px;
  font-weight: 700;
}

.detail-stat-card p {
  margin: 5px 0 0;
  color: #7891b0;
  font-size: 11px;
  line-height: 1.5;
}

.detail-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-booking-btn {
  min-width: 124px;
  min-height: 36px;
  font-size: 13px;
}

.detail-back-btn {
  min-width: 112px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 13px;
}

.detail-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 14px;
  align-items: start;
}

.detail-main-column,
.detail-side-column {
  min-width: 0;
}

.detail-card,
.detail-side-card {
  border: 1px solid #dde8f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.detail-card + .detail-card,
.detail-side-card + .detail-side-card {
  margin-top: 12px;
}

.detail-card {
  padding: 16px;
}

.detail-side-card {
  padding: 15px 14px;
}

.detail-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-card-head h3 {
  margin: 0;
  font-size: 16px;
  color: #1a406e;
}

.detail-card-head span {
  font-size: 10px;
  color: #89a0bc;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-rich-text p {
  margin: 0;
  color: #566f8e;
  font-size: 13px;
  line-height: 1.8;
}

.detail-rich-text p + p {
  margin-top: 8px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-info-item {
  min-width: 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e3ebf6;
  background: #fafcff;
}

.detail-info-label {
  display: block;
  color: #7d93ae;
  font-size: 11px;
  line-height: 1.5;
}

.detail-info-value {
  display: block;
  margin-top: 5px;
  color: #21466f;
  font-size: 13px;
  line-height: 1.65;
  word-break: break-word;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid #d8e4f3;
  color: #2c6cb4;
  background: #f7fbff;
  font-size: 12px;
  font-weight: 600;
}

.detail-tag-empty {
  color: #6884a7;
}

.detail-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-service-card {
  min-width: 0;
  padding: 14px 14px 13px;
  border-radius: 12px;
  border: 1px solid #dce7f4;
  background: #fbfdff;
}

.detail-service-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(34, 125, 229, 0.1);
  color: #2a74cb;
  font-size: 11px;
  font-weight: 700;
}

.detail-service-card h4 {
  margin: 10px 0 6px;
  color: #1a416f;
  font-size: 15px;
}

.detail-service-card p {
  margin: 0;
  color: #587391;
  font-size: 12px;
  line-height: 1.65;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-gallery-item {
  height: 128px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e8fb, #edf4fd);
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.detail-list-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: #4d99f2;
  box-shadow: none;
}

.detail-list-item p,
.detail-list-empty {
  margin: 0;
  color: #597391;
  font-size: 13px;
  line-height: 1.7;
}

.detail-contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-contact-row {
  padding: 11px 12px 10px;
  border-radius: 10px;
  background: #fafcff;
  border: 1px solid #dfe8f4;
}

.detail-contact-label {
  display: block;
  color: #7c92ae;
  font-size: 11px;
  line-height: 1.5;
}

.detail-contact-value {
  display: block;
  margin-top: 4px;
  color: #21456e;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

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

.news-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 10px;
  overflow: hidden;
}

.news-item .news-cover {
  height: 100%;
  border-radius: 0;
}

.policy-news-item {
  min-height: 150px;
  grid-template-columns: 190px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dce8f8;
}

.policy-cover-link {
  display: block;
  width: 174px;
  height: 124px;
  overflow: hidden;
  border-radius: 6px;
  margin: 4px;
  border: 1px solid #e0e6ed;
  background: #f5f7fa;
}

.policy-news-item .news-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.policy-title-link {
  color: #355a88;
}

.policy-title-link:hover {
  color: var(--blue);
}

.article-cover.news-cover {
  width: 720px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid #e0e6ed;
  background: linear-gradient(135deg, #e8edf2, #f6f8fa);
}

.article-content {
  margin-top: 16px;
  color: #415b80;
  font-size: 15px;
  line-height: 1.95;
  word-break: break-word;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content > *:last-child {
  margin-bottom: 0;
}

.article-content p {
  margin: 12px 0;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 18px 0 10px;
  color: #26415c;
  font-weight: 700;
  line-height: 1.45;
}

.article-content h1 {
  font-size: 28px;
}

.article-content h2 {
  font-size: 24px;
}

.article-content h3 {
  font-size: 20px;
}

.article-content h4 {
  font-size: 17px;
}

.article-content ul,
.article-content ol {
  margin: 12px 0;
  padding-left: 22px;
}

.article-content li {
  margin: 7px 0;
}

.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px auto;
  border-radius: 6px;
  border: 1px solid #e0e6ed;
  background: #f5f7fa;
}

.article-content blockquote {
  margin: 14px 0;
  padding: 10px 14px;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: #f7f9fb;
  color: #50657d;
}

.article-content hr {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid #d8e1ec;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.7;
}

.article-content th,
.article-content td {
  border: 1px solid #e0e6ed;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.article-content pre,
.article-content code {
  font-family: Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}

.article-content pre {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  background: #f7f9fb;
  overflow: auto;
}

.article-content code {
  background: #f2f4f7;
  border-radius: 4px;
  padding: 0 4px;
}

body[data-page='article-detail'] .page-hero,
body[data-page='article-detail'] .board {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page='article-detail'] .page-hero {
  padding: 24px 30px;
}

body[data-page='article-detail'] .board {
  padding: 24px 30px 30px;
}

body[data-page='article-detail'] .article-content {
  max-width: 760px;
  margin: 22px auto 0;
  color: #3e526b;
  font-size: 16px;
  line-height: 2;
}

.news-item .meta {
  margin-top: 8px;
  font-size: 12px;
  color: #7e94b4;
}

.news-item .jump,
.jump {
  margin-top: 10px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #d3dbe5;
  color: var(--blue);
  background: #fff;
  padding: 4px 10px;
  font-size: 12px;
}

.pager {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pager button {
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #d3dbe5;
  border-radius: 8px;
  background: #fff;
  color: #4d678b;
  font-size: 13px;
  cursor: pointer;
}

.pager button.active {
  border-color: transparent;
  background: linear-gradient(135deg, #1b88f6, #4eadff);
  color: #fff;
}

.pager button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.pager .pager-text {
  font-size: 12px;
  color: #6982a3;
  margin-left: 6px;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 12px;
}

.map-meta-bar {
  margin: -2px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #587196;
  font-size: 12px;
}

.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.map-legend-dot-employer {
  background: #2d7fdf;
}

.map-legend-dot-freelance {
  background: #25a56a;
}

.map-legend-dot-fallback {
  background: #f0a020;
}

.map-summary {
  flex-shrink: 0;
  color: #6480a3;
  font-size: 12px;
  text-align: right;
}

.map-box {
  border: 1px solid #d8e7fa;
  border-radius: 10px;
  background: #edf4fd;
  height: 620px;
  position: relative;
  overflow: hidden;
}

.amap-container {
  width: 100%;
  height: 100%;
}

.amap-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  color: #587196;
  font-size: 14px;
  line-height: 1.8;
  background: linear-gradient(135deg, #dbeeff, #f2f8ff);
}

.amap-info-card {
  min-width: 240px;
  max-width: 280px;
  padding: 2px;
}

.amap-info-card h4 {
  margin: 0;
  font-size: 14px;
  color: #2d4f7f;
}

.amap-info-card p {
  margin: 8px 0 10px;
  font-size: 12px;
  color: #60799a;
  line-height: 1.6;
  white-space: pre-line;
}

.amap-info-card .take-btn {
  border: 1px solid #b9d6fb;
  border-radius: 999px;
  color: #2d7fdf;
  background: #f2f8ff;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
}

.amap-order-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 14px rgba(34, 61, 95, 0.22);
  position: relative;
}

.amap-order-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  margin-top: -14px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
}

.amap-order-marker-employer {
  color: #2d7fdf;
}

.amap-order-marker-freelance {
  color: #25a56a;
}

.amap-order-marker-fallback {
  color: #f0a020;
}

.amap-current-marker {
  position: relative;
  width: 20px;
  height: 20px;
}

.amap-current-dot,
.amap-current-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.amap-current-dot {
  width: 14px;
  height: 14px;
  background: #f25d4d;
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(242, 93, 77, 0.28);
  z-index: 2;
}

.amap-current-pulse {
  width: 20px;
  height: 20px;
  background: rgba(242, 93, 77, 0.22);
  animation: amapCurrentPulse 1.8s ease-out infinite;
}

@keyframes amapCurrentPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.78;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}

.map-qrcode-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  border-radius: 12px;
  border: 1px solid #d7e6f8;
  background: #fff;
  box-shadow: 0 8px 18px rgba(34, 89, 154, 0.08);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 60px 60px;
}

.map-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  background: #ff4c4c;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  appearance: none;
}

.map-marker.active {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.map-popup {
  position: absolute;
  min-width: 240px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d6e5f7;
  box-shadow: 0 10px 18px rgba(30, 90, 175, 0.14);
  padding: 10px;
  display: none;
}

.map-popup.active {
  display: block;
}

.map-popup h4 {
  margin: 0;
  font-size: 14px;
}

.map-popup p {
  margin: 6px 0;
  font-size: 12px;
  color: #617a9b;
}

.map-popup .take-btn {
  border: 1px solid #b9d6fb;
  border-radius: 999px;
  color: #2d7fdf;
  background: #f2f8ff;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
}

.demand-panel {
  border: 1px solid #d9e7f9;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
  height: 620px;
  display: flex;
  flex-direction: column;
}

.demand-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demand-list li {
  border: 1px solid #dbe9fa;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.demand-list li.active {
  border-color: #97c8fb;
  box-shadow: 0 6px 14px rgba(39, 112, 201, 0.12);
}

.demand-list h4 {
  margin: 0;
  font-size: 14px;
}

.demand-list p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #677f9f;
}

.demand-list .row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demand-list button {
  border: 1px solid #b9d6fb;
  border-radius: 999px;
  color: #2d7fdf;
  background: #f2f8ff;
  font-size: 12px;
  padding: 3px 9px;
  cursor: pointer;
}

.query-box {
  max-width: 760px;
}

.query-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.query-form input,
.query-form select,
.modal-body select,
.modal-body input,
.modal-body textarea {
  border: 1px solid #d7e6f8;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  padding: 10px 11px;
  outline: none;
}

.query-form button,
.primary-btn {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #1b88f6, #4eadff);
  color: #fff;
  padding: 0 18px;
  min-height: 40px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(27, 136, 246, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.query-form button:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(27, 136, 246, 0.24);
}

.query-form button:disabled,
.primary-btn:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.query-result {
  margin-top: 12px;
  padding: 12px;
}

.query-result h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.certificate-result {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d7e6f8;
  background: linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
  box-shadow: 0 10px 24px rgba(27, 93, 175, 0.06);
}

.certificate-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4eefb;
}

.certificate-result-head h3 {
  margin: 0;
  font-size: 22px;
  color: #24466f;
}

.certificate-result-head p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #6784a8;
}

.certificate-result-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #1f82ea;
  font-size: 13px;
  font-weight: 700;
}

.certificate-worker-card {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.certificate-worker-cell {
  min-height: 82px;
  border: 1px solid #dce9fa;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.certificate-worker-label {
  display: block;
  font-size: 12px;
  color: #7a93b4;
}

.certificate-worker-value {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #28496f;
  word-break: break-all;
}

.skill-page-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(5, 1fr);
  gap: 12px;
}

.skill-page-main,
.skill-page-card {
  border-radius: 14px;
  border: 1px solid #d9e8fa;
  box-shadow: 0 8px 18px rgba(35, 102, 188, 0.12);
  overflow: hidden;
}

.skill-page-main {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #dff1ff 0%, #badfff 100%);
}

.skill-page-main-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-page-main-head i {
  color: #2289f1;
  font-size: 28px;
}

.skill-page-main-head h3 {
  margin: 0;
  font-size: 27px;
  color: #1b8ceb;
}

.skill-page-main h4 {
  margin: 10px 0 8px;
  color: #1888e6;
  font-size: 24px;
}

.skill-page-main p {
  margin: 10px 0 0;
  color: #617ca0;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.skill-page-main p i {
  font-size: 13px;
  color: #3a9bf4;
}

.skill-page-main-btn {
  margin-top: auto;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 18px;
  background: linear-gradient(135deg, #2f9cf8, #1e84ed);
}

.skill-page-card {
  display: block;
  position: relative;
  padding: 16px 12px 14px;
  min-height: 240px;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.skill-page-card.link {
  text-decoration: none;
}

.skill-page-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16px 20px, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 48px 48px, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.skill-page-card > * {
  position: relative;
  z-index: 1;
}

.skill-page-card i {
  font-size: 34px;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.skill-page-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.skill-page-card p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.skill-page-card span {
  margin-top: 20px;
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
}

.skill-page-card.c1 {
  background: linear-gradient(145deg, #82a5ff 0%, #86b8ff 100%);
}

.skill-page-card.c2 {
  background: linear-gradient(145deg, #ffb36f 0%, #f9c367 100%);
}

.skill-page-card.c3 {
  background: linear-gradient(145deg, #4cb8ff 0%, #63d0ff 100%);
}

.skill-page-card.c4 {
  background: linear-gradient(145deg, #61d8b2 0%, #82e2b6 100%);
}

.skill-page-card.c5 {
  background: linear-gradient(145deg, #8a98f7 0%, #9ba8ff 100%);
}

.skill-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.skill-note-grid article {
  border: 1px solid #dce9f9;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
}

.skill-note-grid h3 {
  margin: 0;
  font-size: 16px;
  color: #335c8c;
}

.skill-note-grid p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5f789a;
}

.query-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.query-grid p {
  margin: 0;
  font-size: 13px;
  color: #4f688b;
}

.cert-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-item {
  border: 1px solid #d7e6f8;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(25, 83, 154, 0.05);
}

.cert-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cert-item-head h4 {
  margin: 0;
  font-size: 18px;
  color: #23466f;
}

.cert-item-head p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #6b86a8;
}

.cert-tag-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.cert-tag.is-valid {
  background: #eaf8ef;
  color: #2f8f55;
}

.cert-tag.is-invalid {
  background: #fff1f0;
  color: #d45252;
}

.cert-tag.is-verified {
  background: #eaf3ff;
  color: #2477d6;
}

.cert-tag.is-pending {
  background: #fff7e8;
  color: #b97713;
}

.cert-meta-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cert-meta-item {
  min-height: 74px;
  border-radius: 10px;
  background: #f7fbff;
  border: 1px solid #e3edf9;
  padding: 12px 14px;
}

.cert-meta-label {
  display: block;
  font-size: 12px;
  color: #7a93b4;
}

.cert-meta-value {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #34567f;
  word-break: break-word;
}

.certificate-empty {
  border: 1px dashed #d2e2f7;
  border-radius: 12px;
  background: #f8fbff;
  padding: 20px 18px;
  text-align: center;
  color: #6683a6;
  font-size: 14px;
  line-height: 1.8;
}

.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(9, 29, 56, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.modal-mask.active {
  display: flex;
}

.modal {
  width: 460px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d6e4f7;
  box-shadow: 0 14px 28px rgba(18, 54, 97, 0.22);
  overflow: hidden;
}

.modal-head {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3ecf9;
}

.modal-head h3 {
  margin: 0;
  font-size: 16px;
}

.modal-close {
  border: 0;
  background: transparent;
  color: #6b84a5;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}

.modal-body {
  padding: 12px 14px 14px;
}

.modal-body .form-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-region-row {
  display: flex;
  gap: 8px;
}

.booking-region-row select {
  flex: 1 1 0;
  min-width: 0;
}

.modal-body textarea {
  min-height: 88px;
  resize: vertical;
}

.modal-body select {
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #7c96b7 50%),
    linear-gradient(135deg, #7c96b7 50%, transparent 50%),
    linear-gradient(to right, #fff, #fff);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 100%;
  background-repeat: no-repeat;
}

.modal-foot {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.ghost-btn {
  border: 1px solid #d6e5f8;
  border-radius: 8px;
  background: #fff;
  color: #4b6386;
  padding: 0 15px;
  height: 34px;
  cursor: pointer;
}

body[data-page='booking'] .modal {
  width: 520px;
  border-radius: 22px;
  border: 1px solid #d6e4f7;
  box-shadow: 0 22px 48px rgba(18, 54, 97, 0.24);
}

body[data-page='booking'] .modal-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e6eef9;
}

body[data-page='booking'] .modal-head h3 {
  font-size: 20px;
  color: #1d4067;
}

body[data-page='booking'] .modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf4fb;
  color: #45698f;
  font-size: 22px;
}

body[data-page='booking'] .modal-body {
  padding: 16px 20px 20px;
}

body[data-page='booking'] .modal-body .form-grid {
  gap: 10px;
}

body[data-page='booking'] .booking-service-combobox {
  position: relative;
}

body[data-page='booking'] .booking-service-combobox input {
  width: 100%;
  padding-right: 46px;
}

body[data-page='booking'] .booking-service-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6d86a7;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body[data-page='booking'] .booking-service-toggle:hover {
  background: rgba(22, 121, 232, 0.08);
  color: #1679e8;
}

body[data-page='booking'] .booking-service-combobox.active .booking-service-toggle {
  transform: translateY(-50%) rotate(180deg);
}

body[data-page='booking'] .booking-service-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  display: none;
  max-height: 220px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d7e6f6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(18, 54, 97, 0.16);
  z-index: 30;
}

body[data-page='booking'] .booking-service-combobox.active .booking-service-menu {
  display: block;
}

body[data-page='booking'] .booking-service-option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 10px 12px;
  text-align: left;
  color: #24486f;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

body[data-page='booking'] .booking-service-option:hover {
  background: #eef6ff;
  color: #1679e8;
}

body[data-page='booking'] .booking-service-option.active {
  background: linear-gradient(180deg, #edf6ff 0%, #e4f1ff 100%);
  color: #1679e8;
  font-weight: 700;
}

body[data-page='booking'] .booking-service-empty {
  padding: 10px 12px;
  color: #7391b2;
  font-size: 13px;
  line-height: 1.5;
}

body[data-page='booking'] .modal-body select,
body[data-page='booking'] .modal-body input,
body[data-page='booking'] .modal-body textarea {
  border-radius: 12px;
  background: #f8fbff;
  padding: 12px 14px;
  color: #24486f;
}

body[data-page='booking'] .modal-body select:focus,
body[data-page='booking'] .modal-body input:focus,
body[data-page='booking'] .modal-body textarea:focus {
  border-color: #86b8ee;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 121, 232, 0.12);
}

body[data-page='booking'] .modal-body textarea {
  min-height: 108px;
}

body[data-page='booking'] .modal-foot {
  margin-top: 16px;
  gap: 10px;
}

body[data-page='booking'] .ghost-btn,
body[data-page='booking'] .primary-btn {
  min-width: 118px;
  height: 42px;
  border-radius: 999px;
}

body[data-page='booking'] .ghost-btn {
  border-color: #c9dcf4;
  color: #53759c;
}

.ai-loading-modal {
  width: 420px;
  border-radius: 20px;
  border: 1px solid rgba(126, 186, 255, 0.45);
  background:
    radial-gradient(circle at top, rgba(73, 152, 255, 0.2), transparent 42%),
    linear-gradient(180deg, #081a33 0%, #0b2446 54%, #09172c 100%);
  box-shadow:
    0 22px 54px rgba(6, 21, 43, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: #d9ebff;
  overflow: hidden;
}

.ai-loading-shell {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ai-loading-grid {
  position: absolute;
  inset: auto -15% 0;
  height: 92px;
  background-image:
    linear-gradient(rgba(95, 177, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 177, 255, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: perspective(180px) rotateX(72deg) scale(1.2);
  transform-origin: bottom center;
  opacity: 0.72;
}

.ai-loading-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110, 198, 255, 0.3);
  box-shadow: 0 0 24px rgba(47, 144, 255, 0.15);
}

.ai-loading-orbit-1 {
  width: 196px;
  height: 196px;
  animation: aiOrbitSpin 7s linear infinite;
}

.ai-loading-orbit-2 {
  width: 134px;
  height: 134px;
  border-color: rgba(122, 225, 255, 0.38);
  animation: aiOrbitSpinReverse 4.8s linear infinite;
}

.ai-loading-orbit-1::before,
.ai-loading-orbit-2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: radial-gradient(circle, #dfffff 0%, #76d8ff 58%, rgba(118, 216, 255, 0.2) 100%);
  box-shadow: 0 0 18px rgba(118, 216, 255, 0.9);
  transform: translateY(-98px);
}

.ai-loading-orbit-2::before {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  transform: translateY(-67px);
}

.ai-loading-core {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(133, 226, 255, 0.28) 0%, rgba(34, 103, 198, 0.24) 42%, rgba(8, 26, 51, 0.1) 75%, transparent 100%);
  box-shadow:
    0 0 26px rgba(91, 180, 255, 0.24),
    inset 0 0 26px rgba(98, 181, 255, 0.22);
}

.ai-loading-core-ring,
.ai-loading-core-dot {
  position: absolute;
  border-radius: 50%;
}

.ai-loading-core-ring {
  inset: 12px;
  border: 1px solid rgba(155, 229, 255, 0.62);
  box-shadow: inset 0 0 20px rgba(106, 206, 255, 0.22);
  animation: aiCorePulse 1.9s ease-in-out infinite;
}

.ai-loading-core-dot {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #ffffff 0%, #9fe5ff 55%, #45a6ff 100%);
  box-shadow: 0 0 18px rgba(111, 212, 255, 0.9);
  animation: aiCoreGlow 1.2s ease-in-out infinite alternate;
}

.ai-loading-copy {
  position: relative;
  padding: 0 28px 28px;
  text-align: center;
}

.ai-loading-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 201, 255, 0.6), transparent);
}

.ai-loading-copy h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #ecf7ff;
}

.ai-loading-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(210, 232, 255, 0.82);
}

@keyframes aiOrbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes aiOrbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes aiCorePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes aiCoreGlow {
  from {
    transform: scale(0.88);
    box-shadow: 0 0 14px rgba(111, 212, 255, 0.54);
  }
  to {
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(111, 212, 255, 0.94);
  }
}

.qrcode-box {
  text-align: center;
}

.qrcode {
  width: 140px;
  height: 140px;
  margin: 0 auto 10px;
  border: 1px solid #d7e6f8;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #e8f1ff 25%, transparent 25%, transparent 75%, #e8f1ff 75%),
    linear-gradient(#e8f1ff 25%, transparent 25%, transparent 75%, #e8f1ff 75%),
    #fff;
  background-size: 24px 24px;
}

.footer {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 160, 255, 0.24) 0, rgba(99, 160, 255, 0) 20%),
    radial-gradient(circle at 84% 16%, rgba(93, 198, 255, 0.16) 0, rgba(93, 198, 255, 0) 18%),
    linear-gradient(180deg, #294a73 0%, #1f395a 100%);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 520px;
  gap: 24px;
  color: rgba(233, 242, 255, 0.84);
  font-size: 13px;
  line-height: 1.8;
}

.footer p {
  margin: 0;
}

.footer strong,
.footer span {
  color: inherit;
}

.footer-info strong {
  display: inline-block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.4px;
}

.footer a {
  color: #d9ebff;
}

.footer-info,
.footer-links {
  min-width: 0;
}

.footer-qrs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.qr-block {
  text-align: center;
  color: rgba(240, 247, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 10px 10px;
  box-shadow: 0 12px 24px rgba(10, 26, 46, 0.16);
  backdrop-filter: blur(6px);
}

.qr-box {
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  border-radius: 8px;
  border: 1px solid rgba(231, 241, 255, 0.46);
  object-fit: cover;
}

.qr-block p {
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1280px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-qrs {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-qrs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final shared subpage polish */
body[data-page='about'] .simple-content-board,
body[data-page='contact'] .simple-content-board,
body[data-page='policy'] .policy-page-board,
body[data-page='map'] .map-page-board,
body[data-page='query-worker'] .query-page-board,
body[data-page='query-certificate'] .query-page-board {
  margin-top: 14px;
}

body[data-page='about'] .simple-content-board::after,
body[data-page='contact'] .simple-content-board::after,
body[data-page='policy'] .policy-page-board::after,
body[data-page='map'] .map-page-board::after,
body[data-page='query-worker'] .query-page-board::after,
body[data-page='query-certificate'] .query-page-board::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 134px;
  height: 84px;
  border-radius: 26px;
  border: 1px solid rgba(136, 186, 255, 0.2);
  background:
    radial-gradient(circle at 18px 18px, rgba(111, 182, 255, 0.14) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(111, 182, 255, 0.12), rgba(111, 182, 255, 0.03));
  pointer-events: none;
}

body[data-page='about'] .board-head,
body[data-page='contact'] .board-head,
body[data-page='policy'] .board-head,
body[data-page='map'] .board-head,
body[data-page='query-worker'] .board-head,
body[data-page='query-certificate'] .board-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0;
}

body[data-page='about'] .board-head::after,
body[data-page='contact'] .board-head::after,
body[data-page='policy'] .board-head::after,
body[data-page='map'] .board-head::after,
body[data-page='query-worker'] .board-head::after,
body[data-page='query-certificate'] .board-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.28), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.36) 0 5px, transparent 5px 10px);
}

body[data-page='about'] .board-head h2,
body[data-page='contact'] .board-head h2,
body[data-page='policy'] .board-head h2,
body[data-page='map'] .board-head h2,
body[data-page='query-worker'] .board-head h2,
body[data-page='query-certificate'] .board-head h2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-right: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 20px;
  color: #1b2430;
}

body[data-page='about'] .board-head h2::before,
body[data-page='contact'] .board-head h2::before,
body[data-page='policy'] .board-head h2::before,
body[data-page='map'] .board-head h2::before,
body[data-page='query-worker'] .board-head h2::before,
body[data-page='query-certificate'] .board-head h2::before {
  display: none;
}

body[data-page='about'] .board-head h2 span,
body[data-page='contact'] .board-head h2 span,
body[data-page='policy'] .board-head h2 span,
body[data-page='map'] .board-head h2 span,
body[data-page='query-worker'] .board-head h2 span,
body[data-page='query-certificate'] .board-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='about'] .board-head h2 span::after,
body[data-page='contact'] .board-head h2 span::after,
body[data-page='policy'] .board-head h2 span::after,
body[data-page='map'] .board-head h2 span::after,
body[data-page='query-worker'] .board-head h2 span::after,
body[data-page='query-certificate'] .board-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

body[data-page='about'] .board-tip,
body[data-page='contact'] .board-tip,
body[data-page='policy'] .board-tip,
body[data-page='map'] .board-tip,
body[data-page='query-worker'] .board-tip,
body[data-page='query-certificate'] .board-tip {
  position: relative;
  z-index: 1;
  margin-left: auto;
  padding-left: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #89a4c6;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.simple-section-icon,
.policy-section-icon,
.map-section-icon,
.query-section-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='about'] .simple-content-article,
body[data-page='contact'] .simple-content-article {
  padding: 24px 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page='about'] .simple-content-article > * + *,
body[data-page='contact'] .simple-content-article > * + * {
  margin-top: 14px;
}

body[data-page='about'] .simple-content-article h2,
body[data-page='about'] .simple-content-article h3,
body[data-page='contact'] .simple-content-article h2,
body[data-page='contact'] .simple-content-article h3 {
  margin-bottom: 8px;
  color: #234a73;
}

body[data-page='about'] .simple-content-article ul,
body[data-page='contact'] .simple-content-article ul {
  margin: 12px 0;
  padding-left: 20px;
  color: #57708e;
}

body[data-page='about'] .simple-content-article li,
body[data-page='contact'] .simple-content-article li {
  margin: 8px 0;
}

body[data-page='policy'] .policy-top-tabs,
body[data-page='policy'] .policy-sub-tabs {
  gap: 10px;
}

body[data-page='policy'] .news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page='policy'] .policy-news-item {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 212px;
  gap: 0;
  padding: 8px;
  border-radius: 20px;
}

body[data-page='policy'] .policy-news-item:only-child {
  grid-column: 1 / -1;
}

body[data-page='policy'] .policy-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin: 0;
  border: 1px solid #e2ebf7;
  background:
    linear-gradient(135deg, rgba(160, 205, 255, 0.22), rgba(160, 205, 255, 0.06)),
    #f3f8ff;
}

body[data-page='policy'] .policy-news-item .news-cover {
  width: 100%;
  height: 100%;
  min-height: 194px;
  object-fit: cover;
  border-radius: 0;
}

body[data-page='policy'] .policy-news-item .copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px 14px 18px;
}

body[data-page='policy'] .policy-news-item h3 {
  margin: 0;
}

body[data-page='policy'] .policy-title-link {
  display: inline-block;
  color: #234a73;
  font-size: 17px;
  line-height: 1.5;
}

body[data-page='policy'] .policy-title-link:hover {
  color: #1d79d8;
}

body[data-page='policy'] .policy-news-item p {
  margin: 10px 0 0;
}

body[data-page='policy'] .policy-news-item .meta {
  margin-top: 12px;
}

body[data-page='policy'] .policy-news-item .jump {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: #2778d6;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

body[data-page='policy'] .policy-news-item:hover .jump {
  transform: translateY(-1px);
  background: #2d8cf2;
  color: #fff;
}

body[data-page='policy'] .pager {
  margin-top: 18px;
}

body[data-page='map'] .picker-toolbar,
body[data-page='map'] .map-location-text,
body[data-page='map'] .map-meta-bar,
body[data-page='map'] .map-layout {
  position: relative;
  z-index: 1;
}

body[data-page='map'] .map-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}

body[data-page='map'] .map-summary {
  flex-shrink: 0;
}

body[data-page='map'] .map-box,
body[data-page='map'] .demand-panel {
  min-width: 0;
}

body[data-page='map'] .map-box {
  height: 636px;
  border-radius: 22px;
}

body[data-page='map'] .demand-panel {
  display: flex;
  flex-direction: column;
}

body[data-page='map'] .demand-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body[data-page='map'] .demand-list li .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

body[data-page='map'] .map-load-more {
  width: 100%;
  margin-top: 14px;
}

body[data-page='map'] .map-qrcode-modal .modal-body {
  padding-top: 4px;
}

body[data-page='map'] .map-qrcode-item {
  min-width: 196px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid #dce8f7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.95) 100%);
  box-shadow: 0 12px 24px rgba(45, 107, 176, 0.06);
}

body[data-page='query-worker'] .query-box,
body[data-page='query-certificate'] .query-box {
  max-width: 100%;
}

body[data-page='query-worker'] .query-form,
body[data-page='query-certificate'] .query-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
}

body[data-page='query-worker'] .query-form button,
body[data-page='query-certificate'] .query-form button {
  min-width: 124px;
  min-height: 44px;
  border-radius: 999px;
}

body[data-page='query-worker'] .query-result,
body[data-page='query-certificate'] .query-result {
  padding: 20px 22px;
}

body[data-page='query-worker'] .query-grid {
  margin-top: 12px;
  gap: 12px 14px;
}

body[data-page='query-worker'] .query-grid p {
  margin: 0;
  line-height: 1.7;
}

body[data-page='query-worker'] .query-link-row {
  margin: 12px 0 0;
  color: #5f789a;
  font-size: 13px;
}

body[data-page='query-worker'] .query-link {
  color: #2d80df;
  font-weight: 700;
}

body[data-page='query-worker'] .cert-list h3 {
  margin: 4px 0 10px;
  color: #24466f;
}

body[data-page='query-worker'] .cert-item,
body[data-page='query-certificate'] .cert-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
  box-shadow: 0 12px 24px rgba(41, 97, 165, 0.06);
}

body[data-page='query-certificate'] .certificate-result-head {
  align-items: center;
}

body[data-page='query-certificate'] .certificate-worker-card {
  margin-top: 18px;
}

body[data-page='query-certificate'] .certificate-worker-cell {
  min-height: 88px;
  border-radius: 16px;
}

body[data-page='query-certificate'] .cert-item-head {
  gap: 16px;
}

body[data-page='query-certificate'] .cert-tag {
  border-radius: 999px;
}

body[data-page='query-certificate'] .certificate-empty {
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px dashed #c9dbf2;
  background: #f8fbff;
  color: #5f789a;
  text-align: center;
}

@media (max-width: 1200px) {
  body[data-page='policy'] .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='map'] .map-layout {
    grid-template-columns: 1fr;
  }

  body[data-page='query-certificate'] .certificate-worker-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body[data-page='about'] .board-head,
  body[data-page='contact'] .board-head,
  body[data-page='policy'] .board-head,
  body[data-page='map'] .board-head,
  body[data-page='query-worker'] .board-head,
  body[data-page='query-certificate'] .board-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  body[data-page='about'] .board-tip,
  body[data-page='contact'] .board-tip,
  body[data-page='policy'] .board-tip,
  body[data-page='map'] .board-tip,
  body[data-page='query-worker'] .board-tip,
  body[data-page='query-certificate'] .board-tip {
    margin-left: 0;
    padding-left: 0;
    white-space: normal;
  }

  body[data-page='about'] .board-head h2 span,
  body[data-page='contact'] .board-head h2 span,
  body[data-page='policy'] .board-head h2 span,
  body[data-page='map'] .board-head h2 span,
  body[data-page='query-worker'] .board-head h2 span,
  body[data-page='query-certificate'] .board-head h2 span {
    font-size: 21px;
  }

  body[data-page='policy'] .news-list {
    grid-template-columns: 1fr;
  }

  body[data-page='policy'] .policy-news-item {
    grid-template-columns: 1fr;
  }

  body[data-page='policy'] .policy-news-item .news-cover {
    min-height: 180px;
  }

  body[data-page='map'] .picker-toolbar,
  body[data-page='map'] .map-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page='map'] .picker-actions {
    width: 100%;
  }

  body[data-page='map'] .picker-confirm,
  body[data-page='map'] .picker-close {
    flex: 1 1 auto;
  }

  body[data-page='map'] .map-box {
    height: 480px;
  }

  body[data-page='map'] .map-qrcode-modal {
    width: calc(100vw - 28px);
  }

  body[data-page='query-worker'] .query-form,
  body[data-page='query-certificate'] .query-form,
  body[data-page='query-worker'] .query-grid,
  body[data-page='query-certificate'] .certificate-worker-card {
    grid-template-columns: 1fr;
  }

  body[data-page='query-certificate'] .certificate-result-head,
  body[data-page='query-certificate'] .cert-item-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Article detail */
body[data-page='article-detail'] .page-main {
  padding: 14px 0 24px;
}

body[data-page='article-detail'] .article-detail-hero,
body[data-page='article-detail'] .article-detail-board {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page='article-detail'] .article-detail-hero {
  border: 0;
  border-radius: 30px;
  padding: 24px 28px 22px;
  background:
    radial-gradient(circle at 12% 14%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

body[data-page='article-detail'] .article-detail-hero::before {
  content: '';
  position: absolute;
  left: -24px;
  bottom: -32px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

body[data-page='article-detail'] .article-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(197, 219, 243, 0.94);
  color: #5c789a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

body[data-page='article-detail'] .article-detail-hero h1 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #183f69;
  font-size: 34px;
  line-height: 1.32;
}

body[data-page='article-detail'] .article-meta-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

body[data-page='article-detail'] .article-meta {
  margin: 0;
  color: #59708f;
  font-size: 14px;
  line-height: 1.9;
}

body[data-page='article-detail'] .article-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #bfd9f9;
  background: rgba(255, 255, 255, 0.9);
  color: #2d7fdf;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

body[data-page='article-detail'] .article-back-link:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 20px rgba(27, 136, 246, 0.12);
}

body[data-page='article-detail'] .article-detail-board {
  margin-top: 14px;
  border: 0;
  border-radius: 28px;
  padding: 22px 24px 26px;
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

body[data-page='article-detail'] .article-detail-board::before {
  content: '';
  position: absolute;
  right: -16px;
  top: 26px;
  width: 160px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(136, 186, 255, 0.18);
  background:
    radial-gradient(circle at 18px 18px, rgba(111, 182, 255, 0.14) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(111, 182, 255, 0.12), rgba(111, 182, 255, 0.03));
  pointer-events: none;
}

body[data-page='article-detail'] .article-detail-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0;
}

body[data-page='article-detail'] .article-detail-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.28), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.36) 0 5px, transparent 5px 10px);
}

body[data-page='article-detail'] .article-detail-head h2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-right: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 20px;
  color: #1b2430;
}

body[data-page='article-detail'] .article-detail-head h2::before {
  display: none;
}

body[data-page='article-detail'] .article-detail-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='article-detail'] .article-detail-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

body[data-page='article-detail'] .article-detail-head .board-tip {
  position: relative;
  z-index: 1;
  margin: 0 0 1px auto;
  padding-left: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #89a4c6;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

body[data-page='article-detail'] .article-detail-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='article-detail'] .article-cover-shell {
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page='article-detail'] .article-cover.news-cover {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 6.8;
  margin: 0;
  border: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 18%, rgba(161, 205, 255, 0.24) 0, rgba(161, 205, 255, 0) 22%),
    linear-gradient(135deg, #edf5ff 0%, #dbeeff 100%);
}

body[data-page='article-detail'] .article-rich-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 18px auto 0;
  padding: 8px 2px 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #415b80;
  font-size: 16px;
  line-height: 2;
  box-shadow: none;
}

body[data-page='article-detail'] .article-rich-content h1,
body[data-page='article-detail'] .article-rich-content h2,
body[data-page='article-detail'] .article-rich-content h3,
body[data-page='article-detail'] .article-rich-content h4 {
  color: #20476f;
}

body[data-page='article-detail'] .article-rich-content blockquote {
  border-left-color: #7db2f6;
  background: #f4f9ff;
}

body[data-page='article-detail'] .article-rich-content img {
  border-radius: 16px;
  border-color: #d9e7f7;
}

body[data-page='article-detail'] .article-rich-content table {
  background: #fff;
}

@media (max-width: 768px) {
  body[data-page='article-detail'] .article-detail-hero {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  body[data-page='article-detail'] .article-detail-hero h1 {
    font-size: 26px;
  }

  body[data-page='article-detail'] .article-meta-row,
  body[data-page='article-detail'] .article-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page='article-detail'] .article-detail-head .board-tip {
    margin-left: 0;
    padding-left: 0;
    white-space: normal;
  }

  body[data-page='article-detail'] .article-detail-board {
    padding: 18px 16px 20px;
    border-radius: 24px;
  }

  body[data-page='article-detail'] .article-detail-head h2 span {
    font-size: 21px;
  }

  body[data-page='article-detail'] .article-rich-content {
    padding: 6px 0 0;
    border-radius: 0;
  }
}

/* Policy page traditional list override */
body[data-page='policy'] .news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body[data-page='policy'] .policy-news-item,
body[data-page='policy'] .policy-news-item:only-child {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 164px;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(204, 221, 242, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.94) 100%);
  box-shadow: 0 10px 24px rgba(41, 97, 165, 0.05);
}

body[data-page='policy'] .policy-news-item:hover {
  transform: translateY(-2px);
  border-color: #c2daf6;
  box-shadow: 0 14px 28px rgba(41, 97, 165, 0.08);
}

body[data-page='policy'] .policy-cover-link {
  width: 100%;
  height: 136px;
  border-radius: 14px;
  border: 1px solid #dbe8f7;
  background:
    radial-gradient(circle at 14% 18%, rgba(161, 205, 255, 0.22) 0, rgba(161, 205, 255, 0) 22%),
    linear-gradient(135deg, #f1f7ff 0%, #e4f0ff 100%);
}

body[data-page='policy'] .policy-news-item .news-cover {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}

body[data-page='policy'] .policy-news-item .copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2px 2px 2px 0;
}

body[data-page='policy'] .policy-news-item h3 {
  margin: 0;
}

body[data-page='policy'] .policy-title-link {
  color: #234a73;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}

body[data-page='policy'] .policy-news-item p {
  margin: 10px 0 0;
  color: #67809f;
  font-size: 14px;
  line-height: 1.9;
}

body[data-page='policy'] .policy-news-item .meta {
  margin-top: 12px;
  color: #8da3bf;
  font-size: 12px;
}

body[data-page='policy'] .policy-news-item .jump {
  min-height: 30px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2d80df;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
}

body[data-page='policy'] .policy-news-item:hover .jump {
  transform: none;
  background: transparent;
  color: #176fcb;
}

@media (max-width: 768px) {
  body[data-page='policy'] .policy-news-item,
  body[data-page='policy'] .policy-news-item:only-child {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 12px;
  }

  body[data-page='policy'] .policy-cover-link {
    height: 180px;
  }

  body[data-page='policy'] .policy-title-link {
    font-size: 17px;
  }
}

/* Resume + certificate final polish */
body[data-page='resume'] .page-main {
  padding: 14px 0 24px;
}

body[data-page='resume'] .resume-page-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

body[data-page='resume'] .resume-page-hero::before {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -36px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

body[data-page='resume'] .resume-page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #183f69;
  font-size: 32px;
  line-height: 1.2;
}

body[data-page='resume'] .resume-page-hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  max-width: 760px;
  color: #59708f;
  font-size: 15px;
  line-height: 1.9;
}

body[data-page='resume'] .resume-guide-board {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

body[data-page='resume'] .resume-guide-board::before {
  content: '';
  position: absolute;
  right: -16px;
  top: 20px;
  width: 160px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(136, 186, 255, 0.18);
  background:
    radial-gradient(circle at 18px 18px, rgba(111, 182, 255, 0.14) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(111, 182, 255, 0.12), rgba(111, 182, 255, 0.03));
  pointer-events: none;
}

body[data-page='resume'] .resume-board-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 22px;
  padding: 22px 0 14px;
  border-bottom: 0;
}

body[data-page='resume'] .resume-board-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.28), rgba(91, 151, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.36) 0 5px, transparent 5px 10px);
}

body[data-page='resume'] .resume-board-head h2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-right: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  font-size: 20px;
  color: #1b2430;
}

body[data-page='resume'] .resume-board-head h2::before {
  display: none;
}

body[data-page='resume'] .resume-board-head h2 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

body[data-page='resume'] .resume-board-head h2 span::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #5b8dff 0%, #4ec2ff 100%);
  box-shadow: 0 0 0 6px rgba(91, 141, 255, 0.12);
  flex: 0 0 auto;
}

body[data-page='resume'] .resume-board-head .board-tip {
  position: relative;
  z-index: 1;
  margin: 0 0 1px auto;
  padding-left: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #89a4c6;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

body[data-page='resume'] .resume-section-icon {
  font-size: 24px;
  color: #80b1f0;
  transform: translateY(-1px);
}

body[data-page='resume'] .resume-guide-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 18px;
  padding: 22px;
}

body[data-page='resume'] .resume-guide-main,
body[data-page='resume'] .resume-qrcode-card,
body[data-page='resume'] .resume-note-card {
  border-radius: 22px;
  border: 1px solid rgba(214, 230, 249, 0.9);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page='resume'] .resume-guide-main {
  padding: 24px 24px 22px;
}

body[data-page='resume'] .resume-guide-eyebrow {
  background: rgba(45, 140, 242, 0.1);
  color: #2d7fdf;
}

body[data-page='resume'] .resume-guide-main h2 {
  margin: 14px 0 10px;
  font-size: 30px;
}

body[data-page='resume'] .resume-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body[data-page='resume'] .resume-guide-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f3f8ff;
  border: 1px solid #d8e7fa;
  color: #4b6a92;
  font-size: 13px;
  font-weight: 700;
}

body[data-page='resume'] .resume-guide-tags i {
  color: #2d80df;
  font-size: 14px;
}

body[data-page='resume'] .resume-guide-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body[data-page='resume'] .resume-guide-actions .primary-btn,
body[data-page='resume'] .resume-guide-actions .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

body[data-page='resume'] .resume-guide-actions .ghost-btn {
  border-color: #c9dcf4;
  color: #53759c;
}

body[data-page='resume'] .resume-step-card {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
  box-shadow: 0 10px 20px rgba(48, 103, 171, 0.04);
}

body[data-page='resume'] .resume-step-card strong {
  border-radius: 12px;
}

body[data-page='resume'] .resume-guide-side {
  gap: 14px;
}

body[data-page='resume'] .resume-qrcode-card,
body[data-page='resume'] .resume-note-card {
  padding: 20px;
}

body[data-page='resume'] .resume-qrcode-card {
  position: relative;
  overflow: hidden;
}

body[data-page='resume'] .resume-qrcode-card::before {
  content: '';
  position: absolute;
  right: -28px;
  top: -18px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 209, 255, 0.32) 0%, rgba(162, 209, 255, 0.08) 58%, rgba(162, 209, 255, 0) 72%);
}

body[data-page='resume'] .resume-qrcode-image {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(34, 89, 154, 0.08);
}

body[data-page='resume'] .resume-note-card-mini {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
}

body[data-page='resume'] .resume-note-card ul {
  margin-top: 12px;
}

body[data-page='query-certificate'] .certificate-query-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  margin-bottom: 14px;
}

body[data-page='query-certificate'] .certificate-query-intro-item,
body[data-page='query-certificate'] .certificate-query-link {
  border-radius: 16px;
  border: 1px solid rgba(202, 222, 244, 0.96);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 20px rgba(48, 103, 171, 0.05);
}

body[data-page='query-certificate'] .certificate-query-intro-item {
  padding: 14px 16px;
}

body[data-page='query-certificate'] .certificate-query-intro-item strong {
  display: block;
  color: #24466f;
  font-size: 15px;
}

body[data-page='query-certificate'] .certificate-query-intro-item p {
  margin: 8px 0 0;
  color: #6680a1;
  font-size: 13px;
  line-height: 1.75;
}

body[data-page='query-certificate'] .certificate-query-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0 18px;
  color: #2d80df;
  font-size: 13px;
  font-weight: 700;
}

body[data-page='query-certificate'] .query-form {
  margin-top: 0;
}

body[data-page='query-certificate'] .certificate-result {
  background:
    radial-gradient(circle at 86% 14%, rgba(185, 222, 255, 0.14) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 255, 0.9) 100%);
}

body[data-page='query-certificate'] .certificate-result-head {
  padding-bottom: 16px;
}

body[data-page='query-certificate'] .certificate-result-count {
  min-width: 102px;
}

body[data-page='query-certificate'] .certificate-worker-card {
  gap: 14px;
}

body[data-page='query-certificate'] .certificate-worker-cell {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 10px 18px rgba(48, 103, 171, 0.04);
}

body[data-page='query-certificate'] .cert-list {
  margin-top: 16px;
}

body[data-page='query-certificate'] .certificate-result-note {
  margin: 14px 2px 0;
  font-size: 12px;
  line-height: 1.7;
  color: #a2adbb;
}

body[data-page='query-certificate'] .cert-item-head h4 {
  line-height: 1.45;
}

body[data-page='query-certificate'] .cert-meta-grid {
  gap: 12px;
}

body[data-page='query-certificate'] .cert-meta-item {
  border-radius: 14px;
  min-height: 78px;
}

@media (max-width: 1200px) {
  body[data-page='resume'] .resume-guide-layout {
    grid-template-columns: 1fr;
  }

  body[data-page='query-certificate'] .certificate-query-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='query-certificate'] .certificate-query-link {
    min-height: 48px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body[data-page='resume'] .resume-page-hero {
    padding: 22px 18px;
    border-radius: 24px;
  }

  body[data-page='resume'] .resume-page-hero h1 {
    font-size: 26px;
  }

  body[data-page='resume'] .resume-board-head {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 16px;
  }

  body[data-page='resume'] .resume-board-head .board-tip {
    margin-left: 0;
    padding-left: 0;
    white-space: normal;
  }

  body[data-page='resume'] .resume-board-head h2 span {
    font-size: 21px;
  }

  body[data-page='resume'] .resume-guide-layout {
    padding: 16px;
  }

  body[data-page='resume'] .resume-guide-main {
    padding: 20px 18px;
  }

  body[data-page='resume'] .resume-guide-main h2 {
    font-size: 24px;
  }

  body[data-page='resume'] .resume-guide-actions,
  body[data-page='resume'] .resume-guide-tags {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page='resume'] .resume-guide-steps {
    grid-template-columns: 1fr;
  }

  body[data-page='query-certificate'] .certificate-query-intro {
    grid-template-columns: 1fr;
  }
}

body[data-page='map'] .map-qrcode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

body[data-page='map'] .map-qrcode-item {
  min-width: 0;
}

@media (max-width: 768px) {
  body[data-page='map'] .map-qrcode-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page='org-detail'] .page-main {
  padding: 14px 0 24px;
}

body[data-page='org-detail'] .org-detail-hero,
body[data-page='org-detail'] .org-detail-showcase-board {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page='org-detail'] .org-detail-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(148, 204, 255, 0.24) 0, rgba(148, 204, 255, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(190, 224, 255, 0.2) 0, rgba(190, 224, 255, 0) 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  box-shadow: 0 18px 40px rgba(64, 124, 191, 0.1);
}

body[data-page='org-detail'] .org-detail-hero::before {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -36px;
  width: 220px;
  height: 132px;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(102, 170, 255, 0.18), rgba(102, 170, 255, 0.03));
  pointer-events: none;
}

body[data-page='org-detail'] .org-detail-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #183f69;
  font-size: 32px;
  line-height: 1.2;
}

body[data-page='org-detail'] .org-detail-hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  max-width: 760px;
  color: #59708f;
  font-size: 15px;
  line-height: 1.9;
}

body[data-page='org-detail'] .org-detail-showcase-board {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 222, 255, 0.16) 0, rgba(185, 222, 255, 0) 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 16px 36px rgba(64, 124, 191, 0.08);
}

body[data-page='org-detail'] .org-detail-showcase-board::before {
  content: '';
  position: absolute;
  right: -16px;
  top: 18px;
  width: 160px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(136, 186, 255, 0.18);
  background:
    radial-gradient(circle at 18px 18px, rgba(111, 182, 255, 0.14) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(111, 182, 255, 0.12), rgba(111, 182, 255, 0.03));
  pointer-events: none;
}

body[data-page='org-detail'] .detail-showcase {
  position: relative;
  z-index: 1;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

body[data-page='org-detail'] .detail-cover {
  min-height: 248px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(161, 205, 255, 0.22) 0, rgba(161, 205, 255, 0) 24%),
    linear-gradient(135deg, #eef6ff 0%, #dcecff 100%);
}

body[data-page='org-detail'] .detail-cover::after {
  inset: auto 18px 16px 18px;
  height: 56px;
  border-radius: 14px;
}

body[data-page='org-detail'] .detail-cover img {
  min-height: 248px;
}

body[data-page='org-detail'] .detail-avatar-card {
  left: 18px;
  right: 18px;
  bottom: -26px;
  padding: 12px 14px;
  border-radius: 16px;
  border-color: rgba(214, 230, 249, 0.96);
  box-shadow: 0 12px 24px rgba(64, 124, 191, 0.08);
}

body[data-page='org-detail'] .detail-avatar-shell {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

body[data-page='org-detail'] .detail-avatar-note {
  color: #5a7394;
  font-size: 13px;
}

body[data-page='org-detail'] .detail-main-panel {
  padding-top: 8px;
}

body[data-page='org-detail'] .detail-eyebrow {
  min-height: 30px;
  padding: 0 12px;
}

body[data-page='org-detail'] .detail-headline {
  margin: 14px 0 8px;
  font-size: 32px;
  line-height: 1.25;
}

body[data-page='org-detail'] .detail-summary {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.85;
}

body[data-page='org-detail'] .detail-badges {
  margin-top: 16px;
  gap: 10px;
}

body[data-page='org-detail'] .detail-badge {
  min-height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

body[data-page='org-detail'] .detail-actions {
  margin-top: 18px;
  gap: 12px;
}

body[data-page='org-detail'] .detail-booking-btn,
body[data-page='org-detail'] .detail-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

body[data-page='org-detail'] .detail-back-btn {
  border-color: #c9dcf4;
  color: #53759c;
}

body[data-page='org-detail'] .detail-layout {
  max-width: 1040px;
  margin: 14px auto 0;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 16px;
}

body[data-page='org-detail'] .detail-card,
body[data-page='org-detail'] .detail-side-card {
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.94) 100%);
  box-shadow: 0 14px 30px rgba(64, 124, 191, 0.06);
}

body[data-page='org-detail'] .detail-card {
  padding: 20px 22px;
}

body[data-page='org-detail'] .detail-side-card {
  padding: 18px;
}

body[data-page='org-detail'] .detail-card + .detail-card,
body[data-page='org-detail'] .detail-side-card + .detail-side-card {
  margin-top: 14px;
}

body[data-page='org-detail'] .detail-card-head {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

body[data-page='org-detail'] .detail-card-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(91, 151, 255, 0.22), rgba(91, 151, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(133, 173, 255, 0.28) 0 5px, transparent 5px 10px);
}

body[data-page='org-detail'] .detail-card-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #1a406e;
  font-size: 18px;
}

body[data-page='org-detail'] .detail-card-head span {
  display: none;
}

body[data-page='org-detail'] .detail-head-icon {
  color: #76a8e7;
  font-size: 18px;
}

body[data-page='org-detail'] .detail-rich-text p {
  font-size: 14px;
  line-height: 1.9;
}

body[data-page='org-detail'] .detail-info-grid {
  gap: 12px;
}

body[data-page='org-detail'] .detail-side-info-grid {
  grid-template-columns: 1fr;
}

body[data-page='org-detail'] .detail-info-item,
body[data-page='org-detail'] .detail-contact-row,
body[data-page='org-detail'] .detail-tag,
body[data-page='org-detail'] .detail-service-card {
  border-color: #e1ebf8;
  background: #f8fbff;
}

body[data-page='org-detail'] .detail-info-item {
  padding: 14px;
  border-radius: 14px;
}

body[data-page='org-detail'] .detail-info-value,
body[data-page='org-detail'] .detail-contact-value {
  font-size: 14px;
}

body[data-page='org-detail'] .detail-tags {
  gap: 10px;
}

body[data-page='org-detail'] .detail-tag {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
}

body[data-page='org-detail'] .detail-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page='org-detail'] .detail-service-card {
  padding: 16px 16px 15px;
  border-radius: 16px;
}

body[data-page='org-detail'] .detail-service-card p {
  font-size: 13px;
  line-height: 1.7;
}

body[data-page='org-detail'] .detail-gallery-item {
  height: 146px;
  border-radius: 14px;
}

@media (max-width: 960px) {
  body[data-page='org-detail'] .detail-showcase,
  body[data-page='org-detail'] .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body[data-page='org-detail'] .org-detail-hero {
    padding: 22px 18px;
    border-radius: 24px;
  }

  body[data-page='org-detail'] .org-detail-hero h1 {
    font-size: 26px;
  }

  body[data-page='org-detail'] .org-detail-showcase-board,
  body[data-page='org-detail'] .detail-layout {
    margin-top: 12px;
  }

  body[data-page='org-detail'] .detail-showcase {
    padding: 16px;
  }

  body[data-page='org-detail'] .detail-main-panel {
    padding-top: 0;
  }

  body[data-page='org-detail'] .detail-headline {
    font-size: 26px;
  }

  body[data-page='org-detail'] .detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page='org-detail'] .detail-service-grid,
  body[data-page='org-detail'] .detail-gallery {
    grid-template-columns: 1fr;
  }
}

body[data-page='org-detail'] .detail-media-panel {
  padding-bottom: 0;
}

body[data-page='org-detail'] .detail-avatar-card {
  display: none;
}

body[data-page='org-detail'] .detail-actions {
  justify-content: flex-start;
}

body[data-page='org-detail'] .detail-back-btn {
  min-width: 148px;
}

body[data-page='org-detail'] .detail-card-tip {
  margin: -4px 0 12px;
  color: #89a0bc;
  font-size: 12px;
  line-height: 1.6;
}

body[data-page='org-detail'] .detail-side-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body[data-page='org-detail'] .detail-side-info-grid .detail-info-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body[data-page='org-detail'] .detail-side-info-grid .detail-info-label {
  color: #7c92ae;
  font-size: 13px;
  line-height: 1.8;
}

body[data-page='org-detail'] .detail-side-info-grid .detail-info-value {
  margin-top: 0;
  color: #21466f;
  font-size: 13px;
  line-height: 1.8;
}

body[data-page='org-detail'] .detail-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page='org-detail'] .detail-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e8fb, #edf4fd);
}

body[data-page='org-detail'] .detail-gallery-item::after {
  content: '\F52A';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(12, 40, 76, 0.54);
  color: #fff;
  font-family: 'bootstrap-icons';
  font-size: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body[data-page='org-detail'] .detail-gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.detail-gallery-modal-mask {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 22, 44, 0.68);
  z-index: 1300;
}

.detail-gallery-modal-mask.active {
  display: flex;
}

.detail-gallery-modal {
  width: min(920px, 100%);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 38, 66, 0.24);
  overflow: hidden;
}

.detail-gallery-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e6eef9;
}

.detail-gallery-modal-head h3 {
  margin: 0;
  font-size: 20px;
  color: #1d4067;
}

.detail-gallery-modal-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #edf4fb;
  color: #45698f;
  font-size: 22px;
  cursor: pointer;
}

.detail-gallery-modal-body {
  padding: 20px;
  background: linear-gradient(180deg, #f9fcff 0%, #f2f7fd 100%);
}

.detail-gallery-modal-body img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 768px) {
  body[data-page='org-detail'] .detail-side-info-grid .detail-info-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  body[data-page='org-detail'] .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-gallery-modal {
    width: calc(100vw - 24px);
  }

  .detail-gallery-modal-body {
    padding: 14px;
  }
}
