.page-events-rules {
  --rules-mark-tint: color-mix(in srgb, var(--color-primary) 24%, var(--color-surface));
  --rules-mark-accent-tint: color-mix(in srgb, var(--color-accent) 30%, var(--color-surface));
  display: block;
  padding-bottom: var(--space-8);
}

/* ---------- 面包屑 ---------- */
.page-events-rules .rules-crumb {
  padding-top: var(--space-6);
}
.page-events-rules .rules-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}
.page-events-rules .rules-crumb li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.page-events-rules .rules-crumb li + li::before {
  content: "/";
  color: var(--color-line);
}
.page-events-rules .rules-crumb a {
  color: var(--color-ink-soft);
  text-decoration: none;
}
.page-events-rules .rules-crumb a:hover,
.page-events-rules .rules-crumb a:focus-visible {
  color: var(--color-primary);
}
.page-events-rules .rules-crumb [aria-current="page"] {
  color: var(--color-ink);
  font-weight: 700;
}

/* ---------- 标题区 ---------- */
.page-events-rules .rules-top {
  padding: var(--space-6) 0 var(--space-8);
}
.page-events-rules .rules-head {
  display: grid;
  gap: var(--space-6);
}
.page-events-rules .rules-head h1 {
  margin: var(--space-2) 0 var(--space-3);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(var(--text-xl), 6.4vw, var(--text-2xl));
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
}
.page-events-rules .rules-head .lede {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-ink-soft);
}
.page-events-rules .rules-head .lede a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: var(--border-thin) solid currentColor;
}
.page-events-rules .rules-head .lede a:hover,
.page-events-rules .rules-head .lede a:focus-visible {
  color: var(--color-accent);
}

.page-events-rules .rules-meta {
  margin: 0;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-events-rules .rules-meta > div {
  display: grid;
  gap: var(--space-1);
}
.page-events-rules .rules-meta dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
}
.page-events-rules .rules-meta dd {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-base);
  line-height: 1.3;
  color: var(--color-ink);
}

/* ---------- 顶部横幅 ---------- */
.page-events-rules .rules-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 460;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ---------- 锚点条 ---------- */
.page-events-rules .rules-anchors-wrap {
  padding-top: var(--space-8);
}
.page-events-rules .rules-anchors {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-2);
}
.page-events-rules .rules-anchors a {
  flex: 0 0 auto;
  padding: 0.6em 1.2em;
  border-radius: var(--radius-pill);
  background: var(--color-surface-alt);
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-decoration: none;
  white-space: nowrap;
}
.page-events-rules .rules-anchors a:hover {
  background: var(--color-primary);
  color: var(--color-primary-ink);
}
.page-events-rules .rules-anchors a:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: 2px;
}

/* ---------- 通用小节 ---------- */
.page-events-rules .rules-sec {
  padding-block: var(--space-8);
  scroll-margin-top: var(--space-8);
}
.page-events-rules .rules-sec--alt {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.page-events-rules .rules-sec__head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.page-events-rules .rules-sec__mark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-figure);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--rules-mark-tint);
}
.page-events-rules .rules-sec:target .rules-sec__mark {
  color: var(--rules-mark-accent-tint);
}
.page-events-rules .rules-sec__head .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(var(--text-lg), 3.6vw, var(--text-xl));
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
}
.page-events-rules .rules-sec__lede {
  margin: 0 0 var(--space-6);
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}
.page-events-rules .rules-sec__foot {
  margin: var(--space-6) 0 0;
  max-width: var(--measure);
  padding-left: var(--space-6);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- 01 范围 ---------- */
.page-events-rules .brief-split {
  display: grid;
  gap: var(--space-8);
}
.page-events-rules .brief-col {
  display: grid;
  gap: var(--space-3);
}
.page-events-rules .brief-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}
.page-events-rules .brief-list li {
  position: relative;
  padding-left: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink);
  max-width: var(--measure);
}
.page-events-rules .brief-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
}
.page-events-rules .brief-list--out li::before {
  background: var(--color-accent);
  width: 14px;
  height: 7px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  top: 0.6em;
}
.page-events-rules .brief-list a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.page-events-rules .brief-list a:hover,
.page-events-rules .brief-list a:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ---------- 条目列表 ---------- */
.page-events-rules .rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-6);
}
.page-events-rules .rule {
  position: relative;
  padding-left: var(--space-6);
}
.page-events-rules .rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
}
.page-events-rules .rule--act::before {
  background: var(--color-accent);
  width: 16px;
  height: 8px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
}
.page-events-rules .rule__title {
  margin: 0 0 var(--space-1);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-base);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.page-events-rules .rule__text {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}
