.page-home {
  --hero-mask: linear-gradient(180deg, rgba(7, 10, 22, 0) 0%, rgba(10, 17, 40, 0.72) 58%, #0A1128 100%);
  --glow-violet: rgba(122, 90, 245, 0.22);
  --glow-green: rgba(83, 255, 160, 0.16);
  --glow-ice: rgba(10, 212, 255, 0.2);
  --header-offset: 10px;

  position: relative;
  overflow-x: hidden;
  background: var(--c-bg);
  color: var(--c-text);
}

/* ========== 通用章节构建块 ========== */
.page-home .container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-home .section-number {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(122, 90, 245, 0.1);
  pointer-events: none;
  user-select: none;
}

.page-home .section-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.page-home .section-head__left {
  display: grid;
  gap: 8px;
}

.page-home .section-head__note {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--c-text);
}

/* ========== 01 框景首屏 ========== */
.page-home .hero-frame {
  position: relative;
  min-height: clamp(660px, 92vh, 980px);
  display: flex;
  flex-direction: column;
  background: var(--c-frame);
  border-bottom: 6px solid var(--c-frame-2);
  overflow: hidden;
}

.page-home .hero-frame__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-frame__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
}

.page-home .hero-frame__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(122, 90, 245, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 90, 245, 0.07) 1px, transparent 1px),
    linear-gradient(98deg, rgba(7, 10, 22, 0.96) 0%, rgba(10, 17, 40, 0.78) 48%, rgba(10, 17, 40, 0.42) 100%),
    var(--hero-mask);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.page-home .hero-frame__frame {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(20px, 4vw, 36px);
  left: clamp(14px, 3vw, 28px);
  z-index: 2;
  border: 1px solid rgba(122, 90, 245, 0.34);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.page-home .hero-frame__frame-label {
  position: absolute;
  top: -10px;
  left: 28px;
  padding: 0 12px;
  background: var(--c-bg);
  font-family: var(--font-data);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--c-ice);
  text-transform: uppercase;
  white-space: nowrap;
}

.page-home .hero-frame__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 64px;
  padding-bottom: 30px;
  width: 100%;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: auto;
  padding-top: 16px;
  font-size: 0.82rem;
  color: var(--c-muted);
}

.page-home .breadcrumb-item {
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.page-home .breadcrumb-item:hover,
.page-home .breadcrumb-item:focus-visible {
  color: var(--c-ice);
}

.page-home .breadcrumb-sep {
  color: rgba(142, 150, 192, 0.45);
  font-family: var(--font-data);
}

.page-home .breadcrumb-current {
  color: var(--c-text);
}

.page-home .hero-frame__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: end;
  margin-top: 32px;
}

.page-home .hero-frame__main {
  display: grid;
  gap: 14px;
}

.page-home .hero-frame__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.page-home .hero-frame__topline-text {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--c-green);
  letter-spacing: 0.02em;
}

.page-home .hero-frame__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 2.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--c-text);
  text-wrap: balance;
}

.page-home .hero-frame__lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 0.92rem + 0.34vw, 1.16rem);
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .hero-frame__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.page-home .hero-frame__tags .tag {
  font-size: 0.82rem;
}

.page-home .hero-frame__aside {
  max-width: 100%;
}

.page-home .hero-frame__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 4px;
  background: rgba(142, 150, 192, 0.18);
}

.page-home .hero-frame__progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--c-green), var(--c-ice));
  box-shadow: 0 0 14px var(--glow-green);
  transition: width 0.18s ease;
}

/* ---- 首屏比分卡 ---- */
.page-home .score-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(17, 27, 68, 0.96), rgba(10, 17, 40, 0.9));
  border: 1px solid rgba(10, 212, 255, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(122, 90, 245, 0.08), 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.page-home .score-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .score-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: var(--c-green);
}

.page-home .score-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px var(--glow-green);
  animation: hero-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.page-home .score-card__match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .score-card__team {
  flex: 1 1 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .score-card__team:last-of-type {
  text-align: right;
}

.page-home .score-card__result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  color: var(--c-green);
}

.page-home .score-card__num {
  font-size: 1.9rem;
  font-weight: 500;
}

.page-home .score-card__sep {
  color: var(--c-muted);
  font-size: 1.1rem;
}

.page-home .score-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(142, 150, 192, 0.16);
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: var(--c-muted);
}

.page-home .score-card__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========== 02 最新赛况记录 ========== */
.page-home .latest-panel {
  position: relative;
  overflow: hidden;
  padding-block: 64px 72px;
  background: var(--c-bg);
}

.page-home .latest-panel::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--glow-violet), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .latest-panel__inner {
  position: relative;
  z-index: 1;
}

.page-home .match-list {
  display: grid;
  gap: 14px;
}

