/* roulang page: index */
:root {
      --bg-main: #0B0C10;
      --bg-card: #151821;
      --bg-card-hover: #1E2230;
      --primary: #FF2E63;
      --primary-hover: #FF0844;
      --secondary: #8A2BE2;
      --text-main: #EAEAEA;
      --text-muted: #8E92A4;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 46, 99, 0.4);
      --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.6);
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-pill: 50px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      padding-bottom: 70px;
      -webkit-font-smoothing: antialiased;
    }

    @media (min-width: 1024px) {
      body {
        padding-bottom: 0;
      }
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.85rem 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #FFF;
    }

    .brand-logo i {
      color: var(--primary);
      font-size: 1.5rem;
    }

    .brand-logo span {
      background: linear-gradient(135deg, #FFF 60%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 1.8rem;
    }

    @media (min-width: 1024px) {
      .desktop-nav {
        display: flex;
      }
    }

    .desktop-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
    }

    .desktop-nav a.active,
    .desktop-nav a:hover {
      color: #FFF;
    }

    .desktop-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .nav-search {
      position: relative;
      width: 220px;
    }

    .nav-search input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 14px 6px 36px;
      color: #FFF;
      font-size: 0.85rem;
      height: 36px;
      margin: 0;
    }

    .nav-search input:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 46, 99, 0.3);
    }

    .nav-search i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* 移动端底部常驻Tab */
    .mobile-tab-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 19, 24, 0.96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-subtle);
      z-index: 9999;
      justify-content: space-around;
      padding: 8px 0;
    }

    @media (min-width: 1024px) {
      .mobile-tab-bar {
        display: none;
      }
    }

    .tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      gap: 3px;
    }

    .tab-item.active,
    .tab-item:hover {
      color: var(--primary);
    }

    .tab-item i {
      font-size: 1.15rem;
    }

    /* 统一排版与容器 */
    .section-wrap {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .badge-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 46, 99, 0.12);
      border: 1px solid var(--border-accent);
      color: var(--primary);
      font-size: 0.8rem;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 0.8rem;
      text-transform: uppercase;
      font-weight: 600;
    }

    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #FFF;
      margin-bottom: 0.8rem;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 750px;
      font-size: 0.98rem;
    }

    /* 统一卡片样式 */
    .stream-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .stream-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 30px rgba(255, 46, 99, 0.15);
      background: var(--bg-card-hover);
    }

    /* 按钮规范 */
    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), #FF5E7E);
      color: #FFF;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(255, 46, 99, 0.35);
      transition: all 0.25s ease;
    }

    .btn-action:hover {
      background: linear-gradient(135deg, var(--primary-hover), #FF426A);
      color: #FFF;
      box-shadow: 0 8px 24px rgba(255, 46, 99, 0.55);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      color: #FFF;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFF;
      color: #FFF;
    }

    /* 板块一：Hero */
    .hero-banner {
      position: relative;
      background: linear-gradient(180deg, rgba(11,12,16,0.5) 0%, rgba(11,12,16,0.98) 100%),
                  url('/assets/images/379ecaccff165876.webp') center/cover no-repeat;
      padding: 6.5rem 0 4.5rem;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
      }
    }

    .hero-h1 {
      font-size: 2.6rem;
      line-height: 1.25;
      font-weight: 900;
      color: #FFF;
      margin-bottom: 1.2rem;
    }

    .hero-h1 mark {
      background: none;
      color: var(--primary);
    }

    .hero-lead {
      color: #C1C5D3;
      font-size: 1.05rem;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .hero-showcase {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-deep);
    }

    .hero-showcase img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .hero-floating-meta {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 100%);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    /* 板块二：指标看板 */
    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .metric-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.8rem 1.4rem;
      text-align: center;
    }

    .metric-card .num {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }

    .metric-card .label {
      font-size: 0.95rem;
      color: #FFF;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .metric-card .desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 板块三：分类入口矩阵 */
    .category-matrix-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }

    @media (min-width: 768px) {
      .category-matrix-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .category-entry-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    .category-entry-card img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      z-index: 1;
    }

    .category-entry-card .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(11,12,16,0.2) 20%, rgba(11,12,16,0.95) 90%);
      z-index: 2;
    }

    .category-entry-card .content {
      position: relative;
      z-index: 3;
    }

    .category-entry-card:hover img {
      transform: scale(1.08);
    }

    .category-entry-card h3 {
      color: #FFF;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .category-entry-card p {
      color: #B5B9CA;
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }

    /* 板块四：海报网格 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }

    @media (min-width: 768px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .poster-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .poster-card {
      display: flex;
      flex-direction: column;
    }

    .poster-thumb {
      position: relative;
      width: 100%;
      padding-top: 140%;
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 0.75rem;
    }

    .poster-thumb img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .poster-card:hover .poster-thumb img {
      transform: scale(1.05);
    }

    .poster-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(255, 46, 99, 0.9);
      color: #FFF;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      z-index: 2;
    }

    .poster-info h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #FFF;
      margin-bottom: 0.2rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .poster-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
    }

    /* 板块五：画质与音轨对比 */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .compare-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .compare-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem;
    }

    .compare-card.highlight {
      border-color: var(--border-accent);
      background: linear-gradient(180deg, rgba(255,46,99,0.06) 0%, var(--bg-card) 100%);
    }

    .compare-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .compare-list {
      list-style: none;
    }

    .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 1.2rem;
      font-size: 0.92rem;
      color: #D1D5DB;
    }

    .compare-list li i {
      margin-top: 4px;
      font-size: 0.9rem;
    }

    /* 板块六：片单收藏转化对比 */
    .table-container {
      overflow-x: auto;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
    }

    .feature-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
    }

    .feature-table th,
    .feature-table td {
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    .feature-table th {
      background: rgba(255, 255, 255, 0.03);
      font-weight: 700;
      color: #FFF;
    }

    .feature-table td {
      color: #B5B9CA;
      font-size: 0.9rem;
    }

    /* 板块七：演进时间线 */
    .timeline-wrap {
      position: relative;
      max-width: 850px;
      margin: 0 auto;
      padding-left: 2rem;
      border-left: 2px solid rgba(255, 46, 99, 0.3);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 2.5rem;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -2.45rem;
      top: 4px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 10px var(--primary);
    }

    .timeline-date {
      font-size: 0.85rem;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .timeline-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.4rem;
    }

    .timeline-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* 板块八：专题企划资讯 */
    .article-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .article-split {
        grid-template-columns: 1.1fr 1fr;
      }
    }

    .article-lead-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .article-lead-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .article-lead-content {
      padding: 1.8rem;
    }

    .article-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .article-item-card {
      display: flex;
      gap: 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem;
      align-items: center;
    }

    .article-item-card img {
      width: 100px;
      height: 75px;
      border-radius: var(--radius-sm);
      object-fit: cover;
      flex-shrink: 0;
    }

    /* 板块九：制作会社与原画档案 */
    .creator-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }

    @media (min-width: 768px) {
      .creator-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .creator-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      text-align: center;
    }

    .creator-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid var(--border-accent);
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.6rem;
    }

    .creator-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.3rem;
    }

    .creator-role {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* 板块十：平台保障协议 */
    .security-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .security-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .security-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .security-item {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.8rem;
    }

    .security-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }

    /* 板块十一：多端协同 */
    .device-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .device-grid {
        grid-template-columns: 1.2fr 0.8fr;
      }
    }

    .device-feature-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }

    @media (min-width: 768px) {
      .device-feature-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .device-feature-item {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.4rem;
    }

    /* 板块十二：快速解答提示 */
    .tip-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .tip-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .tip-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.6rem;
    }

    /* 板块十三：手风琴 FAQ */
    .faq-container {
      max-width:850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.3rem 1.6rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #FFF;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-answer {
      padding: 0 1.6rem 1.4rem;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    /* 板块十四：社群评价 */
    .review-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .review-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.6rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 1.2rem;
    }

    .review-user-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 46, 99, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: 700;
    }

    /* 板块十五：检索转化表单 */
    .convert-panel {
      background: linear-gradient(135deg, #181B26 0%, #11131B 100%);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-md);
      padding: 3.5rem 2rem;
      text-align: center;
      box-shadow: var(--shadow-deep);
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
      margin: 1.8rem 0;
    }

    .filter-tag-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      color: #D1D5DB;
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .filter-tag-item:hover,
    .filter-tag-item.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFF;
    }

    .convert-form {
      max-width: 580px;
      margin: 0 auto;
      display: flex;
      gap: 0.8rem;
    }

    .convert-form input {
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 12px 20px;
      color: #FFF;
      flex: 1;
      height: 48px;
    }

    .convert-form input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 12px rgba(255, 46, 99, 0.4);
    }

    /* 页脚统一规范 */
    .site-footer {
      background: #08090C;
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
      }
    }

    .footer-brand h4 {
      color: #FFF;
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .footer-links h5 {
      color: #FFF;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      text-align: center;
      font-size: 0.8rem;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

/* roulang page: category2 */
:root {
      --bg-main: #0B0C10;
      --bg-card: #151821;
      --bg-card-hover: #1E2230;
      --primary: #FF2E63;
      --primary-hover: #FF0844;
      --secondary: #8A2BE2;
      --text-main: #EAEAEA;
      --text-muted: #8E92A4;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 46, 99, 0.4);
      --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.6);
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-pill: 50px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      padding-bottom: 70px;
      -webkit-font-smoothing: antialiased;
    }
    @media (min-width: 768px) {
      body {
        padding-bottom: 0;
      }
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    a:hover {
      color: var(--primary);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.85rem 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #FFF;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.5rem;
    }
    .brand-logo span {
      background: linear-gradient(135deg, #FFF 60%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .desktop-nav {
      display: none;
      align-items: center;
      gap: 1.8rem;
    }
    @media (min-width: 768px) {
      .desktop-nav {
        display: flex;
      }
    }
    .desktop-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
    }
    .desktop-nav a.active,
    .desktop-nav a:hover {
      color: #FFF;
    }
    .desktop-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }
    .nav-search {
      position: relative;
      width: 220px;
    }
    .nav-search input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 14px 6px 36px;
      color: #FFF;
      font-size: 0.85rem;
      height: 36px;
      margin: 0;
    }
    .nav-search input:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 46, 99, 0.3);
      outline: none;
    }
    .nav-search i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    /* 移动端底部常驻Tab */
    .mobile-tab-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 19, 24, 0.96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-subtle);
      z-index: 9999;
      justify-content: space-around;
      padding: 8px 0;
    }
    @media (min-width: 768px) {
      .mobile-tab-bar {
        display: none;
      }
    }
    .tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      gap: 3px;
    }
    .tab-item.active,
    .tab-item:hover {
      color: var(--primary);
    }
    .tab-item i {
      font-size: 1.15rem;
    }
    /* 基础排版与卡片组件 */
    .section-wrap {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .badge-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 46, 99, 0.12);
      border: 1px solid var(--border-accent);
      color: var(--primary);
      font-size: 0.8rem;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 0.8rem;
      font-weight: 600;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #FFF;
      margin-bottom: 0.8rem;
    }
    .section-desc {
      color: var(--text-muted);
      max-width: 750px;
      font-size: 0.98rem;
    }
    .stream-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .stream-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 30px rgba(255, 46, 99, 0.15);
      background: var(--bg-card-hover);
    }
    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), #FF5E7E);
      color: #FFF;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(255, 46, 99, 0.35);
      transition: all 0.25s ease;
    }
    .btn-action:hover {
      background: linear-gradient(135deg, var(--primary-hover), #FF426A);
      color: #FFF;
      box-shadow: 0 8px 24px rgba(255, 46, 99, 0.55);
      transform: translateY(-2px);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      color: #FFF;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFF;
      color: #FFF;
    }
    /* 分类页专属组件样式 */
    .category-header-panel {
      padding: 3.5rem 0 2.5rem;
      background: radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.08) 0%, transparent 60%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .breadcrumb-trail {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }
    .breadcrumb-trail a:hover {
      color: var(--primary);
    }
    .header-quick-search {
      display: flex;
      gap: 12px;
      max-width: 480px;
      margin-top: 1.5rem;
    }
    .header-quick-search input {
      flex: 1;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 10px 20px;
      color: #FFF;
      font-size: 0.9rem;
      outline: none;
    }
    .header-quick-search input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 12px rgba(255, 46, 99, 0.25);
    }
    /* 筛选器矩阵 */
    .filter-panel {
      background: #11131A;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.6rem;
      margin-bottom: 2rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 75px;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .pill-filter {
      display: inline-block;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .pill-filter:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #FFF;
    }
    .pill-filter.active {
      background: var(--primary);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(255, 46, 99, 0.4);
    }
    /* 海报流卡片 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }
    @media (min-width: 640px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (min-width: 992px) {
      .poster-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }
    .poster-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      transition: all 0.3s ease;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 12px 25px rgba(0,0,0,0.5);
    }
    .poster-thumb-box {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: #1A1D27;
    }
    .poster-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-box img {
      transform: scale(1.06);
    }
    .badge-corner {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 12, 16, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #FFF;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
    }
    .badge-res {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--primary);
      color: #FFF;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: var(--radius-sm);
      letter-spacing: 0.5px;
    }
    .poster-info {
      padding: 1rem;
    }
    .poster-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #FFF;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 0.3rem;
    }
    .poster-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .poster-score {
      color: #FFB800;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    /* 分页控制器 */
    .pagination-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 3rem;
    }
    .page-btn {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .page-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFF;
      box-shadow: 0 4px 14px rgba(255, 46, 99, 0.4);
    }
    /* 排行榜卡片 */
    .rank-card {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem 1.4rem;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }
    .rank-card:hover {
      border-color: var(--border-accent);
      transform: translateX(6px);
      background: var(--bg-card-hover);
    }
    .rank-num {
      font-size: 1.8rem;
      font-weight: 900;
      font-style: italic;
      color: var(--text-muted);
      width: 40px;
      line-height: 1;
    }
    .rank-card:nth-child(1) .rank-num { color: #FF2E63; }
    .rank-card:nth-child(2) .rank-num { color: #FF8400; }
    .rank-card:nth-child(3) .rank-num { color: #FFB800; }
    .rank-thumb {
      width: 75px;
      height: 100px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-content {
      flex: 1;
    }
    .rank-content h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.3rem;
    }
    .rank-content p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .rank-tag-group {
      display: flex;
      gap: 6px;
    }
    .rank-tag {
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 8px;
      border-radius: 4px;
      color: var(--text-muted);
    }
    /* 观影特性卡片 */
    .feature-card {
      background: #13161F;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }
    .feature-icon-box {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: rgba(255, 46, 99, 0.12);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }
    .feature-card h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.6rem;
    }
    .feature-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }
    /* 关联专题宽卡 */
    .wide-topic-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      background: #161922;
      display: flex;
      flex-direction: column;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) {
      .wide-topic-card {
        flex-direction: row;
        align-items: stretch;
      }
    }
    .topic-img-side {
      position: relative;
      min-height: 220px;
    }
    @media (min-width: 768px) {
      .topic-img-side {
        width: 45%;
      }
    }
    .topic-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .topic-content-side {
      padding: 2.2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    @media (min-width: 768px) {
      .topic-content-side {
        width: 55%;
      }
    }
    .topic-content-side h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.8rem;
    }
    .topic-content-side p {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 1.5rem;
    }
    /* 折叠手风琴 FAQ */
    .faq-accordion {
      max-width: 850px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-question {
      padding: 1.2rem 1.6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.05rem;
      color: #FFF;
      transition: background 0.2s ease;
    }
    .faq-question:hover {
      background: rgba(255, 255, 255, 0.02);
      color: var(--primary);
    }
    .faq-question i {
      color: var(--primary);
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer {
      display: none;
      padding: 0 1.6rem 1.4rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 1rem;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    /* 页脚样式 */
    .site-footer {
      background: #07080B;
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem;
      color: var(--text-muted);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 3.5rem;
    }
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
      }
    }
    .footer-brand h4 {
      font-size: 1.3rem;
      color: #FFF;
      font-weight: 800;
      display: flex;
      align-items: center;
    }
    .footer-links h5 {
      font-size: 0.95rem;
      color: #FFF;
      font-weight: 700;
      margin-bottom: 1.2rem;
    }
    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.6rem;
      font-size: 0.88rem;
    }
    .footer-links a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 0.8rem;
      color: #5D6170;
      text-align: center;
    }
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

