/* =========================================================
   黑金尊享 —— 品牌 / 奢华型布局
   结构：细信息条 → 居中 Logo → 细线夹住的居中导航 → 全屏轮播（居中文案、纵向序号）
        → 居中文字 + 通栏大图的关于 → 衬线序号优势 → 杂志式拼贴 → 大日期编辑式新闻
        → 一行衬线金色数字 → 居中大引号评价 → 居中页脚
   基础样式（表单、富文本、设计器画布、响应式）来自默认主题。
   ========================================================= */
@import url("/theme-assets/default/css/style.css");

:root {
  --font-mono: var(--font);
  --grid-line: transparent;
  --gold: #c9a961;
  --gold-light: #e2c37a;
  --gold-deep: #8f7132;
  --grad: linear-gradient(135deg, #b8964f, #e2c37a 50%, #b8964f);
  --glow: rgba(201, 169, 97, 0.35);
  --primary-2: var(--gold-light);
  --primary-deep: var(--gold-deep);
  --shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 60px -30px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 18px 40px -20px rgba(201, 169, 97, 0.45);
  --ink: #151515;
  --muted: #7d7873;
  --line: #e9e2d4;
  --line-strong: #d8ccb2;
  --card-border: #ebe4d6;
  --field-border: #d8ccb2;
  /* 头部总高度（居中 Logo 行 + 导航行） */
  --header-h: 140px;
}

body:has(.lx-topbar) {
  --topbar-h: 34px;
}

body {
  letter-spacing: 0.01em;
}

::selection {
  background: var(--gold);
  color: #151515;
}

.js .reveal {
  filter: none;
}

.lx-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.lx-rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 22px auto;
  background: var(--gold);
}

.lx-link {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.18em;
  transition: color 0.2s, border-color 0.2s, letter-spacing 0.3s;
}

.lx-link:hover {
  color: var(--ink);
  border-color: var(--ink);
  letter-spacing: 0.24em;
}

.bg-dark .lx-link,
.bg-primary .lx-link {
  color: var(--gold);
}

.bg-dark .lx-link:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- 头部：居中 Logo + 居中导航 ---------- */
.lx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
}

.lx-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.lx-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 16px;
}

.lx-topbar a:hover {
  color: var(--gold);
}

.lx-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lx-brand {
  justify-content: center;
  padding: 22px 0 16px;
  color: #fff;
}

.lx-brand:hover {
  color: #fff;
}

.lx-header .brand-mark {
  clip-path: none;
  border-radius: 0;
  background: var(--grad);
  color: #151515;
  box-shadow: none;
}