.page-home .match-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 18px;
  padding: 18px 16px;
  background: var(--c-panel);
  border: 1px solid rgba(122, 90, 245, 0.12);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-home .match-row:hover,
.page-home .match-row:focus-within {
  border-color: rgba(10, 212, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--glow-ice), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.page-home .match-row__order {
  display: none;
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: rgba(142, 150, 192, 0.55);
  letter-spacing: 0.1em;
}

.page-home .match-row__tag {
  display: flex;
  align-items: center;
}

.page-home .match-row__core {
  display: grid;
  gap: 8px;
}

.page-home .match-row__teams {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .match-row__team {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-text);
  white-space: nowrap;
}

.page-home .match-row__score {
  margin-inline: 4px;
  font-family: var(--font-data);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-green);
  background: rgba(83, 255, 160, 0.08);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
}

.page-home .match-row__meta {
  font-size: 0.82rem;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

.page-home .match-row__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .match-row__link {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--c-ice);
  background: rgba(10, 212, 255, 0.08);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.page-home .match-row__link:hover,
.page-home .match-row__link:focus-visible {
  background: rgba(10, 212, 255, 0.18);
  border-color: rgba(10, 212, 255, 0.36);
}

.page-home .match-row__link--solid {
  color: var(--c-frame);
  background: var(--c-green);
  border-color: var(--c-green);
}

.page-home .match-row__link--solid:hover,
.page-home .match-row__link--solid:focus-visible {
  background: rgba(83, 255, 160, 0.8);
  border-color: var(--c-green);
  color: var(--c-frame);
}

/* ========== 03 数据目录 ========== */
.page-home .catalog-panel {
  position: relative;
  overflow: hidden;
  padding-block: 64px 72px;
  background: linear-gradient(180deg, var(--c-frame-2), var(--c-bg));
  border-block: 1px solid rgba(122, 90, 245, 0.1);
}

.page-home .catalog-panel::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--glow-green), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .section-head--catalog {
  margin-bottom: 32px;
}

.page-home .catalog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-panel);
  border: 1px solid rgba(122, 90, 245, 0.14);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--c-text);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-home a.catalog-card:hover,
.page-home a.catalog-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(10, 212, 255, 0.46);
  box-shadow: 0 0 0 1px var(--glow-ice), 0 18px 40px rgba(0, 0, 0, 0.34);
}

.page-home .catalog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.page-home .catalog-card--nav .catalog-card__media {
  aspect-ratio: 16 / 8;
}

.page-home .catalog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.page-home .catalog-card:hover .catalog-card__media img {
  transform: scale(1.05);
}

.page-home .catalog-card__body {
  display: grid;
  gap: 8px;
  padding: 18px 18px 22px;
}

.page-home .catalog-card__body--plain {
  padding: 0;
  flex: 1;
}

.page-home .catalog-card__code {
  font-family: var(--font-data);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--c-muted);
}

.page-home .catalog-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.7rem);
  line-height: 1.12;
  color: var(--c-text);
}

.page-home .catalog-card__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .catalog-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(122, 90, 245, 0.18);
  color: var(--c-violet);
  font-size: 1rem;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.page-home a.catalog-card:hover .catalog-card__arrow {
  background: var(--c-violet);
  color: #fff;
  transform: rotate(-45deg);
}

.page-home .catalog-card--plain {
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.page-home .catalog-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .catalog-card__stats li {
  padding: 4px 10px;
  background: rgba(122, 90, 245, 0.12);
  color: var(--c-text);
  font-family: var(--font-data);
  font-size: 0.76rem;
  border-radius: var(--radius-pill);
}

.page-home .catalog-card__compare {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.page-home .catalog-card__compare span {
  font-family: var(--font-data);
  font-size: 0.88rem;
  color: var(--c-frame);
}

.page-home .catalog-card__compare i {
  display: block;
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-violet), var(--c-green));
}

.page-home .catalog-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-violet);
  background: transparent;
  border: 1px solid rgba(122, 90, 245, 0.42);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.page-home .catalog-card__link:hover,
.page-home .catalog-card__link:focus-visible {
  background: var(--c-violet);
  border-color: var(--c-violet);
  color: #fff;
}

.page-home .catalog-card--warm {
  background: var(--c-warm);
  border-color: rgba(245, 241, 232, 0.2);
  color: var(--c-frame);
}

.page-home .catalog-card--warm h3 {
  color: var(--c-frame);
}

.page-home .catalog-card--warm .catalog-card__code {
  color: #6f6a78;
}

.page-home .catalog-card--warm .catalog-card__body p {
  color: #4d4a55;
}

.page-home .catalog-card--warm .catalog-card__link {
  color: var(--c-frame);
  border-color: rgba(10, 17, 40, 0.3);
}

