.page-home {
  --home-line: rgba(43, 23, 20, .18);
  --home-gold-line: rgba(200, 162, 74, .5);
  --home-ink-soft: rgba(246, 240, 230, .74);
  --home-pad: clamp(3rem, 8vw, 6rem);
  background: var(--surface-page);
  color: var(--c-text);
  overflow-x: hidden;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home .home-context {
  background: var(--c-red-deep);
  border-bottom: 1px solid var(--home-gold-line);
  padding: .6rem 0;
}

.page-home .home-context__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .9rem;
}

.page-home .home-context__index {
  font-size: var(--step-index);
  letter-spacing: .14em;
  color: var(--c-gold-light);
  border: 1px solid var(--home-gold-line);
  padding: .1rem .45rem;
}

.page-home .home-context__label {
  font-size: var(--step-index);
  letter-spacing: .14em;
  color: var(--home-ink-soft);
}

.page-home .home-context__sep {
  flex: 1 1 2rem;
  height: 1px;
  background: var(--home-gold-line);
  min-width: 1.5rem;
}

.page-home .home-context__meta {
  font-size: var(--step-index);
  letter-spacing: .1em;
  color: var(--c-gold);
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  background: var(--c-red);
  color: var(--c-ivory);
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 var(--home-pad);
  border-bottom: 3px solid var(--c-gold);
}

.page-home .home-hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.page-home .home-hero__kicker {
  color: var(--c-gold-light);
}

.page-home .home-hero__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7.6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: .005em;
}

.page-home .home-hero__title-line {
  display: block;
}

.page-home .home-hero__title-line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--c-gold-light);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .page-home .home-hero__title-line--outline {
    color: var(--c-gold-light);
  }
}

.page-home .home-hero__lede {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(.95rem, 1.6vw, 1.06rem);
  line-height: 1.8;
  color: var(--home-ink-soft);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}

/* 实时数据看板 */
.page-home .home-hero__board {
  position: relative;
  display: grid;
  min-height: clamp(360px, 78vw, 520px);
  border: 3px solid var(--c-gold);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(61, 10, 11, .38);
}

.page-home .home-hero__board-img,
.page-home .home-hero__board::after,
.page-home .board {
  grid-area: 1 / 1;
}

.page-home .home-hero__board-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

.page-home .home-hero__board::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(61, 10, 11, .3) 0%, rgba(61, 10, 11, .78) 48%, rgba(61, 10, 11, .97) 100%);
}

.page-home .board {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .85rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  min-width: 0;
}

.page-home .board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.page-home .board__hint {
  font-family: var(--font-num);
  font-size: var(--step-index);
  letter-spacing: .12em;
  color: var(--c-gold-light);
}

.page-home .board__list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--home-gold-line);
  border: 1px solid var(--home-gold-line);
}

.page-home .board__item {
  background: rgba(61, 10, 11, .84);
  padding: .7rem .8rem;
  min-width: 0;
}

.page-home .board__label {
  margin: 0 0 .3rem;
  font-size: var(--step-index);
  letter-spacing: .1em;
  color: var(--home-ink-soft);
}

.page-home .board__value {
  margin: 0;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(1.35rem, 4vw, 2.15rem);
  line-height: 1;
  color: var(--c-gold-light);
  word-break: break-word;
}

.page-home .board__unit {
  font-size: .5em;
  margin-left: .15em;
  color: var(--c-gold);
}

.page-home .board__foot {
  margin: 0;
  font-size: var(--step-index);
  line-height: 1.7;
  color: var(--home-ink-soft);
  max-width: 42ch;
}

.page-home .board__chips {
  display: block;
  margin-left: auto;
  opacity: .6;
}

.page-home .board__chips circle {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 1.6;
}

/* ============ 六类厅别 ============ */
.page-home .home-halls {
  padding: var(--home-pad) 0;
  background: var(--surface-page);
}

.page-home .home-halls__head {
  max-width: 60ch;
}