.page-events-rules .rule__text a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.page-events-rules .rule__text a:hover,
.page-events-rules .rule__text a:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ---------- 折叠细则 ---------- */
.page-events-rules .rule-fold {
  margin-top: var(--space-3);
}
.page-events-rules .rule-fold > summary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--color-accent);
}
.page-events-rules .rule-fold > summary::-webkit-details-marker {
  display: none;
}
.page-events-rules .rule-fold > summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  background: var(--color-highlight);
  color: var(--color-ink);
  font-weight: 700;
  border-radius: var(--radius-pill);
}
.page-events-rules .rule-fold[open] > summary::before {
  content: "–";
}
.page-events-rules .rule-fold > summary:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-pill);
}
.page-events-rules .rule-fold__body {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-highlight);
}
.page-events-rules .rule-fold__body p {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

/* ---------- 04 字段表 ---------- */
.page-events-rules .field-grid {
  margin: 0 0 var(--space-6);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: minmax(0, 1fr);
}
.page-events-rules .field {
  display: grid;
  gap: var(--space-1);
}
.page-events-rules .field dt {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-base);
  color: var(--color-ink);
}
.page-events-rules .field dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

/* ---------- 05 时间轴 ---------- */
.page-events-rules .rules-time-media {
  margin-bottom: var(--space-6);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.page-events-rules .rules-time-media .media-frame__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-events-rules .rules-time-media .media-frame__body {
  padding: var(--space-4);
}
.page-events-rules .rules-time-media__lead {
  margin: 0 0 var(--space-1);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-lg);
  line-height: 1.2;
  color: var(--color-contrast-ink);
}
.page-events-rules .rules-time-media__lead .num {
  color: var(--color-contrast-accent);
}
.page-events-rules .rules-time-media__note {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-contrast-ink);
}

.page-events-rules .timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-4);
}
.page-events-rules .timeline__item {
  display: block;
}
.page-events-rules .tl-rule > summary {
  list-style: none;
  cursor: pointer;
}
.page-events-rules .tl-rule > summary::-webkit-details-marker {
  display: none;
}
.page-events-rules .tl-rule__sum {
  display: grid;
  gap: var(--space-1);
}
.page-events-rules .tl-rule__band {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}
.page-events-rules .tl-rule__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-base);
  color: var(--color-ink);
}
.page-events-rules .tl-rule__hint {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}
.page-events-rules .tl-rule[open] .tl-rule__hint {
  color: var(--color-accent);
}
.page-events-rules .tl-rule__sum:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.page-events-rules .tl-rule__body {
  margin: var(--space-3) 0 0;
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- 06 纠错 ---------- */
.page-events-rules .fix-split {
  display: grid;
  gap: var(--space-8);
}
.page-events-rules .rules-fix-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.page-events-rules .rules-fix-media .media-frame__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-events-rules .rules-fix-media .media-frame__body {
  padding: var(--space-4);
}
.page-events-rules .rules-fix-media__lead {
  margin: 0 0 var(--space-1);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 1;
  color: var(--color-contrast-accent);
}
.page-events-rules .rules-fix-media__note {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-contrast-ink);
}

/* ---------- 相邻主题 ---------- */
.page-events-rules .rules-next {
  padding-block: var(--space-8);
}
.page-events-rules .rules-next .section-title {
  margin: var(--space-2) 0 var(--space-6);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(var(--text-lg), 3.6vw, var(--text-xl));
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
}
.page-events-rules .next-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-4);
}
.page-events-rules .next-list a {
  display: grid;
  gap: var(--space-1);
  padding-left: var(--space-6);
  position: relative;
  text-decoration: none;
}
.page-events-rules .next-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
}
.page-events-rules .next-list a:hover::before,
.page-events-rules .next-list a:focus-visible::before {
  background: var(--color-accent);
}
.page-events-rules .next-list a:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.page-events-rules .next-list__label {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-base);
  color: var(--color-ink);
}
.page-events-rules .next-list a:hover .next-list__label {
  color: var(--color-primary);
}
.page-events-rules .next-list__desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-ink-muted);
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-events-rules .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-events-rules .next-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-8);
  }
}

@media (min-width: 780px) {
  .page-events-rules .rules-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-events-rules .brief-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-8);
  }
  .page-events-rules .rule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-8);
    row-gap: var(--space-6);
  }
  .page-events-rules .rule-list--single {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-events-rules .rules-sec__head {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: var(--space-6);
    align-items: baseline;
  }
  .page-events-rules .tl-rule__sum {
    grid-template-columns: 9rem minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: var(--space-4);
  }
}

@media (min-width: 900px) {
  .page-events-rules .rules-head {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    column-gap: var(--space-8);
    align-items: end;
  }
  .page-events-rules .rules-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
  }
  .page-events-rules .fix-split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    column-gap: var(--space-8);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .page-events-rules .field-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .page-events-rules .rules-meta {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-events-rules .rules-head .lede {
    font-size: var(--text-base);
  }
  .page-events-rules .tl-rule__band {
    font-size: var(--text-base);
  }
}
<<<END>>>