.page-home .catalog-card--warm .catalog-card__link:hover,
.page-home .catalog-card--warm .catalog-card__link:focus-visible {
  background: var(--c-frame);
  border-color: var(--c-frame);
  color: var(--c-warm);
}

/* ========== 04 会员权益预告 ========== */
.page-home .member-panel {
  position: relative;
  overflow: hidden;
  padding-block: 64px 72px;
  background: var(--c-frame-2);
  border-bottom: 1px solid rgba(122, 90, 245, 0.08);
}

.page-home .member-panel::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 40%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--glow-violet), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .member-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 12%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--glow-green), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .member-panel__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .member-panel__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

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

.page-home .member-panel__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-frame);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 0 18px var(--glow-green);
}

.page-home .member-panel__content {
  display: grid;
  gap: 18px;
}

.page-home .member-panel__lead {
  margin: 0;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .member-panel__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .member-panel__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-home .member-panel__dot {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(83, 255, 160, 0.14);
  color: var(--c-green);
  font-family: var(--font-data);
  font-size: 0.78rem;
  border: 1px solid rgba(83, 255, 160, 0.28);
}

.page-home .member-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ========== 05 品牌信任条 ========== */
.page-home .trust-panel {
  position: relative;
  background: linear-gradient(180deg, var(--c-frame), #05070F);
  overflow: hidden;
}

.page-home .trust-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 90, 245, 0.4), var(--c-green), rgba(10, 212, 255, 0.55), transparent);
}

.page-home .trust-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  padding-block: 48px 40px;
}

.page-home .trust-panel__item {
  display: grid;
  gap: 6px;
  text-align: center;
  align-content: center;
}

.page-home .trust-panel__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.8rem);
  line-height: 1;
  color: var(--c-green);
  text-shadow: 0 0 20px var(--glow-green);
}

.page-home .trust-panel__icp {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.8rem);
  line-height: 1.2;
  color: var(--c-ice);
}

.page-home .trust-panel__label {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

.page-home .trust-panel__divider {
  display: none;
}

.page-home .trust-panel__note {
  position: relative;
  z-index: 1;
  padding-block: 14px 22px;
  border-top: 1px solid rgba(142, 150, 192, 0.1);
  text-align: center;
}

.page-home .trust-panel__note p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--c-muted);
}

/* ========== 移动端增强 ========== */
@media (max-width: 540px) {
  .page-home .hero-frame__title {
    font-size: clamp(2.1rem, 1.8rem + 1.2vw, 2.6rem);
  }

  .page-home .hero-frame__frame-label {
    left: 18px;
  }

  .page-home .match-row__teams {
    gap: 6px;
  }

  .page-home .match-row__team {
    font-size: 0.98rem;
  }

  .page-home .match-row__score {
    margin-inline: 0;
    font-size: 1rem;
  }

  .page-home .section-number {
    font-size: 4rem;
    top: 16px;
    right: 12px;
  }
}

/* ========== 平板断点 ========== */
@media (min-width: 768px) {
  .page-home .container {
    padding-inline: 28px;
  }

  .page-home .section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-home .section-head--catalog {
    grid-template-columns: 1fr;
  }

  .page-home .match-row {
    grid-template-columns: 52px 148px 1fr auto;
    align-items: center;
    padding: 16px 20px;
  }

  .page-home .match-row__order {
    display: block;
  }

  .page-home .match-row__actions {
    justify-content: flex-end;
  }

  .page-home .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .trust-panel__inner {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 20px;
  }

  .page-home .trust-panel__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    background: rgba(142, 150, 192, 0.16);
  }
}

/* ========== 桌面断点 ========== */
@media (min-width: 1024px) {
  .page-home .hero-frame__content {
    padding-bottom: 40px;
    padding-top: 72px;
  }

  .page-home .hero-frame__layout {
    grid-template-columns: 1.35fr 0.85fr;
    column-gap: 44px;
    margin-top: 40px;
  }

  .page-home .hero-frame__lead {
    max-width: 36rem;
  }

  .page-home .member-panel__layout {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 58px;
  }

  .page-home .member-panel__media {
    min-height: 320px;
  }

  .page-home .member-panel__media img {
    height: 100%;
    min-height: 320px;
    object-fit: cover;
  }
}

/* ========== 宽屏网格调整 ========== */
@media (min-width: 1280px) {
  .page-home .catalog-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .page-home .catalog-card--shield {
    grid-column: span 7;
  }

  .page-home .catalog-card--nav {
    grid-column: span 5;
  }

  .page-home .catalog-card--plain {
    grid-column: span 6;
  }

  .page-home .catalog-card--plain .catalog-card__body--plain {
    min-height: 190px;
  }

  .page-home .trust-panel__inner {
    gap: 30px;
  }
}
