@font-face {
  font-family: "YouSheBiaoTiHei";
  src: url("./assets/fonts/YouSheBiaoTiHei-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #f4f8fc;
  --white: #ffffff;
  --blue: #1e5aa8;
  --blue-2: #0048a6;
  --blue-3: #1b7dd7;
  --text: #102a3a;
  --muted: #5b6b78;
  --line: #d6e4ee;
  --soft: #eef6fb;
  --green: #09a96d;
  --purple: #6b3db8;
  --red: #eb3030;
  --shadow: 0 6px 16px rgba(8, 55, 100, 0.14);
  --header-h: 65px;
  --container: 1232px;
  --stage: 1920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(216, 229, 240, 0.72);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: 410px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo-mark {
  width: 47px;
  height: 51px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand-logo-text strong {
  color: #173a56;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  white-space: nowrap;
}

.brand-logo-text em {
  color: #4e6675;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo-text::after {
  content: "科研协同 · 数据互通 · 多机构联合创新";
  color: #5e7480;
  font-size: 7px;
  font-weight: 700;
  line-height: 8px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 7px;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header-h);
  color: #5b6b78;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: color 0.18s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #102a3a;
  font-weight: 700;
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  width: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.top-search {
  position: relative;
}

.top-search-box {
  width: 148px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--blue);
  background: #fff;
  padding: 0 10px;
}

.search-mark {
  width: 13px;
  height: 13px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: var(--blue);
  transform: rotate(45deg);
  border-radius: 2px;
}

.top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 13px;
  background: transparent;
}

.top-search input::placeholder {
  color: var(--blue);
  font-weight: 600;
}

.search-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 310px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
}

.search-panel.open {
  display: block;
}

.search-result {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 2px;
}

.search-result:hover,
.search-result:focus-visible {
  background: #eef6ff;
  outline: none;
}

.search-result strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
}

.search-result span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.search-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}

.auth-btn {
  height: 32px;
  min-width: 61px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.auth-btn.primary,
.auth-btn:hover,
.auth-btn:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: none;
}

.auth-btn:active,
.btn:active,
.tab:active {
  transform: translateY(1px);
}

.hero-stage {
  position: relative;
  width: min(var(--stage), 100%);
  height: 449px;
  margin: 0 auto;
  overflow: hidden;
  background: #e8f0fa;
}

.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -324px;
  width: 1440px;
  height: 1138px;
  background: url("./assets/hero-medical.png") center / cover no-repeat;
  transform: translateX(-50%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 240, 250, 0.62) 0%, rgba(232, 240, 250, 0.24) 42%, rgba(232, 240, 250, 0) 70%);
  pointer-events: none;
}

.hero-stage.news-hero {
  height: 449px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 76px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: 0;
  color: #102a3a;
}

.hero-copy p {
  max-width: 565px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 29.25px;
  color: #5b6b78;
}

.hero-actions,
.hero-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn,
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn.primary,
.tab.active,
.btn:hover,
.btn:focus-visible,
.tab:hover,
.tab:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: none;
}

.btn.ghost:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 91, 172, 0.05);
}

.section {
  padding: 80px 0;
  background: #fff;
}

.section.tint {
  background: #eef6fb;
}

.section-head {
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: #102a3a;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.section-head p {
  margin: 10px auto 0;
  color: #5b6b78;
  font-size: 16px;
  line-height: 16px;
}

.section-head::after {
  display: none;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.goal-card {
  min-height: 340px;
  padding: 0 32px 36px;
}

.goal-card img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
  object-position: left center;
  margin: -53px 0 6px -32px;
}

.goal-card h3,
.plain-card h3 {
  margin: 0 0 14px;
  color: #102a3a;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.goal-card p,
.plain-card p,
.resource-card p,
.demand-card p,
.news-card p,
.about-text p {
  margin: 0;
  color: #5b6b78;
  font-size: 16px;
  line-height: 26px;
}

.task-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.flow-card {
  padding: 30px 46px;
}

.flow-title {
  margin: 0 0 24px;
  text-align: center;
  color: #2c4a62;
  font-size: 16px;
  font-weight: 800;
}

.flow-step {
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.flow-step.teal {
  border-color: #1baac5;
  color: #1591aa;
}

.flow-step:not(:last-child)::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  min-width: 58px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  border-radius: 2px;
}

.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 30px;
  background: #92badb;
}

.task-list {
  display: grid;
  gap: 20px;
}

.task-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
}

.task-no {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5f3ff;
  color: var(--blue);
  font-weight: 900;
}

.task-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
  color: #173249;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.network-map {
  min-height: 306px;
  position: relative;
  background: #f3fbff;
  overflow: hidden;
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px dashed #9bd4ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring.r1 { width: 120px; height: 120px; }
.ring.r2 { width: 230px; height: 230px; }
.ring.r3 { width: 320px; height: 320px; }

.center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #55b5ff, #0067d8);
  box-shadow: 0 12px 22px rgba(0, 103, 216, 0.28);
  transform: translate(-50%, -50%);
  font-weight: 900;
}

.city-node {
  position: absolute;
  min-width: 78px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 18px;
  color: #fff;
  background: #0086f5;
  font-weight: 800;
}

.city-node.suzhou { right: 116px; top: 74px; }
.city-node.yichang { left: 86px; bottom: 68px; }
.city-node.xiamen { right: 116px; bottom: 76px; }

.small-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #d8f0ff;
  background: #0086f5;
}

.small-dot.d1 { right: 161px; top: 130px; }
.small-dot.d2 { right: 105px; bottom: 132px; }
.small-dot.d3 { left: 150px; bottom: 116px; }

.city-stats {
  display: grid;
  gap: 22px;
}

.city-stat {
  display: grid;
  grid-template-columns: 112px 1fr 1fr 1fr;
  align-items: center;
  min-height: 92px;
  background: #fff;
  border: 1px solid var(--line);
}

.city-name {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 24px;
  color: #fff;
  background: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.city-name small {
  margin-top: 8px;
  font-size: 17px;
}

.city-stat strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1.1;
  text-align: center;
}

.city-stat span {
  display: block;
  color: #6d7e8c;
  font-size: 12px;
  text-align: center;
  margin-top: 7px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
}

.result-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #e7f5ff;
  font-weight: 900;
}

.cta-band {
  margin-top: 34px;
  min-height: 82px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 91, 172, 0.94), rgba(0, 154, 218, 0.72)), url("./assets/cta-bg.png") center / cover no-repeat;
}

.cta-band h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.cta-band .btn {
  height: 40px;
  min-width: 118px;
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.footer {
  padding: 49px 0 32px;
  background: #e8f2fc;
  border-top: 1px solid #cfe2ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 90px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 24px;
  color: #102a3a;
}

.footer p,
.footer a {
  margin: 0 0 8px;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--blue);
  outline: none;
  text-decoration: underline;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
}

.copyright {
  margin-top: 32px;
  padding-top: 33px;
  border-top: 1px solid #c7dcea;
  text-align: center;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
}

.sub-hero {
  position: relative;
  width: min(var(--stage), 100%);
  height: 449px;
  margin: 0 auto;
  overflow: hidden;
  background: #e8f0fa;
}

.sub-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -324px;
  width: 1440px;
  height: 1138px;
  background: url("./assets/hero-medical.png") center / cover no-repeat;
  transform: translateX(-50%);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 240, 250, 0.62) 0%, rgba(232, 240, 250, 0.24) 42%, rgba(232, 240, 250, 0) 70%);
  pointer-events: none;
}

.sub-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.sub-hero .hero-copy h1 {
  font-size: 64px;
  line-height: 80px;
}

.sub-hero .hero-copy p {
  font-size: 20px;
  line-height: 26px;
  max-width: 530px;
}

.data-hero {
  height: 449px;
}

.data-hero .hero-copy {
  display: grid;
  grid-template-columns: 514px 660px;
  gap: 40px;
  align-items: start;
  padding-top: 74px;
}

.data-hero h1 {
  font-size: 64px;
  line-height: 80px;
}

.data-summary {
  width: 686px;
  min-height: 354px;
  margin-top: -26px;
  padding: 58px 47px 23px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 18px;
  border: 1.5px solid var(--blue);
  border-radius: 99px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.pill.green {
  border-color: #10a86f;
  color: #10a86f;
  background: #eafff7;
}

.pill.red {
  border-color: var(--red);
  color: #d84a55;
  background: #fff4f5;
}

.pill.fill {
  color: #fff;
  background: var(--blue);
}

.data-summary-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.data-summary h2 {
  margin: 12px 0 8px;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
}

.big-number {
  color: #0048a6;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.summary-stat {
  min-height: 81px;
  padding: 20px 10px 12px;
  background: #f3f8fc;
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.summary-stat strong {
  color: #0048a6;
  font-size: 36px;
  line-height: 24px;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.area-card {
  padding: 24px 28px;
}

.area-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.area-card h3 {
  margin: 0;
  font-size: 20px;
}

.area-card strong {
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
}

.progress {
  height: 8px;
  margin-top: 12px;
  background: #edf2f6;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--blue);
}

.filter-box {
  padding: 48px 22px 28px;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.filter-title h3 {
  margin: 0;
  font-size: 20px;
}

.hint {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(140px, 0.82fr) minmax(140px, 0.82fr) minmax(170px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.filter-control[hidden] {
  display: none;
}

.filter-control label {
  display: block;
  margin-bottom: 8px;
  color: #455b6e;
  font-size: 13px;
}

.filter-control input,
.filter-control select {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #d3dfe8;
  color: #546779;
  background: #fff;
}

.filter-control input:focus,
.filter-control select:focus,
.top-search-box:focus-within {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.12);
}

.result-count {
  margin-top: 18px;
  padding: 18px 22px;
  border: 2px solid #2b81d7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #466175;
}

.result-count strong {
  color: #111;
  font-size: 34px;
  line-height: 1;
}

.resource-list {
  margin-top: 24px;
}

.resource-card {
  position: relative;
  min-height: 300px;
  padding: 24px 24px 0;
}

.resource-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
}

.resource-level {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 64px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.resource-level.local {
  background: #08a85e;
}

.owner {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 5px 12px;
  color: #5b6b78;
  background: #f4f8fc;
  border-radius: 99px;
  font-size: 14px;
  line-height: 20px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.meta-box {
  padding: 10px 8px;
  background: #f5f9fd;
  text-align: center;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
}

.meta-box strong {
  display: block;
  margin-top: 4px;
  color: #0048a6;
  font-size: 16px;
  line-height: 24px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin: 18px -22px 0;
  border-top: 1px solid #e6edf3;
  color: #2b3f50;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--blue);
  background: #f5faff;
  outline: none;
}

.resource-list .resource-card.hidden,
.demand-card.hidden,
.news-card.hidden {
  display: none;
}

.empty-state,
.tab-empty {
  display: none;
  margin-top: 22px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.empty-state.show,
.tab-empty.show {
  display: block;
}

.breadcrumb-line {
  padding: 26px 0 18px;
  color: #6c7f91;
  font-size: 20px;
}

.breadcrumb-line strong {
  color: #1b2733;
}

.breadcrumb-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-hero {
  padding: 30px;
  background: linear-gradient(180deg, #fbfdff, #e0f3ff);
  border: 1px solid #fff;
  box-shadow: var(--shadow);
}

.detail-hero-inner {
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
}

.detail-hero h1 {
  margin: 18px 0 12px;
  color: #111;
  font-size: 33px;
  line-height: 1.25;
}

.detail-hero p {
  margin: 0 0 24px;
  color: #617589;
  font-size: 20px;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.detail-metric {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
}

.detail-metric span {
  color: #2b3f50;
  font-weight: 700;
}

.detail-metric strong {
  margin-top: 10px;
  color: var(--blue);
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 0.78fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 24px;
}

.panel-sub {
  margin: 0 0 22px;
  color: #738597;
}

.field-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.field-table th {
  background: #eaf4fb;
  color: #566a7b;
  text-align: left;
  font-size: 18px;
  padding: 14px 32px;
}

.field-table td {
  padding: 14px 32px;
}

.field-table tr:nth-child(even) td {
  background: #eaf4fb;
}

.pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  color: #333;
  font-size: 18px;
}

.pager button {
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  font-size: inherit;
}

.pager .page-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6c7b88;
  cursor: pointer;
}

.pager .page-num.active {
  color: #fff;
  background: var(--blue);
}

.side-panel {
  padding: 26px 28px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e4ebf1;
  font-size: 18px;
}

.info-row strong {
  color: var(--blue);
}

.rule-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
}

.rule-no {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.related-card {
  padding: 22px;
  background: #f4f9fd;
}

.related-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.demand-filter {
  margin-top: 0;
  padding: 30px 24px 18px;
}

.demand-filter .filter-row {
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
}

.demand-filter .btn[data-demand-reset] {
  float: none;
  margin-top: 16px;
}

.demand-count {
  margin-top: 26px;
  font-size: 20px;
  color: #222;
}

.demand-list-empty {
  margin-top: 22px;
}

.demand-card {
  position: relative;
  padding: 24px 28px 20px;
  margin-top: 22px;
}

.demand-card h2 {
  max-width: 760px;
  margin: 0 0 8px;
  color: #111;
  font-size: 26px;
  line-height: 1.35;
}

.demand-date {
  position: absolute;
  right: 28px;
  top: 22px;
  color: var(--blue);
  text-align: right;
  font-size: 20px;
  font-weight: 900;
}

.demand-date span {
  display: block;
  color: #66798a;
  font-size: 15px;
  font-weight: 500;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.demand-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid #e2e9ef;
  color: #222;
  font-size: 19px;
  font-weight: 700;
}

.file-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 25px;
  margin-right: 8px;
  border: 1px solid #2b95ed;
  color: #2b95ed;
  font-size: 10px;
  line-height: 1;
}

.attachment-empty {
  color: #91a3b3;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(13, 37, 55, 0.45);
}

.dialog-backdrop.show {
  display: flex;
}

.dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 56px);
  padding: 24px 28px 22px;
  background: #fff;
  border: 1px solid #d9e8f4;
  box-shadow: 0 28px 80px rgba(20, 54, 79, 0.22);
  overflow: auto;
}

.dialog-close,
.apply-modal__close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe8f2;
  color: #526b80;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.dialog-head {
  padding-right: 48px;
}

.dialog-head p,
.apply-modal__head span {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.dialog-head h2,
.apply-modal__title {
  margin: 0;
  color: #111;
  font-size: 26px;
  line-height: 1.25;
}

.dialog-head span,
.apply-modal__desc {
  display: block;
  margin-top: 6px;
  color: #6a7f90;
  font-size: 14px;
  line-height: 1.55;
}

.dialog-form {
  margin-top: 14px;
}

.demand-form-layout {
  display: block;
}

.dialog-section {
  padding: 18px 20px 20px;
  border: 1px solid #dceaf4;
  border-radius: 6px;
  background: #fbfdff;
}

.dialog-section--primary {
  background: #fff;
}

.demand-dialog-body {
  padding: 0;
  border: 0;
  background: transparent;
}

.dialog-section-head {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6f0f7;
}

.dialog-section-head h3 {
  margin: 0;
  color: #102a3a;
  font-size: 18px;
  line-height: 1.35;
}

.dialog-section-head p {
  margin: 3px 0 0;
  color: #6a7f90;
  font-size: 13px;
  line-height: 1.45;
}

.dialog-form-grid,
.apply-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.demand-publish-form .dialog-form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 14px;
}

.demand-field-title,
.demand-field-category {
  grid-column: span 2;
}

.demand-field-category .category-cascader {
  position: relative;
}

.demand-field-summary {
  grid-column: 1 / -1;
}

.demand-field-contact {
  grid-column: span 1;
}

.demand-upload-field {
  grid-column: 1 / -1;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

.demand-upload-field .dialog-helper {
  grid-column: 2;
  margin-top: -2px;
}

.dialog-field,
.apply-field {
  display: grid;
  gap: 7px;
  color: #31485a;
  font-size: 14px;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.field-label em {
  display: inline;
  height: auto;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: inherit;
}

.field-required {
  color: #c7372f;
}

.field-required::before {
  content: "*";
}

.dialog-field--full,
.apply-field--full {
  grid-column: 1 / -1;
}

.dialog-field input,
.dialog-select,
.dialog-textarea,
.apply-field input,
.apply-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d6e4ee;
  background: #f8fbfd;
  color: #1f3445;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.dialog-field input,
.dialog-select,
.apply-field input {
  height: 42px;
  padding: 0 12px;
}

.dialog-textarea,
.apply-field textarea {
  min-height: 164px;
  resize: vertical;
  padding: 10px 12px;
  line-height: 1.6;
}

.demand-publish-form .dialog-textarea {
  min-height: 118px;
  resize: none;
}

.dialog-section:not(.dialog-section--primary) .dialog-textarea {
  min-height: 86px;
}

.demand-publish-form .demand-field-summary .dialog-textarea {
  min-height: 118px;
}

.dialog-field input:focus,
.dialog-select:focus,
.dialog-textarea:focus,
.apply-field input:focus,
.apply-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.12);
}

.upload-control {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px dashed #b9d7ec;
  border-radius: 4px;
  background: #f8fbfd;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.upload-control.has-file {
  border-style: solid;
  border-color: #6aa9d8;
  background: #f0f8ff;
  box-shadow: inset 3px 0 0 #005bac;
}

.upload-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-button,
.upload-clear {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.upload-control.has-file .upload-button {
  border-color: #b9d7ec;
  color: #42647d;
}

.upload-status {
  height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 1px solid #d6e4ee;
  border-radius: 3px;
  color: #718698;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.upload-control.has-file .upload-status {
  border-color: #8fc6e8;
  color: #005bac;
  background: #e5f4ff;
}

.upload-file-name {
  flex: 1 1 auto;
  min-width: 0;
  color: #718698;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-control.has-file .upload-file-name {
  color: #1f3445;
  font-weight: 800;
}

.upload-file-size {
  flex: 0 0 auto;
  color: #6f8496;
  font-size: 12px;
  font-weight: 700;
}

.upload-clear {
  border-color: #d6e4ee;
  color: #596f82;
}

.dialog-helper {
  margin: 8px 0 0;
  color: #708596;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.dialog-category-picker {
  position: relative;
}

.demand-publish-form .category-cascader-trigger {
  height: 42px;
  padding: 0 42px 0 12px;
  border-color: #d6e4ee;
  background: #f8fbfd;
  color: #718698;
  font-size: 14px;
  font-weight: 500;
}

.demand-publish-form .category-cascader-trigger::after {
  right: 16px;
}

.demand-publish-form .category-cascader-panel {
  left: auto;
  right: 0;
  width: min(900px, calc(100vw - 96px));
}

.dialog-message,
.apply-form__message {
  min-height: 24px;
  margin-top: 10px;
  color: #6a7f90;
  font-size: 14px;
  font-weight: 700;
}

.dialog-message.is-success,
.apply-form__message.is-success {
  color: #087e49;
}

.dialog-message.is-error,
.apply-form__message.is-error {
  color: #c7372f;
}

.dialog-actions,
.apply-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.apply-modal.is-open {
  display: block;
}

.apply-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 37, 55, 0.45);
}

.apply-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, calc(100% - 56px));
  max-height: calc(100dvh - 56px);
  transform: translate(-50%, -50%);
  padding: 28px 30px 24px;
  background: #fff;
  border: 1px solid #d9e8f4;
  box-shadow: 0 28px 80px rgba(20, 54, 79, 0.22);
  overflow: hidden;
}