.page-home .home-halls__band {
  position: relative;
  margin: clamp(1.8rem, 4vw, 3rem) 0 clamp(1.6rem, 4vw, 2.6rem);
  border-top: 3px solid var(--c-gold);
  border-bottom: 3px solid var(--c-gold);
  overflow: hidden;
}

.page-home .home-halls__band img {
  display: block;
  width: 100%;
  height: clamp(140px, 26vw, 280px);
  object-fit: cover;
}

.page-home .home-halls__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(61, 10, 11, .82), rgba(61, 10, 11, .26) 48%, rgba(61, 10, 11, .76));
}

.page-home .hall-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.5rem, 1.5vw, .85rem);
}

.page-home .hall-flow__item {
  flex: 1 1 8.5rem;
  min-width: 8rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: .85rem 1rem;
  background: var(--surface-card);
  border: 2px solid var(--c-red);
  box-shadow: 4px 4px 0 rgba(61, 10, 11, .14);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-home .hall-flow__item:hover {
  transform: translate(-3px, -3px);
  background: #fff;
  box-shadow: 7px 7px 0 rgba(200, 162, 74, .55);
}

.page-home .hall-flow__idx {
  font-size: var(--step-index);
  letter-spacing: .16em;
  color: var(--c-gold-ink);
}

.page-home .hall-flow__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--step-h3);
  color: var(--c-red-deep);
  line-height: 1.2;
}

.page-home .hall-rule {
  margin-top: clamp(1.5rem, 3.5vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: #FFFBF4;
  border-left: 6px solid var(--c-gold);
  border-top: 1px solid var(--home-line);
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.page-home .hall-rule__text {
  flex: 1 1 22rem;
  margin: 0;
  font-size: var(--step-small);
  line-height: 1.85;
  color: var(--c-text-soft);
}

.page-home .hall-rule__ex {
  display: inline-block;
  padding: .1rem .45rem;
  background: var(--c-red-deep);
  color: var(--c-gold-light);
  font-size: .95em;
  letter-spacing: .06em;
}

/* ============ 派彩记录 ============ */
.page-home .home-records {
  background: var(--c-green);
  color: var(--c-ivory);
  padding: var(--home-pad) 0;
  border-top: 3px solid var(--c-gold);
  border-bottom: 3px solid var(--c-gold);
}

.page-home .home-records__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.2rem);
  align-items: start;
}

.page-home .home-records__lead {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.page-home .home-records .kicker {
  color: var(--c-gold-light);
}

.page-home .home-records .section-title {
  color: var(--c-ivory);
}

.page-home .home-records .lede {
  color: var(--home-ink-soft);
  max-width: 46ch;
}

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

.page-home .home-records__figure .figure__frame {
  border: 2px solid var(--c-gold);
}

.page-home .home-records__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-records__figure .figure__cap {
  color: var(--home-ink-soft);
}

.page-home .home-records__lead .btn {
  align-self: flex-start;
}

.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--home-gold-line);
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.7rem);
  min-width: 0;
}

.page-home .timeline__item {
  position: relative;
  min-width: 0;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 7px);
  top: .5rem;
  width: 12px;
  height: 12px;
  background: var(--c-gold);
  border: 2px solid var(--c-green);
  transform: rotate(45deg);
}

.page-home .timeline__meta {
  margin: 0 0 .3rem;
  font-size: var(--step-index);
  letter-spacing: .14em;
  color: var(--c-gold-light);
}

.page-home .timeline__title {
  margin: 0 0 .35rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--step-h3);
  color: var(--c-ivory);
  line-height: 1.3;
}

.page-home .timeline__text {
  margin: 0;
  font-size: var(--step-small);
  line-height: 1.8;
  color: var(--home-ink-soft);
  max-width: 40ch;
}

/* ============ 合作生态 ============ */
.page-home .home-eco {
  padding: var(--home-pad) 0;
  background: var(--surface-page);
}

.page-home .home-eco__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}

.page-home .home-eco__figure {
  margin: 0;
  border: 3px solid var(--c-red);
  box-shadow: var(--shadow-hard);
  background: var(--surface-card);
}

