
    /* ============ 全局变量 ============ */
    :root {
      --blue: #1A3A5C;
      --blue-deep: #14304E;
      --green: #2D5A4A;
      --gold: #C9A96E;
      --gold-deep: #A8854E;
      --gold-bg: #F8F4EB;
      --peach: #E8A87C;
      --warm-bg: #FDFBF7;
      --text: #333B45;
      --text-sub: #8A93A0;
      --line: #ECE7DD;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      --shadow-hover: 0 16px 40px rgba(26, 58, 92, 0.15);
      --radius: 16px;
      --btn-radius: 30px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
      background: var(--warm-bg);
      color: var(--text);
      line-height: 1.75;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ============ 顶部导航 ============ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background .35s ease, box-shadow .35s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.99);
      box-shadow: 0 2px 18px rgba(26, 58, 92, 0.10);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: conic-gradient(from 200deg, var(--gold), var(--peach), var(--green), var(--blue), var(--gold));
      padding: 3px;
    }

    .logo-mark span {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: -1px;
    }

    .nav-logo-text {
      line-height: 1.3;
    }

    .nav-logo-text .t1 {
      font-size: 17.5px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .nav-logo-text .t2 {
      font-size: 10.5px;
      color: var(--text-sub);
      letter-spacing: 3px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-menu a {
      font-size: 14px;
      color: #4A5560;
      position: relative;
      padding: 4px 0;
      transition: color .25s;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      width: 0;
      height: 2px;
      border-radius: 2px;
      background: var(--gold);
      transition: all .3s;
      transform: translateX(-50%);
    }

    .nav-menu a:hover {
      color: var(--blue);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--btn-radius);
      cursor: pointer;
      border: none;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 30px;
      transition: all .3s ease;
      font-family: inherit;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .btn-nav {
      background: transparent;
      border: 1.5px solid var(--gold);
      color: #C07A2B;
      font-size: 13.5px;
      padding: 8px 20px;
    }

    .btn-nav:hover {
      background: var(--gold);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(201, 169, 110, 0.35);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      width: 24px;
      height: 2.5px;
      background: var(--blue);
      border-radius: 2px;
      transition: all .3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      background: #fff;
      box-shadow: 0 8px 26px rgba(26, 58, 92, 0.12);
      padding: 12px 24px 22px;
    }

    .mobile-menu a {
      display: block;
      padding: 11px 6px;
      font-size: 15px;
      color: var(--text);
      border-bottom: 1px solid #F0EDE6;
    }

    .mobile-menu a:hover {
      color: var(--blue);
    }

    .mobile-menu .btn {
      margin-top: 14px;
      width: 100%;
    }

    /* ============ Hero ============ */
    .hero {
      position: relative;
      min-height: 100vh;
      color: #fff;
      overflow: hidden;
      background: linear-gradient(135deg, #14304E 0%, var(--blue) 35%, #234A45 70%, var(--green) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 130px 24px 90px;
    }

    .hero-texture {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.5;
    }

    .hero-texture svg {
      width: 100%;
      height: 100%;
    }

    .hero-glow {
      position: absolute;
      pointer-events: none;
      inset: 0;
      background:
        radial-gradient(ellipse at 18% 25%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 82% 78%, rgba(232, 168, 124, 0.10) 0%, transparent 46%);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-block;
      padding: 8px 24px;
      border-radius: 30px;
      background: rgba(253, 251, 247, 0.10);
      border: 1px solid rgba(201, 169, 110, 0.55);
      color: #E6CDA0;
      font-size: 13.5px;
      letter-spacing: 3px;
      margin-bottom: 36px;
    }

    .hero-title {
      font-size: clamp(48px, 9vw, 104px);
      font-weight: 900;
      letter-spacing: 8px;
      line-height: 1.08;
      background: linear-gradient(180deg, #FFF9EE 20%, #EAD9B4 60%, #C9A96E 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 6px 40px rgba(0, 0, 0, 0.28);
      margin-bottom: 14px;
    }

    .hero-sub {
      font-size: clamp(17px, 2.4vw, 24px);
      font-weight: 600;
      letter-spacing: 10px;
      color: var(--peach);
      margin-bottom: 22px;
      text-indent: 10px;
    }

    .hero-desc {
      font-size: 15.5px;
      color: rgba(255, 255, 255, 0.78);
      letter-spacing: 2px;
      max-width: 620px;
      margin: 0 auto 50px;
      line-height: 2;
    }

    .hero-ctas {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-gold {
      background: linear-gradient(135deg, #D9BC85 0%, var(--gold) 100%);
      color: var(--blue);
      box-shadow: 0 8px 26px rgba(201, 169, 110, 0.35);
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 34px rgba(201, 169, 110, 0.5);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.7);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: #fff;
      transform: translateY(-3px);
    }

    .btn-peach {
      background: linear-gradient(135deg, #F2BC97 0%, var(--peach) 100%);
      color: #fff;
      box-shadow: 0 8px 26px rgba(232, 168, 124, 0.35);
    }

    .btn-peach:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 34px rgba(232, 168, 124, 0.5);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 3;
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 4px;
    }

    .scroll-line {
      width: 1.5px;
      height: 46px;
      background: rgba(201, 169, 110, 0.3);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: "";
      position: absolute;
      left: 0;
      top: -50%;
      width: 100%;
      height: 50%;
      background: var(--gold);
      animation: scrollDrop 1.8s ease-in-out infinite;
    }

    @keyframes scrollDrop {
      0% {
        top: -50%;
      }

      60% {
        top: 110%;
      }

      100% {
        top: 110%;
      }
    }

    /* ============ 区块通用 ============ */
    section {
      padding: 90px 0;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 52px;
    }

    .sec-kicker {
      display: inline-block;
      font-size: 12.5px;
      letter-spacing: 4px;
      color: var(--gold-deep);
      background: rgba(201, 169, 110, 0.12);
      padding: 5px 18px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .sec-title {
      font-size: clamp(25px, 3.4vw, 38px);
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .sec-sub {
      color: var(--text-sub);
      font-size: 15px;
      letter-spacing: 1px;
    }

    /* ============ 主题阐释区 ============ */
    .interpret {
      background: #fff;
      padding: 96px 0;
    }

    .interpret-quote {
      text-align: center;
      font-size: clamp(22px, 3.2vw, 34px);
      font-weight: 300;
      color: var(--blue);
      letter-spacing: 3px;
      margin-bottom: 64px;
      line-height: 1.9;
      position: relative;
    }

    .interpret-quote::before {
      content: "“";
      display: block;
      font-size: 88px;
      color: var(--gold);
      opacity: 0.35;
      font-family: Georgia, serif;
      line-height: 0.5;
      margin-bottom: 8px;
    }

    .interpret-quote::after {
      content: "”";
      display: block;
      font-size: 88px;
      color: var(--gold);
      opacity: 0.35;
      font-family: Georgia, serif;
      line-height: 0.3;
      margin-top: 8px;
    }

    .interpret-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .interp-card {
      background: var(--warm-bg);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 40px 34px;
      text-align: center;
      transition: all .35s ease;
      position: relative;
      overflow: hidden;
    }

    .interp-card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--peach));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .interp-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .interp-card:hover::after {
      transform: scaleX(1);
    }

    .interp-num {
      display: inline-block;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 3px;
      color: #fff;
      border-radius: 20px;
      padding: 4px 18px;
      margin-bottom: 22px;
    }

    .n-blue {
      background: var(--blue);
    }

    .n-green {
      background: var(--green);
    }

    .n-peach {
      background: var(--peach);
    }

    .interp-icon {
      font-size: 42px;
      margin-bottom: 14px;
    }

    .interp-name {
      font-size: 21px;
      font-weight: 800;
      color: var(--blue);
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .interp-card p {
      font-size: 14.5px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    /* ============ 最新故事（3列） ============ */
    .story-section {
      background: var(--warm-bg);
    }

    .sec-head-flex {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      gap: 18px;
      flex-wrap: wrap;
    }

    .sec-title-left {
      font-size: clamp(22px, 2.8vw, 32px);
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 2px;
    }

    .sec-sub-left {
      color: var(--text-sub);
      font-size: 14px;
      margin-top: 8px;
      letter-spacing: 1px;
    }

    .link-more {
      color: var(--gold-deep);
      font-weight: 700;
      font-size: 14.5px;
      transition: all .25s;
      white-space: nowrap;
      letter-spacing: 1px;
    }

    .link-more:hover {
      transform: translateX(5px);
      color: #8A6A35;
    }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .story-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all .35s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(236, 231, 221, 0.6);
    }

    .story-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    /* 今昔对比图 */
    .compare-img {
      position: relative;
      height: 178px;
      display: flex;
      overflow: hidden;
    }

    .compare-half {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      position: relative;
    }

    .half-past {
      background: linear-gradient(135deg, #B9C6D6 0%, #8FA6BE 100%);
      filter: saturate(0.55) sepia(0.18);
    }

    .half-now {
      background: linear-gradient(135deg, #F7D9C2 0%, #E8A87C 100%);
    }

    .compare-divider {
      z-index: 1;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 0;
      /* border-left: 2px dashed rgba(255, 255, 255, 0.9); */
    }

    .compare-divider::after {
      content: "➤";
      position: absolute;
      top: 50%;
      left: -14px;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #fff;
      color: var(--gold-deep);
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--gold);
    }

    .era-chip {
      position: absolute;
      font-size: 11px;
      letter-spacing: 1px;
      padding: 2px 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--blue);
      font-weight: 700;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
      z-index: 2;
    }

    .era-chip.past {
      top: 10px;
      left: 10px;
      color: #5B6B7D;
      background: rgba(248, 249, 251, 0.92);
    }

    .era-chip.now {
      top: 10px;
      right: 10px;
      color: #B96A35;
      background: rgba(255, 250, 245, 0.92);
    }

    .card-body {
      padding: 22px 22px 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .tag {
      display: inline-block;
      align-self: flex-start;
      padding: 3px 13px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .tag-chuangye {
      background: rgba(201, 169, 110, 0.18);
      color: #8A6A35;
    }

    .tag-jingying {
      background: rgba(26, 58, 92, 0.10);
      color: var(--blue);
    }

    .tag-jishu {
      background: rgba(45, 90, 74, 0.12);
      color: var(--green);
    }

    .tag-yingxiao {
      background: rgba(232, 168, 124, 0.18);
      color: #C0713E;
    }

    .card-title {
      font-size: 16.5px;
      font-weight: 800;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-author {
      font-size: 12.5px;
      color: var(--text-sub);
      margin-bottom: 12px;
    }

    .card-author::before {
      content: "✒ ";
      opacity: 0.6;
    }

    .card-desc {
      font-size: 13.5px;
      color: #98A19E;
      line-height: 1.75;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-link {
      color: var(--gold-deep);
      font-size: 13.5px;
      font-weight: 700;
      margin-top: auto;
      transition: all .25s;
    }

    .card-link:hover {
      letter-spacing: 1px;
      color: #8A6A35;
    }

    /* ============ 图文故事 · 访谈回忆 ============ */
    .iv-band {
      margin-top: 62px;
    }

    .iv-band-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin: 8px 0 22px;
    }

    .iv-band-title {
      font-size: 18.5px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .iv-band-title .v-line {
      width: 4px;
      height: 20px;
      border-radius: 2px;
      background: linear-gradient(180deg, var(--green), var(--gold));
    }

    .iv-band-tip {
      font-size: 12.5px;
      color: var(--text-sub);
    }

    .iv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .iv-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all .35s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(236, 231, 221, 0.6);
    }

    .iv-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .iv-photo {
      position: relative;
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, #CDBBA0 0%, #9A8C76 55%, #7E715C 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .iv-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
      background-size: 13px 13px;
    }

    .iv-emoji {
      font-size: 46px;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
      position: relative;
      z-index: 1;
    }

    .iv-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      background: rgba(26, 58, 92, 0.85);
      color: #E6CDA0;
      font-size: 11.5px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 2px;
    }

    .iv-year {
      position: absolute;
      bottom: 12px;
      left: 12px;
      z-index: 2;
      background: rgba(255, 255, 255, 0.92);
      color: var(--blue);
      font-size: 11.5px;
      font-weight: 700;
      padding: 3px 11px;
      border-radius: 12px;
      letter-spacing: 1px;
    }

    .iv-body {
      padding: 22px 22px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .iv-quote {
      position: relative;
      font-size: 14.5px;
      line-height: 1.8;
      color: var(--text);
      padding: 16px 0 0 18px;
      margin-bottom: 16px;
      border-left: 3px solid var(--gold);
    }

    .iv-quote::before {
      content: "\201C";
      position: absolute;
      left: 6px;
      top: -2px;
      font-size: 36px;
      line-height: 1;
      color: var(--gold);
      font-family: Georgia, serif;
      opacity: 0.55;
    }

    .iv-who {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 15px;
    }

    .iv-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), var(--green));
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .iv-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
    }

    .iv-role {
      font-size: 11.5px;
      color: var(--text-sub);
      line-height: 1.4;
    }

    /* ============ 视频故事（最新故事区·iQiyi式弹层播放） ============ */
    .video-band {
      margin-bottom: 46px;
    }

    .video-band-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .video-band-title {
      font-size: 18.5px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .video-band-title .v-line {
      width: 4px;
      height: 20px;
      border-radius: 2px;
      background: linear-gradient(180deg, var(--gold), var(--peach));
    }

    .video-band-tip {
      font-size: 12.5px;
      color: var(--text-sub);
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .video-card {
      cursor: pointer;
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(236, 231, 221, 0.6);
      transition: all .35s ease;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .vt-1 {
      background: linear-gradient(135deg, #14304E 0%, var(--blue) 60%, #2B4A6E 100%);
    }

    .vt-2 {
      background: linear-gradient(135deg, #1D4436 0%, var(--green) 60%, #3E735F 100%);
    }

    .vt-3 {
      background: linear-gradient(135deg, #3A3145 0%, #5B4A78 60%, #83699F 100%);
    }

    .video-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.35;
      background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 44px 44px;
    }

    .vt-emoji {
      font-size: 52px;
      opacity: 0.35;
      filter: grayscale(0.15);
      transform: rotate(-6deg);
    }

    .video-thumb .frame-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      font-size: 11px;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--blue);
      border-radius: 12px;
      padding: 2px 11px;
      font-weight: 700;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    }

    .video-thumb .dur-badge {
      position: absolute;
      right: 8px;
      bottom: 8px;
      z-index: 2;
      font-size: 12px;
      color: #fff;
      background: rgba(0, 0, 0, 0.55);
      padding: 1px 8px;
      border-radius: 6px;
      letter-spacing: 0.5px;
      font-variant-numeric: tabular-nums;
    }

    .video-thumb .quality-badge {
      position: absolute;
      right: 8px;
      top: 8px;
      z-index: 2;
      font-size: 10.5px;
      color: #fff;
      background: rgba(201, 169, 110, 0.85);
      padding: 1px 8px;
      border-radius: 4px;
      letter-spacing: 1px;
      font-weight: 700;
    }

    .play-badge {
      position: relative;
      z-index: 2;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
      transition: all .3s ease;
      flex-shrink: 0;
    }

    .play-badge::after {
      content: "";
      width: 0;
      height: 0;
      margin-left: 4px;
      border-left: 16px solid var(--blue);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
    }

    .video-card:hover .play-badge {
      transform: scale(1.12);
      background: var(--gold);
    }

    .video-card:hover .play-badge::after {
      border-left-color: #fff;
    }

    .video-meta {
      padding: 14px 16px 16px;
    }

    .video-title {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 7px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .video-sub {
      font-size: 12px;
      color: var(--text-sub);
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .video-sub .tag {
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .video-sub .vs-text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .video-stats {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 12px;
      color: #A4ADB8;
    }

    .video-stats i {
      font-style: normal;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* —— 弹层播放器（借鉴爱奇艺打开方式） —— */
    .player-overlay {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(5, 10, 18, 0.86);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 26px 18px;
    }

    .player-overlay.open {
      display: flex;
    }

    .player-shell {
      width: min(1060px, 100%);
      max-height: 94vh;
      display: flex;
      flex-direction: column;
      background: #0D1826;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
      animation: playerIn .38s cubic-bezier(.2, .9, .3, 1.15);
    }

    @keyframes playerIn {
      from {
        transform: translateY(46px) scale(.94);
        opacity: 0;
      }

      to {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    .player-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 11px 20px;
      background: #0F1C2C;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .player-top .p-title {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .player-top .p-tag {
      flex-shrink: 0;
      font-size: 11px;
      color: var(--gold);
      background: rgba(201, 169, 110, 0.16);
      border: 1px solid rgba(201, 169, 110, 0.5);
      padding: 1px 10px;
      border-radius: 12px;
      letter-spacing: 1px;
    }

    .p-close {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      line-height: 1;
      transition: all .25s;
    }

    .p-close:hover {
      background: rgba(245, 166, 35, 0.9);
      color: #fff;
      transform: rotate(90deg);
    }

    .player-main {
      display: grid;
      grid-template-columns: 1fr 318px;
      min-height: 0;
    }

    .player-stage {
      position: relative;
      background: #000;
      aspect-ratio: 16/9;
    }

    .player-stage video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      background: #000;
    }

    .player-loading {
      position: absolute;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 13px;
      letter-spacing: 1px;
      background: #000;
      z-index: 2;
    }

    .player-loading.show {
      display: flex;
    }

    .spinner {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 3px solid rgba(201, 169, 110, 0.25);
      border-top-color: var(--gold);
      animation: spin .8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .player-err {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.8);
      background: #0A1220;
      text-align: center;
      padding: 20px;
      font-size: 13.5px;
      line-height: 1.8;
    }

    .player-err.show {
      display: flex;
    }

    .player-err .err-icon {
      font-size: 38px;
    }

    .player-err .err-tip {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px;
    }

    .player-rail {
      background: #0D1A28;
      padding: 16px 14px;
      overflow-y: auto;
      min-height: 0;
      max-height: calc(94vh - 58px);
      border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .rail-title {
      font-size: 12px;
      letter-spacing: 2px;
      color: rgba(201, 169, 110, 0.9);
      margin: 2px 4px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .rail-title span {
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0;
    }

    .p-item {
      display: flex;
      gap: 12px;
      padding: 9px;
      border-radius: 10px;
      cursor: pointer;
      transition: all .25s;
      border: 1px solid transparent;
    }

    .p-item+.p-item {
      margin-top: 6px;
    }

    .p-item:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .p-item.active {
      background: rgba(201, 169, 110, 0.14);
      border-color: rgba(201, 169, 110, 0.4);
    }

    .pi-thumb {
      position: relative;
      width: 132px;
      aspect-ratio: 16/9;
      border-radius: 8px;
      flex-shrink: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pi-thumb .mini-play {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .pi-thumb .mini-play::after {
      content: "";
      margin-left: 2px;
      border-left: 8px solid #fff;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }

    .p-item.active .pi-thumb .mini-play {
      background: var(--gold);
    }

    .pi-thumb .pi-dur {
      position: absolute;
      right: 4px;
      bottom: 4px;
      font-size: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.55);
      padding: 0 5px;
      border-radius: 4px;
      z-index: 1;
    }

    .p-item .pi-info {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }

    .pi-title {
      font-size: 12.5px;
      color: #fff;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .p-item.active .pi-title {
      color: var(--gold);
    }

    .pi-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
    }

    .player-demo {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.45);
      padding: 10px 20px;
      text-align: center;
      background: #0F1C2C;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      letter-spacing: 1px;
    }

    .player-demo b {
      color: rgba(232, 168, 124, 0.9);
      font-weight: 600;
    }

    /* ============ 三大话题 ============ */
    .topics-section {
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }

    .topics-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 85% 20%, rgba(201, 169, 110, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 90%, rgba(232, 168, 124, 0.08) 0%, transparent 40%);
    }

    .topics-section .sec-title {
      color: #fff;
    }

    .topics-section .sec-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    .topics-section .sec-kicker {
      background: rgba(201, 169, 110, 0.2);
      color: #E6CDA0;
    }

    .topics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      position: relative;
      z-index: 1;
    }

    .topic-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      padding: 42px 34px;
      text-align: center;
      backdrop-filter: blur(4px);
      transition: all .35s ease;
    }

    .topic-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.10);
      border-color: var(--gold);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    }

    .topic-num {
      width: 52px;
      height: 52px;
      margin: 0 auto 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      background: linear-gradient(135deg, var(--gold), var(--peach));
      color: var(--blue);
      font-weight: 900;
      box-shadow: 0 6px 18px rgba(201, 169, 110, 0.35);
    }

    .topic-name {
      font-size: 19.5px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: 1px;
    }

    .topic-card p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.95;
      text-align: left;
    }

    /* ============ 我要投稿 ============ */
    .submit-section {
      background: var(--gold-bg);
      position: relative;
    }

    .submit-box {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 54px 58px;
      position: relative;
      border: 1px solid rgba(236, 231, 221, 0.7);
    }

    .submit-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .flow-step {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--warm-bg);
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 10px 24px;
      font-size: 14px;
      color: var(--blue);
      font-weight: 700;
    }

    .flow-step i {
      font-style: normal;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

    .flow-arrow {
      color: var(--gold);
      font-size: 16px;
    }

    .submit-note {
      font-size: 15.5px;
      color: var(--text);
      text-align: center;
      line-height: 2;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }

    .submit-reqs {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .req-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text-sub);
      background: var(--warm-bg);
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 9px 22px;
    }

    .req-pill b {
      color: var(--gold-deep);
    }

    .submit-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .submit-count {
      text-align: center;
      margin-top: 36px;
      font-size: 15px;
      color: var(--text-sub);
      letter-spacing: 1px;
    }

    .submit-count b {
      font-size: 26px;
      color: var(--gold-deep);
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .submit-count b::after {
      content: " 篇";
      font-size: 16px;
      font-weight: 700;
      color: var(--gold-deep);
    }

    /* ============ 优秀作品评选 ============ */
    .awards-section {
      background: #fff;
      padding: 90px 0;
    }

    .award-wrap {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .award-row {
      display: grid;
      grid-template-columns: 1.15fr 1.6fr 0.7fr 1.45fr;
      align-items: center;
    }

    .award-data+.award-data {
      border-top: 1px solid #F2EDE2;
    }

    .award-head {
      background: linear-gradient(135deg, #14304E 0%, var(--blue) 100%);
    }

    .award-head .cell {
      color: rgba(255, 255, 255, 0.88);
      font-weight: 800;
      font-size: 13.5px;
      letter-spacing: 2px;
    }

    .cell {
      padding: 22px 26px;
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.8;
    }

    .award-data {
      transition: background .3s ease;
    }

    .award-data:hover {
      background: var(--gold-bg);
    }

    .award-data:hover .cell.c-a {
      color: var(--gold-deep);
    }

    .a-name {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      color: var(--blue);
      font-size: 16.5px;
      letter-spacing: 1px;
    }

    .a-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
    }

    .a-icon.i1 {
      background: rgba(201, 169, 110, 0.16);
    }

    .a-icon.i2 {
      background: rgba(26, 58, 92, 0.10);
    }

    .a-icon.i3 {
      background: rgba(45, 90, 74, 0.12);
    }

    .a-icon.i4 {
      background: rgba(232, 168, 124, 0.18);
    }

    .c-criteria {
      color: var(--text-sub);
    }

    .c-qty {
      display: flex;
      align-items: center;
    }

    .a-qty {
      display: inline-block;
      background: var(--gold-bg);
      border: 1px solid rgba(201, 169, 110, 0.4);
      color: #8A6A35;
      font-weight: 800;
      font-size: 14px;
      padding: 4px 16px;
      border-radius: 20px;
      letter-spacing: 1px;
    }

    .c-reward b {
      color: var(--gold-deep);
      font-weight: 800;
    }

    .award-note {
      margin-top: 26px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--gold-bg);
      border: 1.5px dashed rgba(201, 169, 110, 0.65);
      border-radius: var(--radius);
      padding: 20px 28px;
      font-size: 14.5px;
      color: #6B5B3E;
      line-height: 1.95;
      letter-spacing: 0.5px;
    }

    .award-note .note-icon {
      font-size: 20px;
      line-height: 1.4;
      flex-shrink: 0;
    }

    .award-note b {
      color: #8A6A35;
    }

    /* ============ 展会登记区 ============ */
    .expo-section {
      background: linear-gradient(135deg, #14304E 0%, var(--blue) 50%, #24465F 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .expo-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 12% 15%, rgba(201, 169, 110, 0.10) 0%, transparent 42%),
        radial-gradient(ellipse at 90% 85%, rgba(232, 168, 124, 0.08) 0%, transparent 40%);
    }

    .expo-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      max-width: 760px;
      margin: 0 auto;
      align-items: stretch;
    }

    .panel {
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius);
      padding: 46px 44px;
      backdrop-filter: blur(3px);
      transition: all .35s ease;
    }

    .panel:hover {
      border-color: rgba(201, 169, 110, 0.5);
    }

    .panel-title {
      font-size: clamp(21px, 2.2vw, 27px);
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 26px;
      line-height: 1.5;
    }

    .expo-date-tag {
      display: inline-block;
      margin-bottom: 22px;
      font-size: 13px;
      letter-spacing: 2px;
      color: #E6CDA0;
      background: rgba(201, 169, 110, 0.16);
      border: 1px solid rgba(201, 169, 110, 0.45);
      padding: 5px 18px;
      border-radius: 30px;
    }

    .expo-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 24px;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .info-item .i-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      flex-shrink: 0;
      font-size: 17px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-item .i-label {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 1px;
    }

    .info-item .i-value {
      font-size: 14.5px;
      font-weight: 600;
      line-height: 1.55;
    }

    .expo-foot {
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
    }

    .qr-wrap {
      width: 150px;
      height: 150px;
      position: relative;
      flex-shrink: 0;
      background: #fff;
      border-radius: 14px;
      padding: 5px;
    }

    .qr-wrap svg {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 8px;
    }

    .qr-label {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 8px;
      padding: 5px 9px;
      font-size: 10.5px;
      font-weight: 700;
      color: var(--blue);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .qr-tip {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.9;
    }

    .qr-tip b {
      color: var(--peach);
    }

    .btn-official {
      background: linear-gradient(135deg, #F2BC97 0%, var(--peach) 100%);
      color: #fff;
      box-shadow: 0 8px 24px rgba(232, 168, 124, 0.32);
      font-size: 15px;
    }

    .btn-official:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(232, 168, 124, 0.45);
    }

    /* ============ 底部 ============ */
    footer {
      background: #0F2438;
      color: rgba(255, 255, 255, 0.62);
      padding: 56px 0 30px;
    }

    .footer-head {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      margin-bottom: 34px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 2px;
      justify-content: right;
    }

    .footer-brand i {
      font-style: normal;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), var(--peach));
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 900;
    }

    .footer-head .sep {
      width: 1px;
      height: 26px;
      background: rgba(255, 255, 255, 0.2);
    }

    .footer-slogan {
      font-size: 13px;
      letter-spacing: 4px;
      color: rgba(201, 169, 110, 0.8);
    }

    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .footer-nav a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.62);
      transition: color .25s;
      letter-spacing: 1px;
    }

    .footer-nav a:hover {
      color: var(--gold);
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin-bottom: 26px;
    }

    .footer-copy {
      text-align: center;
      font-size: 13px;
      line-height: 2.1;
    }

    .footer-copy .data-src {
      display: block;
      color: rgba(255, 255, 255, 0.38);
      font-size: 12px;
      letter-spacing: 1px;
    }

    .footer-end {
      text-align: center;
      margin-top: 24px;
      font-size: 11.5px;
      letter-spacing: 4px;
      color: rgba(255, 255, 255, 0.25);
    }

    /* ============ 响应式 ============ */
    @media (min-width:1200px) {
      .mobile-menu {
        display: none !important;
      }
    }

    @media (max-width:1199px) {
      .nav-menu {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .story-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .iv-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .expo-inner {
        grid-template-columns: 1fr;
      }

      .award-row {
        grid-template-columns: 1.05fr 1.5fr 0.62fr 1.4fr;
      }

      .cell {
        padding: 18px 20px;
      }

      .a-name {
        font-size: 15.5px;
        gap: 10px;
      }

      .a-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }
    }

    @media (max-width:1024px) {
      .player-main {
        grid-template-columns: 1fr;
      }

      .player-rail {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        max-height: 34vh;
        overflow-y: auto;
      }

      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width:767px) {
      section {
        padding: 64px 0;
      }

      .interpret {
        background: #fff;
        padding: 64px 0;
      }

      .interpret-grid {
        grid-template-columns: 1fr;
      }

      .story-grid {
        grid-template-columns: 1fr;
      }

      .iv-grid {
        grid-template-columns: 1fr;
      }

      .topics-grid {
        grid-template-columns: 1fr;
      }

      .expo-info {
        grid-template-columns: 1fr;
      }

      .submit-box {
        padding: 36px 24px;
      }

      .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
      }

      .btn-nav {
        display: none;
      }

      .qr-wrap {
        /* width: 190px;
        height: 190px; */
        margin: 0 auto;
      }

      .expo-foot {
        justify-content: center;
        text-align: center;
      }

      .panel {
        padding: 34px 24px;
      }

      .video-grid {
        grid-template-columns: 1fr;
      }

      .video-band-tip {
        width: 100%;
      }

      .player-overlay {
        padding: 8px;
      }

      .player-shell {
        max-height: 96vh;
        border-radius: 12px;
      }

      .player-top .p-title {
        font-size: 13px;
      }

      .pi-thumb {
        width: 104px;
      }

      .player-rail {
        max-height: 30vh;
      }

      .player-demo {
        font-size: 10.5px;
        padding: 8px 12px;
      }

      .award-head {
        display: none;
      }

      .award-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 8px 0;
      }

      .cell {
        padding: 6px 22px;
      }

      .cell::before {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--gold-deep);
        margin-right: 10px;
        min-width: 52px;
      }

      .cell.c-a::before {
        content: "奖项";
      }

      .cell.c-criteria::before {
        content: "标准";
      }

      .cell.c-qty::before {
        content: "数量";
      }

      .cell.c-reward::before {
        content: "奖励";
      }

      .c-a .a-name {
        display: flex;
        align-items: center;
      }

      .c-qty {
        display: block;
      }

      .c-a::before,
      .c-qty::before {
        display: none;
      }

      .award-note {
        padding: 16px 18px;
      }
    }
