
    @font-face {
      font-family: "Alibaba PuHuiTi";
      src: url("../fonts/Alibaba-PuHuiTi-Light.ttf") format("truetype");
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    :root {
  /* ========== 配色标准 ========== */
  --bg: #ffffff;
  --text-main: #000000;
  --text-sub: #000000;
  --text-on-primary: #ffffff;

  --primary: #0066cc;       /* 科技蓝（主色） */
  --accent: #00a3ff;        /* 科技青（强调） */
  --warning: #cc0000;       /* 警示红（少用） */

  --border: #e5e5e5;
  --divider: #f0f0f0;

  /* ========== 字体标准 ========== */
  /* ========== 字号标准（LED 大屏专用） ========== */
  --text-xs: 20px;   /* 备注/小字 */
  --text-sm: 24px;   /* 正文 */
  --text-base: 28px; /* 正文强调 */
  --text-lg: 36px;   /* 小标题 */
  --text-xl: 44px;   /* 大标题 */
  --text-2xl: 56px;  /* 封面主标题 */

  /* ========== 间距标准 ========== */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;

  /* ========== 圆角标准（LED 不花哨） ========== */
  --radius: 4px; /* 统一小圆角，不要大圆角 */
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-family: 'Orbitron', "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 300;
      font-size: 115%;
      background: var(--bg);
      scrollbar-width: thin;
      scrollbar-color: var(--accent) var(--bg);
    }

    body {
      height: 100%;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow: hidden;
    }

    .hud-corner { display: none; }

    .deck-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: var(--bg);
    }

    .deck-bg__grid {
      position: absolute;
      inset: -50% -50%;
      width: 200%;
      height: 200%;
      opacity: 0.15;
      background-image: 
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
      background-size: 60px 60px;
      transform: perspective(500px) rotateX(60deg);
      animation: grid-move 20s linear infinite;
    }

    .deck-bg__glow {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(188, 111, 241, 0.05) 0%, transparent 40%);
      
    }

    .deck-bg__particles {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, var(--accent) 1px, transparent 0);
      background-size: 100px 100px;
      opacity: 0.2;
      animation: particles-drift 40s linear infinite;
    }

    @keyframes grid-move {
      from { transform: perspective(500px) rotateX(60deg) translateY(0); }
      to { transform: perspective(500px) rotateX(60deg) translateY(60px); }
    }

    @keyframes particles-drift {
      from { background-position: 0 0; }
      to { background-position: 500px 1000px; }
    }

    .main-swiper {
      position: relative;
      z-index: 1;
      height: 100vh;
      width: 100vw;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: clamp(1rem, 3vw, 2rem); /* 减小 padding 以免挤压内容 */
      position: relative;
      overflow: hidden;
      background: transparent !important;
      
      width: 100%;
      height: 100vh; /* 确保每个 slide 都是视口高度 */
      box-sizing: border-box;
    }

    .slide-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 0; /* 防止内容溢出 */
    }

    h1 {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--primary);
      margin-bottom: var(--space-md);
      text-align: center;
      width: 100%;
    }

    h2 {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    h2::before {
      content: "";
      width: 4px;
      height: 1em;
      background: var(--primary);
      
    }

    .tech-illus {
      border: 1px solid var(--border);
      background: rgba(0, 242, 255, 0.03);
      
      position: relative;
      padding: 2px;
    }

    .tech-illus::before {
      content: "";
      position: absolute;
      top: -1px; left: -1px; right: -1px; bottom: -1px;
      background: var(--bg);
      z-index: -1;
      opacity: 0.3;
    }

    .hub-btn {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(0, 242, 255, 0.1);
      
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    }

    .hub-btn::after {
      content: "";
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--bg);
      transition: 0.5s;
    }

    .hub-btn:hover::after {
      left: 100%;
    }

    .hub-btn:hover {
      background: rgba(0, 242, 255, 0.05);
      border-color: var(--accent);
      
    }

    .feature-list li::before {
      background: var(--accent);
      
      border-radius: 0;
      width: 8px;
      height: 2px;
      top: 0.8em;
    }

    /* Glitch Animation for important titles */
    .glitch {
      position: relative;
    }
    .glitch:hover::after {
      content: attr(data-text);
      position: absolute;
      left: 2px;
      
      top: 0;
      color: white;
      background: var(--bg);
      overflow: hidden;
      clip: rect(0, 900px, 0, 0);
      animation: noise-anim 2s infinite linear alternate-reverse;
    }

    @keyframes noise-anim {
      0% { clip: rect(51px, 9999px, 28px, 0); }
      5% { clip: rect(70px, 9999px, 19px, 0); }
      /* ... add more steps if needed ... */
      100% { clip: rect(67px, 9999px, 43px, 0); }
    }

    .subtitle {
      margin-top: var(--space-md);
      font-size: var(--text-lg);
      color: var(--text-sub);
      font-weight: 700;
      text-align: center;
    }

    .meta {
      margin-top: var(--space-lg);
      font-size: var(--text-sm);
      color: var(--text-sub);
      font-weight: 700;
      text-align: center;
      line-height: 1.5;
    }

    .toc-list {
      list-style: none;
      counter-reset: toc;
    }

    .toc-list li {
      counter-increment: toc;
      padding: var(--space-xs) 0;
      border: none;
      font-size: var(--text-base);
      color: var(--text-main);
      display: flex;
      align-items: baseline;
      gap: var(--space-sm);
    }

    .toc-list li+li {
      margin-top: var(--space-xs);
    }

    .toc-list li::before {
      content: counter(toc);
      font-size: var(--text-sm);
      color: var(--primary);
      font-weight: 700;
      min-width: 1.5rem;
    }

    .lead {
      font-size: var(--text-lg);
      line-height: 1.5;
      color: var(--text-sub);
      font-weight: 700;
    }

    .img-placeholder {
      margin-top: 1.5rem;
      border: none;
      border-radius: var(--radius);
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 0.9rem;
      background: var(--bg-card);
      
    }

    .tech-illus {
      margin: 0;
      border-radius: var(--radius);
      border: var(--card-border);
      background: var(--bg-card);
      
      overflow: hidden;
      display: grid;
      grid-template-rows: minmax(0, 1fr) auto;
      min-height: 0;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .tech-illus:not(.tech-illus--photo) {
      aspect-ratio: 4 / 3;
      max-height: min(380px, 42vh);
    }

    .tech-illus--hero:not(.tech-illus--photo) {
      aspect-ratio: 16 / 10;
      max-height: min(440px, 46vh);
    }

    .tech-illus--compact:not(.tech-illus--photo) {
      aspect-ratio: 4 / 3;
      max-height: min(220px, 30vh);
    }

    .tech-illus--tall:not(.tech-illus--photo) {
      aspect-ratio: 3 / 4;
      max-height: min(460px, 50vh);
    }

    .tech-illus__img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: contain;
      object-position: center;
      padding: clamp(0.65rem, 1.8vw, 1.15rem);
    }

    .tech-illus__cap {
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--muted);
      text-align: center;
      padding: 0.65rem 0.75rem 0.9rem;
      border-top: 1px solid var(--border);
      background: rgba(81, 132, 129, 0.2);
    }

    .cover-split {
      display: grid;
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: center;
      width: 100%;
    }

    .cover-main {
      text-align: center;
    }

    @media (max-width: 900px) {
      .cover-split {
        grid-template-columns: 1fr;
      }
    }

    .cover-illus {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      border: var(--card-border);
      background: var(--bg-card);
      
      aspect-ratio: 1 / 1;
      max-width: min(440px, 88vw);
      max-height: min(52vh, 440px);
      margin: 0 auto;
      padding: clamp(1rem, 3vw, 2rem);
    }

    .cover-illus img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .slide-inner--split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.25rem, 3vw, 2.5rem);
      align-items: center;
      max-width: 1140px;
    }

    @media (max-width: 900px) {
      .slide-inner--split {
        grid-template-columns: 1fr;
      }
    }

    .hub-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
      gap: 1.5rem;
      align-items: center;
      margin-bottom: 1.25rem;
    }

    @media (max-width: 900px) {
      .hub-hero {
        grid-template-columns: 1fr;
      }
    }

    .hub-hero h2 {
      
    }

    .module-overview {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
      justify-content: center;
    }

    .module-overview__card {
      border: var(--card-border);
      border-radius: var(--radius);
      background: rgba(18, 32, 52, 0.72);
      padding: 0.9rem 1rem 0.85rem;
      
    }

    .module-overview__card--full {
      grid-column: 1 / -1;
    }

    .module-overview__title {
      font-size: 1.06rem;
      color: #8ec5ff;
      margin-bottom: 0.45rem;
      font-weight: 600;
    }

    .module-overview__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .module-overview__list li {
      font-size: var(--text-base);
      color: var(--text-sub);
      font-weight: 700;
      line-height: 1.62;
      margin-bottom: 0.25rem;
    }

    .module-overview__grid {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem 0.85rem;
    }

    .module-overview__grid p {
      margin: 0;
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.55;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg-card);
      padding: 0.6rem 0.7rem;
    }

    .module-overview__grid strong {
      color: var(--primary);
    }

    @media (max-width: 900px) {
      .module-overview {
        grid-template-columns: 1fr;
      }

      .module-overview__grid {
        grid-template-columns: 1fr;
      }
    }

    .gov-data-illus {
      margin-top: 1rem;
      max-width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      border: none;
      background: var(--bg-subtle);
      
      aspect-ratio: 21 / 9;
      max-height: min(140px, 18vh);
    }

    .gov-data-illus img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      opacity: 0.95;
    }

    .feedback-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.25rem, 3vw, 2rem);
      align-items: stretch;
      margin-top: 1rem;
    }

    @media (max-width: 900px) {
      .feedback-layout {
        grid-template-columns: 1fr;
      }
    }

    .feedback-text-panel {
      border-radius: calc(var(--radius) + 2px);
      border: var(--card-border);
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 12px 30px rgba(2, 132, 199, 0.08);
      color: var(--text-main);
      padding: 1.25rem 1.35rem;
      line-height: 1.95;
      min-height: 180px;
      font-size: 1.25rem;
      font-weight: 500;
    }

    .hub-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.1rem;
      margin-top: 1.5rem;
      justify-content: center;
    }

    .hub-btn {
      display: flex;
      flex-direction: column; /* Change to column */
      align-items: flex-start; /* Align items to start */
      gap: var(--space-xs); /* Adjust gap */
      padding: var(--space-md);
      background: var(--bg-card);
      border: var(--card-border);
      border-radius: var(--radius);
      color: var(--text-main);
      text-decoration: none;
      text-align: left;
      cursor: pointer;
      transition: background 0.25s, box-shadow 0.25s, transform 0.2s, border-color 0.25s;
      font-family: inherit;
      
      min-height: 9rem; /* Adjust height for description */
    }

    .hub-btn__icon {
      font-size: 2.5rem; /* Icon size */
      color: var(--primary);
      margin-bottom: var(--space-xs); /* Space below icon */
    }

    .hub-btn__main {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.2rem;
      min-width: 0;
    }

    .hub-btn__desc {
      font-size: var(--text-base); /* smaller font */
      color: var(--text-sub);
      line-height: 1.5;
      margin-top: 0.35rem;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* Limit to 2 lines */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 700;
    }

    .hub-btn__title {
      font-size: var(--text-lg);
      font-weight: 700;
      line-height: 1.25;
      color: var(--primary);
    }

    .hub-btn__staff {
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--accent);
    }

    .hub-btn.highlight .hub-btn__title {
      color: var(--accent);
    }

    .hub-btn:hover {
      background: rgba(22, 41, 66, 0.92);
      border-color: rgba(64, 158, 255, 0.45);
      
      transform: translateY(-1px);
    }

    .hub-btn.highlight {
      background: var(--accent-soft);
      
    }

    .slide-head {
      margin-bottom: 1.35rem;
    }

    .slide-head h2 {
      margin-bottom: 0.65rem;
      font-size: var(--text-xl);
    }

    .slide-staff {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.35rem;
    }

    .slide-staff__avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      flex-shrink: 0;
      
      background: var(--bg-subtle);
    }

    .slide-staff__text {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      min-width: 0;
    }

    .slide-staff__name {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.02em;
    }

    .slide-staff__label {
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text-sub);
    }

    .demo-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      align-items: start;
    }

    .demo-layout>* {
      min-width: 0;
    }

    @media (max-width: 900px) {
      .demo-layout {
        grid-template-columns: 1fr;
      }
    }

    .slide-inner--cover {
      max-width: 1200px;
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .feature-list li {
      position: relative;
      padding-left: var(--space-md);
      font-size: var(--text-base);
      line-height: 1.5;
      color: var(--text-main);
      font-weight: 700;
    }

    .feature-list li strong {
      color: var(--primary);
      font-weight: 700;
      font-size: var(--text-base);
    }

    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--primary);
    }

    .dock {
      margin-top: 1.35rem;
      font-size: 1.16rem;
      font-weight: 600;
      color: var(--accent);
    }

    .back-home {
      position: absolute;
      top: clamp(1rem, 3vw, 1.75rem);
      right: clamp(1rem, 3vw, 1.75rem);
      z-index: 10;
      padding: 0.55rem 1.1rem;
      font-size: 0.95rem;
      font-weight: 600;
      background: rgba(15, 30, 50, 0.86);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--accent-bright);
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
      
      
    }

    .back-home:hover {
      color: var(--accent-bright);
      background: rgba(24, 45, 72, 0.95);
      border-color: rgba(64, 158, 255, 0.45);
      
    }

    .ai-demo-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin: 1.75rem auto 0;
      padding: 0.9rem 1.85rem;
      font-size: 1.2rem;
      font-weight: 600;
      color: #fff;
      background: var(--accent);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      text-decoration: none;
      font-family: inherit;
      
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .ai-demo-btn:hover {
      background: var(--accent-bright);
      
      transform: translateY(-1px);
    }

    .quote-box {
      font-size: clamp(1.26rem, 2.3vw, 1.58rem);
      line-height: 1.9;
      color: var(--muted);
      padding: 1.25rem 0;
      font-weight: bold;
    }

    .closing {
      text-align: center;
    }

    .closing h1 {
      font-size: clamp(2.15rem, 4.6vw, 3.2rem);
      margin-bottom: 2rem;
    }

    .swiper-pagination {
      bottom: clamp(0.65rem, 2vh, 1.05rem) !important;
      display: flex !important;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      left: 0;
      padding: 0 0.75rem;
      gap: 0.25rem 0.3rem;
      white-space: normal;
    }

    .swiper-pagination-bullet {
      background: rgba(64, 158, 255, 0.28);
      opacity: 1;
      width: auto;
      min-width: 18px;
      height: 18px;
      padding: 0 6px;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      color: #c7daf0;
      line-height: 1;
      transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
      
    }

    .swiper-pagination-bullet-active {
      background: var(--accent);
      color: #fff;
      transform: scale(1.08);
      
    }

    .slide-tag {
      display: inline-block;
      font-size: 1rem;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin-bottom: 0.75rem;
      text-transform: none;
      font-weight: 600;
    }

    .hint {
      margin-top: 1rem;
      font-size: 1.05rem;
      color: var(--muted);
      opacity: 0.9;
    }

    /* —— 政务案例 · 大屏画廊（第3页）—— */
    .swiper-slide--gov {
      justify-content: center; /* 统一居中对齐 */
      padding-top: clamp(1.25rem, 3.5vh, 2.5rem);
      padding-bottom: clamp(1.25rem, 3.5vh, 2.5rem);
    }

    .slide-inner--wide {
      max-width: 1240px;
    }

    .swiper-slide--iframe {
      padding: 0 !important; /* iframe 页面必须无边距 */
      justify-content: stretch;
      align-items: stretch;
    }

    .iframe-stage {
      width: 100%;
      height: 100%;
    }

    .iframe-stage iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* 迎新核销等：单页内左中右三端（component/yxVerificationTriple.html） */
    .iframe-triple {
      display: flex;
      flex: 1;
      gap: 0.35rem;
      width: 100%;
      height: 100%;
      min-height: 0;
      padding: 0.35rem;
      box-sizing: border-box;
    }

    .iframe-triple__col {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      min-height: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--divider);
    }

    .iframe-triple__label {
      flex-shrink: 0;
      padding: 0.25rem 0.4rem;
      font-size: var(--text-xs);
      font-weight: 1000 !important;
      color: var(--text-sub);
      border-bottom: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.85);
    }

    .iframe-triple__frame {
      flex: 1;
      min-height: 0;
    }

    .iframe-triple__frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .swiper-slide--left {
      align-items: flex-start !important;
      padding-left: clamp(3rem, 10vw, 8rem) !important;
    }

    .swiper-slide--left .slide-inner {
      margin-left: 0 !important;
      align-items: flex-start !important;
    }

    .swiper-slide--left h1, 
    .swiper-slide--left h2 {
      text-align: left !important;
      width: auto !important;
    }

    .image-wall {
      margin-top: 0.8rem;
      display: flex;
      flex-wrap: nowrap;
      gap: 0.85rem;
    }

    .image-wall__item {
      flex: 1 1 0;
      min-width: 0;
      border-radius: var(--radius);
      border: var(--card-border);
      background: rgba(20, 30, 48, 0.45);
      min-height: min(30vh, 280px);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.35rem;
      
    }

    .image-wall__item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .image-wall__item--wide {
      grid-column: span 1;
    }

    .image-wall--centered {
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .image-wall--oa .image-wall__item {
      flex: 0 0 calc((100% - 2.55rem) / 4);
    }

    .image-wall__item--titled {
      display: grid;
      grid-template-rows: minmax(0, 1fr) auto;
      align-items: stretch;
      padding: 0.45rem 0.45rem 0.2rem;
    }

    .image-wall__item--titled figcaption {
      font-size: 1.5rem;
      color: #fff;
      text-align: center;
    }

    @media (max-width: 900px) {
      .image-wall {
        flex-wrap: nowrap;
      }
    }

    .gov-hero-head {
      margin-top: 4rem;
      margin-bottom: 1rem;
    }

    .gov-hero-head h2 {
      border-left: none;
      padding-left: 0;
      margin-bottom: 0.65rem;
      font-size: clamp(1.55rem, 3vw, 2.15rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      
    }

    .gov-gold-rule {
      height: 2px;
      width: min(420px, 55vw);
      border-radius: var(--radius);
      background: var(--gold-line);
      margin-bottom: 1rem;
      border: none;
    }

    .gov-kicker {
      font-size: 1.05rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 0.35rem;
      font-weight: 600;
    }

    .gov-lead {
      font-size: var(--text-base);
      line-height: 1.82;
      color: var(--text-sub);
      max-width: 920px;
      font-weight: 700;
    }

    .gov-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.75rem;
      margin: 1rem 0 1.15rem;
    }

    .gov-pill {
      font-size: var(--text-sm);
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 0.45rem 0.95rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      color: var(--primary);
      background: var(--bg-card);
    }

    .gov-gallery-shell {
      position: relative;
      border-radius: var(--radius);
      padding: 0;
      background: transparent;
      border: var(--card-border);
      
    }

    .gov-gallery-shell::after {
      display: none;
    }

    .gov-gallery {
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      background: #1d1d1f;
      aspect-ratio: 21 / 9;
      max-height: min(52vh, 520px);
    }

    @media (max-width: 900px) {
      .gov-gallery {
        aspect-ratio: 16 / 10;
        max-height: none;
      }
    }

    /* 内嵌 Swiper：勿继承全局 .swiper-slide { height: 100vh }，否则 slide 超高被裁切，只见局部 */
    .gov-gallery .swiper-wrapper {
      height: 100%;
    }

    .gov-gallery .swiper-slide {
      background: #1d1d1f;
      padding: 0;
      justify-content: center;
      height: 100%;
      box-sizing: border-box;
    }

    .gov-gallery .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .gov-gallery-pagination.swiper-pagination-bullets {
      bottom: 14px !important;
    }

    .gov-gallery-pagination .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.35);
      opacity: 1;
      width: 6px;
      height: 6px;
    }

    .gov-gallery-pagination .swiper-pagination-bullet-active {
      background: #fff;
      width: 20px;
      border-radius: var(--radius);
    }

    .gov-caption-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 1rem;
      padding: 0.75rem 0 0;
      border: none;
    }

    .gov-caption-text {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .gov-caption-sub {
      font-size: 0.95rem;
      font-weight: bold;
      color: var(--muted);
    }

    .gov-thumb-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.85rem;
      justify-content: center;
    }

    .gov-thumb {
      width: 56px;
      height: 40px;
      padding: 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: none;
      cursor: pointer;
      background: var(--bg-subtle);
      opacity: 0.55;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      
    }

    .gov-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gov-thumb:hover,
    .gov-thumb.is-active {
      opacity: 1;
      transform: scale(1.04);
      
    }

    /* —— 公司 Logo：角标用 logo_mini.png（方形），封面/封底主标用 logo.png（横版）—— */
    .deck-brand-logo {
      position: fixed;
      top: clamp(0.75rem, 2vw, 1.25rem);
      left: clamp(0.75rem, 2vw, 1.25rem);
      z-index: 100;
      width: clamp(48px, 6.5vw, 56px);
      height: clamp(48px, 6.5vw, 56px);
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.85);
      border: none;
      
      
    }

    .deck-brand-logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    body[data-slide="0"] .deck-brand-logo {
      opacity: 0;
      visibility: hidden;
    }

    .cover-logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: clamp(1.25rem, 3vw, 2rem);
    }

    .cover-logo {
      display: block;
      height: clamp(80px, 13.75vw, 120px);
      width: auto;
      max-width: min(500px, 46vw);
      object-fit: contain;
    }

    .gov-caption-logo-wrap {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      padding: 6px;
      border-radius: var(--radius);
      background: var(--bg-card);
      border: none;
      
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gov-caption-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0.96;
    }

    .closing-brand-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .closing-logo {
      height: clamp(72px, 11vw, 104px);
      width: auto;
      max-width: min(450px, 46vw);
      object-fit: contain;
    }

    .closing-photo {
      margin: 1.75rem auto 0;
      max-width: min(920px, 94vw);
      width: 100%;
    }

    .closing-photo__frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: none;
      
      aspect-ratio: 16 / 9;
      background: var(--bg-subtle);
    }

    .closing-photo__img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .closing-photo__cap {
      margin-top: 0.85rem;
      font-size: clamp(1rem, 1.35vw, 1.2rem);
      letter-spacing: 0.02em;
      color: var(--muted);
      text-align: center;
    }
    /* 教学管理对比样式（紧凑宽屏版） */
    .unified-compare {
      width: 100%;
      max-width: 1380px;
      margin: 0 auto;
      background: transparent;
      border: 1.5px solid rgba(64, 158, 255, 0.5);
      box-shadow: 0 0 15px rgba(64, 158, 255, 0.1);
      border-radius: var(--radius);
      padding: 1.5rem 2.5rem;
      
      display: flex;
      flex-direction: column;
    }

    .uc-title {
      font-size: 1.25rem;
      font-weight: 500;
    }

    .uc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .uc-section {
      display: flex;
      flex-direction: column;
    }

    .uc-section:first-child {
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      padding-right: 3rem;
    }

    .uc-section:last-child {
      padding-left: 3rem;
    }

    .uc-section-title {
      text-align: center;
      font-size: 1.1rem;
      color: var(--accent-bright);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 242, 255, 0.3);
      margin-bottom: 1rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }

    .uc-section-title svg {
      width: 24px !important;
      height: 24px !important;
    }

    .uc-section-subheader {
      display: grid;
      grid-template-columns: 1fr 110px 1fr;
      align-items: center;
      gap: 0.8rem;
      padding: 0.5rem 0;
      margin-bottom: 0.4rem;
      font-size: 0.82rem;
      font-weight: 700;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .uc-section-subheader__old {
      text-align: right;
      color: var(--warning);
      padding-right: 0.8rem;
    }

    .uc-section-subheader__mid {
      text-align: center;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .uc-section-subheader__new {
      text-align: left;
      color: var(--primary);
      padding-left: 0.8rem;
    }

    .uc-row, .uc-sub-row {
      display: grid;
      grid-template-columns: 1fr 110px 1fr;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
      gap: 0.8rem;
    }

    .uc-feat-row {
      display: grid;
      grid-template-columns: 110px 1fr;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
      gap: 0.8rem;
    }

    .uc-feat-group {
      display: flex;
      align-items: stretch;
      gap: 0;
    }

    .uc-feat-list {
      flex: 1;
      min-width: 0;
    }

    .uc-sync-bracket {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.4rem;
      padding-right: 0.6rem;
      flex-shrink: 0;
    }

    .uc-sync-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }

    .uc-sync-text {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      color: var(--accent-bright);
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.25em;
      white-space: nowrap;
      text-shadow: 0 0 14px rgba(0, 242, 255, 0.55);
    }

    .uc-sync-brace {
      width: 14px;
      height: 100%;
      flex-shrink: 0;
    }

    .uc-row:last-child, .uc-sub-row:last-child {
      border-bottom: none;
    }

    .uc-val {
      font-size: 0.88rem;
      font-weight: 400;
    }

    .uc-val.old {
      text-align: right;
      color: var(--warning);
      padding-right: 0.8rem;
      font-weight: 700;
    }

    .uc-val.new {
      text-align: left;
      color: var(--primary);
      font-weight: 700;
      padding-left: 0.8rem;
    }

    .uc-label, .uc-sub-label {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
      color: var(--accent-bright);
      font-size: 0.78rem;
      font-weight: 700;
      background: rgba(0, 242, 255, 0.08);
      border: 1px solid rgba(0, 242, 255, 0.25);
      padding: 5px 8px;
      border-radius: var(--radius);
      margin: 0 auto;
      white-space: nowrap;
      width: 100%;
    }

    .uc-sub-label {
      background: rgba(0, 102, 204, 0.08);
      font-weight: 700;
      color: var(--primary);
      font-size: 0.78rem;
    }

    .uc-sub-label svg {
      width: 18px;
      height: 18px;
      color: var(--accent-bright);
    }

    .mc-calc {
      margin-top: 40px;
      margin-bottom: 2rem;
      background: transparent;
      border: 1.5px solid rgba(64, 158, 255, 0.5);
      box-shadow: 0 0 15px rgba(64, 158, 255, 0.1);
      border-radius: var(--radius);
      padding: 1.5rem 2.5rem;
      text-align: center;
      width: 100%;
      max-width: 1380px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }

    .mc-calc-title {
      display: block;
      color: var(--accent-bright);
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0;
      flex-shrink: 0;
      line-height: 1.5;
      text-align: center;
      text-shadow: 0 0 12px rgba(0, 242, 255, 0.5);
    }

    .mc-calc-num {
      color: #ff9632;
      font-size: 1.6rem;
      font-weight: 800;
      text-shadow: 0 0 14px rgba(255, 150, 50, 0.6);
    }

    .mc-calc-content {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.7;
      font-weight: 300;
      text-align: left;
    }

    .mc-calc-content strong {
      color: var(--accent-bright);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .mc-calc-content strong.mc-num--big {
      font-size: 1.1rem;
      color: #ff9632;
      text-shadow: 0 0 8px rgba(255, 150, 50, 0.4);
    }

    /* ── 教学管理页（第10页）等比放大 ── */
    .teaching-wrap {
      width: 100%;
      max-width: 85vw;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    /* 统一放大控制：修改 zoom 值即可一键调整放大比例 */
    .swiper-slide--teaching .slide-inner {
      zoom: 0.98;
    }

    /* OA 审批流第 13–14/34 页放大样式见文件末尾（与 index.html 主轮播序号一致） */

    /* ── OA 审批流页 ── */
    .oa-page {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      height: 100%;
      justify-content: center;
    }

    .oa-vs-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      border: 1px solid var(--border);
      background: transparent;
      border-radius: var(--radius);
      padding: 0.85rem 1.6rem;
    }

    .oa-vs-row__old {
      flex: 1;
      text-align: right;
      font-size: 1.1rem;
      color: var(--warning);
    }

    .oa-vs-row__arrow {
      font-size: 1.3rem;
      color: var(--text-main);
      opacity: 0.5;
      flex-shrink: 0;
    }

    .oa-vs-row__new {
      flex: 1;
      text-align: left;
      font-size: 1.1rem;
      color: var(--primary);
      font-weight: 600;
    }

    .oa-page-title {
      text-align: center;
      font-size: 1.1rem;
      color: var(--text-main);
      opacity: 0.6;
      letter-spacing: 0.08em;
      margin-bottom: 0.2rem;
    }

    .oa-banner {
      display: flex;
      align-items: center;
      gap: 0;
      background: transparent;
      border: 1px solid var(--primary);
      box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .oa-banner__left {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      padding: 1.1rem 1.6rem;
      flex: 1;
    }

    .oa-banner__tag {
      font-size: 0.85rem;
      color: var(--text-main);
      opacity: 0.6;
      letter-spacing: 0.08em;
    }

    .oa-banner__eq {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      color: var(--text-main);
    }

    .oa-banner__eq svg {
      color: var(--primary);
    }

    .oa-banner__divider {
      font-size: 1.4rem;
      color: var(--text-main);
      font-weight: bold;
      opacity: 0.2;
      padding: 0 1rem;
      align-self: stretch;
      display: flex;
      align-items: center;
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    .oa-banner__right {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 1.1rem 1.8rem;
      flex: 1.2;
      background: transparent;
      color: var(--primary);
      align-self: stretch;
      position: relative;
    }

    .oa-banner__right::before {
      content: '核心亮点';
      position: absolute;
      top: -1px;
      right: 1.2rem;
      background: var(--primary);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 0 0 6px 6px;
      letter-spacing: 0.05em;
    }

    .oa-banner__highlight {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: 0.03em;
    }

    .oa-banner__sub {
      font-size: 0.95rem;
      color: var(--text-main);
      opacity: 0.7;
      font-weight: bold;
      margin-top: 0.2rem;
    }

    .oa-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .oa-card__tag-row {
      margin-bottom: 0.6rem;
    }

    .oa-card__tag {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 3px 12px;
      border-radius: var(--radius);
    }

    .oa-card__tag--parity {
      background: transparent;
      color: var(--text-main);
      opacity: 0.7;
      font-weight: bold;
      border: 1px solid var(--border);
    }

    .oa-card__tag--unique {
      background: transparent;
      color: var(--primary);
      border: 1px solid rgba(0, 102, 204, 0.3);
    }

    .oa-card__two-col {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0.8rem;
      align-items: start;
    }

    .oa-card__col-divider {
      width: 1px;
      align-self: stretch;
      background: var(--border);
      margin: 0.3rem 0;
    }

    .oa-card--parity {
      border-color: var(--border);
      background: transparent;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .oa-card {
      background: transparent;
      border: 1px solid rgba(0, 102, 204, 0.2);
      border-radius: var(--radius);
      padding: 1.5rem 1.7rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      box-shadow: 0 4px 12px rgba(0, 102, 204, 0.06);
    }

    .oa-card--highlight {
      border-color: var(--primary);
      background: transparent;
      position: relative;
    }

    .oa-core-badge {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 2px 8px;
      border-radius: var(--radius);
      background: var(--primary);
      color: #fff;
      vertical-align: middle;
      margin-left: 0.5rem;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .oa-card__head {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--primary);
      font-size: 1.15rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .oa-card__head svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .oa-card__body {
      font-size: 0.85rem;
      color: var(--text-main);
      line-height: 1.7;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      font-weight: 500;
    }

    .oa-card__body span {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      white-space: nowrap;
    }

    .oa-card__body span::before {
      content: '·';
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 0.05em;
      font-weight: bold;
    }

    .oa-card__vs {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      margin-top: 0.3rem;
      padding-top: 0.6rem;
      border-top: 1px dashed var(--border);
    }

    .oa-card__vs-old {
      color: var(--warning);
      flex: 1;
      font-weight: 700;
    }

    .oa-card__vs-arrow {
      color: var(--text-sub);
      opacity: 0.5;
    }

    .oa-card__vs-new {
      color: var(--primary);
      flex: 1;
      font-weight: 700;
    }

    /* 设备维修流程 */
    .oa-flow {
      background: transparent;
      border: 1px solid rgba(0, 102, 204, 0.45);
      border-radius: var(--radius);
      padding: 1.1rem 1.6rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      box-shadow: 0 4px 12px rgba(0, 102, 204, 0.05);
    }

    .oa-flow__title {
      font-size: 1.05rem;
      color: var(--text-main);
      opacity: 0.8;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .oa-flow__title svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .oa-flow__title strong {
      color: var(--text-main);
      opacity: 1;
    }

    .oa-flow__steps {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .oa-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      flex: 1;
    }

    .oa-step__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(0, 102, 204, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--primary);
    }

    .oa-step__icon svg {
      width: 18px;
      height: 18px;
    }

    .oa-step__icon--result {
      border-color: #52c41a;
      background: transparent;
      color: #52c41a;
    }

    .oa-step__label {
      font-size: 0.82rem;
      color: var(--text-main);
      text-align: center;
      line-height: 1.4;
      font-weight: 700;
    }

    .oa-step__sub {
      font-size: 0.7rem;
      color: var(--text-sub);
      text-align: center;
      font-weight: 500;
    }

    .oa-flow__arrow {
      color: var(--text-main);
      opacity: 0.3;
      font-size: 1.2rem;
      padding: 0 0.3rem;
      margin-bottom: 1.2rem;
      flex-shrink: 0;
    }

    .oa-step__icon--magic {
      border-color: var(--primary);
      background: transparent;
      color: var(--primary);
      
    }

    .oa-approver {
      display: grid;
      grid-template-columns: 1fr auto 1.3fr;
      gap: 1.2rem;
      align-items: center;
    }

    .oa-approver__form,
    .oa-approver__context {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      background: transparent;
      border: 1px solid rgba(0, 102, 204, 0.4);
      border-radius: var(--radius);
      padding: 0.9rem 1.1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .oa-approver__context {
      border-color: rgba(0, 102, 204, 0.5);
      background: transparent;
    }

    .oa-approver__form-title {
      font-size: 0.8rem;
      color: var(--text-main);
      opacity: 0.6;
      font-weight: bold;
      letter-spacing: 0.05em;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 0.2rem;
    }

    .oa-approver__field {
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
      font-size: 0.88rem;
    }

    .oa-approver__key {
      color: var(--text-main);
      opacity: 0.6;
      font-weight: bold;
      white-space: nowrap;
      min-width: 5em;
      flex-shrink: 0;
    }

    .oa-approver__val {
      color: var(--text-main);
      line-height: 1.5;
    }

    .oa-approver__divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      padding: 0 0.5rem;
    }

    /* ── 宿舍管理亮点页（独立布局） ── */
    .dorm-page {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
      height: 100%;
    }

    .dorm-title {
      text-align: center;
      margin-bottom: 0.2rem;
    }

    .dorm-title h2 {
      justify-content: center;
    }

    .dorm-title h2::before { display: none; }

    .dorm-sub {
      text-align: center;
      font-size: 1.1rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .dorm-strips {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .dorm-strip {
      display: grid;
      grid-template-columns: 1fr 140px 1fr;
      align-items: stretch;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .dorm-strip:hover {
      border-color: rgba(0, 242, 255, 0.15);
    }

    .dorm-strip--accent {
      border-color: rgba(0, 242, 255, 0.25);
      
    }

    .dorm-strip__before {
      padding: 1rem 1.5rem;
      background: rgba(224, 108, 117, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.4rem;
    }

    .dorm-strip__before p {
      color: var(--warning);
      font-size: var(--text-sm);
      line-height: 1.65;
      margin: 0;
      font-weight: 700;
    }

    .dorm-strip__mid {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.8rem 1rem;
      background: rgba(0, 242, 255, 0.04);
      border-left: 1px solid rgba(0, 242, 255, 0.12);
      border-right: 1px solid rgba(0, 242, 255, 0.12);
      position: relative;
    }

    .dorm-strip__mid svg {
      width: 22px;
      height: 22px;
      color: var(--accent-bright);
    }

    .dorm-strip__mid-label {
      font-size: 0.92rem;
      color: var(--accent-bright);
      font-weight: 600;
      white-space: nowrap;
      letter-spacing: 0.04em;
    }

    .dorm-strip__mid-arrow {
      font-size: 1.4rem;
      color: var(--accent);
      opacity: 0.5;
      line-height: 1;
    }

    .dorm-strip__after {
      padding: 1rem 1.5rem;
      background: rgba(152, 195, 121, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.4rem;
    }

    .dorm-strip__after p {
      color: rgba(152, 195, 121, 0.92);
      font-size: 1.05rem;
      line-height: 1.65;
      font-weight: 500;
      margin: 0;
    }

    .dorm-strip__tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius);
      display: inline-block;
      width: fit-content;
      letter-spacing: 0.04em;
      margin-bottom: 0.15rem;
    }

    .dorm-strip__tag--old {
      background: rgba(224, 108, 117, 0.12);
      color: rgba(224, 108, 117, 0.9);
    }

    .dorm-strip__tag--new {
      background: rgba(152, 195, 121, 0.12);
      color: rgba(152, 195, 121, 0.9);
    }

    .dorm-roles {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
    }

    .dorm-role {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius);
      border: 1px solid rgba(0, 242, 255, 0.1);
      background: rgba(0, 242, 255, 0.02);
      transition: border-color 0.3s, background 0.3s;
    }

    .dorm-role:hover {
      border-color: rgba(0, 242, 255, 0.25);
      background: rgba(0, 242, 255, 0.05);
    }

    .dorm-role__icon {
      width: 34px;
      height: 34px;
      border-radius: var(--radius);
      border: 1.5px solid rgba(0, 242, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 242, 255, 0.06);
      color: var(--accent-bright);
      flex-shrink: 0;
    }

    .dorm-role__icon svg {
      width: 16px;
      height: 16px;
    }

    .dorm-role__text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 0;
    }

    .dorm-role__name {
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 500;
    }

    .dorm-role__desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.4;
    }

    .dorm-dock {
      text-align: center;
      font-size: 1rem;
      font-weight: 600;
      color: var(--accent);
      margin-top: 0.2rem;
    }

    /* ── 学籍管理亮点页（三柱卡片 + 角色标签；配色与 :root 青色系、宿舍亮点条一致） ── */
    .slide-inner--enroll-highlight {
      width: 100%;
      max-width: 1180px;
    }

    .enroll-highlight {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      width: 100%;
      margin: 0 auto;
      justify-content: center;
      min-height: 0;
    }

    .enroll-highlight__hero {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      padding-bottom: 0.15rem;
      border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    }

    .enroll-highlight__title {
      margin: 0;
      font-size: clamp(1.45rem, 2.8vw, 2.05rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text);
      text-transform: none;
      padding-left: 0.85rem;
      border-left: 4px solid var(--accent);
      
      line-height: 1.25;
    }

    .enroll-highlight__title::before {
      display: none !important;
    }

    .enroll-highlight__lead {
      margin: 0;
      padding-left: calc(0.85rem + 4px);
      font-size: var(--text-base);
      line-height: 1.55;
      color: var(--text-sub);
      font-weight: 700;
    }

    .enroll-highlight__pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.85rem;
      align-items: stretch;
    }

    @media (max-width: 960px) {
      .enroll-highlight__pillars {
        grid-template-columns: 1fr;
      }
    }

    .enroll-pillar {
      display: flex;
      flex-direction: column;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: var(--bg);
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .enroll-pillar:hover {
      border-color: rgba(0, 242, 255, 0.15);
    }

    .enroll-pillar--accent {
      border-color: rgba(0, 242, 255, 0.25);
      
    }

    .enroll-pillar__head {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.65rem 0.85rem;
      background: rgba(0, 0, 0, 0.18);
      border-bottom: 1px solid rgba(0, 242, 255, 0.12);
    }

    .enroll-pillar__step {
      flex-shrink: 0;
      width: 1.85rem;
      height: 1.85rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      font-weight: 700;
      color: rgba(128, 249, 255, 0.78);
      background: rgba(0, 242, 255, 0.06);
      border: 1px solid rgba(0, 242, 255, 0.18);
      
    }

    .enroll-pillar__dim {
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.06em;
    }

    .enroll-pillar__body {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.75rem 0.85rem 0.85rem;
      flex: 1;
    }

    .enroll-pillar__pain,
    .enroll-pillar__gain {
      font-size: var(--text-sm);
      line-height: 1.58;
      margin: 0;
      border-radius: var(--radius);
      padding: 0.55rem 0.65rem;
      font-weight: 700;
    }

    .enroll-pillar__pain {
      color: var(--warning);
      background: rgba(204, 0, 0, 0.05);
      border: 1px solid rgba(204, 0, 0, 0.15);
    }

    .enroll-pillar__divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--text-sub);
      text-transform: uppercase;
    }

    .enroll-pillar__divider span {
      opacity: 0.45;
      font-size: 1rem;
      line-height: 1;
    }

    .enroll-pillar__gain {
      color: var(--primary);
      background: rgba(0, 102, 204, 0.05);
      border: 1px solid rgba(0, 102, 204, 0.15);
      font-weight: 700;
    }

    .enroll-highlight__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.65rem;
      justify-content: flex-start;
      padding-top: 0.15rem;
    }

    .enroll-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.45rem 0.85rem;
      border-radius: var(--radius);
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--text-main);
      border: 1px solid var(--border);
      background: var(--bg-card);
      transition: border-color 0.2s, background 0.2s;
    }

    .enroll-chip:hover {
      border-color: var(--primary);
      background: rgba(0, 102, 204, 0.05);
    }

    .enroll-chip__role {
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .enroll-chip__sep {
      opacity: 0.35;
      font-weight: 400;
    }

    /* ── 智慧人事亮点页（顶栏导语 + 双行「痛点→亮点」矩阵；与学籍三柱区分） ── */
    .swiper-slide--personnel-hl {
      padding: 0.5rem 1.5vw !important;
    }

    .slide-inner--personnel-hl {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
    }

    .personnel-hl {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      width: 100%;
      min-height: 0;
    }

    .personnel-hl__hero {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      column-gap: 1.25rem;
      row-gap: 0.35rem;
      align-items: baseline;
      padding: 0.65rem 0 0.85rem;
      border-bottom: 1px solid rgba(0, 242, 255, 0.18);
    }

    .personnel-hl__eyebrow {
      grid-column: 1;
      grid-row: 1;
      margin: 0;
      font-size: var(--text-sm);
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.9;
    }

    .personnel-hl__title {
      grid-column: 1;
      grid-row: 2;
      margin: 0;
      font-size: clamp(1.5rem, 2.6vw, 2.1rem);
      font-weight: 800;
      letter-spacing: 0.06em;
      color: var(--text);
      line-height: 1.15;
      padding-left: 0.5rem;
      border-left: 3px solid rgba(0, 242, 255, 0.65);
    }

    .personnel-hl__lead {
      grid-column: 2;
      grid-row: 1 / span 2;
      margin: 0;
      align-self: center;
      font-size: var(--text-base);
      line-height: 1.55;
      color: var(--text-sub);
      font-weight: 700;
      padding-left: 0.35rem;
    }

    @media (max-width: 900px) {
      .personnel-hl__hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .personnel-hl__lead {
        grid-column: 1;
        grid-row: auto;
        padding-left: 0;
      }
    }

    .personnel-hl__matrix {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .personnel-hl-matrix {
      border-radius: var(--radius);
      overflow: hidden;
    }

    .personnel-hl-matrix--title {
      border-color: rgba(0, 242, 255, 0.22);
      box-shadow: 0 12px 36px rgba(0, 242, 255, 0.06);
    }

    .personnel-hl-matrix__tag {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.55rem 0.85rem;
      font-size: var(--text-base);
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--primary);
      /* background: rgba(0, 0, 0, 0.22); */
      border-bottom: 1px solid rgba(0, 242, 255, 0.12);
    }

    .personnel-hl-matrix__icon {
      font-size: 0.75rem;
      color: rgba(0, 242, 255, 0.75);
      line-height: 1;
    }

    .personnel-hl-matrix__row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0.5rem 0.65rem;
      align-items: stretch;
      padding: 0.75rem 0.85rem 0.9rem;
    }

    @media (max-width: 820px) {
      .personnel-hl-matrix__row {
        grid-template-columns: 1fr;
      }

      .personnel-hl-matrix__bridge {
        transform: rotate(90deg);
        padding: 0.15rem 0 !important;
      }
    }

    .personnel-hl-matrix__cell {
      border-radius: calc(var(--radius) - 2px);
      padding: 0.6rem 0.7rem;
      font-size: var(--text-sm);
      line-height: 1.55;
      font-weight: 600;
      margin: 0;
      color: rgba(0, 0, 0, 0.78);
      background: rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* 弱化整块填色：中性浅底 + 左侧细条区分，避免大红大蓝铺满 */
    .personnel-hl-matrix__cell--pain {
      border-left: 3px solid rgba(165, 95, 95, 0.42);
    }

    .personnel-hl-matrix__cell--gain {
      border-left: 3px solid rgba(0, 110, 185, 0.4);
    }

    .personnel-hl-matrix__cell p {
      margin: 0.35rem 0 0;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.78);
    }

    .personnel-hl-matrix__label {
      display: block;
      font-size: var(--text-xs);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 1;
      font-weight: 700;
    }

    .personnel-hl-matrix__cell--pain .personnel-hl-matrix__label {
      color: rgba(130, 72, 72, 0.88);
    }

    .personnel-hl-matrix__cell--gain .personnel-hl-matrix__label {
      color: rgba(0, 88, 155, 0.88);
    }

    .personnel-hl-matrix__bridge {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      font-weight: 700;
      color: rgba(0, 242, 255, 0.45);
      padding: 0 0.25rem;
      user-select: none;
    }

    .personnel-hl__foot {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.75rem;
      justify-content: flex-end;
      padding-top: 0.15rem;
    }

    .personnel-hl__chip {
      display: inline-flex;
      align-items: center;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--text-main);
      border: 1px dashed rgba(0, 242, 255, 0.35);
      background: rgba(0, 242, 255, 0.04);
    }

    .deck-brand-logo {
      display: none !important;
    }

    /* ── OA 审批流亮点（第13页）等比放大 ── */
    /* 统一放大控制：修改 zoom 值即可一键调整放大比例（与第10页一致） */
    .swiper-slide.swiper-slide--oa-highlight .slide-inner {
      zoom: 1.15;
    }

    /* ── OA 审批流场景页（第14页）等比放大 ── */
    /* 统一放大控制：修改 zoom 值即可一键调整放大比例（与第10页一致） */
    .swiper-slide.swiper-slide--oa-scenario .slide-inner {
      zoom: 1.15;
    }

    /* 悬浮目录（主轮播）·左下角展开，面板在按钮上方 */
    .deck-toc {
      position: fixed;
      bottom: clamp(0.65rem, 2vh, 1rem);
      left: clamp(0.65rem, 2vw, 1rem);
      top: auto;
      right: auto;
      z-index: 120;
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      font-family: 'Orbitron', "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .deck-toc__toggle {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.45rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.92);
      color: var(--text-main);
      font-size: var(--text-xs);
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    .deck-toc__toggle:hover {
      border-color: var(--accent);
      color: var(--primary);
    }

    .deck-toc__toggle.is-open {
      border-color: var(--accent);
    }

    .deck-toc__panel {
      max-height: min(70vh, 560px);
      width: min(280px, calc(100vw - 2rem));
      margin-bottom: 0.35rem;
      padding: 0.35rem 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      overflow-y: auto;
    }

    .deck-toc__panel[hidden] {
      display: none !important;
    }

    .deck-toc__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .deck-toc__btn {
      display: block;
      width: 100%;
      padding: 0.4rem 0.65rem;
      border: 0;
      background: transparent;
      text-align: left;
      font-size: var(--text-xs);
      color: var(--text-sub);
      cursor: pointer;
    }

    .deck-toc__btn:hover {
      background: rgba(0, 163, 255, 0.08);
      color: var(--text-main);
    }

    .deck-toc__btn.is-active {
      color: var(--primary);
      font-weight: 600;
      background: rgba(0, 163, 255, 0.1);
    }

    .deck-toc__no {
      display: inline-block;
      opacity: 0.55;
      min-width: 1.4em;
    }
