/* roulang page: index */
:root{
      --bg-0:#120817;
      --bg-1:#1A0B22;
      --bg-2:#24102F;
      --orange:#FF4D1D;
      --orange-2:#FF7A1A;
      --violet:#A855F7;
      --violet-2:#7C3AED;
      --gold:#FACC15;
      --paper:#FFF4D6;
      --text:#F8F5FF;
      --muted:#C9B8D9;
      --weak:#8E7A9E;
      --border-gold:rgba(250,204,21,.25);
      --border-violet:rgba(168,85,247,.35);
      --shadow:0 18px 60px rgba(0,0,0,.45);
      --glow:0 0 34px rgba(168,85,247,.22);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Microsoft YaHei","PingFang SC","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(255,77,29,.23), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(168,85,247,.28), transparent 30%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1) 44%, #0c0610 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(250,204,21,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,.045) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .site-container{width:min(var(--container), calc(100% - 32px));margin-inline:auto}
    .top-strip{
      position:relative;
      background:linear-gradient(90deg, rgba(18,8,23,.95), rgba(124,58,237,.34), rgba(18,8,23,.95));
      border-bottom:1px solid var(--border-gold);
      font-size:13px;
      color:#fff7d6;
    }
    .count-box{
      display:inline-flex;
      min-width:32px;
      height:28px;
      align-items:center;
      justify-content:center;
      border-radius:9px;
      background:rgba(250,204,21,.14);
      border:1px solid rgba(250,204,21,.35);
      color:var(--gold);
      font-weight:900;
      box-shadow:0 0 18px rgba(250,204,21,.12);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(18,8,23,.78);
      border-bottom:1px solid rgba(168,85,247,.2);
      box-shadow:0 10px 30px rgba(0,0,0,.26);
    }
    .nav-wrap{
      min-height:82px;
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      gap:20px;
      align-items:center;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:linear-gradient(135deg, var(--orange), var(--violet));
      box-shadow:0 0 26px rgba(255,77,29,.32);
      border:1px solid rgba(255,244,214,.34);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      width:18px;height:18px;border-radius:50%;
      border:2px solid rgba(255,255,255,.86);
      border-top-color:transparent;
      transform:rotate(-25deg);
    }
    .brand-name{
      font-size:18px;
      background:linear-gradient(90deg,#fff,var(--gold),#ffd0bd);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow:0 0 22px rgba(250,204,21,.12);
    }
    .search-shell{
      display:flex;
      align-items:center;
      gap:10px;
      background:rgba(255,255,255,.06);
      border:1px solid var(--border-violet);
      border-radius:999px;
      padding:8px 9px 8px 16px;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), var(--glow);
      transition:.25s ease;
    }
    .search-shell:focus-within{
      border-color:rgba(250,204,21,.55);
      box-shadow:0 0 0 4px rgba(168,85,247,.16), 0 0 36px rgba(255,77,29,.16);
    }
    .search-icon{color:var(--gold);flex:0 0 auto}
    .search-shell input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      color:var(--text);
      background:transparent;
      font-size:15px;
    }
    .search-shell input::placeholder{color:#b7a3c9}
    .search-btn{
      border:0;
      cursor:pointer;
      border-radius:999px;
      padding:9px 17px;
      color:white;
      font-weight:800;
      background:linear-gradient(135deg,var(--orange),var(--orange-2));
      box-shadow:0 10px 24px rgba(255,77,29,.25);
      transition:.24s ease;
      white-space:nowrap;
    }
    .search-btn:hover{transform:translateY(-1px);filter:brightness(1.08);box-shadow:0 14px 30px rgba(255,77,29,.38)}
    .nav-links{display:flex;align-items:center;gap:8px;white-space:nowrap}
    .nav-link{
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
      border:1px solid transparent;
      transition:.22s ease;
    }
    .nav-link:hover{
      color:#fff;
      border-color:rgba(168,85,247,.32);
      background:rgba(168,85,247,.12);
    }
    .nav-link.active{
      color:#1b0b05;
      background:linear-gradient(135deg,var(--gold),#ffedd5);
      box-shadow:0 10px 24px rgba(250,204,21,.16);
    }
    .section{padding:78px 0}
    .section-sm{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid var(--border-gold);
      background:rgba(250,204,21,.09);
      color:#ffeaa0;
      font-weight:900;
      font-size:13px;
    }
    .hero{
      position:relative;
      padding:52px 0 78px;
      overflow:hidden;
    }
    .hero-stage{
      position:relative;
      border:1px solid rgba(250,204,21,.22);
      border-radius:36px;
      background:
        radial-gradient(circle at 12% 20%, rgba(255,77,29,.24), transparent 30%),
        radial-gradient(circle at 88% 14%, rgba(168,85,247,.28), transparent 34%),
        linear-gradient(135deg, rgba(36,16,47,.92), rgba(18,8,23,.9));
      box-shadow:var(--shadow);
      padding:34px;
      overflow:hidden;
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,244,214,.09);
      border-radius:28px;
      pointer-events:none;
    }
    .burst{
      position:absolute;
      right:34px;
      top:26px;
      width:112px;
      height:112px;
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1.15;
      color:#2a1004;
      font-weight:950;
      transform:rotate(10deg);
      background:var(--gold);
      clip-path:polygon(50% 0%,60% 24%,85% 11%,78% 38%,100% 50%,77% 61%,86% 89%,60% 76%,50% 100%,39% 76%,14% 89%,23% 61%,0 50%,22% 38%,14% 11%,39% 24%);
      box-shadow:0 0 34px rgba(250,204,21,.35);
      z-index:2;
      font-size:15px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:30px;
      align-items:stretch;
      position:relative;
      z-index:1;
    }
    .hero h1{
      font-size:clamp(34px,6vw,66px);
      line-height:1.08;
      letter-spacing:-.055em;
      font-weight:950;
      margin:18px 0 18px;
    }
    .grad-text{
      background:linear-gradient(90deg,#fff 0%,#fff0b4 42%,#ff7a1a 72%,#d8b4fe 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-desc{
      max-width:700px;
      color:var(--muted);
      font-size:17px;
      line-height:1.9;
      margin-bottom:24px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 20px;
      font-weight:900;
      border:1px solid transparent;
      transition:.24s ease;
      cursor:pointer;
      min-height:48px;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--orange),#ff8a1d);
      box-shadow:0 16px 34px rgba(255,77,29,.28);
    }
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 20px 42px rgba(255,77,29,.42)}
    .btn-secondary{
      color:#fff;
      background:rgba(168,85,247,.12);
      border-color:rgba(168,85,247,.42);
    }
    .btn-secondary:hover{transform:translateY(-2px);background:rgba(168,85,247,.22);border-color:rgba(250,204,21,.35)}
    .trust-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.055);
      color:#f3e8ff;
      font-size:13px;
      font-weight:800;
    }
    .benefit-panel{
      position:relative;
      min-height:100%;
      border-radius:30px;
      border:1px solid rgba(250,204,21,.28);
      background:
        linear-gradient(180deg, rgba(255,244,214,.13), rgba(168,85,247,.08)),
        rgba(12,6,16,.64);
      padding:22px;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 24px 60px rgba(0,0,0,.32);
      overflow:hidden;
    }
    .panel-ribbon{
      position:absolute;
      right:-42px;
      top:28px;
      transform:rotate(36deg);
      width:180px;
      text-align:center;
      padding:6px 0;
      color:#220b04;
      background:linear-gradient(90deg,var(--gold),#fff1a4);
      font-weight:950;
      font-size:12px;
      box-shadow:0 8px 18px rgba(0,0,0,.25);
    }
    .apply-card{
      margin-top:36px;
      border-radius:24px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(168,85,247,.26);
      padding:18px;
    }
    .apply-row{
      display:flex;
      justify-content:space-between;
      gap:16px;
      padding:13px 0;
      border-bottom:1px dashed rgba(255,255,255,.12);
      color:var(--muted);
      font-size:14px;
    }
    .apply-row:last-child{border-bottom:0}
    .apply-row strong{color:#fff}
    .timer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:18px}
    .timer-cell{
      border-radius:17px;
      padding:12px 8px;
      text-align:center;
      background:rgba(250,204,21,.1);
      border:1px solid rgba(250,204,21,.25);
    }
    .timer-cell b{display:block;color:var(--gold);font-size:24px;line-height:1;font-weight:950}
    .timer-cell span{font-size:12px;color:var(--muted)}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-head h2{
      font-size:clamp(28px,4vw,42px);
      line-height:1.15;
      letter-spacing:-.04em;
      font-weight:950;
      margin-top:12px;
    }
    .section-head p{color:var(--muted);max-width:650px;margin-top:10px}
    .card{
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      border:1px solid rgba(168,85,247,.24);
      box-shadow:0 16px 42px rgba(0,0,0,.26);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(250,204,21,.36);
      box-shadow:0 22px 55px rgba(0,0,0,.34), 0 0 28px rgba(255,77,29,.13);
    }
    .selling-grid{display:grid;grid-template-columns:1.1fr .9fr 1fr;gap:18px}
    .selling-card{padding:24px}
    .icon-orb{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(255,77,29,.9),rgba(168,85,247,.75));
      box-shadow:0 0 24px rgba(168,85,247,.25);
      margin-bottom:16px;
      font-size:22px;
    }
    .card h3{font-size:21px;font-weight:950;line-height:1.25;margin-bottom:9px}
    .card p{color:var(--muted)}
    .demo-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .scroll-panel{
      border-radius:30px;
      padding:24px;
      background:linear-gradient(135deg, rgba(255,244,214,.94), rgba(248,231,176,.88));
      color:#32150a;
      box-shadow:0 20px 48px rgba(0,0,0,.3);
      border:1px solid rgba(250,204,21,.42);
    }
    .scroll-panel p{color:#5a351d}
    .demo-list{display:grid;gap:14px}
    .demo-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:14px;
      border-radius:18px;
      padding:16px;
      background:rgba(18,8,23,.68);
      border:1px solid rgba(168,85,247,.24);
      transition:.22s ease;
    }
    .demo-item:hover{border-color:rgba(250,204,21,.36);background:rgba(36,16,47,.72)}
    .num{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      color:#260d04;
      font-weight:950;
      background:var(--gold);
    }
    .hot-grid{
      display:grid;
      grid-template-columns:1.2fr repeat(2, .9fr);
      grid-auto-rows:minmax(180px,auto);
      gap:18px;
    }
    .hot-main{grid-row:span 2;padding:28px;background:linear-gradient(150deg,rgba(255,77,29,.2),rgba(168,85,247,.11))}
    .hot-card{padding:22px}
    .corner{
      position:absolute;
      top:16px;right:16px;
      border-radius:999px;
      padding:5px 10px;
      background:rgba(255,77,29,.16);
      border:1px solid rgba(255,77,29,.35);
      color:#ffd4c6;
      font-size:12px;
      font-weight:950;
    }
    .price-line{display:flex;align-items:baseline;gap:10px;margin:18px 0}
    .price{font-size:38px;line-height:1;color:var(--gold);font-weight:950}
    .old{color:var(--weak);text-decoration:line-through}
    .proof-band{
      border-radius:34px;
      padding:28px;
      border:1px solid rgba(250,204,21,.22);
      background:
        radial-gradient(circle at 18% 0%, rgba(250,204,21,.14), transparent 32%),
        linear-gradient(135deg, rgba(36,16,47,.72), rgba(18,8,23,.82));
      box-shadow:var(--shadow);
    }
    .metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .metric{
      padding:20px;
      border-radius:22px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.09);
      text-align:center;
    }
    .metric b{display:block;font-size:30px;color:var(--gold);font-weight:950;line-height:1.15}
    .metric span{color:var(--muted);font-size:13px}
    .reviews{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:20px;
    }
    .review{padding:22px}
    .stars{color:var(--gold);letter-spacing:2px;margin-bottom:10px}
    .news-layout{display:grid;grid-template-columns:1fr 360px;gap:22px}
    .news-list{
      border-radius:28px;
      border:1px solid rgba(168,85,247,.24);
      overflow:hidden;
      background:rgba(255,255,255,.045);
    }
    .news-row{
      display:grid;
      grid-template-columns:120px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid rgba(255,255,255,.08);
      transition:.22s ease;
    }
    .news-row:last-child{border-bottom:0}
    .news-row:hover{background:rgba(168,85,247,.1)}
    .news-date{color:var(--gold);font-weight:900;font-size:13px}
    .news-row h3{font-size:17px;font-weight:950}
    .news-row p{color:var(--muted);font-size:14px;margin-top:4px}
    .recommend{padding:24px;background:linear-gradient(180deg,rgba(255,77,29,.16),rgba(168,85,247,.08))}
    .guarantee-bar{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .guarantee{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(250,204,21,.18);
    }
    .faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    details{
      border-radius:20px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(168,85,247,.22);
      padding:18px 20px;
      transition:.22s ease;
    }
    details[open]{border-color:rgba(250,204,21,.35);background:rgba(250,204,21,.06)}
    summary{cursor:pointer;font-weight:950;list-style:none}
    summary::-webkit-details-marker{display:none}
    details p{color:var(--muted);margin-top:10px}
    .form-zone{
      border-radius:36px;
      padding:30px;
      background:
        radial-gradient(circle at 85% 10%, rgba(250,204,21,.16), transparent 30%),
        linear-gradient(135deg, rgba(255,77,29,.18), rgba(168,85,247,.12));
      border:1px solid rgba(250,204,21,.26);
      box-shadow:var(--shadow);
    }
    .form-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:24px;align-items:start}
    .lead-form{
      display:grid;
      gap:14px;
      border-radius:26px;
      padding:22px;
      background:rgba(18,8,23,.72);
      border:1px solid rgba(168,85,247,.28);
    }
    .field label{display:block;color:#f8e7b0;font-size:13px;font-weight:900;margin-bottom:7px}
    .field input,.field select,.field textarea{
      width:100%;
      border:1px solid rgba(168,85,247,.28);
      background:rgba(255,255,255,.06);
      color:#fff;
      border-radius:16px;
      padding:13px 14px;
      outline:0;
      transition:.22s ease;
    }
    .field input:focus,.field select:focus,.field textarea:focus{
      border-color:rgba(250,204,21,.55);
      box-shadow:0 0 0 4px rgba(250,204,21,.1);
    }
    .field textarea{min-height:104px;resize:vertical}
    .site-footer{
      padding:44px 0 30px;
      border-top:1px solid rgba(168,85,247,.22);
      background:rgba(8,4,12,.72);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:start;
    }
    .footer-links{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
    .footer-links a{
      padding:8px 12px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid rgba(255,255,255,.08);
      transition:.22s ease;
    }
    .footer-links a:hover{color:#fff;border-color:rgba(250,204,21,.28);background:rgba(250,204,21,.07)}
    .copyright{margin-top:24px;color:var(--weak);font-size:13px}
    .mobile-menu-btn{display:none}
    @media (max-width:1024px){
      .nav-wrap{grid-template-columns:1fr auto;gap:14px;padding:14px 0}
      .search-shell{grid-column:1 / -1;order:3}
      .nav-links{overflow-x:auto;padding-bottom:2px}
      .hero-grid,.demo-wrap,.form-grid,.news-layout{grid-template-columns:1fr}
      .burst{right:18px;top:18px;width:94px;height:94px;font-size:13px}
      .selling-grid{grid-template-columns:1fr 1fr}
      .hot-grid{grid-template-columns:1fr 1fr}
      .hot-main{grid-row:auto;grid-column:1 / -1}
      .metrics,.guarantee-bar{grid-template-columns:repeat(2,1fr)}
      .reviews{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,var(--container))}
      .top-strip .site-container{flex-direction:column;gap:8px;padding:10px 0}
      .brand-name{font-size:16px;max-width:210px;white-space:normal;line-height:1.2}
      .nav-links{grid-column:1 / -1;width:100%}
      .nav-link{padding:9px 12px}
      .hero{padding-top:28px}
      .hero-stage{padding:22px;border-radius:28px}
      .hero-stage:before{display:none}
      .hero-desc{font-size:15px}
      .hero-actions{flex-direction:column;align-items:stretch}
      .btn{width:100%}
      .selling-grid,.hot-grid,.faq-grid{grid-template-columns:1fr}
      .section{padding:56px 0}
      .section-head{display:block}
      .news-row{grid-template-columns:1fr;gap:8px}
      .timer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:520px){
      .brand-mark{width:38px;height:38px}
      .search-btn{padding:8px 12px}
      .search-shell{padding-left:12px}
      .search-shell input{font-size:14px}
      .burst{position:relative;right:auto;top:auto;margin-left:auto;margin-bottom:10px}
      .hero h1{font-size:34px}
      .metrics,.guarantee-bar{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .form-zone{padding:20px;border-radius:28px}
    }

/* roulang page: category1 */
:root{
      --bg:#120817;
      --bg-2:#1A0B22;
      --bg-3:#24102F;
      --primary:#FF4D1D;
      --primary-2:#FF8A1D;
      --violet:#A855F7;
      --violet-2:#7C3AED;
      --gold:#FACC15;
      --paper:#FFF4D6;
      --paper-2:#F8E7B0;
      --text:#F8F5FF;
      --muted:#C9B8D9;
      --weak:#8E7A9E;
      --line:rgba(250,204,21,.25);
      --line-violet:rgba(168,85,247,.35);
      --card:rgba(36,16,47,.76);
      --card-strong:rgba(58,22,73,.88);
      --radius:26px;
      --radius-sm:16px;
      --shadow:0 18px 60px rgba(0,0,0,.45);
      --glow:0 0 34px rgba(168,85,247,.28);
      --orange-glow:0 20px 48px rgba(255,77,29,.28);
      --container:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:"Microsoft YaHei","PingFang SC","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(255,77,29,.18), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(168,85,247,.22), transparent 34%),
        linear-gradient(180deg, #120817 0%, #1A0B22 42%, #120817 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.28;
      background-image:
        linear-gradient(rgba(250,204,21,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,.08) 1px, transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
      z-index:-2;
    }
    body:after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        radial-gradient(circle at 10% 30%, rgba(250,204,21,.08) 0 1px, transparent 2px),
        radial-gradient(circle at 68% 22%, rgba(255,255,255,.08) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 78%, rgba(168,85,247,.12) 0 1px, transparent 2px);
      background-size:180px 180px, 220px 220px, 260px 260px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img,svg{display:block;max-width:100%}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,77,29,.65);color:white}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(18,8,23,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(250,204,21,.16);
      box-shadow:0 14px 40px rgba(0,0,0,.24);
    }
    .site-header:before{
      content:"精选内容权益开放中";
      display:block;
      text-align:center;
      color:#2a1506;
      font-weight:800;
      letter-spacing:.04em;
      font-size:13px;
      padding:7px 12px;
      background:linear-gradient(90deg, var(--gold), #ff8a1d, var(--gold));
    }
    .nav-wrap{
      display:grid;
      grid-template-columns:auto minmax(260px,1fr) auto;
      align-items:center;
      gap:18px;
      padding:16px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      outline:none;
    }
    .brand:focus-visible,.nav-link:focus-visible,.search-btn:focus-visible,.btn:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(250,204,21,.75);
      outline-offset:3px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      position:relative;
      flex:0 0 auto;
      background:
        radial-gradient(circle at 35% 25%, #fff4d6 0 10%, transparent 11%),
        conic-gradient(from 210deg, #ff4d1d, #facc15, #a855f7, #ff4d1d);
      box-shadow:0 0 26px rgba(255,77,29,.45);
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:10px;
      border:1px solid rgba(18,8,23,.45);
      background:rgba(18,8,23,.22);
    }
    .brand-name{
      font-size:18px;
      font-weight:950;
      letter-spacing:-.03em;
      background:linear-gradient(135deg, #fff4d6, #facc15 42%, #ff8a1d 72%, #f8f5ff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow:0 0 28px rgba(250,204,21,.12);
      white-space:nowrap;
    }
    .search-shell{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:52px;
      padding:7px 8px 7px 16px;
      border:1px solid rgba(168,85,247,.48);
      background:linear-gradient(180deg, rgba(36,16,47,.88), rgba(26,11,34,.92));
      border-radius:999px;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 0 28px rgba(168,85,247,.18);
    }
    .search-shell:focus-within{
      border-color:rgba(250,204,21,.55);
      box-shadow:0 0 0 4px rgba(168,85,247,.14), 0 0 34px rgba(250,204,21,.16);
    }
    .search-icon{color:var(--gold);flex:0 0 auto}
    .search-shell input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:15px;
      min-width:0;
    }
    .search-shell input::placeholder{color:rgba(201,184,217,.72)}
    .search-btn{
      border:0;
      color:white;
      font-weight:800;
      white-space:nowrap;
      border-radius:999px;
      padding:10px 16px;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:0 12px 26px rgba(255,77,29,.24);
      transition:transform .25s ease, filter .25s ease, box-shadow .25s ease;
    }
    .search-btn:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 16px 32px rgba(255,77,29,.34)}
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
      border:1px solid transparent;
      transition:all .25s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      color:white;
      border-color:rgba(168,85,247,.36);
      background:rgba(168,85,247,.12);
    }
    .nav-link.active{
      color:#2a1506;
      background:linear-gradient(135deg, var(--gold), #ff8a1d);
      box-shadow:0 12px 26px rgba(250,204,21,.16);
    }

    .page-hero{
      position:relative;
      padding:72px 0 54px;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      left:50%;
      top:28px;
      width:min(980px, 92vw);
      height:420px;
      transform:translateX(-50%);
      border-radius:999px;
      background:radial-gradient(circle, rgba(168,85,247,.20), transparent 66%);
      filter:blur(8px);
      pointer-events:none;
      z-index:-1;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(360px,.88fr);
      gap:34px;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:8px 12px;
      color:#2a1506;
      font-size:13px;
      line-height:1;
      font-weight:950;
      border-radius:999px;
      background:linear-gradient(135deg, var(--gold), #ff8a1d);
      box-shadow:0 14px 28px rgba(250,204,21,.15);
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:99px;background:#2a1506;
      box-shadow:0 0 0 4px rgba(42,21,6,.13);
    }
    h1{
      margin:22px 0 18px;
      font-size:clamp(34px, 5vw, 64px);
      line-height:1.08;
      letter-spacing:-.06em;
      font-weight:950;
    }
    .grad-text{
      background:linear-gradient(135deg, #fff4d6 0%, #facc15 30%, #ff4d1d 58%, #a855f7 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .lead{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:50px;
      padding:0 20px;
      border-radius:999px;
      font-weight:950;
      border:1px solid transparent;
      transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, filter .25s ease;
    }
    .btn-primary{
      color:white;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:var(--orange-glow);
    }
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 24px 58px rgba(255,77,29,.36)}
    .btn-secondary{
      color:var(--text);
      border-color:rgba(168,85,247,.42);
      background:rgba(36,16,47,.7);
      box-shadow:0 12px 34px rgba(0,0,0,.22);
    }
    .btn-secondary:hover{transform:translateY(-2px);background:rgba(168,85,247,.18);border-color:rgba(250,204,21,.35)}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .trust-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      color:var(--muted);
      border:1px solid rgba(250,204,21,.18);
      background:rgba(18,8,23,.46);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }
    .trust-tag:before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 14px rgba(250,204,21,.75);
    }

    .download-card{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      border:1px solid rgba(250,204,21,.28);
      background:
        linear-gradient(145deg, rgba(255,244,214,.98), rgba(248,231,176,.94) 42%, rgba(255,244,214,.88)),
        radial-gradient(circle at 80% 12%, rgba(255,77,29,.28), transparent 38%);
      color:#32190c;
      box-shadow:var(--shadow), 0 0 48px rgba(250,204,21,.14);
    }
    .download-card:before{
      content:"限时资料";
      position:absolute;
      right:-46px;
      top:28px;
      width:180px;
      text-align:center;
      transform:rotate(35deg);
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      font-size:13px;
      font-weight:950;
      padding:8px 0;
      box-shadow:0 10px 24px rgba(255,77,29,.24);
    }
    .cover-wrap{
      padding:24px;
    }
    .paper-cover{
      border-radius:24px;
      padding:24px;
      min-height:230px;
      background:
        linear-gradient(135deg, rgba(50,25,12,.94), rgba(80,34,84,.88)),
        repeating-linear-gradient(45deg, rgba(250,204,21,.06) 0 2px, transparent 2px 12px);
      color:#fff4d6;
      position:relative;
      overflow:hidden;
      border:1px solid rgba(250,204,21,.32);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .paper-cover:after{
      content:"";
      position:absolute;
      width:180px;height:180px;
      right:-62px;bottom:-70px;
      border-radius:50%;
      border:28px solid rgba(250,204,21,.12);
    }
    .cover-title{
      position:relative;
      z-index:1;
      font-size:28px;
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.04em;
      max-width:260px;
    }
    .cover-meta{
      position:relative;
      z-index:1;
      margin-top:18px;
      color:#f8e7b0;
      font-weight:800;
      font-size:14px;
    }
    .toc{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .toc-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:11px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.48);
      border:1px solid rgba(50,25,12,.12);
      font-weight:850;
      color:#3b1b0b;
    }
    .toc-item span:last-child{
      color:#7b391a;
      font-size:12px;
      padding:4px 8px;
      border-radius:999px;
      background:rgba(250,204,21,.38);
      white-space:nowrap;
    }
    .lead-form{
      margin-top:18px;
      display:grid;
      gap:10px;
    }
    .lead-form input,.lead-form textarea{
      width:100%;
      border:1px solid rgba(50,25,12,.18);
      border-radius:16px;
      background:rgba(255,255,255,.64);
      color:#32190c;
      padding:12px 14px;
      outline:none;
    }
    .lead-form input::placeholder,.lead-form textarea::placeholder{color:rgba(50,25,12,.58)}
    .lead-form input:focus,.lead-form textarea:focus{
      border-color:rgba(255,77,29,.55);
      box-shadow:0 0 0 4px rgba(255,77,29,.12);
    }
    .form-note{font-size:12px;color:#70451e;line-height:1.6}

    .section{
      padding:70px 0;
      position:relative;
    }
    .section-tight{padding-top:36px}
    .section-head{
      max-width:760px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--gold);
      font-weight:950;
      font-size:13px;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-kicker:before{
      content:"";
      width:26px;height:2px;border-radius:99px;
      background:linear-gradient(90deg, var(--gold), var(--primary));
    }
    h2{
      margin:0;
      font-size:clamp(28px, 3.6vw, 42px);
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.045em;
    }
    .section-desc{
      margin-top:12px;
      color:var(--muted);
      max-width:760px;
    }

    .hot-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr;
      grid-template-rows:auto auto;
      gap:18px;
    }
    .deal-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid rgba(168,85,247,.32);
      background:linear-gradient(145deg, rgba(36,16,47,.88), rgba(26,11,34,.78));
      box-shadow:0 14px 44px rgba(0,0,0,.28);
      padding:22px;
      min-height:210px;
      transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
    }
    .deal-card:hover{
      transform:translateY(-5px);
      border-color:rgba(250,204,21,.45);
      box-shadow:0 24px 62px rgba(0,0,0,.36), 0 0 34px rgba(255,77,29,.16);
      background:linear-gradient(145deg, rgba(58,22,73,.92), rgba(26,11,34,.82));
    }
    .deal-card.featured{
      grid-row:span 2;
      min-height:438px;
      background:
        radial-gradient(circle at 18% 18%, rgba(255,77,29,.30), transparent 33%),
        linear-gradient(145deg, rgba(58,22,73,.94), rgba(26,11,34,.86));
    }
    .blast{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:88px;
      min-height:38px;
      color:#2a1506;
      font-weight:950;
      font-size:13px;
      background:var(--gold);
      clip-path:polygon(8% 0, 100% 0, 92% 50%, 100% 100%, 8% 100%, 0 50%);
      padding:0 14px;
      box-shadow:0 16px 32px rgba(250,204,21,.18);
    }
    .deal-title{
      margin-top:16px;
      font-size:24px;
      line-height:1.22;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .deal-card:not(.featured) .deal-title{font-size:19px}
    .deal-text{margin-top:10px;color:var(--muted);font-size:15px}
    .price-line{
      display:flex;
      align-items:flex-end;
      gap:10px;
      margin-top:22px;
    }
    .price{
      font-size:38px;
      line-height:1;
      font-weight:950;
      color:var(--gold);
      text-shadow:0 0 22px rgba(250,204,21,.22);
    }
    .price-sub{color:var(--weak);font-size:13px;font-weight:800}
    .mini-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      display:flex;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .mini-list li:before{
      content:"✓";
      color:var(--gold);
      font-weight:950;
    }

    .compare-panel{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .countdown-card,.steps-card{
      border:1px solid rgba(250,204,21,.22);
      border-radius:30px;
      background:linear-gradient(145deg, rgba(36,16,47,.84), rgba(18,8,23,.78));
      padding:24px;
      box-shadow:var(--shadow);
    }
    .timer{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:18px;
    }
    .timer-box{
      border-radius:18px;
      padding:14px 10px;
      text-align:center;
      background:rgba(250,204,21,.10);
      border:1px solid rgba(250,204,21,.22);
    }
    .timer-num{font-size:30px;font-weight:950;color:var(--gold);line-height:1}
    .timer-label{font-size:12px;color:var(--muted);margin-top:7px;font-weight:800}
    .steps{
      display:grid;
      gap:14px;
    }
    .step{
      display:grid;
      grid-template-columns:46px 1fr;
      gap:14px;
      align-items:start;
      padding:14px;
      border-radius:20px;
      background:rgba(168,85,247,.10);
      border:1px solid rgba(168,85,247,.22);
    }
    .step-no{
      display:grid;
      place-items:center;
      width:46px;height:46px;
      border-radius:16px;
      color:#2a1506;
      font-weight:950;
      background:linear-gradient(135deg, var(--gold), #ff8a1d);
    }
    .step h3{margin:0;font-size:18px;font-weight:950}
    .step p{margin:4px 0 0;color:var(--muted);font-size:14px}

    .reviews-wrap{
      overflow:hidden;
      border-radius:32px;
      border:1px solid rgba(168,85,247,.25);
      background:rgba(18,8,23,.42);
      box-shadow:var(--shadow);
    }
    .reviews-track{
      display:grid;
      grid-template-columns:repeat(3, minmax(280px,1fr));
      gap:0;
    }
    .review{
      padding:28px;
      min-height:230px;
      border-right:1px solid rgba(168,85,247,.18);
      background:
        radial-gradient(circle at 90% 20%, rgba(250,204,21,.08), transparent 28%),
        linear-gradient(180deg, rgba(36,16,47,.66), rgba(18,8,23,.36));
    }
    .review:last-child{border-right:0}
    .stars{color:var(--gold);letter-spacing:.08em;font-size:18px}
    .review p{color:var(--muted);margin:16px 0 18px}
    .reviewer{display:flex;align-items:center;gap:12px}
    .avatar{
      width:42px;height:42px;border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--violet));
      box-shadow:0 0 22px rgba(168,85,247,.24);
    }
    .reviewer strong{display:block;font-weight:950}
    .reviewer span{display:block;color:var(--weak);font-size:13px}

    .guarantee-bar{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      border-radius:28px;
      padding:14px;
      background:linear-gradient(135deg, rgba(250,204,21,.12), rgba(168,85,247,.12));
      border:1px solid rgba(250,204,21,.22);
    }
    .guarantee-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:18px;
      border-radius:22px;
      background:rgba(18,8,23,.54);
      border:1px solid rgba(255,255,255,.06);
    }
    .g-icon{
      flex:0 0 auto;
      width:38px;height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#2a1506;
      font-weight:950;
      background:linear-gradient(135deg, var(--gold), #ff8a1d);
    }
    .guarantee-item h3{margin:0;font-size:16px;font-weight:950}
    .guarantee-item p{margin:4px 0 0;color:var(--muted);font-size:13px;line-height:1.6}

    .faq-grid{
      display:grid;
      grid-template-columns:.72fr 1.28fr;
      gap:24px;
      align-items:start;
    }
    .faq-card{
      border-radius:28px;
      border:1px solid rgba(250,204,21,.22);
      background:linear-gradient(145deg, rgba(36,16,47,.84), rgba(18,8,23,.68));
      padding:24px;
      box-shadow:var(--shadow);
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    details{
      border-radius:22px;
      border:1px solid rgba(168,85,247,.25);
      background:rgba(36,16,47,.62);
      overflow:hidden;
      transition:border-color .25s ease, background .25s ease;
    }
    details[open]{
      border-color:rgba(250,204,21,.36);
      background:rgba(58,22,73,.72);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      font-weight:950;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{
      content:"+";
      width:28px;height:28px;
      border-radius:999px;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      color:#2a1506;
      background:var(--gold);
      font-weight:950;
    }
    details[open] summary:after{content:"－"}
    details p{
      margin:0;
      padding:0 20px 20px;
      color:var(--muted);
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      border:1px solid rgba(250,204,21,.35);
      background:
        radial-gradient(circle at 12% 18%, rgba(255,77,29,.34), transparent 35%),
        radial-gradient(circle at 88% 28%, rgba(168,85,247,.30), transparent 32%),
        linear-gradient(145deg, rgba(58,22,73,.94), rgba(18,8,23,.92));
      box-shadow:var(--shadow), 0 0 54px rgba(255,77,29,.12);
      padding:34px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-band:before{
      content:"今日推荐";
      position:absolute;
      right:22px;
      top:20px;
      padding:7px 12px;
      border-radius:999px;
      color:#2a1506;
      background:var(--gold);
      font-weight:950;
      font-size:13px;
      transform:rotate(3deg);
    }
    .cta-band h2{max-width:740px}
    .cta-band p{color:var(--muted);margin:12px 0 0;max-width:720px}

    .site-footer{
      margin-top:44px;
      border-top:1px solid rgba(250,204,21,.18);
      background:rgba(18,8,23,.78);
      padding:42px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:start;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      max-width:360px;
    }
    .footer-links a{
      color:var(--muted);
      border:1px solid rgba(168,85,247,.24);
      background:rgba(36,16,47,.58);
      padding:9px 12px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      transition:all .25s ease;
    }
    .footer-links a:hover{
      color:white;
      border-color:rgba(250,204,21,.32);
      background:rgba(168,85,247,.18);
      transform:translateY(-2px);
    }
    .copyright{
      margin-top:30px;
      padding-top:18px;
      border-top:1px solid rgba(168,85,247,.16);
      color:var(--weak);
      font-size:13px;
    }

    .toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform:translateX(-50%) translateY(20px);
      opacity:0;
      pointer-events:none;
      z-index:80;
      color:#2a1506;
      background:linear-gradient(135deg, var(--gold), #ff8a1d);
      border-radius:999px;
      padding:12px 18px;
      font-weight:950;
      box-shadow:0 18px 40px rgba(0,0,0,.35);
      transition:all .28s ease;
    }
    .toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

    @media (max-width:1024px){
      .nav-wrap{grid-template-columns:1fr auto;gap:12px}
      .search-shell{grid-column:1 / -1;order:3}
      .nav-links{justify-content:flex-end}
      .hero-grid,.compare-panel,.faq-grid{grid-template-columns:1fr}
      .hot-grid{grid-template-columns:1fr 1fr}
      .deal-card.featured{grid-row:auto;grid-column:span 2;min-height:320px}
      .guarantee-bar{grid-template-columns:1fr 1fr}
      .cta-band{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px, var(--container))}
      .site-header:before{font-size:12px}
      .nav-wrap{padding:13px 0}
      .brand-name{font-size:16px}
      .brand-mark{width:34px;height:34px;border-radius:13px}
      .nav-links{
        grid-column:1 / -1;
        order:4;
        overflow-x:auto;
        padding-bottom:2px;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .nav-link{flex:0 0 auto}
      .search-shell{min-height:50px;border-radius:22px;align-items:stretch}
      .search-btn{padding:9px 12px}
      .page-hero{padding:50px 0 34px}
      .download-card,.cta-band{border-radius:26px}
      .hot-grid{grid-template-columns:1fr}
      .deal-card.featured{grid-column:auto}
      .reviews-track{grid-template-columns:1fr}
      .review{border-right:0;border-bottom:1px solid rgba(168,85,247,.18)}
      .review:last-child{border-bottom:0}
      .guarantee-bar{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      .hero-actions,.trust-row{display:grid;grid-template-columns:1fr}
      .btn{width:100%}
      .timer{grid-template-columns:1fr 1fr 1fr}
      .cover-wrap{padding:18px}
      .paper-cover{padding:20px}
      .cover-title{font-size:24px}
      .toc-item{align-items:flex-start;flex-direction:column}
      .section{padding:54px 0}
      .cta-band{padding:26px 20px}
      .cta-band:before{position:static;display:inline-flex;margin-bottom:12px;width:max-content}
      .search-shell{gap:6px;padding-left:12px}
      .search-shell input{font-size:14px}
    }
