.page-home {
  --home-deep: #081426;
  --home-line: rgba(201, 168, 106, 0.35);
  --home-line-bright: rgba(224, 200, 120, 0.8);
  --home-surface-mask: linear-gradient(135deg, rgba(11, 29, 58, 0.92) 0%, rgba(18, 42, 74, 0.88) 100%);
  --home-gold-grad: linear-gradient(90deg, rgba(201, 168, 106, 0.5), rgba(224, 200, 120, 1), rgba(201, 168, 106, 0.5));
  --home-col-gap: 54px;
  width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(201, 168, 106, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0b1d3a 0%, #081426 100%);
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
}

.page-home ::selection {
  background: rgba(201, 168, 106, 0.3);
  color: #f0ead6;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.page-home a:hover {
  color: #f4e3bd;
}

.page-home .breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
}

.page-home .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .breadcrumb-item::before {
  content: "/";
  color: var(--accent);
  opacity: 0.6;
}

.page-home .breadcrumb-item:first-child::before {
  content: "";
}

.page-home .breadcrumb-link {
  color: var(--text-2);
  padding: 2px 0;
}

.page-home .breadcrumb-link:hover {
  color: var(--accent-2);
}

.page-home .section {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) 24px;
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-home .section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--home-line-bright);
}

.page-home .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.page-home .section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--home-gold-grad);
  margin-top: 14px;
}

.page-home .section-sub {
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 46em;
  margin: 0 0 28px;
}

.page-home .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
}

.page-home .btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 1px;
  pointer-events: none;
}

.page-home .btn-primary {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.25), rgba(201, 168, 106, 0.08));
  border-color: var(--accent);
  color: var(--accent-2);
}

.page-home .btn-primary:hover {
  background: linear-gradient(135deg, rgba(224, 200, 120, 0.4), rgba(201, 168, 106, 0.15));
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.page-home .btn-ghost:hover {
  background: rgba(201, 168, 106, 0.12);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.page-home .btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* 框景首屏 */
.page-home .hero-frame {
  position: relative;
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding: 0 24px;
}

.page-home .hero-frame__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  border-radius: 2px;
}

.page-home .hero-frame__backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-home .hero-frame__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(8, 20, 38, 0.65) 100%),
    linear-gradient(90deg, rgba(8, 20, 38, 0.85), rgba(11, 29, 58, 0.5) 55%, rgba(8, 20, 38, 0.7));
  z-index: 1;
}

.page-home .hero-frame__inner {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  background: var(--home-surface-mask);
  backdrop-filter: blur(6px);
  border-radius: 2px;
  overflow: hidden;
}

.page-home .hero-frame__rail {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--home-line);
}

.page-home .hero-frame__rail-mark {
  display: inline-flex;
  gap: 5px;
}

.page-home .hero-frame__rail-mark i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.page-home .hero-frame__rail-mark i:nth-child(1) {
  background: var(--warning);
  border-color: var(--warning);
  opacity: 0.8;
}

.page-home .hero-frame__rail-mark i:nth-child(2),
.page-home .hero-frame__rail-mark i:nth-child(3) {
  background: transparent;
}

.page-home .hero-frame__rail-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
}

.page-home .hero-frame__rail-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.3), transparent);
}

.page-home .hero-frame__rail-code {
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.12em;
}

.page-home .hero-frame__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: clamp(36px, 5vw, 64px);
}

.page-home .hero-frame__intro {
  max-width: 760px;
}

.page-home .hero-frame__badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 106, 0.35);
  padding: 5px 14px;
  margin-bottom: 24px;
  background: rgba(201, 168, 106, 0.08);
  border-radius: 2px;
}

.page-home .hero-frame__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  color: var(--text);
}

.page-home .hero-frame__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.9;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 36px;
}

.page-home .hero-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-home .hero-frame__asides {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  border-top: 1px solid rgba(201, 168, 106, 0.14);
  padding-top: 28px;
  margin-top: auto;
}

.page-home .hero-frame__status {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .hero-frame__status-label,
.page-home .hero-frame__guidance-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}

.page-home .hero-frame__status-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.page-home .hero-frame__status-sub {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

.page-home .hero-frame__guidance {
  min-width: 260px;
}

.page-home .hero-frame__guidance-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.page-home .hero-frame__guidance-list a {
  font-size: 0.86rem;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 168, 106, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .hero-frame__guidance-list a:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.page-home .hero-frame__frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--home-line-bright);
  z-index: 3;
  pointer-events: none;
}