.apply-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.apply-form {
  margin-top: 20px;
}

.apply-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-apply-modal .apply-modal__panel {
  width: min(860px, calc(100% - 56px));
  padding-bottom: 22px;
}

.resource-apply-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  background: #eef6fb;
  border: 1px solid #d9e8f4;
  color: #4c6478;
}

.resource-apply-summary span {
  color: #0048a6;
  font-size: 14px;
  font-weight: 800;
}

.resource-apply-summary strong {
  min-width: 0;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-apply-summary em {
  color: #5b6b78;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.resource-apply-form {
  margin-top: 16px;
}

.resource-apply-form .apply-form__grid {
  gap: 12px 16px;
}

.resource-apply-form .apply-field textarea {
  min-height: 70px;
}

.resource-apply-form .apply-form__actions .btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.news-search-wrap {
  width: min(910px, calc(100% - 56px));
  margin: 0 auto;
  padding-top: 145px;
}

.news-search {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 104px;
  border: 2px solid var(--blue);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.news-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 28px;
  color: #66798a;
  font-size: 18px;
}

.news-search button {
  margin: 5px;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.news-tabs {
  display: flex;
  gap: 18px;
  margin-top: 74px;
}

.news-tabs .tab {
  width: 142px;
  height: 48px;
}

.breadcrumb {
  margin: 0 0 24px;
  color: #677a8c;
  font-size: 20px;
}

.breadcrumb strong {
  color: #111;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.news-card {
  min-height: 238px;
  padding: 26px 28px;
}

.news-card.feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
}

.news-card img {
  width: 330px;
  height: 220px;
  object-fit: cover;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: #838f99;
  font-size: 18px;
  margin-bottom: 12px;
}

.news-card h2,
.news-card h3 {
  margin: 0 0 16px;
  color: #111;
  line-height: 1.45;
}

.news-card h2 {
  font-size: 25px;
}

.news-card h3 {
  font-size: 22px;
}

.read-more {
  display: inline-flex;
  margin-top: 10px;
  color: #0084ff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
}

.read-more:hover,
.read-more:focus-visible {
  text-decoration: underline;
  outline: none;
}

.ways {
  padding-bottom: 78px;
}

.way-card {
  min-height: 166px;
  padding: 28px 28px 24px;
}

.way-card h3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 18px;
  color: #111;
  font-size: 22px;
}

.way-card strong {
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
}

.coop-stack {
  display: grid;
  gap: 18px;
}

.coop-card {
  padding: 26px 30px 28px;
}

.coop-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.coop-no {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
}

.coop-no.green {
  background: var(--green);
}

.coop-no.purple {
  background: var(--purple);
}

.coop-card h2 {
  margin: 0;
  color: #111;
}

.coop-card .slogan {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 900;
}

.coop-card.green .slogan {
  color: var(--green);
}

.coop-card.purple .slogan {
  color: var(--purple);
}

.coop-box {
  padding: 22px 28px;
  background: #f2f9ff;
  color: #66798a;
}

.coop-card.green .coop-box {
  background: #effcf8;
}

.coop-card.purple .coop-box {
  background: #faf6ff;
}

.coop-box h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 16px;
}

.coop-box ol {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}

.coop-note {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.coop-card.green .coop-note {
  color: var(--green);
}

.coop-card.purple .coop-note {
  color: var(--purple);
}

.coop-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.coop-card.green .btn.primary {
  border-color: var(--green);
  background: var(--green);
}

.coop-card.green .btn.ghost {
  border-color: var(--green);
  color: var(--green);
}

.coop-card.purple .btn.primary {
  border-color: var(--purple);
  background: var(--purple);
}

.coop-card.purple .btn.ghost {
  border-color: var(--purple);
  color: var(--purple);
}

.blue-note {
  margin: 24px 0 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 32px;
}

.intro-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.intro-fact {
  min-height: 116px;
  padding: 18px;
  background: #f3f9fe;
}

.intro-fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 16px;
}

.partner-list {
  display: grid;
  gap: 20px;
}

.partner-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
}

.partner-card img {
  width: 260px;
  height: 146px;
  object-fit: cover;
}

.partner-card h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 21px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.contact-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f3f9fe;
  text-align: center;
}

.contact-card b {
  color: var(--blue);
  font-size: 18px;
}

.contact-info {
  grid-column: 1 / -1;
  padding: 28px 36px;
  background: #f3f9fe;
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row strong {
  color: var(--blue);
  font-size: 18px;
}

.contact-guide {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #f5fbff, #d6efff);
}

.guide-item {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.72);
}

.guide-item h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
}

.about-banner {
  margin-top: 28px;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0 46px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 91, 172, 0.94), rgba(0, 154, 218, 0.72)), url("./assets/cta-bg.png") center / cover no-repeat;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  min-width: 220px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(16, 43, 63, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hidden {
  display: none !important;
}

/* Figma official-site alignment: inspect frame 0:1, 1920px canvas. */
.figma-home-page,
.figma-site-page {
  --figma-blue: #1e5aa8;
  --figma-blue-mid: #2b78c5;
  --figma-teal: #2f9db8;
  --figma-text: #102a3a;
  --figma-muted: #5b6b78;
  --figma-line: #d6e4f0;
  background: #f4f8fc;
}

.figma-home-page .site-header,
.figma-site-page .site-header {
  height: 65px;
  background: #ffffff;
  border-bottom: 1px solid #d6e4f0;
  box-shadow: none;
}

.figma-home-page .container,
.figma-site-page .container {
  width: 1232px;
  max-width: calc(100% - 56px);
}

.figma-home-page .header-inner,
.figma-site-page .header-inner {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 0;
}

.figma-home-page .brand-logo,
.figma-site-page .brand-logo {
  position: absolute;
  left: -3px;
  top: 4px;
  width: 410px;
  height: 56px;
  gap: 24px;
}

.figma-home-page .brand-logo-mark,
.figma-site-page .brand-logo-mark {
  width: 47px;
  height: 51px;
  opacity: 0;
}

.figma-home-page .brand-logo-text,
.figma-site-page .brand-logo-text {
  position: relative;
  padding-left: 0;
}

.figma-home-page .brand-logo-text::before,
.figma-site-page .brand-logo-text::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -1px;
  width: 1px;
  height: 42px;
  background: #dde8ee;
}