/* roulang page: category1 */
:root {
      --bg-main: #0B0C10;
      --bg-card: #151821;
      --bg-card-hover: #1E2230;
      --primary: #FF2E63;
      --primary-hover: #FF0844;
      --secondary: #8A2BE2;
      --text-main: #EAEAEA;
      --text-muted: #8E92A4;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 46, 99, 0.4);
      --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.6);
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-pill: 50px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      padding-bottom: 70px;
      -webkit-font-smoothing: antialiased;
    }

    @media (min-width: 769px) {
      body {
        padding-bottom: 0;
      }
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.85rem 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #FFF;
    }

    .brand-logo i {
      color: var(--primary);
      font-size: 1.5rem;
    }

    .brand-logo span {
      background: linear-gradient(135deg, #FFF 60%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 1.8rem;
    }

    @media (min-width: 769px) {
      .desktop-nav {
        display: flex;
      }
    }

    .desktop-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
    }

    .desktop-nav a.active,
    .desktop-nav a:hover {
      color: #FFF;
    }

    .desktop-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .nav-search {
      position: relative;
      width: 220px;
    }

    .nav-search input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 14px 6px 36px;
      color: #FFF;
      font-size: 0.85rem;
      height: 36px;
      margin: 0;
    }

    .nav-search input:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 46, 99, 0.3);
      outline: none;
    }

    .nav-search i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* 移动端底部常驻Tab */
    .mobile-tab-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 19, 24, 0.96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-subtle);
      z-index: 9999;
      justify-content: space-around;
      padding: 8px 0;
    }

    @media (min-width: 769px) {
      .mobile-tab-bar {
        display: none;
      }
    }

    .tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      gap: 3px;
    }

    .tab-item.active,
    .tab-item:hover {
      color: var(--primary);
    }

    .tab-item i {
      font-size: 1.15rem;
    }

    /* 容器与通用排版 */
    .section-wrap {
      padding: 4rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }

    .badge-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 46, 99, 0.12);
      border: 1px solid var(--border-accent);
      color: var(--primary);
      font-size: 0.8rem;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 0.8rem;
      text-transform: uppercase;
      font-weight: 600;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #FFF;
      margin-bottom: 0.8rem;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 800px;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* 按钮规范 */
    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), #FF5E7E);
      color: #FFF;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.92rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(255, 46, 99, 0.35);
      transition: all 0.25s ease;
    }

    .btn-action:hover {
      background: linear-gradient(135deg, var(--primary-hover), #FF426A);
      color: #FFF;
      box-shadow: 0 8px 24px rgba(255, 46, 99, 0.55);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      color: #FFF;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.92rem;
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFF;
      color: #FFF;
    }

    /* 板块一：分类紧凑 Header */
    .cat-hero-panel {
      padding: 3rem 0 2.5rem;
      background: linear-gradient(180deg, rgba(21, 24, 33, 0.8) 0%, rgba(11, 12, 16, 1) 100%);
      border-bottom: 1px solid var(--border-subtle);
    }

    .cat-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .cat-breadcrumb a:hover {
      color: var(--primary);
    }

    .cat-header-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 992px) {
      .cat-header-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
      }
    }

    .cat-stat-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      color: #FFF;
    }

    .cat-stat-badge b {
      color: var(--primary);
    }

    /* 板块二：多维参数筛选栏 */
    .filter-panel {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      border: 1px solid var(--border-subtle);
      margin-bottom: 2.5rem;
    }

    .filter-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0.6rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-width: 60px;
      font-weight: 600;
    }

    .filter-tags {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-chip {
      display: inline-block;
      padding: 4px 14px;
      font-size: 0.82rem;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-muted);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: rgba(255, 46, 99, 0.15);
      color: #FFF;
      border-color: var(--border-accent);
    }

    /* 板块三：5列/2列 影视海报网格 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 640px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .poster-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
      }
    }

    .poster-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: 0 10px 25px rgba(255, 46, 99, 0.25);
    }

    .poster-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 135%;
      overflow: hidden;
      background: #10121A;
    }

    .poster-thumb-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }

    .poster-quality-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(0, 0, 0, 0.75);
      color: #00FFCC;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid rgba(0, 255, 204, 0.3);
      backdrop-filter: blur(4px);
    }

    .poster-score-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: var(--primary);
      color: #FFF;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .poster-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(11, 12, 16, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .poster-play-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 0 16px var(--primary);
      transform: scale(0.85);
      transition: transform 0.25s ease;
    }

    .poster-card:hover .poster-play-overlay {
      opacity: 1;
    }

    .poster-card:hover .poster-play-icon {
      transform: scale(1);
    }

    .poster-meta {
      padding: 12px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .poster-name {
      font-size: 0.92rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .poster-info-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* 板块四：加载控制 */
    .pagination-box {
      margin-top: 3rem;
      text-align: center;
    }

    /* 板块五：TOP 5 榜单 */
    .top-rank-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 768px) {
      .top-rank-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .top-rank-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .rank-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .rank-num {
      font-size: 1.8rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      line-height: 1;
      min-width: 28px;
    }

    .rank-card:nth-child(1) .rank-num { color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    .rank-card:nth-child(2) .rank-num { color: #E0E0E0; text-shadow: 0 0 10px rgba(224, 224, 224, 0.4); }
    .rank-card:nth-child(3) .rank-num { color: #CD7F32; text-shadow: 0 0 10px rgba(205, 127, 50, 0.4); }

    .rank-thumb {
      width: 50px;
      height: 65px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .rank-info {
      overflow: hidden;
    }

    .rank-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: #FFF;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }

    .rank-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* 板块六：特性支持 */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 768px) {
      .feature-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem;
      transition: all 0.3s;
    }

    .feature-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }

    .feature-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: rgba(255, 46, 99, 0.12);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 1.2rem;
    }

    .feature-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.6rem;
    }

    .feature-text {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 板块七：关联专题精选横卡 */
    .topic-card-banner {
      background: linear-gradient(90deg, #151821 0%, rgba(21, 24, 33, 0.75) 100%),
                  url('/assets/images/96bfa9a7f964b3aa.jpg') center/cover no-repeat;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .topic-card-banner {
        flex-direction: row;
        align-items: center;
      }
    }

    .topic-desc-wrap {
      max-width: 620px;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .topic-desc-wrap {
        margin-bottom: 0;
      }
    }

    /* 板块八：精简 FAQ 手风琴 */
    .faq-container {
      max-width: 860px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.25s;
    }

    .faq-header {
      padding: 1.2rem 1.5rem;
      font-weight: 700;
      color: #FFF;
      font-size: 0.98rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .faq-header i {
      color: var(--primary);
      transition: transform 0.3s;
    }

    .faq-body {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 页脚统一复用 */
    .site-footer {
      background: #090A0D;
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem;
      color: var(--text-muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
      }
    }

    .footer-brand h4 {
      color: #FFF;
      font-size: 1.25rem;
      font-weight: 800;
      display: flex;
      align-items: center;
    }

    .footer-links h5 {
      color: #FFF;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.6rem;
      font-size: 0.85rem;
    }

    .footer-links a {
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.8rem;
      color: #555A6E;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

/* roulang page: category3 */
:root {
      --bg-main: #0B0C10;
      --bg-card: #151821;
      --bg-card-hover: #1E2230;
      --primary: #FF2E63;
      --primary-hover: #FF0844;
      --secondary: #8A2BE2;
      --text-main: #EAEAEA;
      --text-muted: #8E92A4;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 46, 99, 0.4);
      --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.6);
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-pill: 50px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      font-size: 15px;
      -webkit-font-smoothing: antialiased;
      padding-bottom: 70px;
    }

    @media (min-width: 1024px) {
      body {
        padding-bottom: 0;
      }
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 12, 16, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.85rem 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #FFF;
    }

    .brand-logo i {
      color: var(--primary);
      font-size: 1.5rem;
    }

    .brand-logo span {
      background: linear-gradient(135deg, #FFF 60%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 1.8rem;
    }

    @media (min-width: 800px) {
      .desktop-nav {
        display: flex;
      }
    }

    .desktop-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      padding: 4px 0;
    }

    .desktop-nav a.active,
    .desktop-nav a:hover {
      color: #FFF;
    }

    .desktop-nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .nav-search {
      position: relative;
      width: 220px;
    }

    .nav-search input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-pill);
      padding: 6px 14px 6px 36px;
      color: #FFF;
      font-size: 0.85rem;
      height: 36px;
      margin: 0;
      outline: none;
      transition: all 0.3s;
    }

    .nav-search input:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 46, 99, 0.3);
    }

    .nav-search i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* 移动端底部常驻Tab */
    .mobile-tab-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 19, 24, 0.96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-subtle);
      z-index: 9999;
      justify-content: space-around;
      padding: 8px 0;
    }

    @media (min-width: 800px) {
      .mobile-tab-bar {
        display: none;
      }
    }

    .tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      gap: 3px;
    }

    .tab-item.active,
    .tab-item:hover {
      color: var(--primary);
    }

    .tab-item i {
      font-size: 1.15rem;
    }

    /* 统一排版与容器 */
    .section-wrap {
      padding: 3.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }

    .section-header {
      margin-bottom: 2.2rem;
    }

    .badge-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 46, 99, 0.12);
      border: 1px solid var(--border-accent);
      color: var(--primary);
      font-size: 0.8rem;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      margin-bottom: 0.8rem;
      font-weight: 600;
    }

    .section-title {
      font-size: 1.85rem;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .section-desc {
      color: var(--text-muted);
      max-width: 800px;
      font-size: 0.95rem;
    }

    /* 按钮规范 */
    .btn-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary), #FF5E7E);
      color: #FFF;
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(255, 46, 99, 0.35);
      transition: all 0.25s ease;
    }

    .btn-action:hover {
      background: linear-gradient(135deg, var(--primary-hover), #FF426A);
      color: #FFF;
      box-shadow: 0 6px 20px rgba(255, 46, 99, 0.55);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      color: #FFF;
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid var(--border-subtle);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFF;
      color: #FFF;
    }

    /* 板块一：分类专属紧凑 Header */
    .topic-header-banner {
      background: linear-gradient(180deg, rgba(11, 12, 16, 0.82) 0%, rgba(21, 24, 33, 0.95) 100%),
                  url('/assets/images/0f5b8d4e36ae0295.jpg') center/cover no-repeat;
      padding: 3rem 0 2.5rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .breadcrumb-nav a {
      color: var(--text-muted);
    }

    .breadcrumb-nav a:hover {
      color: var(--primary);
    }

    .topic-h1 {
      font-size: 2.3rem;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 0.8rem;
      line-height: 1.25;
    }

    .topic-meta-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1.5rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .topic-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .topic-meta-item strong {
      color: #FFF;
      font-size: 1rem;
    }

    /* 板块二：多维参数筛选栏 */
    .filter-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.5rem;
      margin-bottom: 1rem;
    }

    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 0.6rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .filter-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-width: 65px;
      padding-top: 4px;
      font-weight: 600;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-pill {
      font-size: 0.82rem;
      padding: 3px 12px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-pill:hover {
      color: #FFF;
      border-color: rgba(255, 255, 255, 0.2);
    }

    .filter-pill.active {
      background: var(--primary);
      color: #FFF;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(255, 46, 99, 0.4);
    }

    /* 板块三：5列海报流卡片 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }

    @media (min-width: 640px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 960px) {
      .poster-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1200px) {
      .poster-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .poster-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
    }

    .poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-accent);
      box-shadow: var(--shadow-deep);
    }

    .poster-thumb-wrap {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: #000;
    }

    .poster-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }

    .poster-tag-spec {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      font-size: 0.72rem;
      font-weight: 700;
      color: #00F0FF;
    }

    .poster-tag-ep {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--primary);
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      font-size: 0.72rem;
      font-weight: 700;
      color: #FFF;
    }

    .poster-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(11, 12, 16, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .poster-card:hover .poster-play-overlay {
      opacity: 1;
    }

    .play-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 0 20px rgba(255, 46, 99, 0.8);
      transform: scale(0.85);
      transition: transform 0.25s ease;
    }

    .poster-card:hover .play-circle {
      transform: scale(1);
    }

    .poster-info {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .poster-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #FFF;
      line-height: 1.4;
      margin-bottom: 0.4rem;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .poster-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .poster-foot-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.6rem;
    }

    .score-rating {
      color: #FFB800;
      font-weight: 700;
    }

    /* 板块四：分页与加载控制 */
    .pagination-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .page-numbers {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-muted);
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .page-btn:hover {
      border-color: var(--primary);
      color: #FFF;
    }

    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #FFF;
      font-weight: 700;
    }

    /* 板块五：TOP 5 横向排行榜 */
    .ranking-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .rank-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      transition: all 0.25s;
    }

    .rank-item-card:hover {
      border-color: var(--border-accent);
      background: var(--bg-card-hover);
      transform: translateX(4px);
    }

    .rank-badge-num {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
    }

    .rank-item-card:nth-child(1) .rank-badge-num {
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #000;
    }

    .rank-item-card:nth-child(2) .rank-badge-num {
      background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
      color: #000;
    }

    .rank-item-card:nth-child(3) .rank-badge-num {
      background: linear-gradient(135deg, #CD7F32, #8B4513);
      color: #FFF;
    }

    .rank-cover-thumb {
      width: 60px;
      height: 80px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: #000;
    }

    .rank-cover-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rank-meta-info {
      flex-grow: 1;
    }

    .rank-meta-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.3rem;
    }

    .rank-meta-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .rank-side-score {
      text-align: right;
      min-width: 90px;
    }

    .score-big {
      font-size: 1.4rem;
      font-weight: 800;
      color: #FFB800;
    }

    /* 板块六：高规格观影特性解说 */
    .specs-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem 1.6rem;
      height: 100%;
      transition: all 0.3s;
    }

    .specs-card:hover {
      border-color: rgba(138, 43, 226, 0.5);
      transform: translateY(-4px);
    }

    .specs-icon {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    .specs-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 0.6rem;
    }

    .specs-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块七：分类关联专题精选大宽卡 */
    .wide-topic-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1.5rem;
      transition: all 0.3s;
    }

    .wide-topic-card:hover {
      border-color: var(--border-accent);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .wide-card-grid {
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 768px) {
      .wide-card-grid {
        flex-direction: row;
      }
    }

    .wide-card-media {
      position: relative;
      min-height: 220px;
      flex: 1 1 45%;
      overflow: hidden;
    }

    .wide-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .wide-topic-card:hover .wide-card-media img {
      transform: scale(1.05);
    }

    .wide-card-content {
      flex: 1 1 55%;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .wide-topic-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 0.6rem;
    }

    .wide-topic-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .capsule-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.5rem;
    }

    .topic-capsule {
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: #FFF;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
    }

    /* 板块八：分类常见疑问手风琴 */
    .faq-topic-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-topic-item {
      border-bottom: 1px solid var(--border-subtle);
      padding: 1.4rem 1.6rem;
    }

    .faq-topic-item:last-child {
      border-bottom: none;
    }

    .faq-topic-q {
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .faq-topic-q i {
      color: var(--primary);
      font-size: 0.9rem;
    }

    .faq-topic-a {
      margin-top: 0.8rem;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* 页脚标准统一 */
    .site-footer {
      background: #07080B;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 3.5rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 2.2fr 1fr 1fr 1fr;
      }
    }

    .footer-brand h4 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #FFF;
    }

    .footer-links h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 1.2rem;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.6rem;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }
