/* ============================================================
   page-home — 亿万CN生活站 今日首页
   作用域：.page-home
   ============================================================ */

.page-home {
  --home-radius: 8px;
  --home-hair: 1px solid var(--line-300);
  background: var(--paper-100);
  color: var(--ink-900);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  overflow-x: hidden;
}

.page-home .home-crumbs {
  margin: 0 0 clamp(.9rem, 2.5vw, 1.5rem);
}

.page-home .home-kicker {
  margin: 0 0 .7rem;
  color: var(--orange-500);
  letter-spacing: .06em;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(1.25rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(120% 90% at 92% 4%, rgba(195, 154, 43, .20), transparent 62%),
    radial-gradient(90% 70% at 4% 96%, rgba(79, 125, 105, .14), transparent 58%),
    linear-gradient(180deg, var(--paper-200) 0%, var(--paper-100) 100%);
  border-bottom: var(--home-hair);
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.page-home .home-hero__col--signs {
  min-width: 0;
}

.page-home .home-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 7.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink-900);
  text-shadow: 1px 1px 0 rgba(228, 104, 28, .28);
}

.page-home .home-hero__mark {
  display: inline-block;
  position: relative;
  color: var(--ink-900);
}

.page-home .home-hero__mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: .06em;
  height: .34em;
  background: linear-gradient(90deg, var(--orange-300), var(--sand-200));
  border-radius: 2px;
  z-index: -1;
}

.page-home .home-hero__lead {
  margin: 0 0 clamp(1.25rem, 3.5vw, 2rem);
  max-width: 46ch;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  line-height: 1.85;
  color: var(--ink-700);
}

/* 路牌列表 */
.page-home .home-signs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.page-home .home-sign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem .85rem .7rem;
  background: var(--paper-100);
  border: var(--home-hair);
  border-left: 4px solid var(--ink-900);
  border-radius: 0 var(--home-radius) var(--home-radius) 0;
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), border-left-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .home-sign:hover,
.page-home .home-sign:focus-visible {
  transform: translateX(4px);
  border-left-color: var(--orange-500);
  background: #fff;
}

.page-home .home-sign__no {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--sand-500);
  padding: .18rem .4rem;
  border-radius: var(--r-sm);
  background: var(--sand-200);
}

.page-home .home-sign__body {
  min-width: 0;
}

.page-home .home-sign__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-900);
}

.page-home .home-sign__sub {
  display: block;
  margin-top: .15rem;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-700);
  opacity: .85;
}

.page-home .home-sign__arrow {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--orange-500);
  transition: transform var(--dur) var(--ease);
}

.page-home .home-sign:hover .home-sign__arrow {
  transform: translateX(3px);
}

/* 首屏右侧 */
.page-home .home-hero__col--stage {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

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

.page-home .home-hero__frame {
  aspect-ratio: 16 / 11;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: var(--home-hair);
  box-shadow: var(--shadow-2);
  background: var(--paper-200);
}

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

.page-home .home-hero__cap {
  display: block;
  margin-top: .55rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--ink-700);
  opacity: .78;
}

/* 横向卷轴更新条 */
.page-home .home-strip {
  background: var(--ink-900);
  border-radius: var(--home-radius);
  padding: .9rem 0 .95rem;
  box-shadow: var(--shadow-2);
}

.page-home .home-strip__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .7rem;
  padding: 0 1rem;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--sand-200);
}

.page-home .home-strip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  flex: 0 0 auto;
}

.page-home .home-strip__more {
  margin-left: auto;
  color: var(--orange-300);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .04em;
}

.page-home .home-strip__more:hover {
  color: var(--orange-500);
}

.page-home .home-strip__track {
  display: flex;
  gap: .6rem;
  padding: 0 1rem .25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .home-strip__card {
  flex: 0 0 min(72%, 200px);
  scroll-snap-align: start;
  background: rgba(245, 239, 227, .07);
  border: 1px solid rgba(232, 217, 168, .28);
  border-radius: var(--r-sm);
  padding: .7rem .8rem;
}

.page-home .home-strip__label {
  margin: 0 0 .25rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--celadon-500);
  background: rgba(79, 125, 105, .18);
  display: inline-block;
  padding: .1rem .4rem;
  border-radius: var(--r-sm);
}

.page-home .home-strip__text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--paper-100);
}

/* ---------- 章节抬头 ---------- */
.page-home .home-chapter {
  margin-bottom: clamp(1.4rem, 4vw, 2.2rem);
}

/* ---------- 最近更新 ---------- */
.page-home .home-updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .home-update {
  background: var(--paper-100);
  border: var(--home-hair);
  border-radius: var(--home-radius);
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-update:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.page-home .home-update--accent {
  background: linear-gradient(160deg, var(--sand-200), var(--paper-200));
  border-color: var(--sand-500);
}

.page-home .home-update__tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--ink-700);
  background: rgba(14, 26, 43, .06);
  align-self: flex-start;
  padding: .15rem .5rem;
  border-radius: var(--r-sm);
}

.page-home .home-update__num {
  margin: .25rem 0 0;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--orange-500);
  letter-spacing: -.01em;
}

.page-home .home-update__unit {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-700);
}

.page-home .home-update__text {
  margin: .5rem 0 0;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--ink-700);
}

.page-home .home-update__link {
  margin-top: auto;
  padding-top: .9rem;
  font-size: .88rem;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--line-300);
  align-self: flex-start;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-update__link:hover {
  color: var(--orange-500);
  border-color: var(--orange-500);
}

.page-home .home-updates__foot {
  margin-top: clamp(1.2rem, 3.5vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

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

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

.page-home .home-updates__frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: var(--home-hair);
  background: var(--paper-200);
}

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

/* ---------- 按城市找 ---------- */
.page-home .home-cities {
  background: var(--paper-200);
  border-top: var(--home-hair);
  border-bottom: var(--home-hair);
}

.page-home .home-cities__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.page-home .home-cities__col--text {
  min-width: 0;
}

.page-home .home-cities__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.1rem 0 .9rem;
}

.page-home .home-cities__hint {
  margin: 0;
  font-size: .86rem;
  line-height: 1.75;
  color: var(--ink-700);
  padding-left: .8rem;
  border-left: 3px solid var(--sand-500);
}

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

.page-home .home-cities__frame {
  aspect-ratio: 3 / 2;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: var(--home-hair);
  box-shadow: var(--shadow-2);
  background: var(--paper-100);
}

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

/* ---------- 服务分类 ---------- */
.page-home .home-cats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.page-home .home-cat {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .8rem .85rem;
  background: var(--paper-100);
  border: var(--home-hair);
  border-radius: var(--home-radius);
  text-decoration: none;
  color: var(--ink-900);
  box-shadow: var(--shadow-1);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-cat:hover,
.page-home .home-cat:focus-visible {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
  transform: translateY(-2px);
}

.page-home .home-cat__no {
  font-size: .72rem;
  color: var(--sand-500);
  letter-spacing: .04em;
  flex: 0 0 auto;
}

.page-home .home-cat:hover .home-cat__no {
  color: var(--sand-200);
}

.page-home .home-cat__name {
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- 三步指南 ---------- */
.page-home .home-guide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.page-home .home-guide__col--steps {
  min-width: 0;
}

.page-home .home-steps {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.page-home .home-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: .9rem 1rem;
  background: var(--paper-100);
  border: var(--home-hair);
  border-radius: var(--home-radius);
}

.page-home .home-step__text {
  margin: .25rem 0 0;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink-700);
}

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

.page-home .home-guide__col--aside {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

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

.page-home .home-guide__frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: var(--home-hair);
  box-shadow: var(--shadow-2);
  background: var(--paper-200);
}

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

.page-home .home-guide__quick {
  background: var(--ink-900);
  color: var(--paper-100);
  border-radius: var(--home-radius);
  padding: 1rem 1.1rem 1.1rem;
}

.page-home .home-guide__quick-title {
  margin: 0 0 .6rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--sand-200);
  letter-spacing: .02em;
}

.page-home .home-guide__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.page-home .home-guide__list li {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.7;
}

.page-home .home-guide__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex: 0 0 auto;
  transform: translateY(-2px);
}

/* ---------- 常见问题 ---------- */
.page-home .home-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}

.page-home .home-qa {
  background: var(--paper-100);
  border: var(--home-hair);
  border-left: 4px solid var(--sand-500);
  border-radius: 0 var(--home-radius) var(--home-radius) 0;
  padding: .9rem 1.1rem 1rem;
  box-shadow: var(--shadow-1);
}

.page-home .home-qa[open] {
  border-left-color: var(--orange-500);
}

.page-home .home-qa__q {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink-900);
  list-style: none;
}

.page-home .home-qa__q::-webkit-details-marker {
  display: none;
}

.page-home .home-qa__q::before {
  content: "＋";
  display: inline-block;
  margin-right: .5rem;
  color: var(--orange-500);
  font-weight: 700;
}

.page-home .home-qa[open] .home-qa__q::before {
  content: "－";
}

.page-home .home-qa__a {
  margin: .6rem 0 0 1.35rem;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--ink-700);
}

.page-home .home-faq__more {
  margin: clamp(1.2rem, 3.5vw, 1.8rem) 0 0;
}

/* ---------- 平板 ---------- */
@media (min-width: 720px) {
  .page-home .home-updates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-updates__foot {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }

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

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

  .page-home .home-strip__card {
    flex: 1 1 0;
    min-width: 0;
  }

  .page-home .home-strip__track {
    overflow-x: visible;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 980px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .page-home .home-strip {
    padding: 1rem 0 1.05rem;
  }

  .page-home .home-cities__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .page-home .home-cities__col--map {
    position: sticky;
    top: var(--sticky-offset);
  }

  .page-home .home-guide__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

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

  .page-home .home-hero__frame {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1180px) {
  .page-home .home-hero__title {
    font-size: 4rem;
  }
}

/* ---------- 动效收敛 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-sign,
  .page-home .home-update,
  .page-home .home-cat,
  .page-home .home-sign__arrow {
    transition: none;
  }

  .page-home .home-sign:hover,
  .page-home .home-update:hover,
  .page-home .home-cat:hover {
    transform: none;
  }
}
<<<END>>>