.figma-home-page .brand-logo-text strong,
.figma-site-page .brand-logo-text strong {
  color: #173a56;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}

.figma-home-page .brand-logo-text em,
.figma-site-page .brand-logo-text em {
  color: #4e6675;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
}

.figma-home-page .brand-logo-text::after,
.figma-site-page .brand-logo-text::after {
  content: "科研协同 · 数据互通 · 多机构联合创新";
  color: #5e7480;
  font-size: 7px;
  font-weight: 700;
  line-height: 8.47px;
}

.figma-home-page .nav,
.figma-site-page .nav {
  position: absolute;
  left: 417.4px;
  top: 0;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.figma-home-page .nav-link,
.figma-site-page .nav-link {
  height: 65px;
  padding: 0;
  color: #5b6b78;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.figma-home-page .nav-link.active,
.figma-home-page .nav-link:hover,
.figma-home-page .nav-link:focus-visible,
.figma-site-page .nav-link.active,
.figma-site-page .nav-link:hover,
.figma-site-page .nav-link:focus-visible {
  color: #102a3a;
  font-weight: 700;
}

.figma-home-page .nav-link::after,
.figma-site-page .nav-link::after {
  bottom: 13px;
  height: 2px;
  border-radius: 0;
}

.figma-home-page .nav-link.active::after,
.figma-home-page .nav-link:hover::after,
.figma-home-page .nav-link:focus-visible::after,
.figma-site-page .nav-link.active::after,
.figma-site-page .nav-link:hover::after,
.figma-site-page .nav-link:focus-visible::after {
  width: 20px;
}

.figma-home-page .header-actions,
.figma-site-page .header-actions {
  position: absolute;
  left: 936.9px;
  top: 15px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.figma-home-page .top-search-box {
  width: 148px;
  height: 32px;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  gap: 7.52px;
  padding: 0 9px;
}

.figma-home-page .search-mark {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.figma-home-page .search-mark::after {
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  border-radius: 1px;
}

.figma-home-page .top-search input {
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.figma-home-page .top-search input::placeholder {
  color: #1e5aa8;
  font-weight: 500;
}

.figma-home-page .auth-btn {
  width: 62.6px;
  min-width: 62.6px;
  height: 34px;
  padding: 0;
  border: 1px solid #1e5aa8;
  color: #1e5aa8;
  background: #ffffff;
  border-radius: 4px;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.figma-home-page .auth-btn.primary,
.figma-site-page .auth-btn.primary {
  width: 60.6px;
  min-width: 60.6px;
  height: 32px;
  color: #ffffff;
  background: #1e5aa8;
}

.figma-home {
  color: var(--figma-text);
  background: #f4f8fc;
}

.figma-frame {
  position: relative;
  width: 1232px;
  max-width: calc(100% - 56px);
  margin: 0 auto;
}

.figma-hero {
  position: relative;
  height: 449.3px;
  overflow: hidden;
  background: #e8f0fa;
}

.figma-hero__image {
  position: absolute;
  left: 50%;
  top: -324px;
  width: 1440px;
  height: 1138px;
  object-fit: cover;
  transform: translateX(-50%);
  display: none;
}

.figma-hero__copy {
  position: relative;
  z-index: 1;
  width: 768px;
  padding-top: 76px;
}

.figma-hero__copy h1 {
  margin: 0;
  color: #102a3a;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
}

.figma-hero__copy p {
  width: 628px;
  margin: 24px 0 32px;
  color: #5b6b78;
  font-size: 16px;
  font-weight: 400;
  line-height: 29.25px;
  white-space: nowrap;
  transform: scaleX(0.9);
  transform-origin: left top;
}

.figma-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.figma-btn {
  width: 140px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  text-decoration: none;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.figma-btn--primary {
  color: #ffffff;
  background: #1e5aa8;
}

.figma-btn--ghost {
  color: #1e5aa8;
  background: #ffffff;
}

.figma-section {
  position: relative;
}

.figma-section-head {
  width: 1232px;
  max-width: calc(100% - 56px);
  margin: 0 auto;
  text-align: center;
}

.figma-section-head h2 {
  margin: 0;
  color: #102a3a;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.figma-section-head p {
  margin: 10px 0 0;
  color: #5b6b78;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.figma-section-head--rule::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  background: #1e5aa8;
}

.figma-goals {
  height: 638px;
  padding-top: 80px;
  background: #ffffff;
}

.figma-goal-grid {
  display: grid;
  grid-template-columns: 395px 394px 395px;
  gap: 24px;
  margin-top: 82.7px;
}

.figma-goal-card {
  position: relative;
  min-height: 342px;
  padding: 155px 32px 34px;
  border: 1px solid #d6e4f0;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 90, 168, 0.2);
}

.figma-goal-card img {
  position: absolute;
  left: 0;
  top: -51.2px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: none;
}

.figma-goal-card h3 {
  margin: 0 0 12px;
  color: #102a3a;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.figma-goal-card p {
  margin: 0;
  color: #5b6b78;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.figma-tasks {
  height: 918px;
  padding-top: 80px;
  background: #eef6fb;
}

.figma-task-layout {
  display: grid;
  grid-template-columns: 600px 600px;
  gap: 32px;
  margin-top: 47.5px;
}

.figma-architecture {
  height: 632px;
  padding: 27px 59px;
  border: 1px solid #d6e4f0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 90, 168, 0.2);
}

.figma-architecture h3 {
  margin: 0 0 24px;
  color: #102a3a;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.figma-flow {
  width: 480px;
  margin: 0 auto;
}

.figma-flow-step {
  position: relative;
  width: 480px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: #2f9db8;
  background: rgba(47, 157, 184, 0.05);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.figma-flow-step--blue {
  color: #1e5aa8;
  background: rgba(30, 90, 168, 0.05);
}

.figma-flow-step--mid {
  color: #2b78c5;
  background: rgba(43, 120, 197, 0.05);
}

.figma-flow-step--teal {
  color: #2f9db8;
  background: rgba(47, 157, 184, 0.05);
}

.figma-flow-step + .figma-flow-step {
  margin-top: 56px;
}

.figma-flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  width: 2px;
  height: 24px;
  background: #d6e4f0;
  transform: translateX(-50%);
}

.figma-flow-step[data-label]::after {
  content: attr(data-label);
  position: absolute;
  top: 76px;
  width: 80px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #ffffff;
  background: #d6e4f0;
  font-size: 12px;
  line-height: 12px;
}

.figma-flow-step.label-right::after {
  left: 261px;
}

.figma-flow-step.label-left::after {
  left: 138px;
}

.figma-task-cards {
  display: grid;
  gap: 16px;
}

.figma-task-card {
  height: 200px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid #d6e4f0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 90, 168, 0.2);
}

.figma-task-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border-radius: 4px;
  color: #1e5aa8;
  background: rgba(30, 90, 168, 0.1);
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.figma-task-card--mid span {
  color: #2b78c5;
  background: rgba(43, 120, 197, 0.1);
}

.figma-task-card--teal span {
  color: #2f9db8;
  background: rgba(47, 157, 184, 0.1);
}

.figma-task-card h3 {
  margin: 0 0 8px;
  color: #102a3a;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.figma-task-card p {
  width: auto;
  margin: 0;
  color: #5b6b78;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}

.figma-network {
  height: 771px;
  padding-top: 80px;
  background: #ffffff;
}

.figma-network-layout {
  display: grid;
  grid-template-columns: 600px 608px;
  gap: 24px;
  margin-top: 48px;
}

.figma-network-map {
  position: relative;
  width: 600px;
  height: 485px;
  border: 1px solid #d6e4f0;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8ff 0%, #f8fcff 100%);
}

.figma-network-map__image {
  position: absolute;
  inset: 0;
  width: 600px;
  height: 485px;
  object-fit: cover;
  z-index: 2;
}

.figma-network-map__image ~ * {
  display: none;
}

.network-ring {
  position: absolute;
  border: 1px dashed #2b78c5;
  border-radius: 50%;
  opacity: 0.55;
}

.network-ring--outer {
  left: 123px;
  top: 71px;
  width: 352px;
  height: 352px;
}

.network-ring--inner {
  left: 170px;
  top: 114px;
  width: 258px;
  height: 258px;
}

.network-line {
  position: absolute;
  height: 1px;
  background: #0080ff;
  transform-origin: left center;
}

.network-line--suzhou {
  left: 300px;
  top: 247px;
  width: 175px;
  transform: rotate(-42.7deg);
}

.network-line--yichang {
  left: 155px;
  top: 247px;
  width: 175px;
  transform: rotate(34.1deg);
}

.network-line--xiamen {
  left: 300px;
  top: 247px;
  width: 178px;
  transform: rotate(27.7deg);
}

.network-core {
  position: absolute;
  left: 236px;
  top: 179px;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(180deg, #4db3ff 0%, #006fe6 100%);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.network-city {
  position: absolute;
  width: 99px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #ffffff;
  background: #0080ff;
  font-size: 20px;
  line-height: 20px;
}

.network-city--suzhou {
  left: 379px;
  top: 71px;
}

.network-city--yichang {
  left: 105px;
  top: 365px;
}

.network-city--xiamen {
  left: 406px;
  top: 346px;
}

.network-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 10px solid #0080ff;
  border-radius: 50%;
  background: #0080ff;
}

.network-dot--suzhou {
  left: 424px;
  top: 123px;
}

.network-dot--yichang {
  left: 150px;
  top: 340px;
}

.network-dot--xiamen {
  left: 451px;
  top: 324px;
}

.figma-city-list {
  display: grid;
  gap: 41px;
}

.figma-city-card {
  display: grid;
  grid-template-columns: 138px repeat(3, 1fr);
  height: 134px;
}

.figma-city-card h3 {
  margin: 0 10px 0 0;
  padding: 23px 0 0 20px;
  border-radius: 6px;
  color: #ffffff;
  background: #1e5aa8;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
}

.figma-city-card small {
  font-size: 24px;
  font-weight: 700;
}

.figma-city-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d6e4f0;
  border-bottom: 1px solid #d6e4f0;
  background: #ffffff;
}

.figma-city-card div:last-child {
  border-right: 1px solid #d6e4f0;
  border-radius: 0 6px 6px 0;
}

.figma-city-card strong {
  color: #1e5aa8;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

.figma-city-card span {
  margin-top: 0;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
}

.figma-results {
  height: 730px;
  padding-top: 80px;
  background: #eef6fb;
  overflow: hidden;
}

.figma-result-grid {
  display: grid;
  grid-template-columns: 604px 604px;
  gap: 24px;
  margin-top: 48px;
}

.figma-result-card {
  height: 132px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px;
  border: 1px solid #d6e4f0;
  border-radius: 6px;
  background: #ffffff;
}

.figma-result-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #1e5aa8;
  background: rgba(30, 90, 168, 0.1);
}

.figma-result-icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.figma-result-card--mid .figma-result-icon {
  color: #2b78c5;
  background: rgba(43, 120, 197, 0.1);
}

.figma-result-card--teal .figma-result-icon {
  color: #2f9db8;
  background: rgba(47, 157, 184, 0.1);
}

.figma-result-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.figma-result-card h3 {
  margin: 0 0 12px;
  color: #102a3a;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.figma-result-card p {
  margin: 0;
  color: #5b6b78;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.figma-cta {
  position: relative;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0 36px;
  border-radius: 6px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, #1e5aa8 0%, #2b78c5 100%);
}

.figma-cta h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.figma-cta p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
}

.figma-cta__actions {
  display: flex;
  gap: 20px;
}

.figma-cta__actions a {
  width: 156px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #1e5aa8;
  background: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}

.figma-home-page .figma-cta {
  height: 112px;
  margin-top: 28px;
  padding: 0 34px 0 38px;
}

.figma-home-page .figma-cta > div:first-child {
  max-width: 720px;
}

.figma-home-page .figma-cta__actions {
  margin-left: auto;
  padding-right: 8px;
}

.figma-home-page .figma-cta__actions a {
  width: 176px;
}

.figma-home-page .footer,
.figma-site-page .footer {
  height: auto;
  padding: 28px 0 16px;
  border-top: 1px solid #d6e4f0;
  background: #e8f2fc;
}

.figma-home-page .footer-grid,
.figma-site-page .footer-grid {
  grid-template-columns: 394px 300px 329px;
  gap: 72px;
}

.figma-home-page .footer h3,
.figma-site-page .footer h3 {
  margin: 0 0 10px;
  color: #102a3a;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.figma-home-page .footer p,
.figma-home-page .footer a,
.figma-site-page .footer p,
.figma-site-page .footer a {
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
}

.figma-home-page .footer p,
.figma-site-page .footer p {
  margin-bottom: 5px;
}

.figma-home-page .footer a,
.figma-site-page .footer a {
  display: inline-block;
  margin-bottom: 5px;
}

.figma-home-page .footer-links,
.figma-site-page .footer-links {
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
}

.figma-home-page .copyright,
.figma-site-page .copyright {
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
}

/* Figma inspect alignment layer: node_0_1.json, 1920px frames. */
.news-search-wrap {
  position: relative;
  z-index: 1;
}

.news-tabs {
  gap: 16px;
  margin-top: 67px;
}

.breadcrumb {
  margin: -52px 0 39px;
  color: #5b6b78;
  font-size: 20px;
  line-height: 20px;
}

.news-list {
  gap: 19px 26px;
}

.news-card {
  min-height: 252px;
  padding: 19px 28px 26px;
}

.news-card.feature {
  grid-template-columns: 329px 1fr;
  gap: 36px;
  min-height: 252px;
}

.news-card img {
  width: 329px;
  height: 220px;
  object-fit: cover;
}

.news-meta {
  gap: 22px;
  color: #7f7f7f;
  font-size: 20px;
  line-height: 36px;
}

.news-card h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.news-card h3 {
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
}

.read-more {
  color: #0080ff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}

.demand-filter {
  padding: 84px 22px 28px;
}

.demand-filter .filter-row {
  grid-template-columns: 2fr 1fr 1fr 1.1fr auto;
}

.demand-filter .btn[data-demand-reset] {
  margin-top: 0;
}

.demand-card {
  min-height: 252px;
}

.demand-card h2 {
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
}

.demand-meta {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}

.about-intro {
  grid-template-columns: 703px 711px;
  gap: 23px;
  width: min(1437px, calc(100% - 56px));
  max-width: none;
}

.about-text h2 {
  margin-top: 0;
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
}

.about-text p {
  font-size: 20px;
  line-height: 36px;
}

.intro-image {
  width: 711px;
  height: 388px;
  object-fit: cover;
}

.intro-facts {
  gap: 20px;
  margin-top: 45px;
}

.intro-fact {
  min-height: 173px;
  padding: 21px 28px;
}

.intro-fact strong {
  margin-bottom: 11px;
  color: #0048a6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
}

.partner-list {
  gap: 65px;
}

.partner-card {
  grid-template-columns: 314px 1fr;
  gap: 36px;
  min-height: 251px;
  padding: 32px 28px;
}

.partner-card img {
  width: 314px;
  height: 186px;
  object-fit: cover;
}

.partner-card h3 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.contact-layout {
  grid-template-columns: 570px 683px;
  gap: 37px;
}

.contact-guide {
  min-height: 642px;
  background:
    linear-gradient(90deg, rgba(245, 251, 255, 0.94), rgba(245, 251, 255, 0.68)),
    url("./assets/contact-figure.png") center / cover no-repeat;
}

.detail-hero {
  min-height: 437px;
  padding: 74px 50px;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.9), rgba(244, 248, 252, 0.5)),
    url("./assets/contact-figure.png") center / cover no-repeat;
}

.detail-hero-inner {
  padding: 0;
  border: 0;
  border-radius: 0;
}

/* Page-scoped Figma corrections. These keep existing JS hooks while matching the Figma frames. */
.figma-site-page .hero-stage,
.figma-site-page .sub-hero {
  height: 449.3px;
  width: min(1920px, 100%);
  background: #e8f0fa;
}

.figma-site-page .hero-stage::before,
.figma-site-page .sub-hero::before {
  top: -324px;
  width: 1440px;
  height: 1138px;
}

.figma-site-page .hero-stage::after,
.figma-site-page .sub-hero::after {
  display: none;
}

.figma-site-page .hero-copy {
  width: 1232px;
  max-width: calc(100% - 56px);
  padding-top: 88px;
}

.figma-site-page .hero-copy h1 {
  color: #102a3a;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
}

.figma-site-page .hero-copy p {
  margin-top: 18px;
  color: #5b6b78;
  font-size: 20px;
  line-height: 26px;
}

.figma-site-page .section {
  padding: 80px 0;
}

.figma-site-page .section-head {
  margin-bottom: 46px;
}

.figma-site-page .section-head h2 {
  color: #102a3a;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-site-page .section-head p {
  margin-top: 10px;
  color: #5b6b78;
  font-size: 16px;
  line-height: 16px;
}

.figma-data-page .data-hero {
  background: #e8f0fa;
}

.figma-data-page .nav-link.active::after {
  left: 18px;
  transform: none;
}

.figma-data-page .brand-logo-mark {
  opacity: 1;
}

.figma-data-page .data-hero::before,
.figma-data-page .data-hero::after {
  display: none;
}

.figma-data-page .data-hero .hero-copy {
  position: relative;
  display: block;
  width: 1232px;
  height: 449px;
  max-width: 1232px;
  padding-top: 0;
}

.figma-data-page .data-hero .hero-copy > div:first-child {
  position: absolute;
  left: 1px;
  top: 88px;
  width: 514px;
}

.figma-data-page .data-hero .hero-copy h1 {
  width: 768px;
  height: 80px;
  font-family: "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: 0.3515625px;
  color: #102a3a;
}

.figma-data-page .data-hero .hero-copy p {
  width: 514px;
  max-width: 514px;
  min-height: 78px;
  margin: 18px 0 25px;
  color: #5b6b78;
  font-size: 20px;
  line-height: 26px;
}

.figma-data-page .data-hero .hero-copy > div:first-child p {
  letter-spacing: -0.3125px;
}

.figma-data-page .data-hero .hero-actions {
  gap: 16px;
}

.figma-data-page .data-hero .hero-actions .btn {
  width: 140px;
  min-width: 140px;
  height: 52px;
  padding: 0;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.3125px;
}

.figma-data-page .data-summary {
  position: absolute;
  left: 554px;
  top: 48px;
  width: 686px;
  height: 354px;
  min-height: 354px;
  margin-top: 0;
  padding: 20px 28px 23px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(145deg, #ddeeff 0%, #ffffff 58%);
  box-shadow: 0 0 20.2px rgba(205, 220, 235, 0.6);
}

.figma-data-page .data-summary > .pill {
  width: 146px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid #1e5aa8;
  border-radius: 29px;
  background: #e8f2fc;
  color: #000;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.3125px;
}

.figma-data-page .data-summary-top {
  display: block;
}

.figma-data-page .data-summary h2 {
  position: absolute;
  left: 29px;
  top: 81px;
  width: 358px;
  height: 24px;
  margin: 0;
  color: #000;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.3125px;
}

.figma-data-page .data-hero .data-summary p {
  position: absolute;
  left: 29px;
  top: 138px;
  width: 600px;
  height: 52px;
  min-height: 0;
  max-width: 600px;
  margin: 0;
  color: #5b6b78;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.3125px;
}

.figma-data-page .big-number {
  position: absolute;
  left: 476px;
  top: 75px;
  height: 24px;
  color: #0048a6;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.3125px;
}

.figma-data-page .big-number::after {
  content: " 项数据资源";
  color: #1e5aa8;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.figma-data-page .summary-stats {
  position: absolute;
  left: 28px;
  top: 250px;
  display: grid;
  grid-template-columns: 195px 195px 195px;
  gap: 20px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.figma-data-page .summary-stat {
  width: 195px;
  height: 81px;
  min-height: 81px;
  padding: 27px 10px 0;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #f7fbff;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.figma-data-page .summary-stat strong {
  margin-left: 20px;
  color: #0048a6;
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.3125px;
}

.figma-data-page main > .section:nth-of-type(2) {
  height: auto;
  min-height: 0;
  padding: 80px 0 64px;
  background: #fff;
  overflow: visible;
}

.figma-data-page main > .section:nth-of-type(2) .section-head {
  position: relative;
  margin-bottom: 91px;
}

.figma-data-page main > .section:nth-of-type(2) .section-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 74px;
  display: block;
  width: 64px;
  height: 4px;
  transform: translateX(-50%);
  background: #1e5aa8;
}

.figma-data-page .area-cards {
  grid-template-columns: repeat(3, 391px);
  gap: 31px;
}

.figma-data-page .area-card {
  width: 391px;
  height: 192px;
  padding: 18px 23px 0;
  border: 0;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
}

.figma-data-page .area-card h3 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .area-card .pill {
  width: 93px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid #1ea871;
  border-radius: 29px;
  background: #e8fcf6;
  color: #037a44;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .area-card p {
  margin-top: 31px;
  margin-bottom: 0;
  height: 36px;
  color: #0048a6;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .area-card strong {
  color: #0048a6;
  font-size: 48px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .progress {
  width: 344px;
  height: 15px;
  margin-top: 22px;
  border-radius: 13px;
  background: #f5f5f5;
}

.figma-data-page .progress span {
  height: 15px;
  border-radius: 13px;
  background: linear-gradient(90deg, #327dde 0%, #0048a6 100%);
}

.figma-data-page main > .section:nth-of-type(3) {
  height: auto;
  min-height: 0;
  padding: 80px 0 72px;
  background: #eef6fb;
  overflow: visible;
}

.figma-data-page main > .section:nth-of-type(3) .section-head {
  position: relative;
  margin-bottom: 64px;
}

.figma-data-page main > .section:nth-of-type(3) .section-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  display: block;
  width: 64px;
  height: 4px;
  transform: translateX(-50%);
  background: #1e5aa8;
}

.figma-data-page .filter-box {
  width: 1256px;
  padding: 18px 23px 20px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
  overflow: visible;
}

.figma-data-page .filter-row {
  grid-template-columns: 380px minmax(420px, 1fr) 173px;
  justify-content: start;
  gap: 16px;
  align-items: start;
  margin-top: 34px;
}

.figma-data-page .resource-category-control {
  grid-column: auto;
  min-width: 0;
  justify-self: stretch;
  width: 100%;
}

.figma-data-page .local-scope-control[hidden] {
  display: none;
}

.figma-data-page .local-scope-control:not([hidden]) {
  position: absolute;
  left: 492px;
  top: 205px;
  width: 265px;
}

.figma-data-page .filter-title {
  gap: 59px;
  margin-bottom: 0;
}

.figma-data-page .filter-title h3 {
  color: #000;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .filter-title .hint {
  position: relative;
  color: #0048a6;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .filter-title .hint::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1e5aa8;
}

.figma-data-page .filter-control label {
  margin: 0 0 15px;
  color: #000;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .filter-control input,
.figma-data-page .filter-control select {
  height: 62px;
  padding: 0 20px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #f8f9f9;
  color: #000;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .filter-control input::placeholder {
  color: #7f7f7f;
}

.figma-data-page .filter-control select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, #bcbcbc 50%) right 26px center / 8px 8px no-repeat,
    linear-gradient(135deg, #bcbcbc 50%, transparent 50%) right 18px center / 8px 8px no-repeat,
    #f8f9f9;
}

.category-cascader {
  width: 100%;
  position: relative;
}

.category-cascader-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 42px 0 16px;
  border: 1px solid #d3dfe8;
  border-radius: 0;
  background: #fff;
  color: #546779;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.category-cascader-trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-cascader-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9aa8b5;
  border-bottom: 2px solid #9aa8b5;
  transform: translateY(-65%) rotate(45deg);
}

.category-cascader-trigger:focus-visible,
.category-cascader:focus-within .category-cascader-trigger {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.12);
}

.category-cascader-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 60;
  width: min(900px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid #d9e6f2;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(29, 64, 101, 0.18);
}

.category-cascader-panel[hidden] {
  display: none;
}

.category-cascader-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid #e6eef6;
}

.category-cascader-actions button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid #c8d9ea;
  border-radius: 4px;
  background: #f7fbff;
  color: #1e5aa8;
  font-size: 14px;
  cursor: pointer;
}

.category-cascader-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.category-cascader-actions .category-cascader-apply {
  border-color: #1e5aa8;
  background: #1e5aa8;
  color: #fff;
}

.category-cascader-actions span {
  flex: 1 1 auto;
  min-width: 0;
  color: #708293;
  font-size: 13px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.category-cascader-columns {
  display: grid;
  grid-template-columns: repeat(var(--category-column-count, 1), minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
}

.category-cascader-column {
  max-height: 318px;
  overflow: auto;
  padding: 8px 6px 6px;
  border: 1px solid #e8f0f7;
  border-radius: 5px;
  background: #f8fbfe;
}

.category-cascader-column-title {
  position: sticky;
  top: -8px;
  z-index: 1;
  margin: -8px -6px 6px;
  padding: 9px 10px 8px;
  border-bottom: 1px solid #e3edf6;
  background: #f8fbfe;
  color: #607587;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.category-cascader-column button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #2b3f50;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.category-cascader-column button + button {
  margin-top: 2px;
}

.category-cascader-column button span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-cascader-column button i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
}

.category-cascader-column button:hover,
.category-cascader-column button:focus-visible {
  background: #eef6ff;
  color: #0048a6;
  outline: none;
}

.category-cascader-column button.active {
  background: #e4f0ff;
  color: #0048a6;
  font-weight: 700;
}

.category-cascader-column button.selected {
  box-shadow: inset 3px 0 0 #1e5aa8;
}

.figma-data-page .category-cascader-trigger {
  height: 62px;
  padding: 0 52px 0 20px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #f8f9f9;
  color: #000;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .category-cascader-trigger::after {
  right: 23px;
  width: 10px;
  height: 10px;
  border-color: #bcbcbc;
}

.figma-data-page .category-cascader-panel {
  left: 0;
  right: auto;
  width: min(760px, calc(100vw - 48px));
}

.figma-data-page .filter-row .btn {
  width: 173px;
  min-width: 173px;
  height: 62px;
  margin-top: 51px;
  padding: 0;
  border-radius: 4px;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .result-count {
  min-height: 58px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid #c8d8e6;
  border-radius: 8px;
  background: #f7fbff;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c6f80;
  white-space: normal;
}

.figma-data-page .result-count strong {
  display: inline-block;
  margin-right: 4px;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: baseline;
}

.figma-data-page .result-count {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
}

.figma-data-page .result-count span {
  display: inline-block;
  color: #728394;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 0;
  vertical-align: baseline;
}

.figma-data-page .resource-list {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  align-items: start;
}

.figma-data-page .resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid #dbe7f2;
  border-radius: 6px;
  border-top: 4px solid #1e5aa8;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.18);
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.figma-data-page .resource-card:hover,
.figma-data-page .resource-card:focus-visible {
  border-color: #b8d2ec;
  box-shadow: 0 10px 26px rgba(32, 76, 118, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.figma-data-page .resource-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.16), 0 10px 26px rgba(32, 76, 118, 0.16);
}

.figma-data-page .resource-pager {
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
  color: #526678;
  font-size: 16px;
  line-height: 32px;
}

.figma-data-page .resource-pager button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid #d5e3ee;
  border-radius: 4px;
  background: #ffffff;
  color: #33516c;
  font-size: 14px;
  line-height: 30px;
}

.figma-data-page .resource-pager button:disabled {
  color: #9aaaba;
  background: #f2f6fa;
  cursor: not-allowed;
}

.figma-data-page .resource-pager .page-num {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #526678;
  background: #fff;
}

.figma-data-page .resource-pager .page-num.active {
  background: #0048a6;
  color: #fff;
}

.figma-data-page .resource-card-main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 26px 24px 18px;
  padding-right: 132px;
}

.figma-data-page .resource-level {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  min-width: 92px;
  height: 40px;
  padding: 0 18px;
  border-radius: 0 6px 0 6px;
  background: #0048a6;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.3125px;
  flex: none;
  z-index: 1;
}

.figma-data-page .resource-level.local {
  background: #009c3f;
}

.figma-data-page .resource-card h3 {
  font-size: 24px;
  line-height: 34px;
  margin: 0;
  color: #071d35;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.figma-data-page .resource-card p,
.figma-data-page .resource-summary {
  width: 100%;
  height: 58px;
  margin: 16px 0 0;
  color: #2f4558;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0.3955078125px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.figma-data-page .owner {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #607184;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.figma-data-page .meta-label {
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}

.figma-data-page .meta-grid {
  grid-template-columns: repeat(3, 179px);
  gap: 14px;
  margin-top: 16px;
}

.figma-data-page .category-path {
  flex: 1 1 auto;
  margin-top: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.figma-data-page .meta-label {
  display: block;
}

.figma-data-page .category-path strong {
  display: block;
  margin-top: 0;
  color: #274b6f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.figma-data-page .meta-box {
  height: 104px;
  padding: 13px 8px 0;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #f7fbff;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.figma-data-page .meta-box strong {
  margin-top: 14px;
  color: #0048a6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
}

.figma-data-page .resource-card-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
  margin-top: auto;
  padding: 16px 24px 20px;
  border-top: 1px solid #e4edf5;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.78) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.figma-data-page .card-link {
  position: static;
  flex: 0 0 auto;
  min-width: 74px;
  height: 26px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #6a7b8c;
  background: transparent;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.figma-data-page .card-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.figma-data-page .resource-card:hover .card-link,
.figma-data-page .resource-card:focus-visible .card-link {
  color: #1e5aa8;
}

.figma-demand-page main > .section.tint {
  min-height: 1486px;
  padding-top: 77px;
  padding-bottom: 76px;
  background: #eef6fb;
  overflow: visible;
}

.figma-demand-page main > .section.tint > .container {
  width: 1256px;
  max-width: 1256px;
}

.figma-demand-page .sub-hero::before,
.figma-demand-page .sub-hero::after {
  display: none;
}

.figma-demand-page .sub-hero .hero-copy {
  display: block;
  width: 1232px;
  height: 449px;
  padding-top: 88px;
}

.figma-demand-page .sub-hero .hero-copy h1 {
  width: 768px;
  height: 80px;
  letter-spacing: 0.3515625px;
}

.figma-demand-page .sub-hero .hero-copy p {
  width: 530px;
  max-width: 530px;
  margin: 18px 0 24px;
  letter-spacing: -0.3125px;
}

.figma-demand-page .sub-hero .btn {
  width: 140px;
  min-width: 140px;
  height: 52px;
  padding: 0;
  border-radius: 4px;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.figma-demand-page .demand-filter {
  height: 296px;
  min-height: 296px;
  padding: 18px 23px 18px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(8, 55, 100, 0.12);
  overflow: visible;
}

.figma-demand-page .demand-filter .filter-title {
  margin-bottom: 33px;
}

.figma-demand-page .demand-filter .filter-title h3 {
  color: #000;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.figma-demand-page .demand-filter .hint {
  position: relative;
  margin: 0 0 15px 26px;
  color: #0048a6;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
}

.figma-demand-page .demand-filter .hint::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 9px;
  width: 19px;
  height: 19px;
  background: #1e5aa8;
  border-radius: 50%;
}

.figma-demand-page .demand-filter .hint::after {
  content: "i";
  position: absolute;
  left: -17px;
  top: 8px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}

.figma-demand-page .demand-filter .filter-row {
  grid-template-columns: minmax(300px, 1.35fr) minmax(320px, 1.25fr) minmax(180px, 0.7fr) 173px;
  gap: 18px;
  align-items: start;
}

.figma-demand-page .demand-filter .filter-control,
.figma-demand-page .demand-category-control,
.figma-demand-page .demand-filter .category-cascader,
.figma-demand-page .demand-filter-action {
  min-width: 0;
}

.figma-demand-page .filter-control input,
.figma-demand-page .filter-control select,
.figma-demand-page .demand-filter .category-cascader-trigger {
  height: 62px;
  padding: 0 20px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  color: #000;
  background-color: #f8f9f9;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

.figma-demand-page .demand-filter .category-cascader-trigger {
  padding-right: 54px;
  text-align: left;
}

.figma-demand-page .demand-filter .category-cascader-trigger::after {
  right: 23px;
  width: 10px;
  height: 10px;
  border-color: #bcbcbc;
}

.figma-demand-page .demand-filter .category-cascader-panel {
  left: auto;
  right: 0;
  width: min(940px, calc(100vw - 48px));
}

.figma-demand-page .filter-control input::placeholder {
  color: #7f7f7f;
}

.figma-demand-page .filter-control select {
  appearance: none;
  padding-right: 54px;
  background:
    linear-gradient(45deg, transparent 45%, #bcbcbc 45%, #bcbcbc 60%, transparent 60%) right 30px center / 17px 17px no-repeat,
    linear-gradient(135deg, transparent 45%, #bcbcbc 45%, #bcbcbc 60%, transparent 60%) right 18px center / 17px 17px no-repeat,
    #f8f9f9;
}

.figma-demand-page .demand-filter .btn[data-demand-reset] {
  width: 100%;
  height: 62px;
  min-width: 0;
  margin: 0;
  border-radius: 4px;
  display: flex;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

.figma-demand-page .demand-count {
  margin-top: 24px;
  color: #000;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

.figma-demand-page .demand-count strong {
  font-weight: 700;
}

.figma-demand-page .demand-list {
  margin-top: 20px;
}

.figma-demand-page .demand-card {
  min-height: 258px;
  padding: 20px 31px 16px;
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(8, 55, 100, 0.12);
}

.figma-demand-page .demand-card h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 7px;
  transform: translateX(-8px);
}

.figma-demand-page .demand-card p,
.figma-demand-page .demand-meta,
.figma-demand-page .demand-meta a {
  font-size: 20px;
  line-height: 36px;
}

.figma-demand-page .demand-card p {
  width: 1045px;
  max-width: 1045px;
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  transform: translateX(-8px);
}

.figma-demand-page .demand-date {
  right: 13px;
  top: 14px;
  color: #0048a6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
}

.figma-demand-page .demand-date span {
  color: #5b6b78;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
}

.figma-demand-page .tag-row {
  gap: 14px;
  margin: 13px 0 34px;
  transform: translateX(-8px);
  overflow: hidden;
}

.figma-demand-page .tag-row .pill {
  max-width: 100%;
  height: auto;
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1.5px solid #1e5aa8;
  border-radius: 31px;
  color: #0048a6;
  background: #eaf5ff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figma-demand-page .demand-meta {
  grid-template-columns: 383px 380px 1fr;
  gap: 42px;
  padding-top: 15px;
  border-top: 1px solid #e1e6ec;
  color: #000;
  font-weight: 400;
}

.figma-demand-page .demand-meta > div {
  min-width: 0;
}

.figma-demand-page .demand-meta > div:first-child {
  display: flex;
  align-items: center;
  column-gap: 0;
}

.figma-demand-page .file-badge {
  width: 30px;
  height: 30px;
  margin: 0 12px 0 9px;
  vertical-align: middle;
  border: 0;
  color: transparent !important;
  background: center / contain no-repeat;
  font-size: 0;
  line-height: 1;
}

.figma-demand-page .file-badge--svg {
  width: 28px;
  height: 28px;
  background-image: url("./assets/demand-file-svg.svg");
}

.figma-demand-page .file-badge--pdf {
  background-image: url("./assets/demand-file-pdf.svg");
}

.figma-demand-page .file-badge--doc {
  background-image: url("./assets/demand-file-doc.svg");
}

.figma-demand-page .read-more {
  display: inline-flex;
  margin-top: 0;
  color: #0048a6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  text-decoration: none;
}

.figma-demand-page .attachment-unavailable {
  color: #768898;
  cursor: default;
}

.figma-demand-page .pager {
  width: 366px;
  height: 44px;
  margin: 36px auto 0 !important;
  gap: 24px;
  justify-content: center !important;
  font-size: 20px;
  line-height: 36px;
  white-space: nowrap;
}

.figma-demand-page .pager button,
.figma-demand-page .pager span {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #102a3a;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 20px;
  line-height: 36px;
  white-space: nowrap;
}

.figma-demand-page .pager button:not(:disabled) {
  cursor: pointer;
}

.figma-demand-page .pager button:disabled {
  color: #5b6b78;
  cursor: default;
}

.figma-demand-page .pager .page-num {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  min-width: 44px;
  border-radius: 50%;
  color: #5b6b78;
  text-align: center;
}

.figma-demand-page .pager .page-num.active {
  color: #fff;
  background: #0048a6;
}

.figma-news-page .news-search-wrap {
  width: 1232px;
  max-width: calc(100% - 56px);
  padding-top: 156px;
}

.figma-news-page .news-search {
  width: 719px;
  height: 59px;
  margin-left: 0;
  grid-template-columns: 612px 107px;
  border: 1px solid #0048a6;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.figma-news-page .news-search input {
  height: 100%;
  border: 0;
  border-right: 0;
  padding: 0 31px;
  font-size: 18px;
  line-height: 20px;
}

.figma-news-page .news-search button {
  width: 96px;
  height: 47px;
  margin: 5px 10px 7px 0;
  border-radius: 30px;
  font-size: 20px;
  line-height: 47px;
}

.figma-news-page .news-tabs {
  margin-top: 72px;
  gap: 16px;
}

.figma-news-page .news-tabs .tab {
  width: 140px;
  height: 52px;
}

.figma-news-page main > .section.tint {
  padding-top: 28px;
  padding-bottom: 60px;
  min-height: 1227px;
}

.figma-news-page main > .section.tint > .container {
  width: 1256px;
  max-width: calc(100% - 56px);
}

.figma-news-page .breadcrumb {
  margin: 0 0 29px;
}

.figma-news-page .news-list {
  grid-template-columns: 615px 615px;
  gap: 19px 26px;
}

.figma-news-page .news-card.feature {
  grid-template-columns: 329px 1fr;
  height: 277px;
  min-height: 277px;
  align-items: start;
  position: relative;
  gap: 36px;
  border-radius: 6px;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
}

.figma-news-page .news-card {
  height: 252px;
  min-height: 252px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  padding: 19px 28px 26px;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
}

.figma-news-page .news-card.feature > div {
  padding-top: 11px;
}

.figma-news-page .hero-stage::before {
  display: block;
}

.figma-news-page .hero-stage::after {
  display: none;
}

.figma-news-page .news-card.feature img {
  display: block;
  width: 329px;
  height: 220px;
  opacity: 1;
  object-fit: cover;
  margin-top: 11px;
}

.figma-news-page .news-meta {
  gap: 16px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 36px;
}

.figma-news-page .pill {
  height: 41px;
  min-width: 121px;
  padding: 0 22px;
  border: 1px solid #0080ff;
  border-radius: 31px;
  color: #0080ff;
  background: #eaf4ff;
  font-size: 20px;
  font-weight: 400;
  line-height: 39px;
}

.figma-news-page .pill.red {
  border-color: #f94444;
  color: #eb3030;
  background: #ffeaea;
}

.figma-news-page .news-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 36px;
}

.figma-news-page .news-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 36px;
}

.figma-news-page .news-card p {
  font-size: 20px;
  line-height: 36px;
}

.figma-news-page .read-more {
  margin-top: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.figma-news-page .news-card.feature .read-more {
  display: flex;
  margin-top: 16px;
}

.figma-news-page .news-card:not(.feature) p .read-more {
  display: inline;
  margin-left: 10px;
  line-height: 36px;
}

.figma-cooperation-page main > .section.ways {
  height: 498px;
  padding: 80px 0 0;
  background: #fff;
}

.figma-cooperation-page .site-header {
  border-bottom: 1px solid #d6e4f0;
}

.figma-cooperation-page .brand-logo {
  position: relative;
  left: -21px;
  top: -1px;
  width: 410px;
  height: 56px;
  background: none;
  gap: 24px;
}

.figma-cooperation-page .brand-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
}

.figma-cooperation-page .brand-logo-mark {
  width: 47px;
  height: 51px;
}

.figma-cooperation-page .brand-logo-text {
  gap: 3px;
}

.figma-cooperation-page .brand-logo-text strong {
  color: #173a56;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 700;
}

.figma-cooperation-page .brand-logo-text em {
  color: #4e6675;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
}

.figma-cooperation-page .brand-logo-text::after {
  color: #5e7480;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 7px;
  line-height: 8.47px;
  font-weight: 700;
}

.figma-cooperation-page .nav {
  margin-left: 28px;
  gap: 32px;
}

.figma-cooperation-page .nav-link {
  height: 65px;
  color: #5b6b78;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.150390625px;
}

.figma-cooperation-page .nav-link.active,
.figma-cooperation-page .nav-link:hover,
.figma-cooperation-page .nav-link:focus-visible {
  color: #000;
  font-weight: 700;
}

.figma-cooperation-page .nav-link::after {
  bottom: 13px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #1e5aa8;
}

.figma-cooperation-page .nav-link.active::after,
.figma-cooperation-page .nav-link:hover::after,
.figma-cooperation-page .nav-link:focus-visible::after {
  width: 20px;
}

.figma-cooperation-page .top-search-box {
  width: 148px;
  height: 32px;
  gap: 7.52px;
  padding: 0 9px;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  color: #102a3a;
  background: #ffffff;
}

.figma-cooperation-page .search-mark {
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-color: #1e5aa8;
}

.figma-cooperation-page .search-mark::after {
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  border-radius: 1px;
  background: #1e5aa8;
}

.figma-cooperation-page .top-search input {
  padding: 0;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.150390625px;
  color: #102a3a;
}

.figma-cooperation-page .top-search input::placeholder {
  color: #1e5aa8;
  font-weight: 500;
}

.figma-cooperation-page .auth-btn {
  width: 62.56px;
  min-width: 62.56px;
  height: 34px;
  padding: 0;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  color: #1e5aa8;
  background: #ffffff;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.150390625px;
}

.figma-cooperation-page .auth-btn.primary {
  width: 60.56px;
  min-width: 60.56px;
  height: 32px;
  color: #ffffff;
  border-color: #1e5aa8;
  background: #1e5aa8;
}

.figma-cooperation-page main > .section.tint {
  height: 1844px;
  padding: 90px 0 0;
  background: #eef6fb;
  overflow: hidden;
}

.figma-cooperation-page .sub-hero::before {
  left: 50%;
  top: -324px;
  width: 1440px;
  height: 1138px;
  background: url("./assets/hero-medical.png") center / cover no-repeat;
  opacity: 1;
  transform: translateX(-50%);
}

.figma-cooperation-page .sub-hero::after {
  display: block;
  background: linear-gradient(90deg, rgba(232, 240, 250, 0.72) 0%, rgba(232, 240, 250, 0.42) 44%, rgba(232, 240, 250, 0.04) 74%);
}

.figma-cooperation-page .sub-hero .hero-copy {
  display: block;
  width: 1232px;
  height: 449px;
  max-width: 1232px;
  padding-top: 88px;
  transform: translateX(1px);
}

.figma-cooperation-page .sub-hero .hero-copy h1 {
  width: 273px;
  height: 80px;
  margin: 0;
  color: #102a3a;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.3515625px;
}

.figma-cooperation-page .sub-hero .hero-copy p {
  width: 514px;
  max-width: 514px;
  height: 104px;
  margin: 18px 0 22px;
  color: #5b6b78;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.3125px;
}

.figma-cooperation-page .sub-hero .hero-tabs {
  gap: 16px;
}

.figma-cooperation-page .sub-hero .btn {
  width: 140px;
  min-width: 140px;
  height: 52px;
  padding: 0;
  border-radius: 4px;
  border-color: #1e5aa8;
  font-family: Inter, "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.3125px;
}

.figma-cooperation-page .sub-hero .btn.primary {
  border-width: 1px;
  background: #1e5aa8;
}

.figma-cooperation-page .sub-hero .btn:not(.primary) {
  border-width: 2px;
  background: transparent;
  color: #1e5aa8;
}

.figma-cooperation-page main > .section.ways .container {
  width: 1232px;
  max-width: 1232px;
}

.figma-cooperation-page main > .section.ways .section-head {
  margin-bottom: 91px;
}

.figma-cooperation-page main > .section.ways .section-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  background: #1e5aa8;
}

.figma-cooperation-page main > .section.ways .section-head h2 {
  font-size: 30px;
  line-height: 36px;
}

.figma-cooperation-page main > .section.ways .grid-3 {
  grid-template-columns: repeat(3, 391px);
  gap: 39px;
}

.figma-cooperation-page .way-card {
  width: 391px;
  height: 192px;
  min-height: 192px;
  padding: 18px 24px 0;
  border: 0;
  border-radius: 0;
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
}

.figma-cooperation-page .way-card h3 {
  gap: 12px;
  margin: 0 0 24px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .way-card strong {
  color: #0048a6;
  font-size: 40px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .way-card p {
  width: 248px;
  margin: 0 0 0 58px;
  color: #5b6b78;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.figma-cooperation-page .coop-stack {
  width: 1240px;
  max-width: 1240px;
  gap: 20px;
  transform: translateX(9px);
}

.figma-cooperation-page .coop-card {
  width: 1240px;
  height: 500px;
  min-height: 500px;
  padding: 14px 29px 0;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, #ebf4ff 0%, #fff 40%);
  box-shadow: 0 2px 8.8px rgba(94, 116, 128, 0.28);
  overflow: hidden;
}

.figma-cooperation-page .coop-card.green {
  height: 532px;
  min-height: 532px;
  background: linear-gradient(145deg, #f2fff9 0%, #fff 40%);
}

.figma-cooperation-page .coop-card.purple {
  background: linear-gradient(145deg, #f8f2ff 0%, #fff 40%);
}

.figma-cooperation-page .coop-head {
  gap: 17px;
  margin-bottom: 4px;
}

.figma-cooperation-page .coop-no {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  background: #0048a6;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.3125px;
}

.figma-cooperation-page .coop-no.green {
  background: #00a66c;
}

.figma-cooperation-page .coop-no.purple {
  background: #6333a2;
}

.figma-cooperation-page .coop-card h2 {
  width: 334px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .coop-card .slogan {
  margin: 11px 0 13px;
  color: #0048a6;
  font-family: "YouSheBiaoTiHei", "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .coop-card.green .slogan {
  color: #00a66c;
}

.figma-cooperation-page .coop-card.purple .slogan {
  color: #6333a2;
}

.figma-cooperation-page .coop-box {
  position: relative;
  width: 1177px;
  height: 290px;
  min-height: 290px;
  padding: 13px 27px 0;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #f7fbff;
  color: #5b6b78;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .coop-card.green .coop-box {
  height: 317px;
  min-height: 317px;
  background: #f7fffe;
}

.figma-cooperation-page .coop-card.purple .coop-box {
  background: #faf7ff;
}

.figma-cooperation-page .coop-box h3 {
  margin: 0 0 7px;
  color: #000;
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}

.figma-cooperation-page .coop-box ol {
  padding-left: 0;
  color: #5b6b78;
  font-size: 18px;
  line-height: 36px;
}

.figma-cooperation-page .coop-lines {
  width: 1125px;
  color: #5b6b78;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .coop-lines p {
  margin: 0;
}

.figma-cooperation-page .coop-lines p + p {
  margin-top: 7px;
}

.figma-cooperation-page .coop-card:not(.green):not(.purple) .coop-lines p:nth-child(3) {
  margin-top: 11px;
}

.figma-cooperation-page .coop-card.green .coop-box h3 {
  margin-bottom: 5px;
}

.figma-cooperation-page .coop-card.green .coop-lines {
  width: 1050px;
  margin-top: 0;
}

.figma-cooperation-page .coop-card.green .coop-lines p + p,
.figma-cooperation-page .coop-card.purple .coop-lines p + p {
  margin-top: 0;
}

.figma-cooperation-page .coop-note {
  position: absolute;
  left: 27px;
  top: 242px;
  margin: 0;
  padding-left: 38px;
  color: #0048a6;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
}

.figma-cooperation-page .coop-note::before {
  content: "!";
  position: absolute;
  left: -2px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: #0048a6;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
}

.figma-cooperation-page .coop-card.green .coop-note {
  color: #00a66c;
  top: 261px;
  transform: none;
}

.figma-cooperation-page .coop-card.green .coop-note::before {
  background: #00a66c;
}

.figma-cooperation-page .coop-card.green .coop-actions {
  transform: translateY(6px);
}

.figma-cooperation-page .coop-card.purple .coop-note {
  color: #6333a2;
}

.figma-cooperation-page .coop-card.purple .coop-note::before {
  background: #6333a2;
}

.figma-cooperation-page .coop-actions {
  margin-top: 18px;
  gap: 16px;
}

.figma-cooperation-page .coop-actions .btn {
  width: 140px;
  min-width: 140px;
  height: 52px;
  padding: 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.figma-cooperation-page .coop-card.green .btn.primary {
  border-color: #00a66c;
  background: #00a66c;
}

.figma-cooperation-page .coop-card.green .btn.ghost {
  border-color: #00a66c;
  color: #00a66c;
}

.figma-cooperation-page .coop-card.purple .btn.primary {
  border-color: #6333a2;
  background: #6333a2;
}

.figma-cooperation-page .coop-card.purple .btn.ghost {
  border-color: #6333a2;
  color: #6333a2;
}

.figma-cooperation-page .blue-note {
  width: 1240px;
  height: 72px;
  margin: 0;
  color: #0048a6;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.3955078125px;
  transform: translateX(-2px);
}

.figma-about-page .site-header {
  border-bottom: 0;
}

.figma-about-page .brand-logo-mark {
  opacity: 1;
}

.figma-about-page .sub-hero {
  height: 449.3px;
}

.figma-about-page .sub-hero .hero-copy {
  padding-top: 135px;
}

.figma-about-page .sub-hero .hero-copy h1 {
  width: 768px;
  height: 80px;
  color: #102a3a;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.3515625px;
}

.figma-about-page .sub-hero .hero-copy p {
  width: 565px;
  max-width: 565px;
  margin-top: 21px;
  color: #5b6b78;
  font-size: 16px;
  line-height: 29.25px;
  letter-spacing: -0.439453125px;
}

.figma-about-page .top-search:focus-within .top-search-box {
  color: #102a3a;
  border-color: #1e5aa8;
  background: #ffffff;
}

.figma-about-page .top-search:focus-within .search-mark {
  border-color: #1e5aa8;
}

.figma-about-page .top-search:focus-within .search-mark::after {
  background: #1e5aa8;
}

.figma-about-page .top-search:focus-within input {
  color: #102a3a;
}

.figma-about-page .top-search:focus-within input::placeholder {
  color: #1e5aa8;
}

.figma-about-page .about-intro-section {
  height: 547px;
  padding: 80px 0 0;
  background: #ffffff;
}

.figma-about-page .about-intro {
  grid-template-columns: 703px 711px;
  gap: 23px;
  align-items: start;
  width: 1442px;
  max-width: calc(100% - 56px);
}

.figma-about-page .about-text h2 {
  width: 554px;
  margin: 0 0 21px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .about-text p {
  width: 703px;
  margin: 0;
  color: #5b6b78;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .intro-image {
  width: 711px;
  height: 388px;
  object-fit: cover;
}

.figma-about-page .intro-facts {
  grid-template-columns: repeat(3, 222px);
  gap: 18px;
  margin-top: 35px;
}

.figma-about-page .intro-fact {
  min-height: 188px;
  padding: 20px 27px 18px 28px;
  border: 0;
  background: #f7fbff;
  box-shadow: none;
}

.figma-about-page .intro-fact strong {
  margin-bottom: 11px;
  color: #0048a6;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .intro-fact span {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.figma-about-page main > .section:nth-of-type(3) {
  height: 1382px;
  padding: 80px 0 0;
  overflow: hidden;
  background: #eef6fb;
}

.figma-about-page main > .section:nth-of-type(3) > .container {
  width: 1429px;
  max-width: calc(100% - 56px);
}

.figma-about-page main > .section:nth-of-type(3) .section-head {
  margin-bottom: 114px;
}

.figma-about-page main > .section:nth-of-type(3) .section-head::after,
.figma-about-page .about-contact-section .section-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  background: #1e5aa8;
}

.figma-about-page .partner-list {
  gap: 21px;
}

.figma-about-page .partner-card {
  grid-template-columns: 314px 1fr;
  gap: 17px;
  align-items: start;
  min-height: 230px;
  padding: 20px 19px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.figma-about-page .partner-card img {
  width: 314px;
  height: 186px;
  object-fit: cover;
}

.figma-about-page .partner-card h3 {
  margin-bottom: 21px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .partner-card p {
  margin: 0;
  color: #5b6b78;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .about-contact-section {
  height: 1167px;
  padding: 80px 0 0;
  overflow: hidden;
  background: #ffffff;
}

.figma-about-page .about-contact-section > .container {
  width: 1442px;
  max-width: calc(100% - 56px);
}

.figma-about-page .about-contact-section .section-head {
  margin-bottom: 89px;
}

.figma-about-page .contact-layout {
  grid-template-columns: 663px 683px;
  gap: 58px;
  width: 1404px;
}

.figma-about-page .contact-left {
  grid-template-columns: 322px 322px;
  gap: 20px 19px;
}

.figma-about-page .contact-card {
  position: relative;
  min-height: 328px;
  padding-top: 161px;
  justify-content: flex-start;
  border: 0;
  background: #f7fbff;
}

.figma-about-page .contact-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
}

.figma-about-page .contact-icon {
  position: absolute;
  z-index: 1;
  display: block;
  color: #0048a6;
  transform: translateX(-50%);
}

.figma-about-page .contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.figma-about-page .contact-card--phone .contact-icon {
  left: 50%;
  top: 51px;
  width: 68px;
  height: 68px;
}

.figma-about-page .contact-card--person .contact-icon {
  left: 50%;
  top: 60px;
  width: 50px;
  height: 50px;
}

.figma-about-page .contact-info {
  height: 294px;
  padding: 53px 9px 0 57px;
  background: #f7fbff;
}

.figma-about-page .contact-card b,
.figma-about-page .contact-row strong {
  color: #0048a6;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .contact-card p,
.figma-about-page .contact-row span {
  margin: 16px 0 0;
  color: #5b6b78;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .contact-card--person p {
  margin-top: 25px;
}

.figma-about-page .contact-row {
  grid-template-columns: 104px 464px;
  gap: 29px;
  margin-bottom: 56px;
}

.figma-about-page .contact-row span {
  margin-top: 0;
}

.figma-about-page .contact-guide {
  min-height: 642px;
  gap: 19px;
  padding: 30px 24px;
  background: url("./assets/contact-figure.png") center / cover no-repeat;
}

.figma-about-page .guide-item {
  width: 634px;
  min-height: 176px;
  padding: 27px 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 100%);
}

.figma-about-page .guide-item h3 {
  margin-bottom: 14px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .guide-item p {
  margin: 0;
  color: #5b6b78;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.3955078125px;
}

.figma-about-page .about-banner {
  width: 1404px;
  min-height: 124px;
  margin-top: 27px;
  padding-left: 54px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 72, 166, 0.93) 0%, rgba(28, 136, 194, 0.68) 56%, rgba(28, 136, 194, 0.18) 100%),
    url("./assets/contact-figure.png") center 62% / cover no-repeat;
  font-family: "YouSheBiaoTiHei", "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  letter-spacing: -0.44921875px;
}

.figma-resource-detail-page main > .section.tint {
  height: 1844px;
  overflow: hidden;
  padding-top: 20px;
}

.figma-resource-detail-page main > .section.tint > .container {
  width: 1244px;
  max-width: calc(100% - 56px);
  margin-left: calc((100% - 1256px) / 2);
  margin-right: auto;
}

.figma-resource-detail-page .breadcrumb-bar {
  height: 52px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.figma-resource-detail-page .breadcrumb-line {
  padding: 8px 0 0;
  color: #5b6b78;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.figma-resource-detail-page .breadcrumb-line strong {
  color: #000000;
  font-weight: 700;
}

.figma-resource-detail-page .breadcrumb-bar .btn {
  width: 91px;
  height: 32px;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 32px;
  font-weight: 500;
}

.figma-resource-detail-page .detail-hero {
  min-height: 437px;
  max-height: 437px;
  padding: 42px 50px 26px;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.84) 0%, rgba(244, 248, 252, 0.55) 100%),
    url("./assets/contact-figure.png") center 58% / cover no-repeat;
}

.figma-resource-detail-page .detail-hero-inner {
  padding: 0;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  min-width: 0;
}

.figma-resource-detail-page .detail-hero .tag-row {
  gap: 10px;
  margin-bottom: 31px;
}

.figma-resource-detail-page .detail-hero .pill {
  min-width: 100px;
  height: 36px;
  padding: 0 24px;
  border: 1px solid #1e5aa8;
  border-radius: 29px;
  color: #000000;
  background: #e8f2fc;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}

.figma-resource-detail-page .detail-hero h1 {
  width: 500px;
  margin: 0 0 26px;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.figma-resource-detail-page .detail-hero p {
  width: 1121px;
  margin: 0 0 17px;
  color: #5b6b78;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.figma-resource-detail-page .detail-hero .btn {
  width: 140px;
  height: 52px;
  padding: 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 52px;
  font-weight: 500;
}

.figma-resource-detail-page .detail-metrics {
  grid-template-columns: repeat(3, 365px);
  gap: 23px;
  margin-top: 16px;
}

.figma-resource-detail-page .detail-metric {
  min-height: 122px;
  padding: 15px 38px 14px;
  justify-content: flex-start;
  color: #000000;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: #f7fbff;
  text-align: center;
}

.figma-resource-detail-page .detail-metric span {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.figma-resource-detail-page .detail-metric strong {
  margin-top: 19px;
  color: #0048a6;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
}

.figma-resource-detail-page .detail-metric:first-child strong {
  margin-top: 7px;
  font-size: 18px;
  line-height: 25px;
}

.figma-resource-detail-page .detail-layout {
  grid-template-columns: 885px 342px;
  gap: 16px;
  margin-top: 21px;
}

.figma-resource-detail-page .detail-layout > div,
.figma-resource-detail-page .detail-layout > aside {
  min-width: 0;
}

.figma-resource-detail-page .panel {
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  padding: 17px 29px;
}

.figma-resource-detail-page .detail-layout > div > .panel:nth-child(1) {
  height: 158px;
  min-height: 158px;
}

.figma-resource-detail-page .detail-layout > div > .panel:nth-child(2) {
  min-height: 739px;
}

.figma-resource-detail-page .side-panel {
  min-height: 264px;
}

.figma-resource-detail-page .side-panel + .side-panel {
  min-height: 920px;
}

.figma-resource-detail-page .detail-layout > div > .panel:nth-child(3) {
  min-height: 268px;
}

.figma-resource-detail-page .panel h2 {
  margin: 0 0 7px;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.figma-resource-detail-page .panel p {
  margin: 0;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .info-row {
  padding: 18px 3px 17px;
  line-height: 24px;
}

.figma-resource-detail-page .info-row span {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.figma-resource-detail-page .info-row strong {
  color: #0048a6;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.figma-resource-detail-page .field-table th,
.figma-resource-detail-page .field-table td {
  height: 49px;
  padding: 0 32px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  vertical-align: middle;
}

.figma-resource-detail-page .field-table th {
  height: 53px;
  color: #5b6b78;
  background: #eef6fb;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.figma-resource-detail-page .field-table tr:nth-child(even) td {
  background: #eef6fb;
}

.figma-resource-detail-page .field-table-wrap {
  width: 100%;
  max-width: 100%;
}

.figma-resource-detail-page .field-table {
  display: table;
  overflow: visible;
  white-space: normal;
}

.figma-resource-detail-page .panel-sub {
  margin: 0 0 16px;
  color: #5b6b78;
  font-size: 16px;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  color: #333333;
  font-size: 20px;
  line-height: 36px;
}

.figma-resource-detail-page .pager > span:first-child {
  margin-right: auto;
}

.figma-resource-detail-page .pager button {
  border: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
  font-size: inherit;
}

.figma-resource-detail-page .pager .page-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #6c7b88;
}

.figma-resource-detail-page .pager .page-num.active {
  color: #ffffff;
  background: #0048a6;
}

.figma-resource-detail-page .data-content-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.figma-resource-detail-page .data-content-meta .info-row {
  border-bottom: 0;
  background: #eef6fb;
  padding: 15px 18px;
}

.figma-resource-detail-page .data-content-description {
  margin-top: 4px;
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  white-space: pre-wrap;
}

.figma-resource-detail-page .data-content-files {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.figma-resource-detail-page .data-content-file {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #c9d9eb;
  border-radius: 18px;
  background: #f6fbff;
}

.figma-resource-detail-page .rule-item {
  grid-template-columns: 35px 1fr;
  gap: 10px;
  margin-top: 20px;
}

.figma-resource-detail-page .rule-no {
  width: 35px;
  height: 35px;
  background: #0048a6;
  font-size: 16px;
  line-height: 27px;
}

.figma-resource-detail-page .rule-item span:last-child {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .related-grid {
  grid-template-columns: repeat(3, 262px);
  gap: 21px;
  margin-top: 22px;
}

.figma-resource-detail-page .related-card {
  min-height: 136px;
  padding: 11px 22px 20px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: #f7fbff;
}

.figma-resource-detail-page .related-card h3 {
  margin: 0 0 10px;
  color: #000000;
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
}

.figma-resource-detail-page .related-card .tag-row {
  gap: 11px;
}

.figma-resource-detail-page .related-card .pill {
  min-width: 110px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #0048a6;
  border-radius: 29px;
  color: #0048a6;
  background: #e8f0fc;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
}

.figma-resource-detail-page .related-card .pill.red {
  min-width: 93px;
  border-color: #a81e1e;
  color: #b61010;
  background: #fce8e8;
}

.figma-resource-detail-page .related-card .pill.green {
  min-width: 93px;
  border-color: #1ea871;
  color: #037a44;
  background: #e8fcf6;
}

/* Data resource detail refinement: clearer reading order and stronger hierarchy. */
.figma-resource-detail-page main > .section.tint {
  height: auto;
  min-height: calc(100vh - var(--header-h));
  overflow: visible;
  padding: 20px 0 72px;
  background:
    linear-gradient(180deg, #f4f8fc 0%, #eef5fb 46%, #f7fafc 100%);
}

.figma-resource-detail-page main > .section.tint > .container {
  width: min(1244px, calc(100% - 56px));
  max-width: min(1244px, calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}

.figma-resource-detail-page .breadcrumb-bar {
  height: auto;
  margin-bottom: 14px;
  padding: 10px 0 6px;
  align-items: center;
}

.figma-resource-detail-page .breadcrumb-line {
  padding: 0;
  color: #64768a;
  font-size: 15px;
  line-height: 24px;
}

.figma-resource-detail-page .breadcrumb-line strong {
  color: #12263a;
  font-weight: 600;
}

.figma-resource-detail-page .breadcrumb-bar .btn {
  width: auto;
  height: 36px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 36px;
}

.figma-resource-detail-page .detail-hero {
  min-height: 0;
  max-height: none;
  padding: 0;
  border: 1px solid rgba(207, 222, 235, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(35, 73, 105, 0.1);
  background:
    linear-gradient(96deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.9) 48%, rgba(232, 244, 252, 0.78) 100%),
    url("./assets/contact-figure.png") right center / auto 100% no-repeat;
  overflow: hidden;
}

.figma-resource-detail-page .detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  padding: 38px 42px 34px;
}

.figma-resource-detail-page .detail-hero-main {
  max-width: 980px;
  min-width: 0;
}

.figma-resource-detail-page .detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: #53677b;
  font-size: 15px;
  line-height: 22px;
}

.figma-resource-detail-page .detail-eyebrow span {
  position: relative;
  padding-left: 14px;
  color: #22384d;
  font-weight: 700;
}

.figma-resource-detail-page .detail-eyebrow span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: #0048a6;
}

.figma-resource-detail-page .detail-eyebrow em {
  font-style: normal;
  color: #0b7c53;
  font-weight: 600;
}

.figma-resource-detail-page .detail-hero .tag-row {
  gap: 8px;
  margin: 14px 0 18px;
}

.figma-resource-detail-page .detail-hero .pill {
  min-width: 0;
  height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(0, 72, 166, 0.18);
  border-radius: 999px;
  color: #0048a6;
  background: rgba(232, 242, 252, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
}

.figma-resource-detail-page .detail-hero h1 {
  width: min(920px, 100%);
  margin: 0 0 18px;
  color: #081f35;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.figma-resource-detail-page .detail-hero p.detail-lead,
.figma-resource-detail-page .detail-hero p {
  width: min(980px, 100%);
  margin: 0;
  color: #42566b;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.figma-resource-detail-page .detail-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.figma-resource-detail-page .detail-hero-actions span {
  color: #657789;
  font-size: 14px;
  line-height: 22px;
}

.figma-resource-detail-page .detail-hero .btn {
  width: auto;
  min-width: 132px;
  height: 44px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 44px;
  font-weight: 600;
}

.figma-resource-detail-page .detail-metrics {
  grid-template-columns: minmax(0, 1.55fr) repeat(4, minmax(0, 0.85fr));
  gap: 14px;
  margin-top: 0;
}

.figma-resource-detail-page .detail-metric,
.figma-resource-detail-page .detail-metric:first-child {
  min-height: 94px;
  padding: 18px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(214, 228, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.figma-resource-detail-page .detail-metric span {
  color: #687c8f;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.figma-resource-detail-page .detail-metric strong,
.figma-resource-detail-page .detail-metric:first-child strong {
  display: block;
  margin-top: 9px;
  color: #0b3f82;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .detail-layout {
  grid-template-columns: minmax(0, 1fr) 336px;
  gap: 20px;
  margin-top: 20px;
}

.figma-resource-detail-page .detail-layout > div {
  display: grid;
  gap: 20px;
}

.figma-resource-detail-page .detail-layout > aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.figma-resource-detail-page .panel,
.figma-resource-detail-page .side-panel,
.figma-resource-detail-page .detail-layout > div > .panel:nth-child(1),
.figma-resource-detail-page .detail-layout > div > .panel:nth-child(2),
.figma-resource-detail-page .detail-layout > div > .panel:nth-child(3),
.figma-resource-detail-page .side-panel + .side-panel {
  height: auto;
  min-height: 0;
}

.figma-resource-detail-page .panel {
  padding: 24px 28px 28px;
  border: 1px solid rgba(214, 228, 238, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(28, 64, 96, 0.06);
}

.figma-resource-detail-page .detail-panel {
  position: relative;
}

.figma-resource-detail-page .detail-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: #0048a6;
}

.figma-resource-detail-page .detail-panel + .detail-panel {
  margin-top: 0 !important;
}

.figma-resource-detail-page .detail-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.figma-resource-detail-page .panel h2,
.figma-resource-detail-page .detail-panel-head h2 {
  margin: 0;
  color: #0b233a;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.figma-resource-detail-page .panel-sub,
.figma-resource-detail-page .detail-panel-head .panel-sub {
  margin: 5px 0 0;
  color: #64768a;
  font-size: 15px;
  line-height: 24px;
}

.figma-resource-detail-page .detail-panel-meta {
  flex: 0 0 auto;
  max-width: 240px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 72, 166, 0.16);
  border-radius: 999px;
  color: #0048a6;
  background: #eef6fb;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figma-resource-detail-page .detail-summary-text {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(0, 72, 166, 0.28);
  border-radius: 0 6px 6px 0;
  color: #1a2f43;
  background: #f7fbff;
  font-size: 17px;
  line-height: 31px;
}

.figma-resource-detail-page .directory-panel {
  padding: 24px 24px 26px;
}

.figma-resource-detail-page .directory-panel h2 {
  padding-bottom: 14px;
  border-bottom: 1px solid #dce8f2;
}

.figma-resource-detail-page .detail-category-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 12px;
}

.figma-resource-detail-page .detail-category-trail span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 4px;
  color: #4e6174;
  background: #f0f6fb;
  font-size: 13px;
  line-height: 28px;
}

.figma-resource-detail-page .detail-category-trail span:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -8px;
  color: #8da0b2;
}

.figma-resource-detail-page .detail-category-trail .leaf {
  color: #0048a6;
  background: #e7f1fb;
  font-weight: 700;
}

.figma-resource-detail-page .info-row {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid #edf3f8;
  line-height: 24px;
}

.figma-resource-detail-page .info-row:last-child {
  border-bottom: 0;
}

.figma-resource-detail-page .info-row span {
  color: #697c8d;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.figma-resource-detail-page .info-row strong {
  color: #12385c;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .data-content-panel {
  overflow: hidden;
}

.figma-resource-detail-page .data-content-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.figma-resource-detail-page .data-content-summary div {
  padding: 14px 16px;
  border: 1px solid #dce8f2;
  border-radius: 6px;
  background: #f7fbff;
}

.figma-resource-detail-page .data-content-summary span {
  display: block;
  color: #6a7e90;
  font-size: 13px;
  line-height: 20px;
}

.figma-resource-detail-page .data-content-summary strong {
  display: block;
  margin-top: 6px;
  color: #12385c;
  font-size: 17px;
  line-height: 26px;
}

.figma-resource-detail-page .data-content-lock-area {
  position: relative;
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.figma-resource-detail-page .data-content-lock-target {
  min-height: 240px;
  transition: filter 180ms ease, opacity 180ms ease;
}

.figma-resource-detail-page .is-data-content-locked .data-content-lock-target {
  filter: blur(7px);
  opacity: 0.46;
  pointer-events: none;
  user-select: none;
}

.figma-resource-detail-page .data-content-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(248, 252, 255, 0.58);
  border: 1px solid rgba(207, 222, 235, 0.72);
  backdrop-filter: blur(14px) saturate(116%);
  -webkit-backdrop-filter: blur(14px) saturate(116%);
}

.figma-resource-detail-page .data-content-lock-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  color: #12385c;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(168, 196, 220, 0.82);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(39, 83, 125, 0.16);
}

.figma-resource-detail-page .data-content-lock-card i {
  position: relative;
  width: 18px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid #1e5aa8;
  border-radius: 4px;
}

.figma-resource-detail-page .data-content-lock-card i::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -11px;
  width: 8px;
  height: 10px;
  border: 2px solid #1e5aa8;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.figma-resource-detail-page .data-content-lock-card strong {
  color: #12385c;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.figma-resource-detail-page .data-content-skeleton {
  display: inline-block;
  width: 72%;
  height: 14px;
  background: linear-gradient(90deg, #dce8f2, #edf5fb, #dce8f2);
  border-radius: 999px;
}

.figma-resource-detail-page .data-content-skeleton.wide {
  width: 86%;
}

.figma-resource-detail-page .data-content-skeleton.short {
  width: 48%;
}

.figma-resource-detail-page .field-table-wrap {
  width: 100%;
  max-width: 100%;
  border: 1px solid #dce8f2;
  border-radius: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.figma-resource-detail-page .field-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  display: table;
  overflow: visible;
  white-space: normal;
}

.figma-resource-detail-page .field-table th,
.figma-resource-detail-page .field-table td {
  height: auto;
  padding: 13px 18px;
  border-bottom: 1px solid #edf3f8;
  color: #172f46;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.figma-resource-detail-page .field-table th {
  color: #43576b;
  background: #eef6fb;
  font-size: 15px;
  font-weight: 700;
}

.figma-resource-detail-page .field-table tr:last-child td {
  border-bottom: 0;
}

.figma-resource-detail-page .field-table tr:nth-child(even) td {
  background: #fbfdff;
}

.figma-resource-detail-page .pager {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  color: #526678;
  font-size: 14px;
  line-height: 32px;
}

.figma-resource-detail-page .pager > span:first-child {
  margin-right: auto;
}

.figma-resource-detail-page .pager button {
  height: 32px;
  padding: 0 10px;
  border: 1px solid #d5e3ee;
  border-radius: 4px;
  background: #ffffff;
  color: #33516c;
  font-size: 14px;
  line-height: 30px;
}

.figma-resource-detail-page .pager button:disabled {
  color: #9aaaba;
  background: #f2f6fa;
  cursor: not-allowed;
}

.figma-resource-detail-page .pager .page-num {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #526678;
  font-size: 14px;
  line-height: 32px;
}

.figma-resource-detail-page .pager .page-num.active {
  background: #0048a6;
}

.figma-resource-detail-page .data-content-meta {
  gap: 12px;
  margin-bottom: 16px;
}

.figma-resource-detail-page .data-content-meta .info-row {
  border: 1px solid #dce8f2;
  border-radius: 6px;
  background: #f7fbff;
  padding: 14px 16px;
}

.figma-resource-detail-page .data-content-description {
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid #dce8f2;
  border-radius: 8px;
  background: #ffffff;
  color: #1a2f43;
  font-size: 16px;
  line-height: 30px;
  white-space: normal;
}

.figma-resource-detail-page .data-content-description span {
  display: block;
  margin-bottom: 8px;
  color: #687c8f;
  font-size: 14px;
  line-height: 22px;
}

.figma-resource-detail-page .data-content-description p {
  margin: 0;
  color: #1a2f43;
  font-size: 16px;
  line-height: 30px;
  white-space: pre-wrap;
}

.figma-resource-detail-page .data-content-files {
  gap: 10px;
  margin-top: 14px;
}

.figma-resource-detail-page .data-content-file {
  min-height: 34px;
  margin-top: 0;
  padding: 0 13px;
  border: 1px solid #cbddec;
  border-radius: 4px;
  color: #0048a6;
  background: #f6fbff;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
}

.figma-resource-detail-page .attachment-empty {
  color: #768898;
  font-size: 14px;
}

.figma-resource-detail-page .rule-item {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.figma-resource-detail-page .rule-no {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #e7f1fb;
  color: #0048a6;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
}

.figma-resource-detail-page .rule-item span:last-child {
  color: #263c52;
  font-size: 15px;
  line-height: 25px;
}

.figma-resource-detail-page .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.figma-resource-detail-page .related-card {
  display: flex;
  min-height: 150px;
  padding: 18px 18px 16px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dce8f2;
  border-radius: 8px;
  background: #f9fcff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.figma-resource-detail-page .related-card:hover,
.figma-resource-detail-page .related-card:focus-visible {
  border-color: rgba(0, 72, 166, 0.32);
  box-shadow: 0 10px 24px rgba(0, 72, 166, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.figma-resource-detail-page .related-card-head,
.figma-resource-detail-page .related-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.figma-resource-detail-page .related-card-head span,
.figma-resource-detail-page .related-card-head em {
  color: #5e7284;
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}

.figma-resource-detail-page .related-card-head em {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figma-resource-detail-page .related-card h3 {
  margin: 16px 0 20px;
  color: #102a3f;
  font-size: 17px;
  line-height: 27px;
  font-weight: 700;
}

.figma-resource-detail-page .related-card-foot span {
  color: #0048a6;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.figma-resource-detail-page .related-card-foot i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, #0048a6 45%, #0048a6 55%, transparent 55%) 8px 5px / 7px 7px no-repeat,
    #e7f1fb;
}

@media (max-width: 1180px) {
  .figma-resource-detail-page main > .section.tint > .container {
    margin-left: auto;
    margin-right: auto;
  }

  .figma-data-page .filter-box {
    width: 100%;
    max-width: 100%;
  }

  .figma-data-page .filter-row {
    grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.2fr) 173px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand-logo {
    width: 315px;
  }

  .nav {
    gap: 16px;
  }

  .top-search-box {
    width: 132px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: auto;
  }

  .figma-home-page .container,
  .figma-site-page .container,
  .figma-frame,
  .figma-about-page .about-intro,
  .figma-about-page main > .section:nth-of-type(3) > .container,
  .figma-about-page main > .section:nth-of-type(4) > .container,
  .figma-about-page .contact-layout,
  .figma-about-page .about-banner,
  .figma-resource-detail-page main > .section.tint > .container {
    width: min(100% - 32px, var(--container));
    max-width: min(100% - 32px, var(--container));
  }

  .figma-home-page .header-inner,
  .figma-site-page .header-inner {
    height: auto;
    min-height: 0;
  }

  .figma-home-page .brand-logo,
  .figma-site-page .brand-logo,
  .figma-home-page .nav,
  .figma-site-page .nav,
  .figma-home-page .header-actions,
  .figma-site-page .header-actions {
    position: static;
    left: auto;
    top: auto;
  }

  .figma-home-page .nav,
  .figma-site-page .nav {
    height: auto;
  }

  .figma-home-page .header-actions,
  .figma-site-page .header-actions {
    height: auto;
    margin-left: auto;
  }

  .figma-hero,
  .figma-goals,
  .figma-tasks,
  .figma-network,
  .figma-results,
  .figma-demand-page main > .section.tint,
  .figma-cooperation-page main > .section.ways,
  .figma-cooperation-page main > .section.tint,
  .figma-about-page main > .section:nth-of-type(2),
  .figma-about-page main > .section:nth-of-type(3),
  .figma-about-page main > .section:nth-of-type(4),
  .figma-resource-detail-page main > .section.tint {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .figma-goal-grid,
  .figma-task-layout,
  .figma-network-layout,
  .figma-result-grid,
  .figma-news-page .news-list,
  .figma-data-page .resource-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .figma-task-card,
  .figma-city-card,
  .figma-result-card,
  .figma-data-page .resource-card {
    width: 100%;
  }

  .figma-task-card p {
    width: auto;
  }

  .figma-architecture,
  .figma-network-map,
  .figma-network-layout,
  .figma-news-page .news-search,
  .figma-data-page .data-summary {
    width: 100%;
  }

  .figma-cta,
  .figma-about-page .about-banner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding: 22px;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-link {
    height: 34px;
  }

  .nav-link::after {
    bottom: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-stage,
  .sub-hero,
  .data-hero {
    height: auto;
    min-height: 360px;
  }

  .hero-copy,
  .data-hero .hero-copy {
    display: flex;
    justify-content: center;
    padding: 52px 0;
  }

  .hero-copy h1,
  .sub-hero .hero-copy h1,
  .data-hero h1 {
    font-size: 44px;
  }

  .grid-3,
  .grid-2,
  .task-layout,
  .network-layout,
  .result-grid,
  .area-cards,
  .detail-layout,
  .contact-layout,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .news-card.feature,
  .partner-card {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .partner-card img {
    width: 100%;
    height: auto;
  }

  .filter-row,
  .demand-filter .filter-row {
    grid-template-columns: 1fr;
  }

  .dialog,
  .apply-modal__panel {
    width: calc(100% - 28px);
    max-height: calc(100dvh - 28px);
    padding: 22px 18px;
    overflow: auto;
  }

  .dialog-form-grid,
  .apply-form__grid {
    grid-template-columns: 1fr;
  }

  .dialog-actions,
  .apply-form__actions {
    justify-content: stretch;
  }

  .dialog-actions .btn,
  .apply-form__actions .btn {
    flex: 1;
  }

  .upload-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .upload-file-name {
    width: 100%;
    white-space: normal;
  }

  .demand-date {
    position: static;
    text-align: left;
    margin-bottom: 10px;
  }

  .demand-meta,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-copy,
  .news-search-wrap {
    width: min(100% - 32px, var(--container));
  }

  .brand-logo {
    width: 280px;
  }

  .header-actions {
    width: 100%;
  }

  .top-search {
    flex: 1;
  }

  .top-search-box {
    width: 100%;
  }

  .auth-btn {
    min-width: 48px;
  }

  .hero-copy h1,
  .sub-hero .hero-copy h1,
  .data-hero h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .sub-hero .hero-copy p {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .city-stat {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .city-name {
    min-height: 74px;
    margin-bottom: 14px;
  }

  .detail-metrics,
  .related-grid,
  .intro-facts,
  .contact-left {
    grid-template-columns: 1fr;
  }

  .news-search {
    grid-template-columns: 1fr 84px;
  }

  .news-tabs {
    margin-top: 36px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .coop-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile Figma overrides. Keep desktop inspect dimensions untouched. */
@media (max-width: 980px) {
  .figma-home-page .container,
  .figma-site-page .container,
  .figma-frame,
  .figma-section-head,
  .figma-about-page .about-intro,
  .figma-about-page main > .section:nth-of-type(3) > .container,
  .figma-about-page main > .section:nth-of-type(4) > .container,
  .figma-resource-detail-page main > .section.tint > .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .figma-home-page .site-header,
  .figma-site-page .site-header {
    height: auto;
  }

  .figma-home-page .header-inner,
  .figma-site-page .header-inner {
    position: static;
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .figma-home-page .brand-logo,
  .figma-site-page .brand-logo {
    position: static;
    left: auto;
    top: auto;
    width: min(100%, 360px);
    height: auto;
    min-height: 52px;
    gap: 14px;
  }

  .figma-home-page .brand-logo-mark,
  .figma-site-page .brand-logo-mark {
    width: 42px;
    height: 46px;
  }

  .figma-home-page .brand-logo-text,
  .figma-site-page .brand-logo-text {
    min-width: 0;
    max-width: 100%;
  }

  .figma-home-page .brand-logo-text strong,
  .figma-site-page .brand-logo-text strong {
    white-space: normal;
    font-size: 15px;
    line-height: 20px;
  }

  .figma-home-page .brand-logo-text em,
  .figma-site-page .brand-logo-text em {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .figma-home-page .brand-logo-text::before,
  .figma-site-page .brand-logo-text::before,
  .figma-home-page .brand-logo-text::after,
  .figma-site-page .brand-logo-text::after {
    display: none;
  }

  .figma-home-page .nav,
  .figma-site-page .nav {
    position: static;
    left: auto;
    top: auto;
    order: 3;
    width: 100%;
    max-width: 100%;
    height: auto;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .figma-home-page .nav::-webkit-scrollbar,
  .figma-site-page .nav::-webkit-scrollbar {
    display: none;
  }

  .figma-home-page .nav-link,
  .figma-site-page .nav-link {
    flex: 0 0 auto;
    height: 36px;
  }

  .figma-home-page .nav-link::after,
  .figma-site-page .nav-link::after {
    bottom: 0;
  }

  .figma-home-page .header-actions,
  .figma-site-page .header-actions {
    position: static;
    left: auto;
    top: auto;
    order: 2;
    width: 100%;
    height: auto;
    margin-left: 0;
    min-width: 0;
    flex-wrap: wrap;
  }

  .figma-home-page .top-search,
  .figma-site-page .top-search {
    flex: 1 1 auto;
    min-width: 0;
  }

  .figma-home-page .auth-btn,
  .figma-site-page .auth-btn {
    flex: 0 0 auto;
  }

  .figma-home-page .top-search-box,
  .figma-site-page .top-search-box {
    width: 100%;
  }

  .search-panel {
    max-width: calc(100vw - 32px);
  }

  .figma-hero,
  .figma-goals,
  .figma-tasks,
  .figma-network,
  .figma-results,
  .figma-data-page main > .section:nth-of-type(2),
  .figma-data-page main > .section:nth-of-type(3),
  .figma-demand-page main > .section.tint,
  .figma-cooperation-page main > .section.ways,
  .figma-cooperation-page main > .section.tint,
  .figma-about-page main > .section:nth-of-type(2),
  .figma-about-page main > .section:nth-of-type(3),
  .figma-about-page main > .section:nth-of-type(4),
  .figma-resource-detail-page main > .section.tint {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .figma-hero {
    min-height: 360px;
  }

  .figma-hero__image {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .figma-hero__copy {
    width: 100%;
    max-width: 100%;
    padding: 64px 0;
  }

  .figma-hero__copy h1 {
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.18;
  }

  .figma-hero__copy p {
    width: 100%;
    max-width: 42em;
    white-space: normal;
    transform: none;
    line-height: 1.75;
  }

  .figma-actions,
  .figma-cta__actions,
  .hero-actions {
    flex-wrap: wrap;
  }

  .figma-btn,
  .figma-cta__actions a {
    width: auto;
    min-width: 140px;
    flex: 1 1 160px;
  }

  .figma-goals,
  .figma-tasks,
  .figma-network,
  .figma-results,
  .figma-site-page .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .figma-goal-grid,
  .figma-task-layout,
  .figma-network-layout,
  .figma-result-grid,
  .figma-data-page .area-cards,
  .figma-data-page .resource-list,
  .figma-news-page .news-list,
  .figma-demand-page .demand-filter .filter-row,
  .figma-data-page .filter-row,
  .figma-about-page .about-intro,
  .figma-about-page .partner-card,
  .figma-about-page .contact-layout,
  .figma-resource-detail-page .detail-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .figma-goal-grid,
  .figma-task-layout,
  .figma-network-layout,
  .figma-result-grid {
    margin-top: 40px;
  }

  .figma-goal-card,
  .figma-task-card,
  .figma-result-card,
  .figma-data-page .area-card,
  .figma-data-page .resource-card,
  .figma-news-page .news-card,
  .figma-cooperation-page .way-card,
  .figma-cooperation-page .coop-card,
  .figma-cooperation-page .coop-box,
  .figma-about-page .partner-card,
  .figma-resource-detail-page .panel,
  .figma-resource-detail-page .side-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
  }

  .figma-cooperation-page .coop-stack,
  .figma-cooperation-page .coop-card.green .coop-note,
  .figma-cooperation-page .coop-card.green .coop-actions,
  .figma-cooperation-page .blue-note {
    transform: none;
  }

  .figma-cooperation-page .nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    overflow-x: visible;
  }

  .figma-cooperation-page .nav-link {
    flex: 0 0 auto;
    color: #5b6b78;
  }

  .figma-cooperation-page .site-header::before,
  .figma-cooperation-page .sub-hero::before {
    display: none;
  }

  .figma-cooperation-page .brand-logo-mark,
  .figma-cooperation-page .brand-logo-text,
  .figma-cooperation-page .sub-hero .hero-copy h1,
  .figma-cooperation-page .sub-hero .hero-copy p,
  .figma-cooperation-page .sub-hero .btn,
  .figma-cooperation-page .top-search-box,
  .figma-cooperation-page .auth-btn,
  .figma-cooperation-page .auth-btn.primary {
    opacity: 1;
  }

  .figma-cooperation-page .top-search-box {
    color: #102a3a;
    border-color: #1e5aa8;
    background: #ffffff;
  }

  .figma-cooperation-page .search-mark {
    border-color: #1e5aa8;
  }

  .figma-cooperation-page .search-mark::after {
    background: #1e5aa8;
  }

  .figma-cooperation-page .top-search input {
    color: #102a3a;
  }

  .figma-cooperation-page .top-search input::placeholder {
    color: #1e5aa8;
  }

  .figma-cooperation-page .auth-btn {
    color: #1e5aa8;
    border-color: #1e5aa8;
    background: #ffffff;
  }

  .figma-cooperation-page .auth-btn.primary {
    color: #ffffff;
    border-color: #1e5aa8;
    background: #1e5aa8;
  }

  .figma-about-page .site-header::before,
  .figma-about-page .sub-hero::before,
  .figma-about-page main > .section:nth-of-type(2)::before,
  .figma-about-page main > .section:nth-of-type(3)::before,
  .figma-about-page main > .section:nth-of-type(4)::before,
  .figma-about-page .footer::before {
    display: none;
  }

  .figma-about-page .brand-logo-mark,
  .figma-about-page .brand-logo-text,
  .figma-about-page .nav-link,
  .figma-about-page .top-search-box,
  .figma-about-page .auth-btn,
  .figma-about-page .sub-hero .hero-copy,
  .figma-about-page .about-intro,
  .figma-about-page main > .section:nth-of-type(3) > .container,
  .figma-about-page main > .section:nth-of-type(4) > .container,
  .figma-about-page .footer > .container {
    opacity: 1;
  }

  .figma-about-page .nav {
    flex-wrap: wrap;
    gap: 10px 18px;
    overflow-x: visible;
  }

  .figma-about-page .nav-link {
    flex: 0 0 auto;
  }

  .figma-cooperation-page .sub-hero .hero-copy,
  .figma-cooperation-page main > .section.ways .container,
  .figma-cooperation-page .coop-stack,
  .figma-cooperation-page .blue-note {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .figma-cooperation-page .sub-hero .hero-copy {
    height: auto;
    padding: 56px 0;
  }

  .figma-cooperation-page .sub-hero .hero-copy h1,
  .figma-cooperation-page .sub-hero .hero-copy p,
  .figma-cooperation-page .way-card p,
  .figma-cooperation-page .coop-lines,
  .figma-cooperation-page .coop-card.green .coop-lines {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .figma-cooperation-page .sub-hero .hero-copy h1,
  .figma-cooperation-page .sub-hero .hero-copy p,
  .figma-cooperation-page .coop-card .slogan,
  .figma-cooperation-page .coop-box h3,
  .figma-cooperation-page .coop-lines p,
  .figma-cooperation-page .blue-note {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .figma-cooperation-page main > .section.ways .grid-3 {
    grid-template-columns: 1fr;
  }

  .figma-cooperation-page .header-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .figma-cooperation-page .top-search {
    flex: 1 1 180px;
  }

  .figma-cooperation-page .auth-btn,
  .figma-cooperation-page .auth-btn.primary {
    flex: 0 0 auto;
  }

  .figma-cooperation-page main > .section.ways .section-head {
    margin-bottom: 52px;
  }

  .figma-cooperation-page .way-card {
    padding: 22px 24px;
  }

  .figma-cooperation-page .way-card h3 {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
  }

  .figma-cooperation-page .coop-card {
    padding: 22px 18px 24px;
    overflow: visible;
  }

  .figma-cooperation-page .coop-head {
    align-items: flex-start;
  }

  .figma-cooperation-page .coop-card h2 {
    width: auto;
  }

  .figma-cooperation-page .coop-card .slogan {
    margin: 12px 0;
    font-size: 18px;
    line-height: 30px;
  }

  .figma-cooperation-page .coop-box {
    padding: 18px 20px;
    font-size: 16px;
    line-height: 30px;
    overflow: visible;
  }

  .figma-cooperation-page .coop-box h3 {
    font-size: 16px;
    line-height: 30px;
  }

  .figma-cooperation-page .coop-lines {
    font-size: 16px;
    line-height: 30px;
  }

  .figma-cooperation-page .coop-lines p + p,
  .figma-cooperation-page .coop-card.green .coop-lines p + p,
  .figma-cooperation-page .coop-card.purple .coop-lines p + p {
    margin-top: 8px;
  }

  .figma-cooperation-page .coop-note,
  .figma-cooperation-page .coop-card.green .coop-note {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin-top: 18px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 28px;
    overflow-wrap: anywhere;
  }

  .figma-cooperation-page .coop-note::before {
    left: 0;
    top: 3px;
  }

  .figma-cooperation-page .coop-actions,
  .figma-cooperation-page .coop-card.green .coop-actions {
    transform: none;
  }

  .figma-cooperation-page .coop-actions {
    flex-wrap: wrap;
  }

  .figma-architecture {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding: 24px;
  }

  .figma-flow,
  .figma-flow-step {
    width: 100%;
    max-width: 100%;
  }

  .figma-flow-step.label-right::after,
  .figma-flow-step.label-left::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-task-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .figma-task-card p {
    width: auto;
  }

  .figma-network-map {
    width: 100%;
    max-width: 100%;
  }

  .figma-network-map__image {
    width: 100%;
    height: 100%;
  }

  .figma-network-map .network-ring,
  .figma-network-map .network-line,
  .figma-network-map .network-core,
  .figma-network-map .network-city,
  .figma-network-map .network-dot {
    display: none;
  }

  .figma-city-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .figma-city-card h3 {
    margin: 0;
    padding: 18px 20px;
    border-radius: 6px 6px 0 0;
  }

  .figma-city-card div {
    min-height: 96px;
    border-right: 1px solid #d6e4f0;
  }

  .figma-city-card div:last-child {
    border-radius: 0 0 6px 6px;
  }

  .figma-result-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .figma-cta,
  .figma-about-page .about-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .figma-site-page .hero-stage,
  .figma-site-page .sub-hero,
  .figma-site-page .data-hero {
    height: auto;
    min-height: 340px;
  }

  .figma-site-page .hero-copy,
  .figma-data-page .data-hero .hero-copy,
  .figma-demand-page .sub-hero .hero-copy {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
    min-height: 0;
    padding: 56px 0;
  }

  .figma-data-page .data-hero .hero-copy > div:first-child,
  .figma-data-page .data-summary,
  .figma-data-page .data-summary h2,
  .figma-data-page .data-hero .data-summary p,
  .figma-data-page .big-number,
  .figma-data-page .summary-stats,
  .figma-data-page .local-scope-control:not([hidden]) {
    position: static;
    left: auto;
    top: auto;
  }

  .figma-data-page .data-hero .hero-copy > div:first-child,
  .figma-data-page .data-hero .hero-copy h1,
  .figma-data-page .data-hero .hero-copy p,
  .figma-data-page .data-summary h2,
  .figma-data-page .data-hero .data-summary p,
  .figma-demand-page .sub-hero .hero-copy h1,
  .figma-demand-page .sub-hero .hero-copy p {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }

  .figma-site-page .hero-copy h1 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.2;
  }

  .figma-site-page .hero-copy p,
  .figma-data-page .data-hero .hero-copy p,
  .figma-demand-page .sub-hero .hero-copy p {
    max-width: 100%;
  }

  .figma-data-page .data-summary {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 28px 24px;
  }

  .figma-data-page .data-summary-top {
    display: grid;
    gap: 14px;
  }

  .figma-data-page .summary-stats {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .figma-data-page .summary-stat {
    width: auto;
    height: auto;
    min-height: 72px;
    padding: 18px 12px;
  }

  .figma-data-page main > .section:nth-of-type(2),
  .figma-data-page main > .section:nth-of-type(3),
  .figma-demand-page main > .section.tint {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .figma-data-page main > .section:nth-of-type(2),
  .figma-demand-page main > .section.tint {
    padding-bottom: 64px;
  }

  .figma-data-page .area-card,
  .figma-data-page .progress,
  .figma-data-page .filter-box,
  .figma-data-page .result-count,
  .figma-data-page .resource-card,
  .figma-data-page .resource-card p,
  .figma-data-page .owner,
  .figma-demand-page main > .section.tint > .container,
  .figma-demand-page .demand-filter,
  .figma-demand-page .demand-count,
  .figma-demand-page .demand-list,
  .figma-demand-page .demand-card,
  .figma-demand-page .demand-date,
  .figma-demand-page .demand-card h2,
  .figma-demand-page .demand-card p,
  .figma-demand-page .tag-row,
  .figma-demand-page .demand-meta,
  .figma-demand-page .pager {
    width: 100%;
    max-width: 100%;
  }

  .figma-data-page .area-card,
  .figma-data-page .resource-card,
  .figma-data-page .result-count,
  .figma-data-page .meta-box,
  .figma-demand-page .demand-filter,
  .figma-demand-page .demand-card,
  .figma-demand-page .pager {
    height: auto;
    min-height: 0;
  }

  .figma-data-page .filter-box,
  .figma-demand-page .demand-filter {
    min-height: 0;
    padding: 28px 20px;
  }

  .figma-data-page .filter-row,
  .figma-demand-page .demand-filter .filter-row {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }

  .figma-demand-page .filter-control input,
  .figma-demand-page .filter-control select {
    min-width: 0;
  }

  .figma-data-page .filter-row .btn,
  .figma-demand-page .demand-filter .btn[data-demand-reset] {
    width: 100%;
    height: 48px;
    margin: 0;
  }

  .figma-data-page .filter-control input,
  .figma-data-page .filter-control select {
    min-width: 0;
  }

  .figma-data-page .category-cascader-panel,
  .figma-demand-page .demand-filter .category-cascader-panel {
    left: 0;
    right: auto;
    width: min(720px, calc(100vw - 40px));
  }

  .figma-data-page .local-scope-control:not([hidden]) {
    width: auto;
  }

  .result-count {
    align-items: flex-start;
    flex-direction: column;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .figma-data-page .result-count span {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .figma-data-page .resource-card {
    height: 300px;
    padding: 0;
  }

  .figma-data-page .resource-card-main {
    padding: 24px 24px 18px;
    padding-right: 120px;
  }

  .figma-data-page .category-path {
    height: auto;
    min-height: 0;
  }

  .figma-data-page .resource-card h3,
  .figma-news-page .news-card h2,
  .figma-news-page .news-card h3,
  .figma-demand-page .demand-card h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .figma-data-page .resource-card p,
  .figma-demand-page .demand-card p,
  .figma-demand-page .demand-meta,
  .figma-demand-page .demand-meta a,
  .figma-about-page .partner-card p {
    font-size: 16px;
    line-height: 28px;
  }

  .figma-data-page .resource-card .resource-summary {
    height: 56px;
  }

  .figma-data-page .owner {
    margin: 10px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .figma-data-page .meta-grid {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .figma-data-page .card-link {
    width: auto;
    margin-top: 0;
  }

  .figma-data-page .resource-card-foot {
    align-items: flex-start;
    flex-direction: row;
    gap: 18px;
  }

  .figma-demand-page .demand-filter {
    padding: 28px 20px;
  }

  .figma-demand-page .demand-filter .hint,
  .figma-demand-page .demand-count,
  .figma-demand-page .tag-row {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .figma-demand-page .demand-count {
    margin-top: 20px;
  }

  .figma-demand-page .demand-card {
    padding: 24px;
  }

  .figma-demand-page .demand-date {
    position: static;
    margin-bottom: 10px;
    text-align: left;
  }

  .figma-demand-page .tag-row {
    flex-wrap: wrap;
  }

  .figma-demand-page .tag-row .pill {
    height: auto;
    min-height: 0;
    padding: 8px 12px;
    line-height: 24px;
  }

  .figma-demand-page .demand-meta,
  .figma-demand-page .demand-card:nth-of-type(n+2) .demand-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .figma-demand-page .demand-card:nth-of-type(n+2) .demand-meta > div:nth-child(3) {
    grid-column: auto;
  }

  .figma-demand-page .demand-meta > div:first-child {
    flex-wrap: wrap;
  }

  .figma-demand-page .pager {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .figma-news-page .news-search-wrap {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-top: 64px;
  }

  .figma-news-page .news-search {
    width: 100%;
    max-width: 100%;
    height: 56px;
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .figma-news-page .news-search input {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .figma-news-page .news-search button {
    width: 88px;
    font-size: 18px;
    line-height: 56px;
  }

  .figma-news-page .news-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .figma-news-page .news-tabs .tab {
    flex: 0 0 auto;
  }

  .figma-news-page .news-card.feature {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    min-height: 0;
  }

  .figma-news-page .news-card img,
  .figma-about-page .partner-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .figma-news-page .news-card.feature img {
    margin-top: 0;
  }

  .figma-about-page .intro-image,
  .figma-about-page .about-text,
  .figma-about-page .about-text h2,
  .figma-about-page .about-text p,
  .figma-about-page .contact-guide,
  .figma-about-page .contact-left,
  .figma-about-page .guide-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .figma-about-page .intro-image {
    height: auto;
  }

  .figma-about-page main > .section:nth-of-type(3) .section-head,
  .figma-about-page main > .section:nth-of-type(4) .section-head {
    margin-bottom: 40px;
  }

  .figma-about-page .partner-card {
    padding: 20px;
  }

  .figma-about-page .partner-card h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .figma-about-page .contact-layout {
    gap: 24px;
  }

  .figma-about-page .contact-left,
  .figma-about-page .contact-card,
  .figma-about-page .contact-info,
  .figma-about-page .contact-row,
  .figma-about-page .contact-row span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .figma-about-page .contact-left {
    grid-template-columns: 1fr;
  }

  .figma-about-page .contact-row span {
    overflow-wrap: anywhere;
  }

  .figma-about-page .sub-hero {
    height: auto;
    min-height: 360px;
  }

  .figma-about-page .sub-hero::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background-position: center;
  }

  .figma-about-page .sub-hero::after {
    display: block;
    background: linear-gradient(90deg, rgba(232, 240, 250, 0.78), rgba(232, 240, 250, 0.34));
  }

  .figma-about-page .sub-hero .hero-copy {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    height: auto;
    padding: 64px 0;
  }

  .figma-about-page .sub-hero .hero-copy h1,
  .figma-about-page .sub-hero .hero-copy p {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow-wrap: anywhere;
  }

  .figma-about-page .sub-hero .hero-copy h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.18;
  }

  .figma-about-page .sub-hero .hero-copy p {
    margin-top: 18px;
    line-height: 1.75;
  }

  .figma-about-page .about-intro-section,
  .figma-about-page .about-contact-section {
    padding: 64px 0;
  }

  .figma-about-page .intro-facts {
    grid-template-columns: 1fr;
  }

  .figma-about-page .intro-fact {
    min-height: 0;
  }

  .figma-about-page .contact-card,
  .figma-about-page .contact-info {
    height: auto;
  }

  .figma-about-page .contact-info {
    padding: 28px 24px;
  }

  .figma-about-page .contact-guide {
    min-height: 0;
    padding: 24px;
  }

  .figma-about-page .guide-item {
    min-height: 0;
  }

  .figma-about-page .about-text h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .figma-about-page .about-text p {
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .figma-about-page .intro-fact strong {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .figma-about-page .intro-fact span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .figma-about-page .contact-card {
    min-height: 220px;
    padding-top: 128px;
  }

  .figma-about-page .contact-card::before {
    top: 28px;
    width: 86px;
    height: 86px;
  }

  .figma-about-page .contact-card--phone .contact-icon {
    top: 46px;
    width: 50px;
    height: 50px;
  }

  .figma-about-page .contact-card--person .contact-icon {
    top: 48px;
    width: 46px;
    height: 46px;
  }

  .figma-about-page .contact-card b,
  .figma-about-page .contact-row strong {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .figma-about-page .contact-card p,
  .figma-about-page .contact-row span,
  .figma-about-page .guide-item p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
  }

  .figma-about-page .guide-item h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .figma-resource-detail-page .detail-hero {
    max-height: none;
    min-height: 0;
    padding: 28px 24px;
  }

  .figma-resource-detail-page .breadcrumb-bar {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .figma-resource-detail-page .breadcrumb-line {
    width: 100%;
    padding-top: 0;
    font-size: 16px;
    line-height: 26px;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .breadcrumb-bar .btn {
    width: 120px;
  }

  .figma-resource-detail-page .detail-hero .tag-row {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .figma-resource-detail-page .detail-hero .pill {
    min-width: 88px;
    padding: 0 16px;
  }

  .figma-resource-detail-page .detail-hero h1,
  .figma-resource-detail-page .detail-hero p {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .detail-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .detail-hero p {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 30px;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .detail-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .figma-resource-detail-page .detail-metric {
    min-height: 100px;
    padding: 18px 20px;
  }

  .figma-resource-detail-page .detail-layout {
    gap: 20px;
  }

  .figma-resource-detail-page .detail-layout > div,
  .figma-resource-detail-page .detail-layout > aside {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .figma-resource-detail-page .panel {
    overflow: visible;
  }

  .figma-resource-detail-page .field-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .figma-resource-detail-page .field-table {
    display: table;
    min-width: 900px;
    max-width: none;
    overflow: visible;
    white-space: normal;
  }

  .figma-resource-detail-page .field-table th,
  .figma-resource-detail-page .field-table td {
    padding: 0 18px;
  }

  .figma-resource-detail-page .related-grid {
    grid-template-columns: 1fr;
  }

  .figma-resource-detail-page .related-card {
    min-height: 116px;
  }

  .figma-resource-detail-page .panel p,
  .figma-resource-detail-page .info-row,
  .figma-resource-detail-page .info-row strong,
  .figma-resource-detail-page .related-card h3 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .field-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .figma-home-page .footer,
  .figma-site-page .footer {
    height: auto;
    padding: 28px 0 16px;
  }

  .figma-home-page .footer-grid,
  .figma-site-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .figma-home-page .footer-links,
  .figma-site-page .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .figma-home-page .copyright,
  .figma-site-page .copyright {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .figma-home-page .brand-logo,
  .figma-site-page .brand-logo {
    width: 100%;
  }

  .figma-home-page .header-actions,
  .figma-site-page .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px 92px;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }

  .figma-home-page .top-search,
  .figma-site-page .top-search {
    min-width: 0;
  }

  .figma-home-page .top-search-box,
  .figma-site-page .top-search-box {
    width: 100%;
  }

  .figma-home-page .auth-btn,
  .figma-home-page .auth-btn.primary,
  .figma-site-page .auth-btn,
  .figma-site-page .auth-btn.primary {
    width: 100%;
    min-width: 64px;
    padding: 0 12px;
  }

  .figma-resource-detail-page .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .figma-resource-detail-page .header-actions .top-search {
    grid-column: 1 / -1;
  }

  .figma-resource-detail-page .auth-btn,
  .figma-resource-detail-page .auth-btn.primary {
    min-width: 0;
    width: 100%;
  }

  .figma-actions,
  .figma-cta__actions,
  .hero-actions,
  .figma-cooperation-page .hero-tabs,
  .figma-cooperation-page .coop-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .figma-btn,
  .figma-cta__actions a,
  .hero-actions .btn,
  .figma-cooperation-page .hero-tabs .btn,
  .figma-cooperation-page .coop-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .figma-section-head h2,
  .figma-site-page .section-head h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .figma-section-head p,
  .figma-site-page .section-head p {
    line-height: 1.7;
  }

  .figma-goal-card {
    padding: 132px 22px 28px;
  }

  .figma-goal-card img {
    width: 170px;
    height: 170px;
  }

  .figma-architecture,
  .figma-task-card,
  .figma-result-card,
  .figma-cta,
  .figma-about-page .about-banner {
    padding: 22px;
  }

  .figma-task-card,
  .figma-result-card {
    grid-template-columns: 1fr;
  }

  .figma-network-map {
    height: 330px;
  }

  .data-summary-top,
  .summary-stats,
  .meta-grid,
  .detail-metrics,
  .demand-meta,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .figma-about-page .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .figma-about-page .about-text h2 {
    width: auto;
    max-width: 100%;
    font-size: 24px;
    line-height: 32px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .figma-data-page .filter-row,
  .figma-demand-page .demand-filter .filter-row {
    grid-template-columns: 1fr;
  }

  .figma-data-page .category-cascader-panel,
  .figma-demand-page .demand-filter .category-cascader-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 132px;
    width: auto;
    max-height: calc(100dvh - 156px);
    overflow: auto;
  }

  .figma-data-page .category-cascader-columns,
  .figma-demand-page .demand-filter .category-cascader-columns {
    grid-template-columns: 1fr;
  }

  .figma-data-page .category-cascader-column,
  .figma-demand-page .demand-filter .category-cascader-column {
    max-height: 220px;
  }

  .figma-data-page .resource-card-main {
    padding: 56px 20px 16px;
  }

  .figma-data-page .resource-card {
    height: 320px;
  }

  .figma-data-page .resource-level {
    min-width: 82px;
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }

  .figma-data-page .resource-card-foot {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px 18px;
  }

  .figma-data-page .card-link {
    align-self: flex-start;
  }

  .figma-data-page .category-path strong {
    max-width: 100%;
    overflow-wrap: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .filter-title,
  .breadcrumb-bar,
  .apply-modal__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .figma-news-page .news-search {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .figma-news-page .news-search button {
    width: 78px;
    font-size: 16px;
  }

  .figma-resource-detail-page .panel,
  .figma-resource-detail-page .side-panel,
  .figma-resource-detail-page .detail-hero-inner {
    padding: 20px;
  }

  .figma-resource-detail-page main > .section.tint > .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    min-width: 0;
  }

  .figma-resource-detail-page .detail-hero {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    overflow: hidden;
  }

  .figma-resource-detail-page .detail-hero-inner {
    padding: 0;
  }

  .figma-resource-detail-page .detail-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 26px;
    line-height: 36px;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .figma-resource-detail-page .detail-hero p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 28px;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .figma-resource-detail-page .detail-metric strong {
    display: block;
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .figma-resource-detail-page .panel {
    padding: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .figma-resource-detail-page .panel h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .figma-resource-detail-page .info-row span,
  .figma-resource-detail-page .info-row strong {
    font-size: 18px;
    line-height: 26px;
  }

  .figma-resource-detail-page .field-table {
    display: table;
    width: 100%;
    min-width: 900px;
    table-layout: auto;
    overflow: visible;
    white-space: normal;
  }

  .figma-resource-detail-page .field-table th,
  .figma-resource-detail-page .field-table td {
    height: auto;
    padding: 12px 12px;
    font-size: 15px;
    line-height: 24px;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .panel p,
  .figma-resource-detail-page .panel-sub,
  .figma-resource-detail-page .info-row strong,
  .figma-resource-detail-page .rule-item span:last-child,
  .figma-resource-detail-page .related-card h3 {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .pager {
    font-size: 18px;
    line-height: 30px;
  }

  .info-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pager {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Real DOM Figma restoration. Keeps pages interactive while restoring the
   assets and measurements that were previously hidden by screenshot overlays. */
@media (min-width: 901px) {
  .figma-home-page .brand-logo-mark,
  .figma-site-page .brand-logo-mark {
    opacity: 1;
    display: block;
    object-fit: contain;
  }

  .figma-home-page .brand-logo {
    left: -3px;
    top: 4px;
    width: 410px;
    height: 56px;
    gap: 24px;
  }

  .figma-home-page .figma-hero__image {
    display: block;
    z-index: 0;
  }

  .figma-home-page .figma-hero__copy {
    z-index: 2;
  }

  .figma-home-page .figma-goal-card {
    border-radius: 6px;
    padding-top: 155px;
  }

  .figma-home-page .figma-goal-card img {
    display: block;
  }

  .figma-home-page .figma-cta {
    background:
      linear-gradient(90deg, rgba(30, 90, 168, 0.96), rgba(43, 120, 197, 0.72)),
      url("./assets/result-cta-bg.png") center / cover no-repeat;
  }

  .figma-data-page .data-hero::before,
  .figma-demand-page .sub-hero::before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: -324px;
    width: 1440px;
    height: 1138px;
    transform: translateX(-50%);
    background: url("./assets/hero-medical.png") center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .figma-data-page .data-hero,
  .figma-demand-page .sub-hero {
    position: relative;
    overflow: hidden;
  }

  .figma-data-page .data-hero .hero-copy,
  .figma-demand-page .sub-hero .hero-copy {
    position: relative;
    z-index: 1;
  }

  .figma-demand-page main > .section.tint {
    min-height: 1486px;
    padding-top: 77px;
    padding-bottom: 76px;
  }

  .figma-demand-page .demand-filter {
    position: relative;
    overflow: visible;
  }

  .figma-demand-page .demand-count {
    position: static;
    margin-top: 24px;
  }

  .figma-demand-page .demand-filter .btn[data-demand-reset] {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0;
  }
}

@media (min-width: 901px) {
  .figma-home-page .figma-goals .figma-section-head {
    position: relative;
  }

  .figma-home-page .figma-goals .figma-section-head::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 74px;
    width: 64px;
    height: 4px;
    transform: translateX(-50%);
    background: #1e5aa8;
  }

  .figma-home-page .figma-architecture {
    width: 600px;
    height: 632px;
    padding: 27px 59px;
    border: 1px solid #d6e4f0;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(30, 90, 168, 0.2);
  }

  .figma-home-page .figma-architecture h3 {
    margin-bottom: 24px;
    color: #102a3a;
    font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439453125px;
  }

  .figma-home-page .figma-flow {
    width: 480px;
    margin: 0 auto;
    padding-top: 0;
  }

  .figma-home-page .figma-flow-step {
    overflow: visible;
    box-sizing: border-box;
    width: 480px;
    height: 60px;
    border-width: 2px;
    border-style: solid;
    border-radius: 6px;
    font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
  }

  .figma-home-page .figma-flow-step--blue {
    color: #1e5aa8;
    border-color: #1e5aa8;
    background: rgba(30, 90, 168, 0.05);
  }

  .figma-home-page .figma-flow-step--mid {
    color: #2b78c5;
    border-color: #2b78c5;
    background: rgba(43, 120, 197, 0.05);
  }

  .figma-home-page .figma-flow-step--teal {
    color: #2f9db8;
    border-color: #2f9db8;
    background: rgba(47, 157, 184, 0.05);
    font-family: Inter, "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
    font-weight: 500;
  }

  .figma-home-page .figma-flow-step + .figma-flow-step {
    margin-top: 56px;
  }

  .figma-home-page .figma-flow-step:not(:last-child)::before {
    left: 50%;
    top: 76px;
    width: 2px;
    height: 24px;
    background: #d6e4f0;
    transform: translateX(-50%);
    z-index: 0;
  }

  .figma-home-page .figma-flow-step[data-label]::after {
    top: 76px;
    width: 85px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 0;
    color: #ffffff;
    background: #2b78c5;
    font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0;
    text-align: center;
    z-index: 1;
  }

  .figma-home-page .figma-flow-step.label-right::after {
    left: 256px;
    padding-left: 5px;
    clip-path: polygon(0 50%, 9px 0, 100% 0, 100% 100%, 9px 100%);
  }

  .figma-home-page .figma-flow-step.label-left::after {
    left: 138px;
    padding-right: 5px;
    clip-path: polygon(0 0, 76px 0, 100% 50%, 76px 100%, 0 100%);
  }
}

/* Unified public-site navigation. Homepage is the visual baseline. */
.figma-home-page .site-header,
.figma-site-page .site-header {
  height: 65px;
  background: #ffffff;
  border-bottom: 1px solid #d6e4f0;
  box-shadow: none;
}

.figma-home-page .header-inner,
.figma-site-page .header-inner {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 0;
}

.figma-home-page .brand-logo,
.figma-site-page .brand-logo,
.figma-cooperation-page .brand-logo {
  position: absolute;
  left: -3px;
  top: 4px;
  width: 410px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: none;
}

.figma-home-page .brand-logo::before,
.figma-site-page .brand-logo::before,
.figma-cooperation-page .brand-logo::before {
  display: none;
}

.figma-home-page .brand-logo-mark,
.figma-site-page .brand-logo-mark,
.figma-cooperation-page .brand-logo-mark,
.figma-about-page .brand-logo-mark {
  width: 47px;
  height: 51px;
  display: block;
  object-fit: contain;
  opacity: 1;
}

.figma-home-page .brand-logo-text,
.figma-site-page .brand-logo-text,
.figma-cooperation-page .brand-logo-text {
  position: relative;
  display: grid;
  gap: 3px;
  min-width: 0;
  padding-left: 0;
  opacity: 1;
}

.figma-home-page .brand-logo-text::before,
.figma-site-page .brand-logo-text::before,
.figma-cooperation-page .brand-logo-text::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -1px;
  width: 1px;
  height: 42px;
  background: #dde8ee;
}

.figma-home-page .brand-logo-text strong,
.figma-site-page .brand-logo-text strong,
.figma-cooperation-page .brand-logo-text strong {
  color: #173a56;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  letter-spacing: 0;
  white-space: nowrap;
}

.figma-home-page .brand-logo-text em,
.figma-site-page .brand-logo-text em,
.figma-cooperation-page .brand-logo-text em {
  color: #4e6675;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.figma-home-page .brand-logo-text::after,
.figma-site-page .brand-logo-text::after,
.figma-cooperation-page .brand-logo-text::after {
  content: "科研协同 · 数据互通 · 多机构联合创新";
  color: #5e7480;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 8.47px;
  letter-spacing: 0;
  white-space: nowrap;
}

.figma-home-page .nav,
.figma-site-page .nav,
.figma-cooperation-page .nav,
.figma-about-page .nav {
  position: absolute;
  left: 417.4px;
  top: 0;
  height: 65px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  margin: 0;
  overflow: visible;
}

.figma-home-page .nav-link,
.figma-site-page .nav-link,
.figma-cooperation-page .nav-link,
.figma-about-page .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 65px;
  padding: 0;
  color: #5b6b78;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.figma-home-page .nav-link.active,
.figma-home-page .nav-link:hover,
.figma-home-page .nav-link:focus-visible,
.figma-site-page .nav-link.active,
.figma-site-page .nav-link:hover,
.figma-site-page .nav-link:focus-visible,
.figma-cooperation-page .nav-link.active,
.figma-cooperation-page .nav-link:hover,
.figma-cooperation-page .nav-link:focus-visible,
.figma-about-page .nav-link.active,
.figma-about-page .nav-link:hover,
.figma-about-page .nav-link:focus-visible {
  color: #102a3a;
  font-weight: 700;
  outline: none;
}

.figma-home-page .nav-link::after,
.figma-site-page .nav-link::after,
.figma-cooperation-page .nav-link::after,
.figma-about-page .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 0;
  height: 2px;
  border-radius: 0;
  background: #1e5aa8;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.figma-home-page .nav-link.active::after,
.figma-home-page .nav-link:hover::after,
.figma-home-page .nav-link:focus-visible::after,
.figma-site-page .nav-link.active::after,
.figma-site-page .nav-link:hover::after,
.figma-site-page .nav-link:focus-visible::after,
.figma-cooperation-page .nav-link.active::after,
.figma-cooperation-page .nav-link:hover::after,
.figma-cooperation-page .nav-link:focus-visible::after,
.figma-about-page .nav-link.active::after,
.figma-about-page .nav-link:hover::after,
.figma-about-page .nav-link:focus-visible::after {
  left: 50%;
  width: 20px;
  transform: translateX(-50%);
}

.figma-home-page .header-actions,
.figma-site-page .header-actions,
.figma-cooperation-page .header-actions {
  position: absolute;
  left: 936.9px;
  top: 15px;
  height: 34px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
}

.figma-home-page .header-actions.has-portal-user,
.figma-site-page .header-actions.has-portal-user,
.figma-cooperation-page .header-actions.has-portal-user {
  left: 936.9px;
}

.figma-home-page .top-search-box,
.figma-site-page .top-search-box,
.figma-cooperation-page .top-search-box,
.figma-about-page .top-search-box {
  width: 148px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7.52px;
  padding: 0 9px;
  color: #102a3a;
  background: #ffffff;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  opacity: 1;
}

.figma-home-page .search-mark,
.figma-site-page .search-mark,
.figma-cooperation-page .search-mark,
.figma-about-page .search-mark {
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-color: #1e5aa8;
}

.figma-home-page .search-mark::after,
.figma-site-page .search-mark::after,
.figma-cooperation-page .search-mark::after,
.figma-about-page .search-mark::after {
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  border-radius: 1px;
  background: #1e5aa8;
}

.figma-home-page .top-search input,
.figma-site-page .top-search input,
.figma-cooperation-page .top-search input,
.figma-about-page .top-search input {
  padding: 0;
  color: #102a3a;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

.figma-home-page .top-search input::placeholder,
.figma-site-page .top-search input::placeholder,
.figma-cooperation-page .top-search input::placeholder,
.figma-about-page .top-search input::placeholder {
  color: #1e5aa8;
  font-weight: 500;
}

.figma-home-page .auth-btn,
.figma-site-page .auth-btn,
.figma-cooperation-page .auth-btn,
.figma-about-page .auth-btn {
  width: 62.6px;
  min-width: 62.6px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e5aa8;
  background: #ffffff;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  opacity: 1;
}

.figma-home-page .auth-btn.primary,
.figma-site-page .auth-btn.primary,
.figma-cooperation-page .auth-btn.primary,
.figma-about-page .auth-btn.primary {
  width: 60.6px;
  min-width: 60.6px;
  height: 32px;
  color: #ffffff;
  background: #1e5aa8;
  border-color: #1e5aa8;
}

.figma-home-page .auth-btn:hover,
.figma-home-page .auth-btn:focus-visible,
.figma-site-page .auth-btn:hover,
.figma-site-page .auth-btn:focus-visible,
.figma-cooperation-page .auth-btn:hover,
.figma-cooperation-page .auth-btn:focus-visible,
.figma-about-page .auth-btn:hover,
.figma-about-page .auth-btn:focus-visible {
  color: #ffffff;
  background: #1e5aa8;
  outline: none;
}

.portal-user-menu {
  position: relative;
  width: 135.2px;
  min-width: 135.2px;
  max-width: 135.2px;
  height: 34px;
  flex: 0 0 135.2px;
  z-index: 120;
}

.portal-user-trigger {
  width: 100%;
  height: 34px;
  padding: 0 11px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #1e5aa8;
  background: #ffffff;
  border: 1px solid #1e5aa8;
  border-radius: 4px;
  font-family: Inter, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

.portal-user-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-user-caret {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-right: 1px solid #1e5aa8;
  border-bottom: 1px solid #1e5aa8;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.portal-user-panel {
  position: absolute;
  right: 0;
  top: 100%;
  width: max(136px, 100%);
  padding: 6px;
  display: grid;
  gap: 4px;
  border: 1px solid #d6e4f0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 90, 168, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.portal-user-menu:hover .portal-user-panel,
.portal-user-menu:focus-within .portal-user-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portal-user-menu:hover .portal-user-caret,
.portal-user-menu:focus-within .portal-user-caret {
  transform: translateY(1px) rotate(225deg);
}

.portal-user-action {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102a3a;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-family: "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.portal-user-action:hover,
.portal-user-action:focus-visible {
  color: #1e5aa8;
  background: rgba(30, 90, 168, 0.08);
  outline: none;
}

.portal-user-action--logout:hover,
.portal-user-action--logout:focus-visible {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
}

@media (max-width: 900px) {
  .figma-home-page .site-header,
  .figma-site-page .site-header {
    height: auto;
  }

  .figma-home-page .header-inner,
  .figma-site-page .header-inner {
    position: static;
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 12px 0;
  }

  .figma-home-page .brand-logo,
  .figma-site-page .brand-logo,
  .figma-cooperation-page .brand-logo {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 410px);
    flex: 0 0 100%;
  }

  .figma-home-page .nav,
  .figma-site-page .nav,
  .figma-cooperation-page .nav,
  .figma-about-page .nav,
  .figma-home-page .header-actions,
  .figma-site-page .header-actions,
  .figma-cooperation-page .header-actions {
    position: static;
    left: auto;
    top: auto;
  }

  .figma-home-page .nav,
  .figma-site-page .nav,
  .figma-cooperation-page .nav,
  .figma-about-page .nav {
    order: 3;
    width: 100%;
    height: auto;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .figma-home-page .nav::-webkit-scrollbar,
  .figma-site-page .nav::-webkit-scrollbar,
  .figma-cooperation-page .nav::-webkit-scrollbar,
  .figma-about-page .nav::-webkit-scrollbar {
    display: none;
  }

  .figma-home-page .nav-link,
  .figma-site-page .nav-link,
  .figma-cooperation-page .nav-link,
  .figma-about-page .nav-link {
    height: 36px;
  }

  .figma-home-page .nav-link::after,
  .figma-site-page .nav-link::after,
  .figma-cooperation-page .nav-link::after,
  .figma-about-page .nav-link::after {
    bottom: 0;
  }

  .figma-home-page .header-actions,
  .figma-site-page .header-actions,
  .figma-cooperation-page .header-actions {
    order: 2;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    margin-left: 0;
    min-width: 0;
  }

  .figma-home-page .top-search,
  .figma-site-page .top-search,
  .figma-cooperation-page .top-search,
  .figma-about-page .top-search {
    flex: 1 1 auto;
    min-width: 0;
  }

  .figma-home-page .top-search-box,
  .figma-site-page .top-search-box,
  .figma-cooperation-page .top-search-box,
  .figma-about-page .top-search-box {
    width: 100%;
  }

  .figma-home-page .auth-btn,
  .figma-site-page .auth-btn,
  .figma-cooperation-page .auth-btn,
  .figma-about-page .auth-btn {
    flex: 0 0 auto;
  }

  .portal-user-menu {
    width: 100%;
    flex: 1 1 160px;
  }

  .portal-user-panel {
    left: 0;
    right: auto;
    width: min(220px, 100%);
  }
}

@media (max-width: 640px) {
  .figma-resource-detail-page .detail-hero {
    padding: 0;
  }

  .figma-resource-detail-page .detail-hero-inner {
    padding: 22px;
    gap: 18px;
  }

  .figma-resource-detail-page .detail-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .figma-resource-detail-page .detail-hero-actions span {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .figma-resource-detail-page .detail-metrics,
  .figma-resource-detail-page .data-content-summary,
  .figma-resource-detail-page .data-content-meta,
  .figma-resource-detail-page .related-grid {
    grid-template-columns: 1fr;
  }

  .figma-resource-detail-page .detail-panel-head {
    flex-direction: column;
    gap: 8px;
  }

  .figma-resource-detail-page .detail-panel-meta {
    max-width: 100%;
    white-space: normal;
  }

  .figma-resource-detail-page .detail-summary-text {
    padding: 14px 16px;
  }

  .figma-resource-detail-page .info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .figma-resource-detail-page .field-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .figma-resource-detail-page .field-table {
    min-width: 820px;
    table-layout: auto;
  }

  .figma-resource-detail-page .pager {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 28px;
  }

  .figma-resource-detail-page .pager > span:first-child {
    width: 100%;
    margin-right: 0;
  }
}

.pager,
.figma-data-page .resource-pager,
.figma-demand-page .pager,
.figma-resource-detail-page .pager {
  display: flex;
  align-items: center;
  justify-content: center !important;
  flex-wrap: wrap;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 36px !important;
  height: auto !important;
  margin: 24px auto 0 !important;
  gap: 8px !important;
  color: #526678 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  white-space: normal !important;
}

.pager > span,
.figma-data-page .resource-pager > span,
.figma-demand-page .pager > span,
.figma-resource-detail-page .pager > span {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #526678 !important;
  font: inherit !important;
  line-height: 20px !important;
  white-space: nowrap !important;
}

.pager button,
.figma-data-page .resource-pager button,
.figma-demand-page .pager button,
.figma-resource-detail-page .pager button {
  box-sizing: border-box;
  min-width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 1px solid #d5e3ee !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: #33516c !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 34px !important;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pager .page-num,
.figma-data-page .resource-pager .page-num,
.figma-demand-page .pager .page-num,
.figma-resource-detail-page .pager .page-num {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 4px !important;
  color: #526678 !important;
  line-height: 34px !important;
  text-align: center;
}

.pager .page-num.active,
.figma-data-page .resource-pager .page-num.active,
.figma-demand-page .pager .page-num.active,
.figma-resource-detail-page .pager .page-num.active {
  border-color: #0048a6 !important;
  background: #0048a6 !important;
  color: #ffffff !important;
}

.pager button:disabled,
.figma-data-page .resource-pager button:disabled,
.figma-demand-page .pager button:disabled,
.figma-resource-detail-page .pager button:disabled {
  border-color: #e1eaf2 !important;
  background: #f2f6fa !important;
  color: #9aaaba !important;
  cursor: not-allowed;
}

.pager button:not(:disabled):hover,
.pager button:not(:disabled):focus-visible,
.figma-data-page .resource-pager button:not(:disabled):hover,
.figma-data-page .resource-pager button:not(:disabled):focus-visible,
.figma-demand-page .pager button:not(:disabled):hover,
.figma-demand-page .pager button:not(:disabled):focus-visible,
.figma-resource-detail-page .pager button:not(:disabled):hover,
.figma-resource-detail-page .pager button:not(:disabled):focus-visible {
  border-color: #9dbdda !important;
  background: #eef6fb !important;
  color: #0048a6 !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 72, 166, 0.12);
}

.figma-demand-page .demand-meta {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center;
}

.demand-contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.demand-contact-btn {
  min-width: 168px;
  height: 44px;
  padding: 0 18px;
  font-size: 15px;
  line-height: 22px;
}

.demand-contact-dialog {
  width: min(620px, 100%);
}

.demand-contact-detail {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid #d9e8f4;
  background: #f7fbfe;
}

.demand-contact-detail > p {
  margin: 0;
  color: #526b80;
  font-size: 16px;
  line-height: 28px;
}

.demand-contact-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.demand-contact-list > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.demand-contact-list dt {
  color: #6a7f90;
  font-size: 14px;
  line-height: 24px;
}

.demand-contact-list dd {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .figma-demand-page .demand-meta {
    grid-template-columns: 1fr !important;
  }

  .demand-contact-action {
    justify-content: flex-start;
  }

  .demand-contact-btn {
    width: 100%;
  }
}