.page-home .hero-frame__frame-corner--tl {
  top: 54px;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.page-home .hero-frame__frame-corner--tr {
  top: 54px;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.page-home .hero-frame__frame-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.page-home .hero-frame__frame-corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* 仪表板 */
.page-home .dashboard-panel {
  position: relative;
}

.page-home .dashboard-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.2) 20%, rgba(201, 168, 106, 0.2) 80%, transparent);
}

.page-home .dashboard-panel__head {
  margin-bottom: 40px;
}

.page-home .dashboard-panel__body {
  position: relative;
}

.page-home .data-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 168, 106, 0.12);
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 2px;
}

.page-home .data-cell {
  position: relative;
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: help;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.page-home .data-cell:hover,
.page-home .data-cell:focus {
  background: #163356;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 106, 0.25), 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.page-home .cell-index {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}

.page-home .cell-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.page-home .cell-number sup {
  font-size: 1rem;
  color: var(--accent);
  margin-left: 2px;
}

.page-home .cell-note {
  font-size: 0.78rem;
  color: var(--text-2);
  opacity: 0.78;
}

/* 版本与费用 */
.page-home .version-editorial {
  position: relative;
  display: flex;
  gap: var(--home-col-gap);
}

.page-home .version-editorial__note {
  display: none;
}

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

.page-home .version-editorial__title-group {
  margin-bottom: 32px;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.15);
  padding-bottom: 20px;
}

.page-home .filter-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-2);
  background: transparent;
  border: 1px solid rgba(201, 168, 106, 0.25);
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-home .filter-btn:hover {
  color: var(--accent-2);
  border-color: var(--accent);
}

.page-home .filter-btn.is-active {
  color: var(--accent-2);
  border-color: var(--accent);
  background: rgba(201, 168, 106, 0.12);
}

.page-home .version-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.page-home .version-card {
  position: relative;
  display: none;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(18, 42, 74, 0.9), rgba(8, 20, 38, 0.9));
  border: 1px solid var(--home-line);
  border-radius: 2px;
  padding: 34px 30px 30px;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.3s ease;
}

.page-home .version-card.is-visible {
  display: flex;
}

.page-home .version-card:hover {
  border-color: rgba(201, 168, 106, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.page-home .version-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--home-gold-grad);
  opacity: 0.75;
}

.page-home .version-card .artifact-tag {
  position: absolute;
  top: 22px;
  right: -4px;
  background: #1a3a60;
  color: var(--accent-2);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 106, 0.4);
  border-right: none;
}

.page-home .version-card__body {
  margin-top: 20px;
}

.page-home .version-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.page-home .version-card__desc {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 42em;
}

.page-home .version-card__fee {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--text-2);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.page-home .version-card__fee-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.page-home .version-card__fee-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
  padding-top: 18px;
}

.page-home .version-card__fee-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 12px;
  border-right: 1px solid rgba(201, 168, 106, 0.12);
}

.page-home .version-card__fee-list li:last-child {
  border-right: none;
}

.page-home .version-card__fee-list span {
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
}

.page-home .version-card__fee-list strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.page-home .version-card__notice {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-2);
  opacity: 0.75;
}

.page-home .version-card__footer {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .version-editorial__decoration {
  position: relative;
  margin: 0 0 36px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 2px;
  max-height: 220px;
}

.page-home .version-editorial__decoration img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-home .version-editorial__decoration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.1), rgba(8, 20, 38, 0.45));
}

.page-home .version-editorial__footnote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
  padding-top: 26px;
}

.page-home .version-editorial__footnote p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
}

/* 下载与入口 */
.page-home .download-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: rgba(18, 42, 74, 0.55);
  border-top: 1px solid rgba(201, 168, 106, 0.2);
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
}

.page-home .download-panel__visual {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  order: -1;
  border: 1px solid rgba(201, 168, 106, 0.14);
  background: rgba(8, 20, 38, 0.35);
  border-radius: 2px;
  padding: 22px;
}

.page-home .download-panel__label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-home .download-panel__image {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.page-home .download-panel__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 2px;
}

.page-home .download-panel__caption {
  font-size: 0.8rem;
  color: var(--text-2);
  text-align: center;
}

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

.page-home .download-panel__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.page-home .download-panel__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(11, 29, 58, 0.5);
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 2px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-home .download-panel__item:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateX(6px);
}

.page-home .download-panel__item .meta-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid rgba(201, 168, 106, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
}

.page-home .download-panel__item-text {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

.page-home .download-panel__note {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 8px;
}

.page-home .download-panel__note p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
}

/* 新闻动态 */
.page-home .news-magazine__header {
  margin-bottom: 36px;
}

.page-home .news-magazine__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
}

.page-home .news-item {
  border-bottom: 1px solid rgba(201, 168, 106, 0.14);
  transition: background-color 0.3s ease;
}

.page-home .news-item:hover {
  background: rgba(18, 42, 74, 0.35);
}

.page-home .news-item__head {
  padding: 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.page-home .news-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.page-home .news-item__time {
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
}

.page-home .news-item__abstract {
  border-left: 2px solid rgba(201, 168, 106, 0.3);
  padding: 0 8px;
  overflow: hidden;
}

.page-home .news-item__abstract p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
  padding-bottom: 20px;
}

.page-home .news-magazine__more {
  margin-top: 32px;
  text-align: right;
}

/* 反馈 */
.page-home .feedback-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(18, 42, 74, 0.6), rgba(8, 20, 38, 0.7)),
    repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(201, 168, 106, 0.03) 10px, rgba(201, 168, 106, 0.03) 20px);
  padding: 40px 24px;
}

.page-home .feedback-panel__intro {
  flex: 1;
}

.page-home .feedback-panel__emblem {
  margin-top: 24px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .feedback-panel__emblem img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.page-home .feedback-panel__contacts {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(11, 29, 58, 0.6);
  border: 1px solid rgba(201, 168, 106, 0.14);
  padding: 8px 0;
}

.page-home .feedback-panel__contacts .contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
}

.page-home .feedback-panel__contacts .contact-line:last-of-type {
  border-bottom: none;
}

.page-home .contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-home .contact-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  word-break: break-all;
}

.page-home .feedback-panel__note {
  margin: 20px 24px 24px;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.8;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.page-home .feedback-panel__contacts .btn {
  margin: 0 24px 24px;
  align-self: flex-start;
}

/* ===== 平板以上尺寸 ===== */
@media (min-width: 768px) {
  .page-home .data-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .version-editorial__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-home .download-panel {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home .download-panel__visual {
    order: 0;
  }

  .page-home .download-panel__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .download-panel__item-text {
    flex: 1;
  }

  .page-home .download-panel__item .btn {
    flex-shrink: 0;
  }

  .page-home .news-item__head {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 24px 12px;
  }

  .page-home .news-item__title {
    flex: 1;
  }

  .page-home .news-item__time {
    flex-shrink: 0;
  }

  .page-home .news-item__abstract {
    margin: 0 12px;
  }

  .page-home .feedback-panel {
    flex-direction: row;
    padding: 48px 40px;
  }
}

/* ===== 桌面尺寸 ===== */
@media (min-width: 1024px) {
  .page-home .hero-frame__inner {
    min-height: 680px;
  }

  .page-home .hero-frame__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }

  .page-home .hero-frame__intro {
    max-width: 720px;
  }

  .page-home .hero-frame__asides {
    flex-direction: column;
    min-width: 240px;
    max-width: 280px;
    border-top: none;
    border-left: 1px solid rgba(201, 168, 106, 0.14);
    padding-top: 0;
    padding-left: 28px;
    margin-top: 0;
  }

  .page-home .hero-frame__guidance-list {
    flex-direction: column;
    gap: 10px;
  }

  .page-home .data-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .version-editorial {
    align-items: flex-start;
  }

  .page-home .version-editorial__note {
    display: block;
    flex: 0 0 88px;
    position: sticky;
    top: 120px;
  }

  .page-home .vertical-note {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--accent);
    white-space: nowrap;
    border-right: 1px solid rgba(201, 168, 106, 0.25);
    padding-right: 14px;
    text-transform: uppercase;
  }

  .page-home .version-editorial__decoration {
    max-height: 320px;
  }

  .page-home .version-editorial__decoration img {
    height: 320px;
  }

  .page-home .version-editorial__footnote {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ===== 大桌面宽屏 ===== */
@media (min-width: 1440px) {
  .page-home .hero-frame__inner {
    min-height: 760px;
  }

  .page-home .hero-frame__content {
    padding: 72px;
  }
}

/* ===== 移动端细节适配 ===== */
@media (max-width: 480px) {
  .page-home .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-home .hero-frame {
    padding: 0 12px;
  }

  .page-home .hero-frame__inner {
    min-height: 540px;
  }

  .page-home .hero-frame__actions .btn {
    width: 100%;
  }

  .page-home .data-cell {
    padding: 20px 16px;
  }

  .page-home .cell-number {
    font-size: 1.5rem;
  }

  .page-home .version-card {
    padding: 26px 20px 24px;
  }

  .page-home .version-card__fee-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-home .version-card__fee-list li {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 106, 0.1);
    padding-bottom: 10px;
  }

  .page-home .version-card__fee-list li:last-child {
    border-bottom: none;
  }

  .page-home .feedback-panel {
    padding: 28px 16px;
  }

  .page-home .feedback-panel__contacts .contact-line {
    padding: 14px 16px;
  }
}