.page-home .home-eco__figure .figure__frame {
  border: none;
}

.page-home .home-eco__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-eco__figure .figure__cap {
  padding: .75rem 1rem;
  border-top: 1px solid var(--home-line);
  color: var(--c-text-soft);
}

.page-home .home-eco__copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.page-home .home-eco__copy .lede {
  max-width: 46ch;
}

.page-home .home-eco__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--home-line);
  border: 2px solid var(--c-red-deep);
}

.page-home .eco-stat {
  background: var(--surface-card);
  padding: .95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0;
}

.page-home .eco-stat__value {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1;
  color: var(--c-red);
}

.page-home .eco-stat__label {
  font-size: var(--step-index);
  letter-spacing: .1em;
  color: var(--c-text-soft);
}

.page-home .home-eco__note {
  margin: 0;
  font-size: var(--step-small);
  line-height: 1.85;
  color: var(--c-text-soft);
  max-width: 48ch;
}

.page-home .home-eco__link {
  color: var(--c-red);
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-eco__link:hover,
.page-home .home-eco__link:focus-visible {
  color: var(--c-red-deep);
  border-color: var(--c-red-deep);
}

/* ============ 辽宁本地服务 ============ */
.page-home .home-region {
  background: var(--c-red-deep);
  color: var(--c-ivory);
  padding: var(--home-pad) 0;
  border-top: 3px solid var(--c-gold);
}

.page-home .home-region__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.page-home .home-region__copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.page-home .home-region .kicker {
  color: var(--c-gold-light);
}

.page-home .home-region .section-title {
  color: var(--c-ivory);
  max-width: 22ch;
}

.page-home .home-region .lede {
  color: var(--home-ink-soft);
  max-width: 44ch;
}

.page-home .home-region__copy .btn {
  align-self: flex-start;
}

.page-home .contact-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-gold-line);
  border: 2px solid var(--c-gold);
  min-width: 0;
}

.page-home .contact-strip__item {
  background: rgba(123, 17, 19, .58);
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .9rem;
  min-width: 0;
}

.page-home .contact-strip__key {
  flex: 0 0 auto;
  font-size: var(--step-index);
  letter-spacing: .14em;
  color: var(--c-gold-light);
  padding: .12rem .4rem;
  border: 1px solid var(--home-gold-line);
}

.page-home .contact-strip__val {
  font-size: var(--step-small);
  line-height: 1.6;
  color: var(--c-ivory);
  word-break: break-word;
  min-width: 0;
  flex: 1 1 12rem;
}

.page-home .contact-strip__val--mail,
.page-home .contact-strip__val--tel {
  font-family: var(--font-num);
  letter-spacing: .03em;
  text-decoration: none;
}

.page-home .contact-strip__val--tel {
  color: var(--c-gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

.page-home .contact-strip__val--tel:hover,
.page-home .contact-strip__val--tel:focus-visible {
  border-bottom-color: var(--c-gold-light);
}

.page-home .contact-strip .copy-btn {
  flex: 0 0 auto;
  font-family: var(--font-body);
  letter-spacing: .06em;
}

/* ============ 断点 ============ */
@media (min-width: 640px) {
  .page-home .home-hero__title {
    font-size: clamp(2.8rem, 6.6vw, 5.2rem);
  }

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

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

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(2rem, 4.5vw, 4rem);
    align-items: center;
  }

  .page-home .home-hero__board {
    min-height: clamp(440px, 46vw, 560px);
  }

  .page-home .home-records__inner {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(2.2rem, 5vw, 3.6rem);
  }

  .page-home .home-eco__inner {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  }

  .page-home .home-region__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2.2rem, 5vw, 3.4rem);
  }
}

@media (min-width: 1180px) {
  .page-home .home-hero {
    padding-top: clamp(3.2rem, 5vw, 5.5rem);
  }

  .page-home .hall-flow__item {
    flex: 1 1 0;
  }
}
<<<END>>>
