/* roulang page: index */
:root {
      --ink: #171717;
      --ink-2: #2b2b2b;
      --muted: #6f6f6f;
      --paper: #f6f4ee;
      --paper-2: #fffaf0;
      --white: #ffffff;
      --line: #ded8ca;
      --line-dark: rgba(23, 23, 23, .14);
      --red: #ff3b2f;
      --orange: #ff7a1a;
      --cyan: #04d9c4;
      --yellow: #ffd84d;
      --gray: #e7e2d6;
      --charcoal: #101010;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 16px 42px rgba(23, 23, 23, .12);
      --shadow-soft: 0 8px 24px rgba(23, 23, 23, .08);
      --container: 1180px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 18%, rgba(255, 216, 77, .18), transparent 24%),
        linear-gradient(180deg, #f8f5ed 0%, #eee8dc 100%);
      line-height: 1.72;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--red);
    }

    button,
    input {
      font: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-shell {
      min-height: 100vh;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .dock-header {
      position: sticky;
      top: 14px;
      z-index: 50;
      padding: 12px 0 2px;
    }

    .dock-nav {
      width: min(calc(100% - 28px), 1080px);
      margin: 0 auto;
      background: rgba(255, 250, 240, .96);
      border: 1px solid var(--line-dark);
      box-shadow: 0 14px 34px rgba(16, 16, 16, .16);
      border-radius: 999px;
      padding: 9px 12px;
      display: flex;
      align-items: center;
      gap: 14px;
      backdrop-filter: blur(10px);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 250px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: var(--charcoal);
      color: var(--yellow);
      border: 2px solid var(--yellow);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08);
      flex: 0 0 auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .nav-links a {
      border-radius: 999px;
      padding: 9px 14px;
      color: var(--ink-2);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      border: 1px solid transparent;
    }

    .nav-links a:hover {
      background: #fff;
      border-color: var(--line-dark);
      color: var(--ink);
    }

    .nav-links a.active {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-chip {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line-dark);
      background: var(--white);
      color: var(--ink);
      display: inline-grid;
      place-items: center;
    }

    .search-chip:hover,
    .search-chip:focus {
      border-color: var(--red);
      color: var(--red);
      outline: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1.2;
      cursor: pointer;
      transition: var(--ease);
      text-align: center;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 12px 20px rgba(255, 59, 47, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background: #e92d23;
      color: var(--white);
      transform: translateY(-1px);
      outline: none;
    }

    .btn-dark {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .btn-dark:hover,
    .btn-dark:focus {
      background: #000;
      color: var(--yellow);
      transform: translateY(-1px);
      outline: none;
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border-color: rgba(23, 23, 23, .25);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      background: var(--white);
      border-color: var(--red);
      color: var(--red);
      outline: none;
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section-tight {
      padding: 46px 0;
    }

    .section-dark {
      background: var(--charcoal);
      color: var(--white);
    }

    .section-red {
      background: var(--red);
      color: var(--white);
    }

    .section-paper {
      background: rgba(255, 250, 240, .72);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section-title {
      margin: 0;
      font-size: 34px;
      line-height: 1.18;
      letter-spacing: 0;
      font-weight: 950;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 660px;
      color: var(--muted);
      font-size: 16px;
    }

    .section-dark .section-desc,
    .section-red .section-desc {
      color: rgba(255, 255, 255, .78);
    }

    .hero-band {
      padding: 70px 0 54px;
    }

    .hero-stage {
      background: var(--charcoal);
      color: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .1);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 59, 47, .28), transparent 38%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 14px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.04fr 1.18fr;
      gap: 0;
      align-items: stretch;
    }

    .hero-copy {
      padding: 56px 46px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-label {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 216, 77, .14);
      border: 1px solid rgba(255, 216, 77, .46);
      color: var(--yellow);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0;
      font-size: 48px;
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 950;
    }

    .hero-copy p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      max-width: 560px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 34px;
      max-width: 560px;
    }

    .metric-pill {
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .06);
      border-radius: var(--radius-sm);
      padding: 12px 10px;
    }

    .metric-pill strong {
      display: block;
      color: var(--yellow);
      font-size: 21px;
      line-height: 1.1;
    }

    .metric-pill span {
      display: block;
      color: rgba(255, 255, 255, .68);
      font-size: 13px;
      margin-top: 5px;
    }

    .plan-stack {
      padding: 28px;
      background: rgba(255, 250, 240, .08);
      display: grid;
      gap: 14px;
      align-content: center;
    }

    .choice-card {
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(255, 255, 255, .08);
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      transition: var(--ease);
    }

    .choice-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 216, 77, .55);
    }

    .choice-card.recommended {
      background: var(--white);
      color: var(--ink);
      border: 3px solid var(--yellow);
      box-shadow: 0 18px 30px rgba(0, 0, 0, .22);
      order: -1;
    }

    .choice-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .choice-title {
      font-size: 18px;
      font-weight: 950;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 9px;
      background: var(--cyan);
      color: var(--ink);
      font-size: 12px;
      font-weight: 950;
      line-height: 1;
      white-space: nowrap;
    }

    .choice-card p {
      margin: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .choice-card.recommended p {
      color: var(--muted);
    }

    .choice-side {
      min-width: 118px;
      text-align: right;
      font-weight: 950;
    }

    .choice-side small {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 800;
      margin-top: 4px;
    }

    .countdown-strip {
      background: var(--yellow);
      border-top: 3px solid var(--ink);
      border-bottom: 3px solid var(--ink);
      color: var(--ink);
      padding: 13px 0;
    }

    .countdown-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      font-weight: 900;
    }

    .status-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 5px rgba(255, 59, 47, .16);
      display: inline-block;
      margin-right: 8px;
    }

    .time-cells {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .time-cell {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius-sm);
      min-width: 64px;
      padding: 7px 9px;
      text-align: center;
      line-height: 1.1;
    }

    .time-cell strong {
      display: block;
      font-size: 18px;
    }

    .time-cell span {
      display: block;
      font-size: 11px;
      color: rgba(255, 255, 255, .68);
      margin-top: 3px;
    }

    .wall-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .9fr;
      grid-auto-rows: 170px;
      gap: 14px;
    }

    .wall-tile {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line-dark);
      min-height: 160px;
      background:
        linear-gradient(135deg, rgba(255, 59, 47, .92), rgba(255, 122, 26, .72)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 2px, transparent 2px 18px);
      box-shadow: var(--shadow-soft);
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: var(--white);
      transition: var(--ease);
    }

    .wall-tile:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .wall-tile.large {
      grid-row: span 2;
      background:
        linear-gradient(145deg, rgba(16, 16, 16, .12), rgba(16, 16, 16, .76)),
        linear-gradient(135deg, #f24b37 0%, #ffd84d 44%, #04d9c4 100%);
    }

    .wall-tile.dark {
      background:
        linear-gradient(145deg, rgba(16, 16, 16, .88), rgba(55, 55, 55, .64)),
        repeating-linear-gradient(135deg, rgba(255, 216, 77, .2) 0 2px, transparent 2px 16px);
    }

    .wall-tile.light {
      color: var(--ink);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 216, 77, .84)),
        repeating-linear-gradient(0deg, rgba(23, 23, 23, .07) 0 1px, transparent 1px 12px);
    }

    .wall-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--ink);
      color: var(--yellow);
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 950;
    }

    .wall-tile.light .wall-tag {
      background: var(--red);
      color: var(--white);
    }

    .wall-tile h3 {
      margin: 0 0 7px;
      font-size: 23px;
      line-height: 1.18;
      font-weight: 950;
    }

    .wall-tile p {
      margin: 0;
      max-width: 420px;
      font-size: 14px;
      color: rgba(255, 255, 255, .78);
    }

    .wall-tile.light p {
      color: rgba(23, 23, 23, .68);
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: .9fr 1.2fr .9fr;
      gap: 16px;
      align-items: stretch;
    }

    .tier-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow-soft);
      position: relative;
      transition: var(--ease);
    }

    .tier-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 59, 47, .48);
    }

    .tier-card.featured {
      background: var(--ink);
      color: var(--white);
      border: 3px solid var(--yellow);
      transform: translateY(-8px);
    }

    .tier-card.featured:hover {
      transform: translateY(-11px);
    }

    .tier-card h3 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 950;
    }

    .tier-card p {
      color: var(--muted);
      margin: 0 0 18px;
      font-size: 15px;
    }

    .tier-card.featured p {
      color: rgba(255, 255, 255, .72);
    }

    .tier-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .tier-list li {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--ink-2);
    }

    .tier-card.featured .tier-list li {
      color: rgba(255, 255, 255, .84);
    }

    .tier-list i {
      color: var(--red);
      margin-top: 5px;
    }

    .tier-card.featured .tier-list i {
      color: var(--yellow);
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.5fr .8fr;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .news-item {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border-bottom: 1px solid var(--line);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-date {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 9px;
      text-align: center;
      font-weight: 950;
    }

    .news-date span {
      display: block;
      color: var(--red);
      font-size: 21px;
      line-height: 1.05;
    }

    .news-date small {
      color: var(--muted);
      font-size: 12px;
    }

    .news-text a {
      display: inline-block;
      font-size: 18px;
      font-weight: 950;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .news-text p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-state {
      color: var(--ink);
      background: var(--yellow);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .recommend-panel {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius);
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: var(--shadow-soft);
      position: sticky;
      top: 102px;
    }

    .recommend-panel h3 {
      margin: 0 0 12px;
      font-size: 24px;
      font-weight: 950;
    }

    .mini-links {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .mini-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: var(--white);
      font-weight: 850;
    }

    .mini-link:hover {
      background: rgba(255, 216, 77, .14);
      color: var(--yellow);
      border-color: rgba(255, 216, 77, .42);
    }

    .progress-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: stretch;
    }

    .progress-card,
    .timeline-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .progress-bar {
      height: 12px;
      border-radius: 999px;
      background: var(--gray);
      overflow: hidden;
      margin: 18px 0 16px;
    }

    .progress-bar span {
      display: block;
      width: 76%;
      height: 100%;
      background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
    }

    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--ink-2);
      font-weight: 750;
    }

    .check-list i {
      color: var(--red);
      margin-top: 5px;
    }

    .timeline {
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .timeline-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .timeline-time {
      font-weight: 950;
      color: var(--red);
    }

    .timeline-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 18px);
      pointer-events: none;
    }

    .cta-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .cta-grid h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.16;
      font-weight: 950;
    }

    .cta-grid p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .84);
      max-width: 660px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .cta-note {
      background: rgba(16, 16, 16, .92);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .cta-note strong {
      display: block;
      color: var(--yellow);
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .cta-note span {
      display: block;
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
    }

    .accordion {
      background: transparent;
      border: 0;
    }

    .accordion-item {
      margin-bottom: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      border: 0;
      color: var(--ink);
      font-weight: 950;
      font-size: 17px;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--paper-2);
      color: var(--red);
    }

    .accordion-title::before {
      right: 18px;
      margin-top: -10px;
      font-weight: 900;
      color: var(--red);
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      padding: 18px;
      line-height: 1.8;
    }

    .site-footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, .78);
      padding: 46px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 28px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      color: var(--white);
      font-size: 22px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer-grid p {
      margin: 0;
      max-width: 520px;
      color: rgba(255, 255, 255, .68);
    }

    .footer-title {
      color: var(--yellow);
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .72);
    }

    .footer-links a:hover {
      color: var(--yellow);
    }

    .copyright {
      margin-top: 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, .52);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 1200px) {
      .brand-mark {
        min-width: auto;
      }

      .hero-grid,
      .cta-grid,
      .progress-grid,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .recommend-panel {
        position: static;
      }

      .comparison-grid {
        grid-template-columns: 1fr;
      }

      .tier-card.featured {
        transform: none;
      }

      .tier-card.featured:hover {
        transform: translateY(-3px);
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(calc(100% - 28px), var(--container));
      }

      .dock-header {
        top: 0;
        padding-top: 8px;
      }

      .dock-nav {
        border-radius: 20px;
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
      }

      .brand-mark {
        justify-content: center;
        white-space: normal;
        text-align: center;
      }

      .nav-links {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 2px;
      }

      .nav-links a {
        flex: 0 0 auto;
      }

      .nav-actions {
        justify-content: center;
      }

      .hero-band {
        padding-top: 34px;
      }

      .hero-copy {
        padding: 34px 22px 28px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .plan-stack {
        padding: 20px;
      }

      .choice-card {
        grid-template-columns: 1fr;
      }

      .choice-side {
        text-align: left;
      }

      .countdown-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .wall-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(170px, auto);
      }

      .wall-tile.large {
        grid-row: span 1;
      }

      .section {
        padding: 54px 0;
      }

      .section-head {
        display: block;
      }

      .section-title {
        font-size: 28px;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .news-date {
        width: 120px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .btn {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
      }

      .nav-actions .btn {
        width: auto;
      }

      h1 {
        font-size: 30px;
      }

      .hero-copy p,
      .section-desc {
        font-size: 15px;
      }

      .cta-grid h2 {
        font-size: 28px;
      }

      .time-cell {
        min-width: 58px;
      }
    }

/* roulang page: category2 */
:root{
      --ink:#151515;
      --ink-2:#242424;
      --muted:#686868;
      --weak:#8b8b8b;
      --paper:#f6f3eb;
      --paper-2:#fffaf0;
      --white:#ffffff;
      --line:rgba(21,21,21,.12);
      --line-strong:rgba(21,21,21,.22);
      --red:#ff3d1f;
      --orange:#ff7a18;
      --cyan:#00e0d4;
      --yellow:#ffe156;
      --gray:#d9d4c7;
      --dark:#101010;
      --radius:8px;
      --radius-sm:6px;
      --shadow:0 18px 50px rgba(0,0,0,.10);
      --shadow-soft:0 10px 26px rgba(0,0,0,.08);
      --container:1180px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        linear-gradient(90deg,rgba(21,21,21,.035) 1px,transparent 1px),
        linear-gradient(180deg,rgba(21,21,21,.025) 1px,transparent 1px),
        var(--paper);
      background-size:36px 36px;
      line-height:1.72;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:inherit}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    :focus-visible{outline:3px solid rgba(0,224,212,.55);outline-offset:3px}
    .site-container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .band{padding:72px 0}
    .band-tight{padding:48px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:var(--white);
      color:var(--ink);
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
      line-height:1;
    }
    .section-title{
      margin:16px 0 12px;
      font-size:34px;
      line-height:1.16;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-desc{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:16px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:var(--radius-sm);
      border:1px solid transparent;
      font-size:14px;
      font-weight:900;
      line-height:1;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--red);
      color:var(--white);
      box-shadow:0 10px 22px rgba(255,61,31,.24);
    }
    .btn-primary:hover{
      background:#e93218;
      color:var(--white);
      transform:translateY(-1px);
      border-color:rgba(255,255,255,.25);
      box-shadow:0 16px 30px rgba(255,61,31,.30);
    }
    .btn-dark{
      background:var(--dark);
      color:var(--white);
      border-color:var(--dark);
    }
    .btn-dark:hover{background:#000;color:var(--white);transform:translateY(-1px)}
    .btn-light{
      background:var(--white);
      color:var(--ink);
      border-color:var(--line-strong);
    }
    .btn-light:hover{border-color:var(--ink);transform:translateY(-1px);box-shadow:var(--shadow-soft)}

    .dock-header{
      position:sticky;
      top:0;
      z-index:80;
      padding:14px 18px;
      pointer-events:none;
    }
    .dock-nav{
      width:min(1180px,100%);
      margin:0 auto;
      min-height:66px;
      padding:10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      border:1px solid rgba(21,21,21,.14);
      border-radius:999px;
      background:rgba(255,250,240,.96);
      box-shadow:0 16px 46px rgba(0,0,0,.12);
      pointer-events:auto;
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:260px;
      padding-left:8px;
      font-weight:950;
      letter-spacing:-.03em;
      color:var(--ink);
      line-height:1.2;
    }
    .brand-mark:hover{color:var(--red)}
    .brand-icon{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:var(--dark);
      background:var(--yellow);
      border:1px solid rgba(21,21,21,.22);
      box-shadow:inset 0 -3px 0 rgba(0,0,0,.12);
      flex:0 0 auto;
    }
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      padding:4px;
      border-radius:999px;
      background:rgba(21,21,21,.06);
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:850;
      color:#333;
      border:1px solid transparent;
    }
    .nav-links a:hover{
      background:rgba(255,255,255,.75);
      border-color:rgba(21,21,21,.10);
    }
    .nav-links a.active{
      background:var(--dark);
      color:var(--white);
      box-shadow:0 8px 18px rgba(0,0,0,.16);
    }
    .nav-actions{display:flex;align-items:center;gap:8px}
    .search-chip{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      border:1px solid var(--line);
      border-radius:50%;
      background:var(--white);
      color:var(--ink);
    }
    .search-chip:hover{border-color:var(--ink);transform:translateY(-1px)}

    .flash-bar{
      background:var(--dark);
      color:var(--white);
      border-bottom:4px solid var(--red);
      margin-top:-94px;
      padding-top:108px;
    }
    .flash-inner{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      font-size:13px;
      font-weight:850;
      letter-spacing:.02em;
    }
    .flash-status{display:flex;align-items:center;gap:10px;white-space:nowrap}
    .flash-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 0 5px rgba(0,224,212,.18);
    }
    .flash-note{color:#d8d8d8;text-align:right}

    .hero{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 78% 18%,rgba(255,225,86,.38),transparent 26%),
        linear-gradient(135deg,var(--paper-2),#eee6d8);
      border-bottom:1px solid var(--line);
      padding:64px 0 54px;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,transparent 0 62%,rgba(255,61,31,.09) 62% 76%,transparent 76%),
        linear-gradient(45deg,rgba(0,0,0,.04) 25%,transparent 25% 50%,rgba(0,0,0,.04) 50% 75%,transparent 75%);
      background-size:auto,18px 18px;
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(360px,.78fr);
      gap:38px;
      align-items:stretch;
    }
    .creator-card{
      background:var(--dark);
      color:var(--white);
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.16);
      overflow:hidden;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
      min-height:430px;
    }
    .creator-cover{
      height:150px;
      background:
        linear-gradient(120deg,rgba(255,61,31,.92),rgba(255,122,24,.86) 45%,rgba(0,224,212,.75)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.16) 0 2px,transparent 2px 12px);
      position:relative;
    }
    .creator-cover:after{
      content:"分类快速浏览";
      position:absolute;
      right:18px;
      bottom:14px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(0,0,0,.70);
      color:var(--white);
      font-size:13px;
      font-weight:900;
    }
    .creator-body{
      padding:0 24px 24px;
      margin-top:-34px;
      position:relative;
    }
    .avatar-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .avatar{
      width:78px;
      height:78px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--yellow);
      color:var(--dark);
      border:5px solid var(--dark);
      font-size:30px;
      box-shadow:0 12px 24px rgba(0,0,0,.25);
    }
    .follow-btn{
      min-height:38px;
      padding:9px 13px;
      border-radius:999px;
      background:var(--white);
      color:var(--dark);
      border:1px solid rgba(255,255,255,.25);
      font-size:13px;
      font-weight:950;
    }
    .follow-btn:hover{background:var(--yellow);color:var(--dark);transform:translateY(-1px)}
    .profile-name{
      font-size:24px;
      font-weight:950;
      letter-spacing:-.03em;
      margin:0 0 6px;
    }
    .profile-desc{
      color:#d4d4d4;
      margin:0 0 18px;
      font-size:14px;
    }
    .badge-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:auto;
    }
    .data-badge{
      border:1px solid rgba(255,255,255,.16);
      border-radius:var(--radius-sm);
      padding:13px 10px;
      background:rgba(255,255,255,.06);
    }
    .data-badge strong{
      display:block;
      font-size:22px;
      line-height:1;
      color:var(--cyan);
      margin-bottom:7px;
    }
    .data-badge span{
      color:#cfcfcf;
      font-size:12px;
      font-weight:800;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:24px 0;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
    }
    .hero-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:var(--white);
      font-size:13px;
      font-weight:900;
    }
    h1{
      margin:0;
      font-size:58px;
      line-height:1.02;
      letter-spacing:-.065em;
      font-weight:1000;
      max-width:820px;
    }
    .hero-summary{
      margin:20px 0 26px;
      max-width:720px;
      color:#4c4c4c;
      font-size:18px;
      line-height:1.78;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
    }

    .filter-band{
      background:var(--red);
      color:var(--white);
      padding:22px 0;
      border-top:1px solid rgba(255,255,255,.18);
      border-bottom:1px solid rgba(0,0,0,.16);
    }
    .filter-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .filter-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .tag-wall{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      flex-wrap:wrap;
    }
    .wall-tag{
      border:1px solid rgba(255,255,255,.42);
      background:rgba(255,255,255,.12);
      color:var(--white);
      border-radius:999px;
      padding:8px 11px;
      font-size:13px;
      font-weight:900;
      line-height:1;
    }
    .wall-tag:hover{background:var(--white);color:var(--red)}

    .overview{
      background:var(--paper);
    }
    .split-layout{
      display:grid;
      grid-template-columns:330px minmax(0,1fr);
      gap:28px;
      align-items:start;
    }
    .sticky-panel{
      position:sticky;
      top:104px;
      background:var(--white);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .sticky-head{
      padding:18px;
      background:var(--dark);
      color:var(--white);
      border-bottom:4px solid var(--yellow);
    }
    .sticky-head strong{
      display:block;
      font-size:18px;
      line-height:1.2;
      margin-bottom:6px;
      letter-spacing:-.03em;
    }
    .sticky-head span{color:#d8d8d8;font-size:13px}
    .quick-list{padding:12px}
    .quick-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:13px 12px;
      border-radius:var(--radius-sm);
      border:1px solid transparent;
      font-weight:900;
      font-size:14px;
    }
    .quick-item:hover{
      background:#fff3dd;
      border-color:rgba(255,122,24,.28);
      transform:translateX(2px);
    }
    .quick-item i{color:var(--red)}
    .notice-block{
      margin:0 12px 12px;
      padding:14px;
      border-radius:var(--radius-sm);
      border:1px dashed rgba(21,21,21,.25);
      background:#fbf5e9;
      color:#555;
      font-size:13px;
      line-height:1.65;
    }

    .module-stack{
      display:grid;
      gap:18px;
    }
    .wide-module{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:0;
      background:var(--white);
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .module-copy{
      padding:26px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .module-copy h2,
    .module-copy h3{
      margin:0 0 10px;
      font-size:28px;
      line-height:1.16;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .module-copy p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
    }
    .module-visual{
      min-height:242px;
      padding:22px;
      background:
        linear-gradient(135deg,rgba(21,21,21,.92),rgba(21,21,21,.78)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.08) 0 2px,transparent 2px 12px);
      color:var(--white);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .status-line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.14);
      font-size:14px;
      font-weight:850;
    }
    .status-line:last-child{border-bottom:0}
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 8px;
      border-radius:999px;
      color:var(--dark);
      background:var(--cyan);
      font-size:12px;
      font-weight:950;
      white-space:nowrap;
    }
    .module-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .module-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#4c4c4c;
      font-size:14px;
    }
    .module-list i{
      margin-top:5px;
      color:var(--red);
    }

    .check-band{
      background:var(--dark);
      color:var(--white);
      border-top:1px solid rgba(255,255,255,.10);
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .check-head{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:26px;
      align-items:end;
      margin-bottom:26px;
    }
    .check-head .section-title{color:var(--white)}
    .check-head .section-desc{color:#cfcfcf}
    .check-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .check-card{
      min-height:190px;
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .check-card:after{
      content:"";
      position:absolute;
      width:72px;
      height:72px;
      right:-22px;
      top:-20px;
      border-radius:50%;
      background:rgba(255,61,31,.20);
    }
    .check-card:hover{
      transform:translateY(-3px);
      border-color:rgba(0,224,212,.55);
      background:rgba(255,255,255,.09);
    }
    .check-num{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--yellow);
      color:var(--dark);
      font-weight:950;
      margin-bottom:28px;
    }
    .check-card h3{
      margin:0 0 8px;
      font-size:18px;
      font-weight:950;
      line-height:1.25;
    }
    .check-card p{
      margin:0;
      color:#d4d4d4;
      font-size:14px;
      line-height:1.65;
    }

    .entry-zone{
      background:var(--paper-2);
    }
    .entry-layout{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      margin-top:28px;
    }
    .entry-card{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:var(--white);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,61,31,.32);
      box-shadow:0 18px 42px rgba(0,0,0,.12);
    }
    .entry-top{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
      padding:20px;
      border-bottom:1px solid var(--line);
    }
    .entry-title{
      margin:0 0 6px;
      font-size:21px;
      line-height:1.2;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .entry-desc{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .entry-mark{
      flex:0 0 auto;
      padding:7px 9px;
      border-radius:999px;
      background:#fff0e9;
      color:var(--red);
      font-size:12px;
      font-weight:950;
      border:1px solid rgba(255,61,31,.20);
    }
    .entry-body{
      padding:18px 20px 20px;
    }
    .entry-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:11px 0;
      border-bottom:1px solid rgba(21,21,21,.08);
      font-size:14px;
      font-weight:850;
    }
    .entry-row:last-child{border-bottom:0}
    .entry-row span:last-child{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      text-align:right;
    }

    .news-strip{
      background:var(--paper);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .strip-wrap{
      display:grid;
      grid-template-columns:360px 1fr;
      gap:24px;
      align-items:stretch;
    }
    .strip-card{
      background:var(--red);
      color:var(--white);
      border-radius:var(--radius);
      padding:26px;
      min-height:260px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:var(--shadow-soft);
    }
    .strip-card h2{
      margin:0;
      font-size:32px;
      line-height:1.08;
      letter-spacing:-.05em;
      font-weight:1000;
    }
    .strip-card p{margin:14px 0 0;color:#ffe4dd}
    .timeline{
      display:grid;
      gap:12px;
    }
    .time-item{
      display:grid;
      grid-template-columns:96px 1fr auto;
      gap:14px;
      align-items:center;
      background:var(--white);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:15px 16px;
      transition:var(--ease);
    }
    .time-item:hover{
      transform:translateX(3px);
      border-color:rgba(21,21,21,.28);
      box-shadow:var(--shadow-soft);
    }
    .time{
      font-weight:950;
      color:var(--red);
      letter-spacing:-.02em;
    }
    .time-title{
      font-weight:950;
      line-height:1.35;
    }
    .time-desc{
      color:var(--muted);
      font-size:13px;
      margin-top:2px;
    }
    .time-state{
      padding:6px 9px;
      border-radius:999px;
      background:#edf8f6;
      color:#007d75;
      font-size:12px;
      font-weight:950;
      white-space:nowrap;
    }

    .cta-band{
      padding:68px 0;
      background:
        linear-gradient(90deg,var(--yellow),#ffd03a 55%,var(--orange));
      color:var(--dark);
      position:relative;
      overflow:hidden;
    }
    .cta-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(-45deg,rgba(0,0,0,.07) 0 2px,transparent 2px 16px);
      opacity:.55;
    }
    .cta-panel{
      position:relative;
      display:grid;
      grid-template-columns:1fr 330px;
      gap:26px;
      align-items:center;
    }
    .cta-panel h2{
      margin:0 0 10px;
      font-size:42px;
      line-height:1.08;
      letter-spacing:-.055em;
      font-weight:1000;
    }
    .cta-panel p{
      margin:0;
      max-width:720px;
      color:#3d2f00;
      font-size:16px;
      font-weight:700;
    }
    .cta-actions{
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:stretch;
    }
    .cta-mini{
      padding:12px 13px;
      border:1px solid rgba(21,21,21,.22);
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.45);
      font-size:13px;
      font-weight:900;
      text-align:center;
    }

    .faq-band{
      background:var(--paper-2);
    }
    .faq-layout{
      display:grid;
      grid-template-columns:360px 1fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:10px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:var(--white);
      overflow:hidden;
      box-shadow:0 6px 18px rgba(0,0,0,.04);
    }
    .accordion-title{
      border:0;
      color:var(--ink);
      font-size:16px;
      font-weight:950;
      line-height:1.4;
      padding:18px 48px 18px 18px;
      background:var(--white);
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:#fff4dc;
      color:var(--ink);
    }
    .accordion-title:before{
      right:18px;
      margin-top:-10px;
      font-size:22px;
      color:var(--red);
    }
    .accordion-content{
      border:0;
      border-top:1px solid var(--line);
      color:var(--muted);
      padding:16px 18px 18px;
      font-size:15px;
      line-height:1.75;
      background:#fffdf8;
    }

    .site-footer{
      background:var(--dark);
      color:var(--white);
      padding:54px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.14);
    }
    .footer-brand{
      font-size:22px;
      line-height:1.25;
      font-weight:950;
      letter-spacing:-.04em;
      margin-bottom:10px;
    }
    .site-footer p{
      margin:0;
      color:#c8c8c8;
      max-width:520px;
      font-size:14px;
    }
    .footer-title{
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:#c8c8c8;
      font-size:14px;
    }
    .footer-links a:hover{color:var(--yellow);transform:translateX(2px)}
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:#a8a8a8;
      font-size:13px;
    }

    @media (max-width:1200px){
      .dock-nav{border-radius:26px}
      .brand-mark{min-width:auto;max-width:320px}
      .nav-links a{padding:8px 11px}
      h1{font-size:50px}
      .hero-grid{grid-template-columns:1fr .86fr}
      .check-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:900px){
      .dock-header{padding:10px}
      .dock-nav{
        align-items:flex-start;
        flex-wrap:wrap;
        border-radius:22px;
      }
      .brand-mark{width:100%;justify-content:flex-start}
      .nav-links{
        order:3;
        width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .nav-actions{margin-left:auto}
      .nav-actions .btn{display:none}
      .flash-bar{margin-top:-146px;padding-top:160px}
      .flash-inner{align-items:flex-start;flex-direction:column;gap:6px;padding:7px 0}
      .flash-note{text-align:left}
      .hero-grid,
      .split-layout,
      .check-head,
      .strip-wrap,
      .faq-layout,
      .cta-panel{
        grid-template-columns:1fr;
      }
      .creator-card{min-height:auto;order:2}
      .hero-copy{order:1}
      h1{font-size:43px}
      .wide-module{grid-template-columns:1fr}
      .module-visual{min-height:auto}
      .sticky-panel{position:relative;top:auto}
      .filter-wrap{align-items:flex-start;flex-direction:column}
      .tag-wall{justify-content:flex-start}
      .entry-layout{grid-template-columns:1fr}
      .cta-actions{align-items:flex-start}
      .cta-actions .btn{width:auto}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column;align-items:flex-start}
    }
    @media (max-width:560px){
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .band{padding:54px 0}
      .band-tight{padding:38px 0}
      .dock-nav{gap:10px;padding:8px}
      .brand-mark{font-size:14px}
      .brand-icon{width:34px;height:34px}
      .search-chip{width:40px;height:40px}
      .nav-links a{font-size:13px;min-height:36px}
      h1{font-size:34px;letter-spacing:-.05em}
      .hero{padding:42px 0 42px}
      .hero-summary{font-size:16px}
      .hero-actions{align-items:stretch}
      .hero-actions .btn{width:100%}
      .badge-grid{grid-template-columns:1fr}
      .section-title{font-size:28px}
      .check-grid{grid-template-columns:1fr}
      .module-copy{padding:20px}
      .module-copy h2,.module-copy h3{font-size:24px}
      .time-item{grid-template-columns:1fr;gap:5px}
      .time-state{justify-self:start}
      .cta-panel h2{font-size:32px}
      .entry-top{flex-direction:column}
    }

/* roulang page: category1 */
:root{
      --ink:#161514;
      --ink-2:#24211f;
      --paper:#f7f2e9;
      --paper-2:#fffaf1;
      --muted:#756d62;
      --line:#ded4c4;
      --red:#ff3b1f;
      --orange:#ff7a1a;
      --cyan:#16f4dc;
      --yellow:#ffe04d;
      --gray:#c7c0b7;
      --white:#ffffff;
      --radius:8px;
      --radius-sm:6px;
      --shadow:0 14px 34px rgba(22,21,20,.12);
      --shadow-soft:0 8px 22px rgba(22,21,20,.08);
      --container:1180px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        linear-gradient(90deg, rgba(22,21,20,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22,21,20,.025) 1px, transparent 1px),
        var(--paper);
      background-size:28px 28px;
      line-height:1.72;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    input:focus,a:focus,button:focus{
      outline:3px solid rgba(22,244,220,.45);
      outline-offset:3px;
    }

    .site-container{
      width:min(calc(100% - 36px), var(--container));
      margin:0 auto;
    }
    .section{
      padding:72px 0;
      position:relative;
    }
    .section-tight{padding:48px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border:1px solid var(--line);
      background:var(--paper-2);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:var(--ink-2);
      letter-spacing:.02em;
    }
    .eyebrow i{color:var(--red)}
    .section-title{
      margin:14px 0 10px;
      font-size:clamp(30px,4vw,52px);
      line-height:1.08;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-lead{
      color:var(--muted);
      max-width:760px;
      font-size:17px;
      margin:0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:42px;
      padding:11px 16px;
      border-radius:var(--radius-sm);
      font-weight:900;
      border:1px solid transparent;
      cursor:pointer;
      transition:var(--ease);
      line-height:1.1;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--red);
      color:var(--white);
      box-shadow:0 8px 0 rgba(22,21,20,.22);
    }
    .btn-primary:hover{
      background:#e62d14;
      color:var(--white);
      transform:translateY(-2px);
      box-shadow:0 11px 0 rgba(22,21,20,.2);
    }
    .btn-dark{
      background:var(--ink);
      color:var(--white);
      border-color:var(--ink);
    }
    .btn-dark:hover{background:#000;color:var(--yellow);transform:translateY(-1px)}
    .btn-ghost{
      background:transparent;
      border-color:rgba(22,21,20,.2);
      color:var(--ink);
    }
    .btn-ghost:hover{border-color:var(--ink);background:var(--white);transform:translateY(-1px)}

    .dock-header{
      position:sticky;
      top:14px;
      z-index:80;
      padding:14px 18px 0;
      pointer-events:none;
    }
    .dock-nav{
      width:min(100%,1180px);
      margin:0 auto;
      pointer-events:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:10px;
      border:1px solid rgba(22,21,20,.15);
      border-radius:999px;
      background:rgba(255,250,241,.96);
      box-shadow:var(--shadow-soft);
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      padding:6px 10px 6px 8px;
      font-weight:950;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .brand-mark:hover{color:var(--red)}
    .brand-icon{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--ink);
      color:var(--yellow);
      flex:0 0 auto;
    }
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      padding:3px;
      border-radius:999px;
      background:#efe6d8;
      flex:0 1 auto;
    }
    .nav-links a{
      padding:9px 14px;
      border-radius:999px;
      color:#4f473e;
      font-size:14px;
      font-weight:850;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:var(--paper-2);
      color:var(--ink);
    }
    .nav-links a.active{
      background:var(--ink);
      color:var(--white);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:8px;
      flex:0 0 auto;
    }
    .search-chip{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--white);
      border:1px solid var(--line);
      color:var(--ink);
    }
    .search-chip:hover{border-color:var(--red);color:var(--red);transform:translateY(-1px)}

    .status-strip{
      margin-top:26px;
      background:var(--ink);
      color:var(--white);
      border-top:4px solid var(--red);
      border-bottom:4px solid var(--yellow);
    }
    .strip-inner{
      min-height:44px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:900;
      font-size:14px;
    }
    .strip-inner span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .pulse-dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:var(--cyan);
      box-shadow:0 0 0 6px rgba(22,244,220,.18);
    }

    .category-hero{
      padding:70px 0 42px;
      background:
        radial-gradient(circle at 82% 22%, rgba(255,59,31,.16), transparent 30%),
        linear-gradient(135deg, var(--paper-2), var(--paper));
      border-bottom:1px solid var(--line);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);
      gap:34px;
      align-items:stretch;
    }
    h1{
      margin:16px 0 16px;
      font-size:clamp(36px,5.6vw,68px);
      line-height:.98;
      letter-spacing:-.06em;
      font-weight:1000;
    }
    .hero-copy{
      color:#554d44;
      font-size:18px;
      max-width:720px;
      margin:0 0 24px;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      margin:0 0 24px;
      padding:0;
      list-style:none;
    }
    .hero-points li{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 13px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
      border-radius:var(--radius-sm);
      font-weight:850;
    }
    .hero-points i{color:var(--red)}
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap}
    .trust-bar{
      margin-top:22px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .trust-bar span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      background:var(--ink);
      color:var(--white);
      padding:7px 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:850;
    }
    .hero-panel{
      background:var(--ink);
      color:var(--white);
      border-radius:var(--radius);
      padding:18px;
      border:1px solid rgba(255,255,255,.14);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:auto -70px -90px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(255,224,77,.18);
    }
    .panel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.15);
      position:relative;
      z-index:1;
    }
    .panel-head strong{font-size:19px}
    .live-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--red);
      color:var(--white);
      font-size:13px;
      font-weight:950;
    }
    .update-stack{
      display:grid;
      gap:11px;
      margin-top:16px;
      position:relative;
      z-index:1;
    }
    .update-item{
      display:grid;
      grid-template-columns:48px 1fr auto;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:var(--radius-sm);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .time-box{
      display:grid;
      place-items:center;
      min-height:40px;
      border-radius:var(--radius-sm);
      background:var(--yellow);
      color:var(--ink);
      font-weight:1000;
      line-height:1;
    }
    .update-item b{display:block;line-height:1.25}
    .update-item small{color:#d8d1c8}
    .state-tag{
      padding:5px 8px;
      border-radius:999px;
      background:rgba(22,244,220,.16);
      color:var(--cyan);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .filter-band{
      background:var(--paper-2);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:22px 0;
    }
    .filter-wrap{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
    }
    .capsules{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .capsule{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:var(--white);
      font-weight:850;
      color:#51483f;
      cursor:pointer;
      transition:var(--ease);
    }
    .capsule:hover,.capsule.active{
      background:var(--ink);
      color:var(--white);
      border-color:var(--ink);
      transform:translateY(-1px);
    }
    .search-form{
      display:flex;
      align-items:center;
      min-width:280px;
      border:1px solid var(--line);
      background:var(--white);
      border-radius:999px;
      overflow:hidden;
    }
    .search-form i{padding-left:14px;color:var(--muted)}
    .search-form input{
      border:0;
      box-shadow:none;
      margin:0;
      height:42px;
      background:transparent;
    }
    .search-form input:focus{box-shadow:none;outline:0}

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 310px;
      gap:24px;
      align-items:start;
    }
    .list-toolbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
      padding:14px;
      background:var(--ink);
      color:var(--white);
      border-radius:var(--radius);
    }
    .sort-tabs{display:flex;gap:8px;flex-wrap:wrap}
    .sort-tabs a{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      color:#e8dfd3;
      font-size:13px;
      font-weight:850;
    }
    .sort-tabs a.active,.sort-tabs a:hover{
      color:var(--ink);
      background:var(--yellow);
      border-color:var(--yellow);
    }

    .entry-list{
      display:grid;
      gap:12px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:72px minmax(0,1fr) 170px;
      gap:16px;
      align-items:center;
      padding:14px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(255,250,241,.92);
      box-shadow:0 1px 0 rgba(22,21,20,.04);
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(255,59,31,.45);
      box-shadow:var(--shadow-soft);
    }
    .rank{
      min-height:58px;
      border-radius:var(--radius-sm);
      background:var(--ink);
      color:var(--white);
      display:grid;
      place-items:center;
      font-size:22px;
      font-weight:1000;
      position:relative;
    }
    .rank.hot{background:var(--red);color:var(--white)}
    .rank:after{
      content:"入口";
      position:absolute;
      right:5px;
      bottom:4px;
      font-size:10px;
      opacity:.72;
    }
    .entry-main h2{
      margin:0 0 5px;
      font-size:20px;
      line-height:1.28;
      letter-spacing:-.02em;
      font-weight:950;
    }
    .entry-main p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .entry-meta{
      display:grid;
      justify-items:end;
      gap:7px;
      text-align:right;
    }
    .meta-line{
      color:#665e54;
      font-size:13px;
      font-weight:850;
    }
    .mini-tags{
      display:flex;
      gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .mini-tags span{
      padding:4px 7px;
      border-radius:999px;
      background:#efe6d8;
      color:#4e463e;
      font-size:12px;
      font-weight:850;
    }
    .mini-tags span.ok{background:rgba(22,244,220,.18);color:#087969}
    .mini-tags span.warn{background:rgba(255,224,77,.32);color:#7b5600}

    .side-panel{
      position:sticky;
      top:104px;
      display:grid;
      gap:14px;
    }
    .side-card{
      padding:16px;
      border-radius:var(--radius);
      background:var(--white);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .side-card.dark{
      background:var(--ink);
      color:var(--white);
      border-color:var(--ink);
    }
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
      font-weight:950;
      font-size:17px;
    }
    .side-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .side-list li{
      display:flex;
      align-items:flex-start;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .side-card.dark .side-list li{color:#e3d8ca}
    .side-list i{margin-top:5px;color:var(--red)}
    .quick-links{
      display:grid;
      gap:8px;
    }
    .quick-links a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:10px 11px;
      border-radius:var(--radius-sm);
      background:#f3eadb;
      font-weight:850;
    }
    .quick-links a:hover{background:var(--yellow);transform:translateX(2px)}

    .signal-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
      margin-top:22px;
    }
    .signal{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:var(--white);
    }
    .signal b{
      display:block;
      font-size:26px;
      line-height:1;
      margin-bottom:8px;
      letter-spacing:-.04em;
    }
    .signal span{font-size:13px;color:var(--muted);font-weight:850}
    .signal.accent{background:var(--yellow);border-color:#e9c800}
    .signal.reverse{background:var(--ink);color:var(--white);border-color:var(--ink)}
    .signal.reverse span{color:#d7cec2}

    .steps-band{
      background:var(--ink);
      color:var(--white);
      border-top:6px solid var(--red);
      border-bottom:6px solid var(--yellow);
    }
    .steps-grid{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:28px;
      align-items:start;
    }
    .steps-band .section-lead{color:#e2d8c9}
    .step-list{
      display:grid;
      gap:12px;
      counter-reset:step;
    }
    .step-item{
      counter-increment:step;
      display:grid;
      grid-template-columns:54px 1fr;
      gap:14px;
      padding:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      border-radius:var(--radius);
    }
    .step-num{
      width:48px;height:48px;border-radius:50%;
      background:var(--cyan);
      color:var(--ink);
      display:grid;place-items:center;
      font-weight:1000;
    }
    .step-num:before{content:counter(step)}
    .step-item h3{margin:0 0 4px;font-size:18px;color:var(--white)}
    .step-item p{margin:0;color:#dacfc1;font-size:14px}

    .faq-wrap{
      max-width:880px;
      margin:26px auto 0;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:10px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      background:var(--paper-2);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-weight:950;
      font-size:17px;
      padding:18px 44px 18px 18px;
      background:var(--paper-2);
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#efe6d8;
    }
    .accordion-content{
      border:0!important;
      border-top:1px solid var(--line)!important;
      background:var(--white);
      color:var(--muted);
      padding:18px;
    }

    .cta-band{
      padding:52px 0;
      background:
        linear-gradient(90deg, var(--red), var(--orange));
      color:var(--white);
    }
    .cta-box{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:24px;
      align-items:center;
    }
    .cta-box h2{
      margin:0 0 8px;
      font-size:clamp(28px,4vw,48px);
      line-height:1.06;
      font-weight:1000;
      letter-spacing:-.045em;
    }
    .cta-box p{
      margin:0;
      max-width:720px;
      color:rgba(255,255,255,.88);
      font-size:17px;
    }
    .cta-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .cta-band .btn-dark{
      background:var(--ink);
      color:var(--yellow);
      border-color:var(--ink);
    }
    .cta-band .btn-ghost{
      color:var(--white);
      border-color:rgba(255,255,255,.45);
      background:rgba(255,255,255,.08);
    }
    .cta-band .btn-ghost:hover{background:var(--white);color:var(--ink)}

    .site-footer{
      padding:54px 0 26px;
      background:#11100f;
      color:var(--white);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .8fr .8fr;
      gap:28px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      font-size:22px;
      font-weight:1000;
      letter-spacing:-.03em;
      margin-bottom:10px;
    }
    .site-footer p{
      margin:0;
      color:#cfc5b8;
      max-width:520px;
    }
    .footer-title{
      font-weight:950;
      margin-bottom:12px;
      color:var(--yellow);
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:#d8cec0;
      font-weight:760;
    }
    .footer-links a:hover{color:var(--cyan);transform:translateX(2px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:20px;
      color:#afa699;
      font-size:13px;
    }

    @media (max-width:1200px){
      .dock-nav{border-radius:24px}
      .brand-mark span:last-child{
        max-width:260px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }
      .hero-grid,.content-layout,.steps-grid{grid-template-columns:1fr}
      .side-panel{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:768px){
      .dock-header{top:8px;padding:8px 10px 0}
      .dock-nav{
        align-items:flex-start;
        border-radius:20px;
        gap:10px;
        flex-wrap:wrap;
      }
      .brand-mark{width:100%}
      .nav-links{
        order:3;
        width:100%;
        overflow-x:auto;
        justify-content:flex-start;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .nav-actions{margin-left:auto}
      .nav-actions .btn{display:none}
      .strip-inner{align-items:flex-start;flex-direction:column;padding:10px 0}
      .category-hero{padding-top:44px}
      .hero-points,.filter-wrap,.signal-grid,.side-panel,.footer-grid,.cta-box{
        grid-template-columns:1fr;
      }
      .search-form{min-width:0;width:100%}
      .list-toolbar{align-items:flex-start;flex-direction:column}
      .entry-card{
        grid-template-columns:56px minmax(0,1fr);
      }
      .entry-meta{
        grid-column:1 / -1;
        justify-items:start;
        text-align:left;
        padding-left:68px;
      }
      .mini-tags{justify-content:flex-start}
      .cta-actions{justify-content:flex-start}
      .copyright{flex-direction:column}
    }
    @media (max-width:520px){
      .site-container{width:min(calc(100% - 24px), var(--container))}
      .section{padding:52px 0}
      h1{font-size:38px}
      .section-title{font-size:32px}
      .hero-actions,.cta-actions{display:grid}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .entry-card{gap:11px;padding:12px}
      .entry-main h2{font-size:18px}
      .entry-meta{padding-left:0}
      .brand-mark span:last-child{max-width:calc(100vw - 110px)}
    }
