/* ===== 首页 page-home ===== */

.page-home .home-intro {
  padding-top: 40px;
  padding-bottom: 30px;
}

.page-home .home-intro__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 8.2vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.022em;
  margin: 0 0 18px;
  max-width: 20ch;
}

.page-home .home-intro__lead {
  margin: 0;
  max-width: var(--measure);
}

.page-home .page-head__eyebrow {
  margin-bottom: 12px;
}

/* ---- 首屏全宽数据带 ---- */

.page-home .home-band {
  margin: 0;
}

.page-home .home-band__panel {
  background: var(--deep);
  color: var(--paper);
  padding: 30px 0 34px;
  border-top: 4px solid var(--pitch);
}

.page-home .home-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 20px;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(198, 203, 208, .3);
}

.page-home .home-band__title {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .02em;
}

.page-home .home-band__note {
  margin: 0;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--silver);
}

.page-home .home-band__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 170px;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.page-home .home-band__scroller:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.page-home .home-band__item {
  scroll-snap-align: start;
  padding: 4px 20px 8px;
  border-right: 1px solid rgba(198, 203, 208, .2);
}

.page-home .home-band__item:first-child {
  padding-left: 0;
}

.page-home .home-band__item:last-child {
  border-right: none;
}

.page-home .home-band__num {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(28px, 7vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.page-home .home-band__unit {
  font-size: .36em;
  font-weight: 500;
  letter-spacing: .02em;
  margin-left: 5px;
  color: var(--silver);
}

.page-home .home-band__label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .05em;
  color: var(--silver);
}

.page-home .home-band__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .home-btn--onDeep {
  color: var(--paper);
  border-color: var(--silver);
  background: transparent;
}

.page-home .home-btn--onDeep:hover,
.page-home .home-btn--onDeep:focus-visible {
  background: var(--paper);
  color: var(--deep);
  border-color: var(--paper);
}

/* ---- 通栏氛围图 ---- */

.page-home .home-hero {
  background: var(--deep);
}

.page-home .home-hero .wrap,
.page-home .home-hero {
  padding-left: 0;
  padding-right: 0;
}

.page-home .home-hero__figure {
  margin: 0;
}

.page-home .home-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: cover;
}

/* ---- 通用标题族 ---- */

.page-home .home-head {
  margin-bottom: 26px;
}

.page-home .h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 5.2vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0;
}

/* ---- 栏目索引 ---- */

.page-home .home-toc {
  padding-top: 54px;
}

.page-home .home-toc__list {
  border-top: var(--rule-heavy);
}

.page-home .home-toc__row {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  grid-template-areas:
    "num title more"
    "num meta  more";
  align-items: baseline;
  gap: 4px 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--silver);
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t) ease, box-shadow var(--t) ease;
}

.page-home .home-toc__row:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard-sm);
}

.page-home .home-toc__row:focus-visible {
  outline: 2px solid var(--pitch);
  outline-offset: 2px;
}

.page-home .home-toc__row .index-list__num {
  grid-area: num;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}

.page-home .home-toc__row .index-list__title {
  grid-area: title;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.012em;
}

.page-home .home-toc__row .index-list__meta {
  grid-area: meta;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink);
  max-width: 64ch;
}

.page-home .home-toc__row .index-list__more {
  grid-area: more;
  align-self: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--pitch);
  white-space: nowrap;
}

/* ---- 本轮重点 ---- */

.page-home .home-watch {
  padding-top: 60px;
}

.page-home .home-watch__grid {
  display: grid;
  gap: 30px;
}

.page-home .home-watch__figure {
  margin: 0;
}

.page-home .home-watch__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-watch__list {
  display: grid;
  gap: 20px;
}

.page-home .home-watch__item {
  border-left: 4px solid var(--clay);
}

.page-home .home-watch__item p {
  margin: 0 0 10px;
  line-height: 1.72;
}

.page-home .home-watch__item p:last-child {
  margin-bottom: 0;
}

/* ---- 资料与工具 ---- */

.page-home .home-take {
  padding-top: 64px;
}

.page-home .home-take__grid {
  display: grid;
  gap: 32px;
}

.page-home .home-take__text {
  margin: 18px 0 0;
  max-width: var(--measure);
  line-height: 1.75;
}

.page-home .home-take__list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-take__list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.72;
}

.page-home .home-take__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--moss);
}

.page-home .home-take__figure {
  margin: 0;
}

.page-home .home-take__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---- 数据产出节奏 ---- */

.page-home .home-flow {
  padding-top: 64px;
}

.page-home .home-flow__figure {
  margin: 0 0 32px;
}

.page-home .home-flow__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.page-home .home-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.page-home .home-flow__step {
  padding: 16px 0 0;
  border-top: 3px solid var(--ink);
}

.page-home .home-flow__idx {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}

.page-home .home-flow__name {
  margin: 8px 0 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.012em;
}

.page-home .home-flow__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

/* ---- 收束入口 ---- */

.page-home .home-exit {
  padding-top: 64px;
  padding-bottom: 8px;
}

.page-home .home-exit__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-exit__card p {
  margin: 0 0 12px;
  line-height: 1.72;
}

.page-home .home-exit__card p:last-child {
  margin-bottom: 0;
}

/* ---- 通用内联链接 ---- */

.page-home .home-link {
  color: var(--pitch);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--pitch);
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease;
}

.page-home .home-link:hover,
.page-home .home-link:focus-visible {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

/* ===== 断点 ===== */

@media (min-width: 720px) {

  .page-home .home-intro {
    padding-top: 52px;
    padding-bottom: 36px;
  }

  .page-home .home-band__scroller {
    grid-auto-columns: 200px;
  }

  .page-home .home-watch__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 38px;
    align-items: start;
  }

  .page-home .home-take__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 46px;
    align-items: center;
  }

  .page-home .home-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .page-home .home-exit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-toc__row {
    padding: 22px 4px;
    gap: 6px 18px;
  }
}

@media (min-width: 960px) {

  .page-home .home-band__scroller {
    grid-auto-flow: row;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
  }

  .page-home .home-flow__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-toc__row .index-list__meta {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--t) ease, opacity var(--t) ease;
  }

  .page-home .home-toc__row:hover .index-list__meta,
  .page-home .home-toc__row:focus-visible .index-list__meta {
    max-height: 8em;
    opacity: 1;
  }
}

@media (min-width: 1200px) {

  .page-home .home-intro {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .page-home .home-toc {
    padding-top: 72px;
  }

  .page-home .home-watch,
  .page-home .home-take,
  .page-home .home-flow,
  .page-home .home-exit {
    padding-top: 80px;
  }
}
