/* roulang page: index */
:root{
      --bg-deep:#111014;
      --bg-deeper:#0a090d;
      --bg-card:#18121d;
      --bg-soft:#f7f2f5;
      --bg-pink:#fff1f7;
      --primary:#ff2e88;
      --primary-2:#e91e63;
      --purple:#7c3aed;
      --amber:#ffb000;
      --text:#fff7fb;
      --text-soft:#d8c9d1;
      --text-dark:#211820;
      --muted:#6f5a66;
      --border:rgba(255,255,255,.12);
      --border-dark:rgba(33,24,32,.12);
      --radius-sm:12px;
      --radius:22px;
      --radius-lg:32px;
      --shadow:0 22px 60px rgba(0,0,0,.28);
      --shadow-soft:0 18px 45px rgba(36,18,34,.13);
      --sidebar:214px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      color:var(--text);
      background:
        radial-gradient(circle at 80% 0%, rgba(255,46,136,.24), transparent 34%),
        radial-gradient(circle at 25% 18%, rgba(124,58,237,.26), transparent 30%),
        linear-gradient(135deg,#111014 0%,#18121d 48%,#100b12 100%);
      min-height:100vh;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.08;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size:34px 34px;
      z-index:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:#fff}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    input,select,textarea{
      border:1px solid rgba(255,255,255,.16);
      outline:none;
      transition:var(--ease);
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(255,46,136,.18);
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:10px;
      background:#fff;
      color:#111;
      padding:10px 14px;
      border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:10px}

    .desktop-shell{
      position:fixed;
      left:0;
      top:0;
      bottom:0;
      width:var(--sidebar);
      z-index:20;
      padding:22px 18px;
      background:
        linear-gradient(180deg, rgba(26,18,29,.98), rgba(11,9,13,.98)),
        radial-gradient(circle at top, rgba(255,46,136,.18), transparent 34%);
      border-right:1px solid rgba(255,255,255,.09);
      box-shadow:18px 0 45px rgba(0,0,0,.22);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .brand-mark{
      display:flex;
      gap:12px;
      align-items:center;
      padding:8px 6px 18px;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .brand-icon{
      width:42px;
      height:42px;
      flex:0 0 42px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 12px 30px rgba(255,46,136,.28);
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
    }
    .brand-text{
      min-width:0;
      font-weight:900;
      font-size:15px;
      line-height:1.28;
      letter-spacing:.02em;
    }
    .brand-sub{
      display:block;
      margin-top:4px;
      color:var(--text-soft);
      font-size:12px;
      font-weight:600;
    }
    .side-menu{
      margin:24px 0;
      display:grid;
      gap:10px;
    }
    .side-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:12px;
      padding:13px 14px;
      border-radius:16px;
      color:var(--text-soft);
      font-weight:750;
      border:1px solid transparent;
    }
    .side-link i{width:18px;text-align:center;color:#f2b5cf}
    .side-link:hover{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.12);
      transform:translateX(2px);
    }
    .side-link.active{
      color:#fff;
      background:linear-gradient(135deg, rgba(255,46,136,.26), rgba(124,58,237,.20));
      border-color:rgba(255,46,136,.42);
      box-shadow:0 0 0 1px rgba(255,46,136,.10),0 14px 34px rgba(255,46,136,.12);
    }
    .side-link.active:before{
      content:"";
      position:absolute;
      left:-18px;
      top:12px;
      bottom:12px;
      width:4px;
      border-radius:0 8px 8px 0;
      background:var(--primary);
      box-shadow:0 0 18px rgba(255,46,136,.8);
    }
    .side-bottom{
      border-top:1px solid rgba(255,255,255,.09);
      padding-top:16px;
    }
    .mini-warning{
      border-radius:18px;
      padding:14px;
      background:rgba(255,176,0,.10);
      border:1px solid rgba(255,176,0,.24);
      color:#ffe7a9;
      font-size:12px;
      line-height:1.55;
    }
    .side-small{
      margin-top:14px;
      color:rgba(255,255,255,.52);
      font-size:12px;
      line-height:1.5;
    }

    .mobile-topbar{
      display:none;
      position:sticky;
      top:0;
      z-index:30;
      height:64px;
      padding:10px 16px;
      background:rgba(17,16,20,.88);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.10);
      align-items:center;
      justify-content:space-between;
    }
    .mobile-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:14px;
      max-width:56vw;
      line-height:1.25;
    }
    .menu-button{
      width:42px;
      height:42px;
      border:0;
      border-radius:14px;
      color:#fff;
      background:rgba(255,255,255,.08);
      cursor:pointer;
    }
    .mobile-cta{
      padding:10px 14px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      color:#fff;
      font-size:13px;
      font-weight:800;
      box-shadow:0 10px 24px rgba(255,46,136,.22);
    }
    .off-canvas{
      background:#111014;
      color:#fff;
      padding:22px;
    }
    .off-canvas .side-link{margin-bottom:10px}

    .site-main{
      position:relative;
      z-index:1;
      margin-left:var(--sidebar);
      min-height:100vh;
    }
    .page-wrap{
      width:min(1280px, calc(100% - 48px));
      margin:0 auto;
    }
    section{
      padding:78px 0;
      position:relative;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:850;
      color:#ffd7e7;
      background:rgba(255,46,136,.14);
      border:1px solid rgba(255,46,136,.28);
      margin-bottom:16px;
    }
    .section-title{
      margin:0 0 14px;
      font-size:clamp(28px,4vw,40px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
    }
    .section-desc{
      margin:0;
      max-width:760px;
      color:var(--text-soft);
      font-size:16px;
    }
    .light-section{
      color:var(--text-dark);
      background:var(--bg-soft);
      margin:0;
      border-radius:42px 0 0 42px;
    }
    .light-section .section-title{color:var(--text-dark)}
    .light-section .section-desc{color:var(--muted)}
    .light-section .section-kicker{
      color:#a31351;
      background:#ffe1ee;
      border-color:#ffc0da;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:850;
      border:1px solid transparent;
      cursor:pointer;
      transition:var(--ease);
      line-height:1.2;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 16px 32px rgba(255,46,136,.28);
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      box-shadow:0 22px 42px rgba(255,46,136,.38);
    }
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.18);
    }
    .btn-secondary:hover{
      background:rgba(255,255,255,.11);
      border-color:rgba(255,255,255,.32);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:#a31351;
      background:#ffe1ee;
      border-color:#ffc0da;
    }
    .btn-soft:hover{
      color:#82103f;
      transform:translateY(-2px);
      box-shadow:0 14px 28px rgba(233,30,99,.16);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      line-height:1.2;
    }
    .badge-pink{background:rgba(255,46,136,.14);color:#ffc5dc;border:1px solid rgba(255,46,136,.26)}
    .badge-amber{background:rgba(255,176,0,.16);color:#ffe2a0;border:1px solid rgba(255,176,0,.3)}
    .badge-dark{background:#20151e;color:#fff;border:1px solid rgba(255,255,255,.12)}
    .badge-light{background:#fff;color:#a31351;border:1px solid #ffd0e2}

    .hero{
      padding-top:42px;
      min-height:calc(100vh - 20px);
      display:flex;
      align-items:center;
    }
    .hero-panel{
      width:100%;
      position:relative;
      overflow:hidden;
      border-radius:38px;
      background:
        linear-gradient(120deg,rgba(255,46,136,.16),rgba(124,58,237,.14) 36%,rgba(255,176,0,.10)),
        rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--shadow);
      padding:34px;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      right:-120px;
      top:-120px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,46,136,.36),transparent 62%);
    }
    .hero-panel:after{
      content:"18+";
      position:absolute;
      right:28px;
      bottom:28px;
      width:72px;
      height:72px;
      display:grid;
      place-items:center;
      border-radius:28px;
      background:linear-gradient(135deg,var(--amber),#ff6b00);
      color:#231100;
      font-weight:950;
      font-size:22px;
      transform:rotate(-8deg);
      box-shadow:0 18px 34px rgba(255,176,0,.25);
    }
    .hero-content{
      position:relative;
      z-index:1;
    }
    h1{
      margin:16px 0 18px;
      max-width:880px;
      color:#fff;
      font-size:clamp(34px,5.4vw,58px);
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.055em;
    }
    .hero-intro{
      max-width:790px;
      margin:0 0 24px;
      color:var(--text-soft);
      font-size:17px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:24px 0 26px;
    }
    .hero-data{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .data-pill{
      min-width:138px;
      padding:13px 15px;
      border-radius:18px;
      background:rgba(0,0,0,.20);
      border:1px solid rgba(255,255,255,.12);
    }
    .data-pill strong{
      display:block;
      font-size:24px;
      line-height:1;
      color:#fff;
      font-weight:950;
      margin-bottom:6px;
    }
    .data-pill span{
      color:var(--text-soft);
      font-size:12px;
      font-weight:700;
    }
    .resource-stage{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:20px;
      margin-top:28px;
      align-items:stretch;
    }
    .guide-cover{
      position:relative;
      min-height:348px;
      border-radius:30px;
      padding:26px;
      background:
        linear-gradient(135deg,#fff7fb,#ffe0ee 54%,#d8c7ff);
      color:var(--text-dark);
      box-shadow:0 26px 70px rgba(0,0,0,.24);
      overflow:hidden;
    }
    .guide-cover:before{
      content:"";
      position:absolute;
      inset:auto -80px -120px auto;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(255,46,136,.18);
    }
    .cover-sticker{
      position:absolute;
      right:22px;
      top:20px;
      padding:9px 13px;
      border-radius:18px;
      background:#111014;
      color:#fff;
      font-weight:900;
      transform:rotate(5deg);
      box-shadow:0 12px 24px rgba(0,0,0,.18);
    }
    .guide-cover h2{
      margin:48px 0 12px;
      max-width:430px;
      font-size:34px;
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .guide-cover p{
      max-width:510px;
      color:#5a4450;
      margin-bottom:22px;
    }
    .cover-list{
      display:grid;
      gap:10px;
      margin:0;
      list-style:none;
    }
    .cover-list li{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:#352530;
    }
    .cover-list i{color:var(--primary)}
    .lead-card{
      border-radius:30px;
      padding:24px;
      background:rgba(17,16,20,.78);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    }
    .lead-card h3{
      margin:0 0 8px;
      color:#fff;
      font-size:23px;
      font-weight:900;
    }
    .lead-card p{
      color:var(--text-soft);
      margin:0 0 18px;
      font-size:15px;
    }
    .lead-form{
      display:grid;
      gap:12px;
    }
    .lead-form input,.lead-form select{
      width:100%;
      height:52px;
      border-radius:18px;
      padding:0 16px;
      color:#fff;
      background:rgba(255,255,255,.08);
    }
    .lead-form input::placeholder{color:rgba(255,255,255,.54)}
    .lead-form select option{color:#211820}
    .form-note{
      margin:2px 0 0;
      color:rgba(255,255,255,.56);
      font-size:12px;
      line-height:1.55;
    }
    .countdown-mini{
      display:flex;
      align-items:center;
      gap:10px;
      padding:13px;
      margin-bottom:16px;
      border-radius:18px;
      background:rgba(255,176,0,.11);
      border:1px solid rgba(255,176,0,.22);
    }
    .time-box{
      min-width:44px;
      padding:7px 8px;
      border-radius:12px;
      background:#ffb000;
      color:#2a1400;
      text-align:center;
      font-size:18px;
      line-height:1;
      font-weight:950;
    }
    .time-label{font-size:12px;color:#ffe7aa;font-weight:800}

    .chapter-grid{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:22px;
    }
    .story-card{
      border-radius:30px;
      padding:34px;
      background:#fff;
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(33,24,32,.08);
    }
    .story-card .quote{
      margin:0 0 22px;
      font-size:24px;
      line-height:1.5;
      font-weight:850;
      letter-spacing:-.02em;
    }
    .point-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      margin-top:24px;
    }
    .point-item{
      padding:17px;
      border-radius:20px;
      background:#fff5fa;
      border:1px solid #ffe0ee;
    }
    .point-item i{
      width:36px;
      height:36px;
      border-radius:13px;
      display:grid;
      place-items:center;
      background:#ff2e88;
      color:#fff;
      margin-bottom:10px;
    }
    .point-item h3{
      margin:0 0 6px;
      font-size:18px;
      font-weight:900;
    }
    .point-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .timeline-card{
      border-radius:30px;
      padding:26px;
      background:linear-gradient(180deg,#211622,#120e15);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }
    .timeline-card h3{
      margin:0 0 18px;
      font-size:22px;
      font-weight:900;
    }
    .step-line{
      position:relative;
      display:grid;
      gap:16px;
    }
    .step-line:before{
      content:"";
      position:absolute;
      left:17px;
      top:10px;
      bottom:10px;
      width:2px;
      background:linear-gradient(var(--primary),rgba(255,255,255,.12));
    }
    .step{
      position:relative;
      display:flex;
      gap:13px;
      align-items:flex-start;
    }
    .step-num{
      position:relative;
      z-index:1;
      width:36px;
      height:36px;
      flex:0 0 36px;
      border-radius:14px;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      display:grid;
      place-items:center;
      font-weight:950;
      box-shadow:0 10px 20px rgba(255,46,136,.22);
    }
    .step h4{
      margin:0 0 3px;
      font-size:16px;
      font-weight:900;
    }
    .step p{
      margin:0;
      color:var(--text-soft);
      font-size:14px;
      line-height:1.6;
    }

    .feature-band{
      padding:26px;
      border-radius:30px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--shadow);
      margin-top:32px;
    }
    .feature-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .feature-chip{
      position:relative;
      overflow:hidden;
      min-height:138px;
      padding:18px;
      border-radius:22px;
      background:rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.10);
      transition:var(--ease);
    }
    .feature-chip:hover{
      transform:translateY(-4px);
      border-color:rgba(255,46,136,.38);
      background:rgba(255,46,136,.10);
    }
    .feature-chip:after{
      content:"";
      position:absolute;
      right:-24px;
      bottom:-24px;
      width:84px;
      height:84px;
      border-radius:50%;
      background:rgba(255,46,136,.16);
    }
    .feature-chip h3{
      margin:0 0 8px;
      font-size:19px;
      font-weight:900;
    }
    .feature-chip p{
      margin:0;
      color:var(--text-soft);
      font-size:14px;
      line-height:1.6;
    }

    .content-layout{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:20px;
      align-items:stretch;
    }
    .main-entry{
      position:relative;
      min-height:430px;
      padding:30px;
      border-radius:34px;
      background:
        linear-gradient(145deg,rgba(255,46,136,.24),rgba(124,58,237,.20)),
        #1a111d;
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .main-entry:before{
      content:"今日入口";
      position:absolute;
      right:22px;
      top:22px;
      padding:10px 14px;
      border-radius:18px;
      background:var(--amber);
      color:#271300;
      font-weight:950;
      transform:rotate(6deg);
      box-shadow:0 14px 26px rgba(255,176,0,.22);
    }
    .main-entry h3{
      margin:78px 0 14px;
      max-width:560px;
      font-size:34px;
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .main-entry p{
      max-width:600px;
      color:var(--text-soft);
      margin-bottom:24px;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:26px;
    }
    .matrix{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .small-entry{
      position:relative;
      min-height:207px;
      padding:20px;
      border-radius:26px;
      background:#fff;
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(33,24,32,.08);
      transition:var(--ease);
      overflow:hidden;
    }
    .small-entry:hover{
      transform:translateY(-5px);
      border-color:rgba(255,46,136,.28);
      box-shadow:0 22px 46px rgba(36,18,34,.18);
    }
    .small-entry h3{
      margin:14px 0 8px;
      font-size:21px;
      line-height:1.25;
      font-weight:950;
    }
    .small-entry p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.62;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .entry-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#b31356;
      font-weight:900;
      font-size:14px;
    }
    .entry-link i{transition:var(--ease)}
    .small-entry:hover .entry-link i,.news-item:hover i{transform:translateX(4px)}

    .proof-grid{
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .proof-card{
      padding:20px;
      border-radius:24px;
      background:#fff;
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(33,24,32,.08);
    }
    .proof-card strong{
      display:block;
      margin-bottom:8px;
      color:#a31351;
      font-size:30px;
      line-height:1;
      font-weight:950;
    }
    .proof-card span{
      color:var(--muted);
      font-size:14px;
      font-weight:750;
    }
    .testimonial-row{
      margin-top:20px;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
    }
    .testimonial{
      padding:26px;
      border-radius:28px;
      background:#fff;
      color:var(--text-dark);
      border:1px solid rgba(33,24,32,.08);
      box-shadow:var(--shadow-soft);
    }
    .testimonial p{
      margin:0 0 18px;
      color:#46333f;
      font-size:17px;
      line-height:1.75;
    }
    .testimonial footer{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--muted);
      font-weight:850;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:950;
    }
    .compliance-callout{
      padding:26px;
      border-radius:28px;
      background:linear-gradient(135deg,#211622,#130f16);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
    }
    .compliance-callout h3{
      margin:0 0 10px;
      font-size:22px;
      font-weight:950;
    }
    .compliance-callout p{
      margin:0;
      color:var(--text-soft);
      font-size:15px;
    }

    .news-layout{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.4fr .8fr;
      gap:20px;
    }
    .news-list{
      border-radius:30px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:112px 1fr auto;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      color:#ffd0e2;
      font-size:13px;
      font-weight:900;
    }
    .news-item h3{
      margin:0 0 5px;
      font-size:19px;
      font-weight:900;
      line-height:1.32;
    }
    .news-item p{
      margin:0;
      color:var(--text-soft);
      font-size:14px;
      line-height:1.55;
    }
    .news-item i{color:var(--primary);transition:var(--ease)}
    .recommend-box{
      position:relative;
      overflow:hidden;
      padding:26px;
      border-radius:30px;
      background:linear-gradient(135deg,#fff7fb,#ffe1ee);
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
    }
    .recommend-box h3{
      margin:0 0 12px;
      font-size:24px;
      font-weight:950;
    }
    .recommend-box p{
      color:var(--muted);
      margin-bottom:18px;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud a{
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      color:#a31351;
      border:1px solid #ffd0e2;
      font-weight:800;
      font-size:13px;
    }
    .tag-cloud a:hover{
      background:#ff2e88;
      color:#fff;
      border-color:#ff2e88;
      transform:translateY(-2px);
    }

    .media-scroll{
      margin-top:32px;
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:4px 0 16px;
      scrollbar-width:thin;
      scrollbar-color:var(--primary) rgba(255,255,255,.12);
    }
    .media-card{
      min-width:286px;
      padding:22px;
      border-radius:28px;
      color:var(--text-dark);
      background:#fff;
      border:1px solid rgba(33,24,32,.08);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .media-card:hover{transform:translateY(-5px)}
    .media-icon{
      width:48px;
      height:48px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      margin-bottom:16px;
    }
    .media-card h3{
      margin:0 0 8px;
      font-size:20px;
      font-weight:950;
    }
    .media-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.62;
    }

    .faq-wrap{
      margin-top:32px;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
    }
    .accordion-title{
      color:#fff;
      font-size:17px;
      font-weight:900;
      padding:20px 22px;
      border:0;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(255,46,136,.12);
      color:#fff;
    }
    .accordion-title:before{
      color:var(--primary);
      font-size:22px;
      margin-top:-12px;
    }
    .accordion-content{
      color:var(--text-soft);
      background:rgba(0,0,0,.16);
      border:0;
      padding:0 22px 20px;
      font-size:15px;
      line-height:1.75;
    }

    .cta-section{
      padding-bottom:88px;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      padding:34px;
      background:
        radial-gradient(circle at 88% 20%, rgba(255,176,0,.28), transparent 26%),
        linear-gradient(135deg,#ff2e88,#7c3aed 70%,#24101e);
      box-shadow:0 26px 70px rgba(255,46,136,.22);
    }
    .cta-panel:before{
      content:"限时提醒";
      position:absolute;
      right:30px;
      top:26px;
      padding:11px 15px;
      border-radius:18px;
      background:var(--amber);
      color:#2b1500;
      font-weight:950;
      transform:rotate(5deg);
    }
    .cta-grid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:24px;
      align-items:center;
    }
    .cta-panel h2{
      margin:0 0 14px;
      max-width:680px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.05em;
      color:#fff;
    }
    .cta-panel p{
      margin:0 0 20px;
      color:#ffe7f0;
      max-width:720px;
    }
    .countdown-large{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:22px 0;
    }
    .count-block{
      min-width:76px;
      padding:13px 12px;
      border-radius:18px;
      background:rgba(17,16,20,.78);
      border:1px solid rgba(255,255,255,.16);
      text-align:center;
    }
    .count-block strong{
      display:block;
      font-size:27px;
      line-height:1;
      font-weight:950;
      color:#fff;
    }
    .count-block span{
      color:#ffd0e2;
      font-size:12px;
      font-weight:800;
    }
    .cta-form{
      padding:24px;
      border-radius:30px;
      background:rgba(17,16,20,.34);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(12px);
    }
    .cta-form label{
      display:block;
      margin-bottom:8px;
      color:#fff;
      font-size:13px;
      font-weight:850;
    }
    .cta-form input,.cta-form select{
      width:100%;
      height:52px;
      margin-bottom:12px;
      border-radius:18px;
      padding:0 15px;
      color:#fff;
      background:rgba(255,255,255,.12);
    }
    .cta-form select option{color:#211820}
    .cta-form .btn{width:100%}
    .cta-note{
      margin:12px 0 0;
      color:rgba(255,255,255,.72);
      font-size:12px;
      line-height:1.55;
    }

    .site-footer{
      margin-left:var(--sidebar);
      position:relative;
      z-index:1;
      background:#0b090d;
      border-top:1px solid rgba(255,255,255,.09);
    }
    .footer-inner{
      width:min(1280px, calc(100% - 48px));
      margin:0 auto;
      padding:34px 0;
      display:grid;
      grid-template-columns:1.3fr .9fr .8fr;
      gap:22px;
      color:var(--text-soft);
    }
    .footer-brand{
      color:#fff;
      font-size:19px;
      font-weight:950;
      margin-bottom:10px;
    }
    .footer-inner p{
      margin:0;
      font-size:14px;
      line-height:1.65;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:10px;
    }
    .footer-links{
      display:grid;
      gap:8px;
      font-size:14px;
    }
    .footer-links a{
      color:var(--text-soft);
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .copyright{
      padding:16px 0 26px;
      width:min(1280px, calc(100% - 48px));
      margin:0 auto;
      color:rgba(255,255,255,.45);
      font-size:12px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    @media (max-width:1023px){
      :root{--sidebar:86px}
      .desktop-shell{width:var(--sidebar);padding:18px 12px}
      .brand-mark{justify-content:center;padding-bottom:14px}
      .brand-text,.side-link span,.side-bottom{display:none}
      .side-link{justify-content:center;padding:14px 8px}
      .side-link.active:before{left:-12px}
      .page-wrap,.footer-inner,.copyright{width:min(100% - 36px, 980px)}
      .hero{min-height:auto;padding-top:34px}
      .resource-stage,.chapter-grid,.content-layout,.testimonial-row,.news-layout,.cta-grid{grid-template-columns:1fr}
      .feature-row,.proof-grid{grid-template-columns:repeat(2,1fr)}
      .guide-cover{min-height:310px}
    }

    @media (max-width:639px){
      body{background:#111014}
      .desktop-shell{display:none}
      .mobile-topbar{display:flex}
      .site-main,.site-footer{margin-left:0}
      .page-wrap,.footer-inner,.copyright{width:calc(100% - 28px)}
      section{padding:54px 0}
      .hero{padding-top:18px}
      .hero-panel{border-radius:26px;padding:20px}
      .hero-panel:after{
        right:16px;
        bottom:16px;
        width:54px;
        height:54px;
        border-radius:20px;
        font-size:17px;
      }
      h1{font-size:35px;letter-spacing:-.045em}
      .hero-intro{font-size:15px}
      .hero-actions .btn{width:100%}
      .resource-stage{gap:14px}
      .guide-cover{padding:20px;border-radius:24px;min-height:auto}
      .guide-cover h2{font-size:27px;margin-top:52px}
      .lead-card{border-radius:24px;padding:20px}
      .light-section{border-radius:28px 28px 0 0}
      .chapter-grid,.content-layout,.testimonial-row,.news-layout,.cta-grid{gap:14px}
      .story-card,.timeline-card,.feature-band,.main-entry,.recommend-box,.cta-panel{border-radius:24px;padding:22px}
      .point-list,.feature-row,.matrix,.proof-grid{grid-template-columns:1fr}
      .main-entry{min-height:auto}
      .main-entry:before{right:16px;top:16px}
      .main-entry h3{font-size:27px;margin-top:72px}
      .news-item{
        grid-template-columns:1fr auto;
        gap:8px 12px;
      }
      .news-date{grid-column:1 / -1}
      .footer-inner{grid-template-columns:1fr;padding:28px 0}
      .cta-panel:before{position:static;display:inline-flex;margin-bottom:18px;transform:rotate(-2deg)}
      .count-block{min-width:64px}
      .mobile-cta{display:none}
    }

    @media (max-width:420px){
      .hero-data{display:grid;grid-template-columns:1fr 1fr}
      .data-pill{min-width:0}
      .countdown-large{display:grid;grid-template-columns:repeat(2,1fr)}
      .btn{white-space:normal}
      .mobile-brand{max-width:70vw}
    }

/* roulang page: category1 */
:root{
      --bg:#111014;
      --bg-2:#18121d;
      --panel:#211720;
      --panel-2:#2b1a29;
      --light:#f7f2f5;
      --card:#fff9fc;
      --text:#fff7fb;
      --text-dark:#211820;
      --muted:#d8c9d1;
      --muted-dark:#6f5a66;
      --line:rgba(255,255,255,.12);
      --line-dark:rgba(33,24,32,.12);
      --primary:#ff2e88;
      --primary-2:#e91e63;
      --purple:#7c3aed;
      --amber:#ffb000;
      --green:#3ddc97;
      --radius-sm:12px;
      --radius:22px;
      --radius-lg:32px;
      --shadow:0 20px 60px rgba(0,0,0,.28);
      --shadow-soft:0 16px 40px rgba(20,10,20,.13);
      --sidebar:236px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 15% 8%, rgba(255,46,136,.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(124,58,237,.18), transparent 30%),
        linear-gradient(140deg, #111014 0%, #18121d 48%, #0f0c12 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size:26px 26px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(255,176,0,.8);outline-offset:3px}
    .site-shell{min-height:100vh}
    .desktop-sidebar{
      position:fixed;
      top:0;
      left:0;
      bottom:0;
      width:var(--sidebar);
      z-index:50;
      padding:24px 18px;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,46,136,.22), transparent 32%),
        linear-gradient(180deg, #211421 0%, #120f15 100%);
      border-right:1px solid rgba(255,255,255,.11);
      box-shadow:18px 0 50px rgba(0,0,0,.26);
      display:flex;
      flex-direction:column;
      gap:22px;
    }
    .brand-block{
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 8px 18px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 12px 34px rgba(255,46,136,.28);
      flex:0 0 auto;
    }
    .brand-name{
      min-width:0;
      line-height:1.2;
    }
    .brand-name strong{
      display:block;
      font-size:16px;
      letter-spacing:.02em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      color:#fff;
    }
    .brand-name small{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:12px;
    }
    .side-menu{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:6px;
    }
    .side-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:12px;
      min-height:48px;
      padding:12px 14px;
      color:#e9dce4;
      border:1px solid transparent;
      border-radius:18px;
      font-weight:800;
      font-size:14px;
      overflow:hidden;
    }
    .side-link i{width:20px;text-align:center;color:#f3b8d2}
    .side-link:hover{
      transform:translateX(3px);
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.12);
    }
    .side-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,46,136,.95),rgba(124,58,237,.9));
      box-shadow:0 16px 36px rgba(255,46,136,.22);
    }
    .side-link.active:before{
      content:"";
      position:absolute;
      left:0;
      top:12px;
      bottom:12px;
      width:4px;
      border-radius:0 8px 8px 0;
      background:#fff;
    }
    .sidebar-note{
      margin-top:auto;
      padding:14px;
      border-radius:18px;
      color:#eadfe6;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
      font-size:12px;
      line-height:1.65;
    }
    .sidebar-note b{color:var(--amber)}
    .mobile-topbar{
      display:none;
      position:sticky;
      top:0;
      z-index:80;
      min-height:64px;
      padding:10px 14px;
      align-items:center;
      justify-content:space-between;
      background:rgba(17,16,20,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .mobile-brand{
      display:flex;
      align-items:center;
      gap:9px;
      font-weight:900;
      max-width:62vw;
    }
    .mobile-brand span:last-child{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .menu-trigger,.top-cta{
      border:0;
      border-radius:999px;
      min-height:40px;
      padding:0 14px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      font-weight:900;
      box-shadow:0 10px 28px rgba(255,46,136,.24);
    }
    .off-canvas{
      background:#171117;
      color:#fff;
      padding:24px 18px;
    }
    .off-canvas .side-menu{margin-top:18px}
    .main-content{
      margin-left:var(--sidebar);
      min-height:100vh;
    }
    .page-container{
      width:min(1220px, calc(100% - 40px));
      margin:0 auto;
    }
    .section{padding:72px 0}
    .section.compact{padding:44px 0}
    .breadcrumb-line{
      padding-top:34px;
      color:var(--muted);
      font-size:14px;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .breadcrumb-line a{
      color:#fff;
      font-weight:800;
      border-bottom:1px solid rgba(255,255,255,.2);
    }
    .breadcrumb-line a:hover{color:var(--amber);border-color:var(--amber)}
    .category-hero{
      position:relative;
      margin-top:24px;
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 84% 20%, rgba(255,176,0,.2), transparent 24%),
        radial-gradient(circle at 18% 15%, rgba(255,46,136,.22), transparent 30%),
        linear-gradient(135deg, rgba(43,26,41,.96), rgba(24,18,29,.92));
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .category-hero:after{
      content:"精选入口";
      position:absolute;
      right:-34px;
      top:28px;
      transform:rotate(16deg);
      padding:10px 48px;
      background:var(--amber);
      color:#2a1600;
      font-size:13px;
      font-weight:900;
      letter-spacing:.12em;
      box-shadow:0 12px 30px rgba(255,176,0,.22);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      color:#ffeaf4;
      background:rgba(255,46,136,.16);
      border:1px solid rgba(255,46,136,.36);
      font-size:13px;
      font-weight:900;
    }
    h1{
      margin:18px 0 14px;
      max-width:820px;
      font-size:clamp(32px,5vw,54px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
    }
    .lead{
      max-width:830px;
      margin:0;
      color:#eadce5;
      font-size:17px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .btn-main,.btn-ghost,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 20px;
      min-height:48px;
      font-weight:900;
      line-height:1;
      transition:var(--ease);
      border:1px solid transparent;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 14px 34px rgba(255,46,136,.28);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 44px rgba(255,46,136,.38);
    }
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.16);
    }
    .btn-ghost:hover{
      color:#fff;
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.28);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:var(--primary-2);
      background:#fff0f7;
      border-color:#ffd4e7;
      padding:11px 16px;
      min-height:42px;
    }
    .btn-soft:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      transform:translateY(-2px);
    }
    .hero-meta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:9px 12px;
      color:#f2e6ee;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:800;
    }
    .meta-chip strong{color:var(--amber)}
    .filter-strip{
      margin-top:24px;
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding-bottom:4px;
      scrollbar-width:thin;
    }
    .filter-tag{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:10px 14px;
      color:#f9eaf2;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:900;
      white-space:nowrap;
    }
    .filter-tag.active{
      color:#211820;
      background:var(--amber);
      border-color:var(--amber);
      box-shadow:0 10px 24px rgba(255,176,0,.18);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:24px;
    }
    .section-kicker{
      display:inline-flex;
      margin-bottom:10px;
      color:var(--amber);
      font-weight:900;
      font-size:13px;
      letter-spacing:.08em;
    }
    h2{
      margin:0;
      color:#fff;
      font-size:clamp(26px,3.5vw,36px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .section-desc{
      margin:8px 0 0;
      max-width:660px;
      color:var(--muted);
      font-size:15px;
    }
    .content-layout{
      align-items:flex-start;
    }
    .featured-card{
      position:relative;
      padding:28px;
      border-radius:var(--radius-lg);
      background:linear-gradient(145deg,#fff9fc,#f6edf3);
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(255,255,255,.75);
      overflow:hidden;
      margin-bottom:18px;
    }
    .featured-card:before{
      content:"今日优先";
      position:absolute;
      top:22px;
      right:-28px;
      transform:rotate(14deg);
      padding:8px 36px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      font-size:12px;
      font-weight:900;
    }
    .card-labels{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      line-height:1;
      color:#8a0f45;
      background:#ffe5f0;
      border:1px solid #ffd0e5;
    }
    .badge.dark{
      color:#fff;
      background:rgba(255,255,255,.1);
      border-color:rgba(255,255,255,.16);
    }
    .badge.amber{
      color:#3a2400;
      background:#ffe2a3;
      border-color:#ffd279;
    }
    .featured-card h3,.list-card h3,.aside-card h3,.step-card h3,.promise-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.3;
      font-weight:900;
      color:inherit;
    }
    .featured-card p,.list-card p,.aside-card p,.step-card p,.promise-card p{
      margin:0;
      color:var(--muted-dark);
      line-height:1.75;
    }
    .card-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid var(--line-dark);
      flex-wrap:wrap;
    }
    .update-time{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--muted-dark);
      font-size:13px;
      font-weight:800;
    }
    .list-stack{
      display:grid;
      gap:14px;
    }
    .list-card{
      position:relative;
      display:grid;
      grid-template-columns:1fr auto;
      gap:16px;
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      box-shadow:0 10px 30px rgba(0,0,0,.13);
      transition:var(--ease);
      overflow:hidden;
    }
    .list-card:hover{
      transform:translateY(-3px);
      background:rgba(255,255,255,.105);
      border-color:rgba(255,46,136,.46);
      box-shadow:0 18px 42px rgba(255,46,136,.13);
    }
    .list-card h3{font-size:20px}
    .list-card p{
      color:#d8c9d1;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .entry-arrow{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      align-self:center;
      box-shadow:0 12px 26px rgba(255,46,136,.25);
      transition:var(--ease);
    }
    .list-card:hover .entry-arrow{transform:translateX(3px) scale(1.03)}
    .aside-wrap{
      position:sticky;
      top:24px;
      display:grid;
      gap:16px;
    }
    .aside-card{
      padding:22px;
      border-radius:24px;
      background:#fff9fc;
      color:var(--text-dark);
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(255,255,255,.72);
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:8px;
      margin:16px 0;
    }
    .time-box{
      padding:11px 8px;
      text-align:center;
      border-radius:16px;
      color:#fff;
      background:linear-gradient(145deg,#2b1a29,#120f15);
      border:1px solid rgba(255,255,255,.12);
    }
    .time-box strong{
      display:block;
      font-size:24px;
      line-height:1;
      color:var(--amber);
      font-weight:900;
    }
    .time-box span{
      display:block;
      margin-top:5px;
      font-size:12px;
      color:#e9dce4;
      font-weight:800;
    }
    .tip-list{
      list-style:none;
      margin:14px 0 0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .tip-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted-dark);
      font-size:14px;
      line-height:1.65;
    }
    .tip-list i{margin-top:5px;color:var(--primary)}
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .cloud-tag{
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
      color:#7d2a51;
      background:#fff0f7;
      border:1px solid #ffd4e7;
      font-size:12px;
      font-weight:900;
    }
    .flow-panel{
      padding:28px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 90% 20%, rgba(255,46,136,.16), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      margin-top:22px;
    }
    .step-card{
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,176,0,.5);
      background:rgba(255,255,255,.11);
    }
    .step-no{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      margin-bottom:14px;
      border-radius:14px;
      color:#281900;
      background:var(--amber);
      font-weight:900;
    }
    .step-card h3{color:#fff;font-size:19px}
    .step-card p{color:var(--muted)}
    .promise-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .promise-card{
      padding:26px;
      border-radius:var(--radius-lg);
      color:var(--text-dark);
      background:#fff9fc;
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(255,255,255,.78);
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:18px;
    }
    .metric{
      padding:16px;
      border-radius:20px;
      background:#fff0f7;
      border:1px solid #ffd7e8;
    }
    .metric strong{
      display:block;
      color:var(--primary-2);
      font-size:28px;
      line-height:1;
      font-weight:900;
    }
    .metric span{
      display:block;
      margin-top:7px;
      color:var(--muted-dark);
      font-size:13px;
      font-weight:800;
    }
    .compliance-card{
      position:relative;
      padding:26px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,rgba(255,46,136,.92),rgba(124,58,237,.9));
      color:#fff;
      box-shadow:0 18px 46px rgba(255,46,136,.24);
      overflow:hidden;
    }
    .compliance-card:after{
      content:"18+";
      position:absolute;
      right:18px;
      top:10px;
      font-size:70px;
      line-height:1;
      font-weight:900;
      color:rgba(255,255,255,.12);
    }
    .compliance-card h3{color:#fff}
    .compliance-card p{color:#ffeaf4}
    .faq-wrap{
      margin-top:24px;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
    }
    .accordion-title{
      border:0 !important;
      color:#fff !important;
      padding:18px 54px 18px 20px;
      font-weight:900;
      font-size:16px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(255,255,255,.08);
    }
    .accordion-title:before{
      color:var(--amber);
      font-weight:900;
      right:20px;
    }
    .accordion-content{
      border:0 !important;
      padding:0 20px 20px;
      color:var(--muted);
      background:transparent;
      line-height:1.75;
    }
    .cta-panel{
      position:relative;
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 18% 20%, rgba(255,176,0,.22), transparent 24%),
        linear-gradient(135deg,#ff2e88 0%, #7c3aed 58%, #251325 100%);
      box-shadow:0 24px 70px rgba(255,46,136,.25);
      overflow:hidden;
    }
    .cta-panel:before{
      content:"更新提醒";
      position:absolute;
      top:24px;
      right:-30px;
      transform:rotate(15deg);
      background:var(--amber);
      color:#2a1600;
      padding:9px 42px;
      font-size:12px;
      font-weight:900;
      letter-spacing:.1em;
    }
    .cta-panel h2{max-width:740px}
    .cta-panel p{
      max-width:760px;
      color:#ffeaf4;
      margin:12px 0 0;
    }
    .subscribe-form{
      display:flex;
      gap:10px;
      max-width:720px;
      margin-top:24px;
      flex-wrap:wrap;
    }
    .subscribe-form input,.subscribe-form select{
      height:52px;
      border:1px solid rgba(255,255,255,.2);
      border-radius:999px;
      padding:0 18px;
      color:#fff;
      background:rgba(255,255,255,.12);
      box-shadow:none;
      margin:0;
      min-width:220px;
      flex:1 1 220px;
    }
    .subscribe-form input::placeholder{color:rgba(255,255,255,.72)}
    .subscribe-form input:focus,.subscribe-form select:focus{
      border-color:var(--amber);
      background:rgba(255,255,255,.16);
      box-shadow:0 0 0 4px rgba(255,176,0,.16);
    }
    .subscribe-form select option{color:#211820}
    .form-note{
      margin-top:12px;
      color:#ffeaf4;
      font-size:12px;
      opacity:.92;
    }
    footer{
      margin-top:36px;
      padding:24px 0 34px;
      display:flex;
      align-items:center;
      gap:10px;
      color:#d8c9d1;
      font-size:13px;
      border-top:1px solid rgba(255,255,255,.1);
    }
    footer .avatar{
      width:30px;
      height:30px;
      display:grid;
      place-items:center;
      border-radius:12px;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 10px 24px rgba(255,46,136,.22);
    }
    @media screen and (max-width:1023px){
      :root{--sidebar:86px}
      .desktop-sidebar{width:var(--sidebar);padding:18px 12px;align-items:center}
      .brand-block{padding:6px 0 14px;justify-content:center}
      .brand-name,.sidebar-note{display:none}
      .side-link{width:58px;height:58px;padding:0;justify-content:center;border-radius:20px}
      .side-link span{display:none}
      .side-link i{font-size:19px}
      .page-container{width:min(100% - 32px, 920px)}
      .category-hero{padding:28px}
      .promise-grid,.steps-grid{grid-template-columns:1fr}
      .aside-wrap{position:static;margin-top:18px}
    }
    @media screen and (max-width:767px){
      .desktop-sidebar{display:none}
      .mobile-topbar{display:flex}
      .main-content{margin-left:0}
      .page-container{width:min(100% - 26px, 620px)}
      .section{padding:52px 0}
      .section.compact{padding:34px 0}
      .breadcrumb-line{padding-top:20px}
      .category-hero{
        margin-top:16px;
        padding:24px 18px;
        border-radius:26px;
      }
      .category-hero:after{display:none}
      h1{font-size:34px;letter-spacing:-.03em}
      .lead{font-size:15px;line-height:1.85}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .section-head{
        display:block;
        margin-bottom:18px;
      }
      .list-card{
        grid-template-columns:1fr;
        padding:20px;
      }
      .entry-arrow{
        width:100%;
        height:42px;
        border-radius:999px;
      }
      .metric-row{grid-template-columns:1fr}
      .cta-panel{padding:28px 18px}
      .cta-panel:before{display:none}
      .subscribe-form{display:grid}
      .subscribe-form input,.subscribe-form select,.subscribe-form button{
        width:100%;
        min-width:0;
      }
      footer{align-items:flex-start}
    }
    @media screen and (max-width:520px){
      .mobile-brand{font-size:13px}
      .brand-mark{width:36px;height:36px;border-radius:14px}
      .top-cta{display:none}
      h1{font-size:31px}
      .featured-card,.flow-panel,.promise-card,.compliance-card{padding:22px 18px;border-radius:24px}
      .countdown{gap:6px}
      .time-box strong{font-size:20px}
      .filter-strip{margin-left:-2px;margin-right:-2px}
    }