.lx-header .brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.lx-header .brand-slogan {
  text-align: center;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.lx-nav {
  width: 100%;
  justify-content: center;
  margin: 0;
  gap: 0;
  border-top: 1px solid rgba(201, 169, 97, 0.35);
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
}

.lx-nav .nav-list {
  gap: 0;
}

.lx-nav .nav-item > a {
  height: 54px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.lx-nav .nav-item > a::after {
  left: 26px;
  right: 26px;
  bottom: 16px;
  height: 1px;
  border-radius: 0;
  background: var(--gold);
  box-shadow: none;
}

.lx-nav .nav-item:hover > a,
.lx-nav .nav-item.active > a {
  color: var(--gold);
}

.lx-nav .nav-sub {
  left: 50%;
  transform: translate(-50%, 10px);
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.08);
  border-top: 1px solid var(--gold);
  background: #161617;
  backdrop-filter: none;
}

.lx-nav .nav-item:hover .nav-sub,
.lx-nav .nav-item.is-open .nav-sub {
  transform: translate(-50%, 0);
}

.lx-nav .nav-sub a {
  border-radius: 0;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

.lx-nav .nav-sub a:hover,
.lx-nav .nav-sub .active a {
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold);
  padding-left: 14px;
}

.lx-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.lx-nav {
  position: relative;
}

.lx-search:focus-within {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
}

.lx-search input {
  width: 90px;
  color: #fff;
}

.lx-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lx-search button {
  color: rgba(255, 255, 255, 0.6);
}

.lx-header .nav-toggle {
  position: absolute;
  right: 0;
  top: 22px;
}

.lx-header .nav-toggle span {
  background: #fff;
}

.header-transparent .lx-header {
  position: sticky;
  background: rgba(15, 15, 16, 0.97);
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  .lx-topbar {
    display: none;
  }

  body:has(.lx-topbar) {
    --topbar-h: 0px;
  }

  .lx-header-inner {
    align-items: flex-start;
  }

  .lx-brand {
    padding: 12px 0;
  }

  .lx-header .brand-name {
    font-size: 18px;
  }

  .lx-header .nav-toggle {
    top: 14px;
  }

  .lx-nav {
    position: fixed;
    border: 0;
    background: #111;
  }

  .lx-nav .nav-item > a {
    height: auto;
    padding: 15px 4px;
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .lx-nav .nav-sub {
    transform: none;
    background: transparent;
  }

  .lx-nav .nav-sub a {
    text-align: left;
  }

  .lx-search {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 16px;
  }

  .lx-search input {
    width: 100%;
  }
}

/* ---------- 首屏：全屏、居中、纵向序号 ---------- */
.lx-hero .hero-track {
  min-height: 520px;
}

.lx-hero.hero-normal .hero-track {
  aspect-ratio: auto;
  height: calc(100vh - var(--header-h) - 80px);
  max-height: 860px;
}

.lx-hero .hero-slide {
  justify-content: center;
}

.lx-hero .hero-slide::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.65));
}

.lx-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 24px;
}

.lx-hero.align-left .lx-caption {
  align-items: flex-start;
  text-align: left;
}

.lx-hero.align-left .hero-caption::before {
  display: none;
}

.lx-caption-kicker {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  animation: rise 0.9s var(--ease-out) forwards;
}

.lx-hero .hero-title {
  max-width: 900px;
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 62px);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.lx-hero.align-left .hero-title,
.lx-hero.align-left .hero-subtitle {
  margin-left: 0;
}

.lx-rule-light {
  background: var(--gold);
  opacity: 0.9;
}

.lx-hero .hero-subtitle {
  margin: 0 auto;
  max-width: 640px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.lx-hero .hero-caption .btn {
  margin-top: 34px;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease-out) 0.3s forwards;
}

.lx-hero .hero-slide.is-active .lx-rule {
  animation: rise 0.9s var(--ease-out) 0.1s forwards;
}

.lx-dots {
  left: auto;
  right: 32px;
  bottom: 50%;
  flex-direction: column;
  gap: 18px;
  transform: translateY(50%);
}

.lx-dots button {
  width: auto;
  height: auto;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.lx-dots button.is-active {
  width: auto;
  background: transparent;
  color: var(--gold);
  border-bottom-color: var(--gold);
  box-shadow: none;
}

.lx-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.6);
}

.lx-scroll-hint i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: lx-drop 2.2s ease-in-out infinite;
}

@keyframes lx-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.lx-hero .hero-arrow {
  border-radius: 0;
  border-color: rgba(201, 169, 97, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.lx-hero .hero-arrow:hover {
  background: var(--gold);
  color: #151515;
}

.lx-hero.hero-fallback {
  padding: 140px 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(201, 169, 97, 0.22), transparent 60%), var(--bg-dark);
}

.lx-hero.hero-fallback::before,
.lx-hero.hero-fallback::after {
  display: none;
}

/* ---------- 区块标题 ---------- */
.lx-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.lx-head-left {
  margin: 0 0 32px;
  text-align: left;
}

.lx-head-left .lx-rule {
  margin-left: 0;
  margin-right: 0;
}

.lx-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lx-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.lx-desc {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--muted);
}

.bg-dark .lx-label,
.bg-primary .lx-label {
  color: var(--gold);
}

.bg-dark .lx-title,
.bg-primary .lx-title {
  color: #fff;
}

.bg-dark .lx-desc {
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- 区块背景 ---------- */
.bg-soft {
  background: var(--bg-soft);
}

.bg-dark {
  background: radial-gradient(70% 60% at 50% 0%, rgba(201, 169, 97, 0.12), transparent 60%), var(--bg-dark);
}

.bg-primary {
  --ink: #151515;
  --ink-2: rgba(20, 20, 20, 0.85);
  --muted: rgba(20, 20, 20, 0.62);
  --line: rgba(0, 0, 0, 0.14);
  --line-strong: rgba(0, 0, 0, 0.28);
  --card-bg: rgba(255, 255, 255, 0.18);
  --card-border: rgba(0, 0, 0, 0.12);
  --field-bg: rgba(255, 255, 255, 0.35);
  --field-border: rgba(0, 0, 0, 0.2);
  --field-fg: #151515;
  --field-placeholder: rgba(0, 0, 0, 0.45);
  background: linear-gradient(135deg, #a88a45, #c9a961 50%, #a88a45);
  color: var(--ink-2);
}

.bg-primary .lx-label,
.bg-primary .lx-title,
.bg-primary .lx-desc,
.bg-primary .lx-link {
  color: #151515;
}

.bg-primary .lx-rule,
.bg-primary .lx-link {
  border-color: #151515;
  background-color: #151515;
}

.bg-primary .lx-link {
  background: none;
}

/* ---------- 关于：居中文字 + 通栏大图 ---------- */
.lx-about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.lx-about-body {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
}

.lx-about-body p {
  margin-bottom: 1em;
}

.lx-about-text .lx-link {
  margin-top: 12px;
}

.lx-about-media {
  margin-top: 56px;
}

.lx-about-media img,
.lx-about-media .about-placeholder {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.lx-about-media .about-placeholder {
  background: linear-gradient(135deg, #1a1a1c, #2b2620 60%, #4a3d22);
  color: var(--gold-light);
}

/* ---------- 优势：衬线序号 ---------- */
.lx-features {
  display: grid;
  gap: 40px 48px;
}

.lx-features.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lx-features.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lx-features.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lx-feature {
  display: block;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  color: inherit;
  transition: border-color 0.3s;
}

.lx-feature:hover {
  border-top-color: var(--gold);
  color: inherit;
}

.lx-feature-num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
}

.lx-feature-title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lx-feature-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--muted);
}

.bg-dark .lx-feature {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.bg-dark .lx-feature-text {
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- 杂志式拼贴 ---------- */
.lx-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.lx-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.lx-tile-lead {
  grid-column: span 2;
  grid-row: span 2;
}

.lx-tile img,
.lx-tile .cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), opacity 0.6s;
}

.lx-tile:hover img {
  transform: scale(1.06);
}

.lx-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.82));
  transition: opacity 0.4s;
}

.lx-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
}

.lx-tile-cat {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.lx-tile-body strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #fff;
}

.lx-tile-lead .lx-tile-body strong {
  font-size: 26px;
}

.lx-tile-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.lx-tile:hover {
  color: #fff;
}

.lx-tiles {
  display: grid;
  gap: 16px;
  grid-auto-rows: 260px;
}

.lx-tiles.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lx-tiles.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lx-more {
  margin-top: 40px;
  text-align: center;
}

/* ---------- 编辑式新闻列表 ---------- */
.lx-journal-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  transition: background 0.3s;
}

.lx-journal-item:last-child {
  border-bottom: 1px solid var(--line);
}

.lx-journal-item:hover {
  color: inherit;
}

.lx-journal-lead {
  grid-template-columns: 96px minmax(0, 1fr) 300px;
}

.lx-journal-date {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1;
}

.lx-journal-date b {
  font-size: 44px;
  font-weight: 500;
  color: var(--gold-deep);
}

.lx-journal-date small {
  margin-top: 8px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.lx-journal-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--ink);
  transition: color 0.2s;
}

.lx-journal-item:hover .lx-journal-body strong {
  color: var(--gold-deep);
}

.lx-journal-summary {
  display: block;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
}

.lx-journal-meta {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}

.lx-journal-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lx-journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.lx-journal-item:hover .lx-journal-media img {
  transform: scale(1.04);
}

.bg-dark .lx-journal-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.bg-dark .lx-journal-body strong,
.bg-dark .lx-journal-date {
  color: #fff;
}

.bg-dark .lx-journal-date b {
  color: var(--gold);
}

.lx-list li a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.lx-list li:first-child a {
  border-top: 1px solid var(--line);
}

.lx-list li a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 16px;
}

.lx-list li a time {
  flex: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.lx-list li a:hover {
  color: var(--gold-deep);
}

.bg-dark .lx-list li a {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- 数据：一行衬线数字 ---------- */
.lx-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lx-stat {
  padding: 8px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 97, 0.4);
}

.lx-stat:last-child {
  border-right: 0;
}

.lx-stat-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-deep);
}

.lx-stat-suffix {
  font-size: 0.45em;
}

.lx-stat-label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.bg-dark .lx-stat-value {
  color: var(--gold);
}

.bg-dark .lx-stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.bg-primary .lx-stat {
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bg-primary .lx-stat-value,
.bg-primary .lx-stat-label {
  color: #151515;
}

/* ---------- 评价：居中大引号 ---------- */
.lx-quotes {
  max-width: 820px;
  margin: 0 auto;
}

.lx-quote {
  position: relative;
  margin: 0;
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.lx-quote:first-child {
  padding-top: 0;
}

.lx-quote:last-child {
  border-bottom: 0;
}

.lx-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--gold);
}

.lx-quote blockquote {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.9;
  color: var(--ink);
}

.lx-quote figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 26px;
}

.lx-quote-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-size: 20px;
}

.lx-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lx-quote figcaption strong {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.lx-quote figcaption small {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.bg-dark .lx-quote {
  border-color: rgba(255, 255, 255, 0.12);
}

.bg-dark .lx-quote blockquote,
.bg-dark .lx-quote figcaption strong {
  color: #fff;
}

.bg-dark .lx-quote-avatar {
  color: var(--gold);
}

/* ---------- 行动号召 ---------- */
.lx-cta {
  padding: 40px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.45);
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
  text-align: center;
}

.lx-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.bg-dark .lx-cta-title {
  color: #fff;
}

.lx-cta-text {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.bg-dark .lx-cta-text {
  color: rgba(255, 255, 255, 0.65);
}

.lx-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.bg-primary .lx-cta {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-primary .lx-cta-title,
.bg-primary .lx-cta-text {
  color: #151515;
}

/* ---------- 联系 ---------- */
.lx-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.lx-contact-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lx-contact-list {
  margin: 0;
}

.lx-contact-list > div {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.lx-contact-list dt {
  flex: none;
  width: 56px;
  font-size: 12px;
  letter-spacing: 0.24em;
  line-height: 24px;
  color: var(--gold-deep);
}

.lx-contact-list dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
}

.bg-dark .lx-contact-list > div {
  border-color: rgba(255, 255, 255, 0.12);
}

.bg-dark .lx-contact-list dt {
  color: var(--gold);
}

.lx-contact-form .message-form input,
.lx-contact-form .message-form textarea {
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
}

.lx-contact-form .message-form input:focus,
.lx-contact-form .message-form textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.bg-dark .lx-contact-form .message-form input,
.bg-dark .lx-contact-form .message-form textarea {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.lx-contact-form .message-form .btn {
  margin-top: 12px;
}

/* ---------- 内页 ---------- */
.lx-page-header {
  position: relative;
  padding: 88px 0 64px;
  color: #fff;
  text-align: center;
  background: radial-gradient(60% 80% at 50% 0%, rgba(201, 169, 97, 0.18), transparent 60%), var(--bg-dark);
  background-size: cover;
  background-position: center;
}

.lx-page-header.has-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.lx-page-header-inner {
  position: relative;
}

.lx-page-header .lx-label {
  color: var(--gold);
}

.lx-page-header h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.lx-page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
}

.lx-crumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.lx-crumb li + li::before {
  content: "·";
  margin: 0 10px;
  color: var(--gold);
}

.lx-crumb a:hover,
.lx-crumb li:last-child span {
  color: #fff;
}

.lx-sub-nav-wrap {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.lx-sub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 8px;
}

.lx-sub-nav li a {
  display: block;
  padding: 18px 18px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
}

.lx-sub-nav li a:hover,
.lx-sub-nav li.active a {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.lx-list-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
}

.lx-article {
  max-width: 860px;
}

.lx-article-head {
  margin-bottom: 32px;
  text-align: center;
}

.lx-article-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.lx-article-meta a:hover {
  color: var(--gold-deep);
}

.lx-article-subtitle {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ink-2);
}

.lx-article-cover {
  margin: 0 0 32px;
}

.lx-article-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.lx-article-summary {
  margin-bottom: 32px;
  padding: 24px 32px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  background: var(--bg-soft);
}

.lx-prose {
  font-size: 16px;
  line-height: 2;
}

.lx-prose h2::before {
  background: var(--gold);
  width: 1px;
}

.lx-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lx-article-nav div:last-child {
  text-align: right;
}

.lx-article-nav small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
}

.lx-article-nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--ink);
}

.lx-article-nav a:hover {
  color: var(--gold-deep);
}

.lx-related {
  margin-top: 56px;
}

.lx-related-title {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ---------- 页脚：居中 ---------- */
.lx-footer {
  background: #0a0a0b;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.lx-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 72px 24px 48px;
  text-align: center;
}

.lx-footer .footer-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #fff;
}

.lx-footer .footer-logo {
  margin: 0 auto;
}

.lx-footer-slogan {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.lx-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.35);
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
  width: 100%;
  max-width: 760px;
}

.lx-footer-nav li a {
  display: block;
  padding: 6px 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

.lx-footer-nav li a:hover {
  color: var(--gold);
}

.lx-footer-contact p {
  margin-bottom: 8px;
  line-height: 1.9;
}

.lx-footer-contact p span + span {
  margin-left: 22px;
}

.lx-footer-contact a:hover {
  color: var(--gold);
}

.lx-footer-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.lx-footer-qr img,
.lx-footer-qr .footer-qr-placeholder {
  width: 104px;
  height: 104px;
  padding: 5px;
  border-radius: 0;
  background: #fff;
  color: rgba(0, 0, 0, 0.4);
  border-color: transparent;
}

.lx-footer-friends {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.lx-footer-friends a:hover {
  color: var(--gold);
}

.lx-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.lx-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.lx-footer-bottom a {
  margin-left: 14px;
}

.lx-footer-bottom a:hover {
  color: var(--gold);
}

.footer-light .lx-footer {
  background: var(--bg-soft);
  color: var(--ink-2);
  border-top: 1px solid var(--line-strong);
}

.footer-light .lx-footer .footer-name,
.footer-light .lx-footer-nav li a {
  color: var(--ink);
}

.footer-light .lx-footer-friends,
.footer-light .lx-footer-bottom,
.footer-light .lx-footer-qr {
  color: var(--muted);
}

.footer-light .lx-footer-bottom {
  border-top-color: var(--line);
}

.footer-light .lx-footer .footer-logo {
  filter: none;
}

.footer-primary .lx-footer {
  background: linear-gradient(160deg, #a88a45, #c9a961 60%, #a88a45);
  color: rgba(20, 20, 20, 0.8);
}

.footer-primary .lx-footer .footer-name,
.footer-primary .lx-footer-nav li a,
.footer-primary .lx-footer-slogan,
.footer-primary .lx-footer-friends,
.footer-primary .lx-footer-bottom {
  color: #151515;
}

.footer-primary .lx-footer-nav {
  border-color: rgba(0, 0, 0, 0.25);
}

/* ---------- 按钮 / 悬浮工具 / 分页 / 占位图 ---------- */
.btn {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.btn::after {
  display: none;
}

.btn-primary {
  background: var(--gold);
  color: #151515;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #151515;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #151515;
  transform: none;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #151515;
  transform: none;
}

.btn-light:hover {
  transform: none;
}

.float-btn {
  border-radius: 0;
  border-color: rgba(201, 169, 97, 0.55);
  background: rgba(15, 15, 16, 0.94);
  backdrop-filter: none;
}

.float-btn:hover {
  background: var(--gold);
  color: #151515;
}

.page-link {
  border-radius: 0;
}

.page-link.is-current {
  background: var(--gold);
  color: #151515;
  box-shadow: none;
}

.cover-placeholder,
.cover-placeholder[class*="tone-"] {
  --grid-line: transparent;
  background: linear-gradient(135deg, #17171a, #2b2620 70%, #4a3d22);
  color: var(--gold-light);
}

.cover-placeholder.tone-2 {
  background: linear-gradient(135deg, #1c1c1f, #33302a 70%, #6b5a33);
}

.cover-placeholder.tone-3 {
  background: linear-gradient(135deg, #141414, #262626 70%, #3d3d3d);
}

.cover-placeholder span {
  border-radius: 0;
  border-color: rgba(201, 169, 97, 0.5);
  font-family: var(--font);
  letter-spacing: 0.2em;
}

.not-found-code {
  font-family: var(--font-heading);
  color: var(--gold-deep);
}

/* 仍沿用默认模板的组件（团队 / 合作伙伴 / 常见问题 / 图集 / 自由排版）去掉科技装饰 */
.feature::before,
.feature::after,
.card::before,
.card::after {
  display: none;
}

.section-label,
.card-meta,
.row-meta,
.footer-bottom {
  font-family: var(--font);
  letter-spacing: 0.2em;
}

.section-label::after {
  display: none;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.section-title::after {
  height: 1px;
  width: 56px;
  border-radius: 0;
  background: var(--gold);
  box-shadow: none;
}

.member-photo {
  border-radius: 0;
  background: linear-gradient(135deg, #2a251c, #4a3d22);
}

.member-name {
  font-family: var(--font-heading);
}

.faq-item {
  border-radius: 0;
}

.faq-item summary svg {
  color: var(--gold-deep);
}

.gallery-item {
  border-radius: 0;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .lx-features.cols-3,
  .lx-features.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lx-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .lx-journal-lead {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .lx-journal-media {
    grid-column: 2;
  }

  .lx-tiles.cols-4,
  .lx-tiles.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lx-contact {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .lx-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 0;
  }

  .lx-stat:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .lx-hero.hero-normal .hero-track {
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .lx-dots {
    left: 0;
    right: 0;
    bottom: 40px;
    flex-direction: row;
    transform: none;
    justify-content: center;
  }

  .lx-scroll-hint {
    display: none;
  }

  .lx-features,
  .lx-features.cols-2,
  .lx-features.cols-3,
  .lx-features.cols-4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .lx-mosaic,
  .lx-tiles,
  .lx-tiles.cols-3,
  .lx-tiles.cols-4 {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 220px;
  }

  .lx-tile-lead {
    grid-column: auto;
    grid-row: auto;
  }

  .lx-journal-item,
  .lx-journal-lead {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .lx-journal-date {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .lx-journal-date b {
    font-size: 28px;
  }

  .lx-journal-media {
    grid-column: auto;
  }

  .lx-article-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .lx-article-nav div:last-child {
    text-align: left;
  }

  .lx-footer-inner {
    padding: 48px 24px 32px;
  }

  .lx-footer-contact p span {
    display: block;
  }

  .lx-footer-contact p span + span {
    margin-left: 0;
  }
}
