/* roulang page: index */
:root{
      --color-wine:#5A1F2E;
      --color-cherry:#6B2338;
      --color-berry:#8E3C5A;
      --color-cream:#F8F1E8;
      --color-paper:#FFF9F1;
      --color-apricot:#F2C6A0;
      --color-ink:#211815;
      --color-coffee:#36231F;
      --color-muted:#8C7B72;
      --color-caramel:#B66A3C;
      --color-border:#E6D8CC;
      --shadow-warm:0 24px 70px rgba(90,31,46,.12);
      --shadow-soft:0 14px 42px rgba(54,35,31,.10);
      --nav-width:104px;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","Microsoft YaHei","PingFang SC",system-ui,sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 16% 10%, rgba(242,198,160,.34), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(142,60,90,.13), transparent 30%),
        linear-gradient(135deg, rgba(90,31,46,.035) 0 1px, transparent 1px 14px),
        var(--color-cream);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button,input,textarea,select{font:inherit}
    input,textarea,select{outline:none}
    ::selection{background:rgba(242,198,160,.7);color:var(--color-wine)}
    .side-nav{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--nav-width);
      z-index:50;
      background:
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 16%),
        linear-gradient(180deg, #3a151d 0%, #5A1F2E 44%, #261815 100%);
      color:#fff7ef;
      border-right:1px solid rgba(242,198,160,.22);
      box-shadow:10px 0 36px rgba(54,35,31,.16);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:space-between;
      padding:22px 12px;
    }
    .brand-seal{
      width:58px;
      height:58px;
      border-radius:22px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg,var(--color-apricot),#fff0dc);
      color:var(--color-wine);
      font-weight:900;
      letter-spacing:.08em;
      box-shadow:0 14px 30px rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.5);
    }
    .brand-small{
      writing-mode:vertical-rl;
      letter-spacing:.18em;
      margin-top:14px;
      font-size:13px;
      color:#ffe5cc;
      line-height:1.3;
    }
    .side-links{display:flex;flex-direction:column;gap:12px;width:100%;align-items:center}
    .side-link{
      width:76px;
      min-height:58px;
      border-radius:20px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:5px;
      font-size:12px;
      color:rgba(255,249,241,.76);
      transition:.25s ease;
      position:relative;
      border:1px solid transparent;
    }
    .side-link .dot{
      width:8px;height:8px;border-radius:999px;
      background:rgba(242,198,160,.44);
      transition:.25s ease;
    }
    .side-link:hover{
      color:#fff9f1;
      background:rgba(255,255,255,.07);
      border-color:rgba(242,198,160,.18);
      transform:translateY(-2px);
    }
    .side-link.active{
      color:var(--color-apricot);
      background:rgba(242,198,160,.12);
      border-color:rgba(242,198,160,.32);
    }
    .side-link.active:before{
      content:"";
      position:absolute;
      left:-12px;
      width:4px;
      height:34px;
      border-radius:0 99px 99px 0;
      background:var(--color-apricot);
    }
    .side-link.active .dot{background:var(--color-apricot);box-shadow:0 0 0 6px rgba(242,198,160,.12)}
    .trust-mark{
      font-size:11px;
      color:rgba(255,249,241,.62);
      text-align:center;
      line-height:1.6;
      border-top:1px solid rgba(242,198,160,.18);
      padding-top:16px;
    }
    .mobile-header{
      display:none;
      position:sticky;
      top:0;
      z-index:60;
      background:rgba(248,241,232,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--color-border);
    }
    .mobile-nav-scroll{
      overflow-x:auto;
      scrollbar-width:none;
    }
    .mobile-nav-scroll::-webkit-scrollbar{display:none}
    .m-link{
      white-space:nowrap;
      padding:9px 14px;
      border-radius:999px;
      color:var(--color-wine);
      border:1px solid rgba(90,31,46,.14);
      background:rgba(255,249,241,.64);
      font-size:14px;
      transition:.25s ease;
    }
    .m-link.active,.m-link:hover{background:var(--color-wine);color:#fff9f1}
    .page-shell{margin-left:var(--nav-width);min-height:100vh}
    .container-wide{max-width:1240px;margin:0 auto;padding-left:44px;padding-right:44px}
    .section{padding:92px 0}
    .section-tight{padding:70px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      font-size:13px;
      color:var(--color-wine);
      letter-spacing:.08em;
      font-weight:800;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(242,198,160,.34);
      border:1px solid rgba(90,31,46,.12);
    }
    .eyebrow:before{
      content:"";
      width:7px;height:7px;border-radius:999px;
      background:var(--color-caramel);
      box-shadow:0 0 0 5px rgba(182,106,60,.12);
    }
    .hero{
      min-height:760px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--color-border);
    }
    .hero:after{
      content:"隔壁 · 成熟角色 · 合规叙事 · 数据运营";
      position:absolute;
      right:3vw;
      top:110px;
      writing-mode:vertical-rl;
      letter-spacing:.28em;
      color:rgba(90,31,46,.16);
      font-weight:800;
      font-size:13px;
    }
    .hero-title{
      font-size:clamp(38px,5vw,64px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:900;
      color:var(--color-ink);
      max-width:720px;
    }
    .hero-title .mark{
      color:var(--color-wine);
      position:relative;
      display:inline-block;
    }
    .hero-title .mark:after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:5px;height:12px;
      background:rgba(242,198,160,.62);
      z-index:-1;
      border-radius:999px;
    }
    .lead{
      font-size:18px;
      line-height:1.9;
      color:#5f4e47;
      max-width:760px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:800;
      transition:.25s ease;
      border:1px solid transparent;
      cursor:pointer;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--color-wine),var(--color-cherry));
      color:#fff9f1;
      box-shadow:0 16px 34px rgba(90,31,46,.24);
    }
    .btn-primary:hover{transform:translateY(-3px);box-shadow:0 22px 46px rgba(90,31,46,.30)}
    .btn-secondary{
      color:var(--color-wine);
      background:rgba(255,249,241,.55);
      border-color:rgba(90,31,46,.22);
    }
    .btn-secondary:hover{background:rgba(242,198,160,.35);transform:translateY(-3px)}
    .btn:focus-visible,.form-field:focus-visible{
      outline:3px solid rgba(182,106,60,.34);
      outline-offset:3px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      color:#5f4e47;
      background:rgba(255,249,241,.72);
      border:1px solid var(--color-border);
    }
    .badge strong{color:var(--color-wine)}
    .dashboard{
      background:
        linear-gradient(135deg,rgba(242,198,160,.08),transparent 36%),
        linear-gradient(180deg,#301b1a,#1f1715);
      border:1px solid rgba(242,198,160,.26);
      border-radius:34px;
      padding:24px;
      color:#fff9f1;
      box-shadow:0 30px 70px rgba(54,35,31,.26);
      position:relative;
      overflow:hidden;
    }
    .dashboard:before{
      content:"";
      position:absolute;inset:0;
      background:
        linear-gradient(rgba(242,198,160,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(242,198,160,.07) 1px,transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.75),transparent 90%);
      pointer-events:none;
    }
    .dash-card{
      position:relative;
      border-radius:24px;
      padding:18px;
      background:rgba(255,249,241,.06);
      border:1px solid rgba(242,198,160,.16);
      transition:.25s ease;
    }
    .dash-card:hover{transform:translateY(-4px);border-color:rgba(242,198,160,.34)}
    .dash-num{font-size:34px;font-weight:900;color:var(--color-apricot);letter-spacing:-.03em}
    .progress{height:8px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden}
    .progress span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--color-apricot),var(--color-caramel))}
    .card{
      border-radius:var(--radius-lg);
      border:1px solid var(--color-border);
      background:rgba(255,249,241,.72);
      box-shadow:var(--shadow-soft);
      transition:.25s ease;
    }
    .card:hover{
      transform:translateY(-5px);
      border-color:rgba(90,31,46,.28);
      box-shadow:var(--shadow-warm);
    }
    .metric-card{
      padding:22px;
      min-height:188px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .metric-num{font-size:36px;font-weight:900;color:var(--color-wine);line-height:1}
    .metric-trend{font-size:12px;color:var(--color-caramel);font-weight:800;letter-spacing:.06em}
    .section-title{
      font-size:clamp(28px,3.5vw,42px);
      line-height:1.18;
      letter-spacing:-.03em;
      font-weight:900;
      color:var(--color-ink);
    }
    .section-desc{color:#6f5b52;font-size:17px;line-height:1.9;max-width:760px}
    .category-card{
      position:relative;
      overflow:hidden;
      padding:28px;
      min-height:320px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .category-card:before{
      content:"";
      position:absolute;
      width:170px;height:170px;
      right:-54px;top:-54px;
      border-radius:999px;
      background:rgba(242,198,160,.34);
    }
    .category-card .index{
      font-size:54px;
      line-height:1;
      font-weight:900;
      color:rgba(90,31,46,.12);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:6px 11px;
      font-size:12px;
      font-weight:800;
      color:var(--color-wine);
      background:rgba(242,198,160,.30);
      border:1px solid rgba(90,31,46,.10);
    }
    .workflow{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:28px;
      align-items:stretch;
    }
    .step-card{
      padding:26px;
      border-radius:28px;
      background:var(--color-paper);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
    }
    .step-no{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--color-wine);
      color:var(--color-apricot);
      font-weight:900;
    }
    .comparison-wrap{
      border-radius:34px;
      overflow:hidden;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-warm);
      background:var(--color-paper);
    }
    .compare-col{padding:32px}
    .compare-before{background:#f1e8dd}
    .compare-after{
      background:
        radial-gradient(circle at 88% 12%,rgba(242,198,160,.42),transparent 35%),
        linear-gradient(135deg,#fff8ee,#f8e4cf);
    }
    .compare-item{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding:16px 0;
      border-bottom:1px solid rgba(90,31,46,.10);
    }
    .compare-item:last-child{border-bottom:0}
    .score{
      min-width:92px;
      text-align:right;
      font-weight:900;
      color:var(--color-wine);
    }
    .quote-block{
      border-left:5px solid var(--color-wine);
      padding:24px 28px;
      border-radius:0 24px 24px 0;
      background:rgba(255,249,241,.70);
      color:#57463f;
      box-shadow:var(--shadow-soft);
    }
    .faq-item{
      padding:24px;
      border-radius:24px;
      background:rgba(255,249,241,.72);
      border:1px solid var(--color-border);
      transition:.25s ease;
    }
    .faq-item:hover{border-color:rgba(90,31,46,.26);transform:translateY(-3px)}
    .faq-q{
      display:flex;gap:14px;align-items:flex-start;
      font-weight:900;
      color:var(--color-ink);
      font-size:18px;
    }
    .faq-dot{
      width:24px;height:24px;flex:0 0 auto;
      border-radius:999px;
      background:var(--color-wine);
      color:var(--color-apricot);
      display:grid;place-items:center;
      font-size:13px;
      margin-top:3px;
    }
    .cta-panel{
      border-radius:38px;
      background:
        radial-gradient(circle at 12% 18%,rgba(242,198,160,.24),transparent 30%),
        linear-gradient(135deg,#3b171d,#5A1F2E 54%,#291815);
      color:#fff9f1;
      padding:42px;
      box-shadow:0 28px 80px rgba(90,31,46,.25);
      overflow:hidden;
      position:relative;
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      width:330px;height:330px;border-radius:999px;
      right:-120px;bottom:-140px;
      border:1px solid rgba(242,198,160,.22);
      background:rgba(255,255,255,.04);
    }
    .form-field{
      width:100%;
      min-height:52px;
      border-radius:16px;
      border:1px solid rgba(242,198,160,.24);
      background:rgba(255,249,241,.94);
      color:var(--color-ink);
      padding:12px 15px;
      transition:.25s ease;
    }
    .form-field:focus{
      border-color:var(--color-apricot);
      box-shadow:0 0 0 4px rgba(242,198,160,.18);
    }
    textarea.form-field{min-height:132px;resize:vertical}
    .footer{
      margin-left:var(--nav-width);
      background:#251817;
      color:#f8eee3;
      border-top:1px solid rgba(242,198,160,.18);
    }
    .footer a{color:rgba(255,249,241,.76);transition:.2s ease}
    .footer a:hover{color:var(--color-apricot)}
    .footer-card{
      border-radius:24px;
      background:rgba(255,249,241,.06);
      border:1px solid rgba(242,198,160,.14);
      padding:22px;
    }
    @media (max-width:1023px){
      .side-nav{display:none}
      .mobile-header{display:block}
      .page-shell,.footer{margin-left:0}
      .container-wide{padding-left:24px;padding-right:24px}
      .hero{min-height:auto;padding:72px 0 38px}
      .hero:after{display:none}
      .workflow{grid-template-columns:1fr}
      .section{padding:72px 0}
      .section-tight{padding:54px 0}
    }
    @media (max-width:767px){
      .container-wide{padding-left:18px;padding-right:18px}
      .lead{font-size:16px}
      .dashboard{border-radius:26px;padding:18px}
      .dash-num{font-size:28px}
      .metric-card{min-height:160px}
      .category-card{min-height:auto}
      .compare-col{padding:24px}
      .cta-panel{padding:28px;border-radius:28px}
      .footer-card{padding:18px}
    }
    @media (max-width:520px){
      .btn{width:100%}
      .hero-title{font-size:36px}
      .section-title{font-size:28px}
      .badge{width:100%;justify-content:center}
      .compare-item{align-items:flex-start;flex-direction:column;gap:6px}
      .score{text-align:left}
    }

/* roulang page: category1 */
:root{
      --color-wine:#5A1F2E;
      --color-cherry:#6B2338;
      --color-cream:#F8F1E8;
      --color-paper:#FFF9F1;
      --color-apricot:#F2C6A0;
      --color-ink:#211815;
      --color-caramel:#B66A3C;
      --color-berry:#8E3C5A;
      --color-muted:#8C7B72;
      --color-border:#E6D8CC;
      --shadow-soft:0 22px 60px rgba(90,31,46,.12);
      --shadow-card:0 16px 38px rgba(54,35,31,.08);
      --radius-xl:30px;
      --radius-lg:22px;
      --nav-width:104px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","Microsoft YaHei","PingFang SC",system-ui,sans-serif;
      color:var(--color-ink);
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(242,198,160,.38), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(142,60,90,.13), transparent 34%),
        linear-gradient(135deg, rgba(90,31,46,.035) 0 1px, transparent 1px 18px),
        var(--color-cream);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    input,select,textarea{outline:none}
    ::selection{background:var(--color-apricot);color:var(--color-wine)}
    .container-wide{width:min(1180px, calc(100% - 48px));margin:0 auto}
    .main-shell{min-height:100vh}
    .mobile-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(248,241,232,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(230,216,204,.9);
      box-shadow:0 8px 24px rgba(90,31,46,.06);
    }
    .side-nav{
      display:none;
      position:fixed;
      inset:0 auto 0 0;
      width:var(--nav-width);
      background:linear-gradient(180deg,#3a171d 0%, var(--color-wine) 48%, #241513 100%);
      color:#fff4e8;
      z-index:60;
      padding:18px 12px;
      border-right:1px solid rgba(242,198,160,.22);
    }
    .side-nav-logo{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-height:134px;
      border:1px solid rgba(242,198,160,.22);
      border-radius:26px;
      background:rgba(255,255,255,.055);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
      transition:.25s ease;
    }
    .side-nav-logo:hover{transform:translateY(-2px);border-color:rgba(242,198,160,.55)}
    .logo-main{
      writing-mode:vertical-rl;
      letter-spacing:.08em;
      font-weight:900;
      font-size:13px;
      line-height:1.2;
      max-height:92px;
      overflow:hidden;
    }
    .logo-sub{font-size:10px;color:rgba(242,198,160,.75);margin-top:8px}
    .side-nav-links{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:9px}
    .side-nav-link{
      position:relative;
      min-height:58px;
      padding:9px 6px;
      border-radius:18px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:4px;
      font-size:12px;
      line-height:1.25;
      text-align:center;
      color:rgba(255,244,232,.68);
      transition:.25s ease;
    }
    .side-nav-link .nav-icon{font-size:18px;line-height:1;color:rgba(242,198,160,.42)}
    .side-nav-link:hover{
      color:#fff9f1;
      background:rgba(255,255,255,.08);
      transform:translateX(2px);
    }
    .side-nav-link.active{
      color:var(--color-apricot);
      background:rgba(242,198,160,.12);
    }
    .side-nav-link.active::before{
      content:"";
      position:absolute;
      left:-12px;
      top:14px;
      bottom:14px;
      width:4px;
      border-radius:999px;
      background:var(--color-apricot);
    }
    .side-nav-footer{
      position:absolute;
      left:12px;
      right:12px;
      bottom:16px;
      font-size:10px;
      text-align:center;
      color:rgba(248,238,227,.45);
      letter-spacing:.08em;
      border-top:1px solid rgba(255,255,255,.1);
      padding-top:14px;
    }
    .brand-seal{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--color-apricot);
      background:linear-gradient(145deg,var(--color-wine),#2a1514);
      border:1px solid rgba(242,198,160,.42);
      box-shadow:0 12px 24px rgba(90,31,46,.2);
      font-weight:900;
      letter-spacing:.08em;
      flex:none;
    }
    .mobile-nav-scroll{
      overflow-x:auto;
      scrollbar-width:none;
    }
    .mobile-nav-scroll::-webkit-scrollbar{display:none}
    .m-link{
      white-space:nowrap;
      border:1px solid var(--color-border);
      color:var(--color-wine);
      background:rgba(255,249,241,.76);
      border-radius:999px;
      padding:8px 14px;
      font-size:14px;
      font-weight:700;
      transition:.25s ease;
    }
    .m-link:hover,.m-link.active{
      background:var(--color-wine);
      color:var(--color-apricot);
      border-color:var(--color-wine);
    }
    .page-wrap{padding:34px 0 0}
    .section{padding:82px 0}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--color-wine);
      font-size:13px;
      font-weight:900;
      letter-spacing:.14em;
      text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";
      width:32px;
      height:1px;
      background:var(--color-caramel);
    }
    .heading-xl{
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:950;
      color:var(--color-ink);
    }
    .heading-lg{
      font-size:clamp(26px,3.2vw,38px);
      line-height:1.2;
      letter-spacing:-.03em;
      font-weight:950;
      color:var(--color-ink);
    }
    .lead{font-size:18px;line-height:1.9;color:#5e504a}
    .muted{color:var(--color-muted)}
    .btn{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 22px;
      font-weight:900;
      border:1px solid transparent;
      transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
      cursor:pointer;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--color-wine),var(--color-cherry));
      color:#fff9f1;
      box-shadow:0 16px 32px rgba(90,31,46,.22);
    }
    .btn-primary:hover{transform:translateY(-3px);box-shadow:0 22px 42px rgba(90,31,46,.28);background:#431723}
    .btn-secondary{
      color:var(--color-wine);
      border-color:rgba(90,31,46,.28);
      background:rgba(255,249,241,.72);
    }
    .btn-secondary:hover{transform:translateY(-3px);background:rgba(242,198,160,.3);border-color:rgba(90,31,46,.5)}
    .btn:focus-visible,.m-link:focus-visible,.side-nav-link:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(182,106,60,.34);
      outline-offset:3px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      border:1px solid rgba(230,216,204,.95);
      background:
        linear-gradient(115deg,rgba(255,249,241,.96),rgba(248,241,232,.74)),
        radial-gradient(circle at top right,rgba(242,198,160,.36),transparent 42%);
      box-shadow:var(--shadow-soft);
    }
    .hero-card::after{
      content:"";
      position:absolute;
      inset:auto -80px -100px auto;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(142,60,90,.11);
      pointer-events:none;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(230,216,204,.9);
      background:rgba(255,249,241,.74);
      color:var(--color-wine);
      font-size:13px;
      font-weight:800;
      transition:.25s ease;
    }
    .tag:hover{border-color:rgba(90,31,46,.34);transform:translateY(-2px)}
    .filter-panel{
      border-radius:var(--radius-xl);
      border:1px solid var(--color-border);
      background:rgba(255,249,241,.78);
      box-shadow:var(--shadow-card);
    }
    .filter-group{
      padding:18px;
      border-radius:22px;
      background:rgba(248,241,232,.65);
      border:1px solid rgba(230,216,204,.72);
    }
    .filter-title{
      color:var(--color-wine);
      font-weight:950;
      font-size:14px;
      letter-spacing:.06em;
      margin-bottom:12px;
    }
    .magazine-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
      align-items:stretch;
    }
    .topic-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      border:1px solid rgba(230,216,204,.95);
      background:rgba(255,249,241,.88);
      box-shadow:var(--shadow-card);
      transition:.28s ease;
    }
    .topic-card:hover{
      transform:translateY(-5px);
      box-shadow:0 22px 46px rgba(90,31,46,.14);
      border-color:rgba(182,106,60,.45);
    }
    .topic-main{
      min-height:100%;
      background:
        linear-gradient(135deg,rgba(90,31,46,.97),rgba(54,35,31,.95)),
        radial-gradient(circle at 80% 20%,rgba(242,198,160,.3),transparent 38%);
      color:#fff9f1;
    }
    .topic-number{
      width:52px;
      height:52px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(242,198,160,.14);
      color:var(--color-apricot);
      font-weight:950;
      border:1px solid rgba(242,198,160,.28);
      flex:none;
      transition:.25s ease;
    }
    .topic-list-item:hover .topic-number{
      background:var(--color-wine);
      color:var(--color-apricot);
      transform:rotate(-3deg) scale(1.04);
    }
    .risk{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(230,216,204,.92);
    }
    .risk-low{background:#fff5e9;color:#7a3f1d}
    .risk-mid{background:#f8e8e5;color:#7b2638}
    .radar-card{
      border-radius:34px;
      background:linear-gradient(145deg,#2b1716,#5A1F2E);
      color:#fff9f1;
      border:1px solid rgba(242,198,160,.24);
      box-shadow:0 24px 58px rgba(90,31,46,.22);
      overflow:hidden;
      position:relative;
    }
    .radar-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(242,198,160,.055) 1px, transparent 1px),
        linear-gradient(90deg,rgba(242,198,160,.055) 1px, transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(180deg,#000,transparent 92%);
    }
    .score-line{
      display:grid;
      grid-template-columns:120px 1fr 52px;
      gap:14px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .bar{
      height:10px;
      border-radius:999px;
      overflow:hidden;
      background:rgba(255,255,255,.12);
    }
    .bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-apricot),var(--color-caramel));
    }
    .advice-card{
      border-radius:26px;
      border:1px solid var(--color-border);
      background:rgba(255,249,241,.84);
      padding:24px;
      box-shadow:var(--shadow-card);
      transition:.25s ease;
    }
    .advice-card:hover{transform:translateY(-4px);border-color:rgba(90,31,46,.32)}
    .faq-item{
      border:1px solid var(--color-border);
      background:rgba(255,249,241,.78);
      border-radius:24px;
      padding:24px;
      box-shadow:0 12px 30px rgba(54,35,31,.05);
    }
    .faq-q{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--color-ink);
      font-weight:950;
      font-size:18px;
      line-height:1.45;
    }
    .faq-dot{
      width:24px;
      height:24px;
      flex:none;
      margin-top:2px;
      border-radius:50%;
      background:var(--color-wine);
      color:var(--color-apricot);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
    }
    .contact-panel{
      border-radius:36px;
      background:
        radial-gradient(circle at 15% 10%,rgba(242,198,160,.22),transparent 34%),
        linear-gradient(135deg,var(--color-wine),#2b1716);
      color:#fff9f1;
      border:1px solid rgba(242,198,160,.22);
      box-shadow:0 28px 70px rgba(90,31,46,.22);
      overflow:hidden;
    }
    .form-control{
      width:100%;
      min-height:52px;
      border-radius:16px;
      border:1px solid rgba(242,198,160,.24);
      background:rgba(255,249,241,.95);
      color:var(--color-ink);
      padding:12px 15px;
      transition:.22s ease;
    }
    textarea.form-control{min-height:124px;resize:vertical}
    .form-control:focus{
      border-color:var(--color-apricot);
      box-shadow:0 0 0 4px rgba(242,198,160,.18);
    }
    .footer{
      background:linear-gradient(180deg,#2b1716,#1c1110);
      color:#fff9f1;
      margin-top:80px;
    }
    .footer-card{
      border-radius:26px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      padding:24px;
    }
    .footer a{
      color:rgba(248,238,227,.72);
      transition:.22s ease;
    }
    .footer a:hover{
      color:var(--color-apricot);
      transform:translateX(2px);
    }
    @media (min-width:1024px){
      .side-nav{display:block}
      .mobile-header{display:none}
      .main-shell{margin-left:var(--nav-width)}
      .page-wrap{padding-top:42px}
    }
    @media (max-width:1023px){
      .container-wide{width:min(100% - 32px, 900px)}
      .section{padding:66px 0}
      .magazine-grid{grid-template-columns:1fr}
      .score-line{grid-template-columns:96px 1fr 46px}
    }
    @media (max-width:768px){
      .hero-card{border-radius:26px}
      .section{padding:58px 0}
      .section-tight{padding:44px 0}
      .lead{font-size:16px}
      .filter-group{padding:15px}
      .topic-card{border-radius:24px}
      .contact-panel{border-radius:28px}
    }
    @media (max-width:520px){
      .container-wide{width:min(100% - 24px, 100%)}
      .btn{width:100%;padding-inline:16px}
      .score-line{grid-template-columns:1fr;gap:8px}
      .heading-xl{font-size:34px}
      .topic-number{width:44px;height:44px;border-radius:15px}
      .footer{margin-top:56px}
    }

/* roulang page: category2 */
:root{
      --color-wine:#5A1F2E;
      --color-cherry:#6B2338;
      --color-cream:#F8F1E8;
      --color-paper:#FFF9F1;
      --color-apricot:#F2C6A0;
      --color-ink:#211815;
      --color-coffee:#36231F;
      --color-caramel:#B66A3C;
      --color-berry:#8E3C5A;
      --color-muted:#8C7B72;
      --color-border:#E6D8CC;
      --shadow-soft:0 22px 60px rgba(90,31,46,.12);
      --shadow-card:0 14px 34px rgba(54,35,31,.10);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --side-width:104px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","Microsoft YaHei","PingFang SC",system-ui,sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 84% 12%, rgba(242,198,160,.42), transparent 28%),
        radial-gradient(circle at 18% 82%, rgba(142,60,90,.13), transparent 34%),
        linear-gradient(135deg, rgba(90,31,46,.035) 0 1px, transparent 1px 18px),
        var(--color-cream);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    input,select,textarea{outline:none}
    ::selection{background:var(--color-apricot);color:var(--color-wine)}
    .container-wide{
      width:min(1220px,calc(100% - 48px));
      margin-inline:auto;
    }
    .main-shell{
      min-height:100vh;
    }
    @media (min-width:1024px){
      .main-shell{margin-left:var(--side-width)}
      .mobile-header{display:block}
    }
    .brand-seal{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      background:linear-gradient(145deg,var(--color-apricot),#E8B98F);
      color:var(--color-wine);
      font-weight:900;
      letter-spacing:.08em;
      box-shadow:inset 0 0 0 1px rgba(90,31,46,.18),0 12px 28px rgba(0,0,0,.16);
    }
    .side-nav{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--side-width);
      z-index:50;
      padding:18px 12px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), transparent 18%),
        linear-gradient(180deg,#6B2338 0%,#3A1D1C 62%,#211815 100%);
      color:#fff;
      border-right:1px solid rgba(242,198,160,.18);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:22px;
    }
    .side-nav-logo{
      width:100%;
      min-height:132px;
      border-radius:24px;
      padding:12px 8px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      background:rgba(255,249,241,.08);
      border:1px solid rgba(242,198,160,.2);
      transition:.25s ease;
    }
    .side-nav-logo:hover{background:rgba(242,198,160,.13);transform:translateY(-2px)}
    .logo-main{
      writing-mode:vertical-rl;
      font-weight:900;
      line-height:1.05;
      font-size:13px;
      letter-spacing:.08em;
      max-height:92px;
      overflow:hidden;
    }
    .logo-sub{
      font-size:10px;
      color:rgba(242,198,160,.8);
      transform:scale(.88);
    }
    .side-nav-links{
      list-style:none;
      padding:0;
      margin:0;
      width:100%;
      display:grid;
      gap:8px;
    }
    .side-nav-link{
      position:relative;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-height:58px;
      gap:3px;
      border-radius:18px;
      color:rgba(255,249,241,.72);
      font-size:12px;
      line-height:1.2;
      text-align:center;
      transition:.25s ease;
    }
    .side-nav-link .nav-icon{font-size:20px;color:rgba(242,198,160,.58);line-height:1}
    .side-nav-link:hover{
      color:#fff;
      background:rgba(255,249,241,.08);
      transform:translateY(-2px);
    }
    .side-nav-link.active{
      color:var(--color-wine);
      background:linear-gradient(135deg,var(--color-apricot),#F6D8BA);
      box-shadow:0 12px 28px rgba(0,0,0,.22);
      font-weight:900;
    }
    .side-nav-link.active:before{
      content:"";
      position:absolute;
      left:-12px;
      top:16px;
      bottom:16px;
      width:4px;
      border-radius:99px;
      background:#fff;
    }
    .side-nav-link.active .nav-icon{color:var(--color-wine)}
    .side-nav-footer{
      margin-top:auto;
      writing-mode:vertical-rl;
      color:rgba(242,198,160,.62);
      font-size:11px;
      letter-spacing:.18em;
    }
    .mobile-header{
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(248,241,232,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(230,216,204,.85);
      box-shadow:0 10px 26px rgba(90,31,46,.06);
    }
    .mobile-nav-scroll{
      overflow-x:auto;
      scrollbar-width:none;
    }
    .mobile-nav-scroll::-webkit-scrollbar{display:none}
    .m-link{
      flex:0 0 auto;
      padding:9px 14px;
      border:1px solid var(--color-border);
      border-radius:999px;
      color:var(--color-coffee);
      background:rgba(255,249,241,.72);
      font-size:14px;
      font-weight:700;
      transition:.22s ease;
    }
    .m-link:hover,.m-link.active{
      background:var(--color-wine);
      border-color:var(--color-wine);
      color:#fff;
    }
    @media (min-width:1024px){
      .mobile-header{position:static;background:transparent;border:0;box-shadow:none}
      .mobile-header > div,.mobile-nav-scroll{display:none!important}
    }
    @media (max-width:1023px){
      .side-nav{display:none}
      .container-wide{width:min(100% - 32px,740px)}
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:12px 22px;
      border-radius:999px;
      font-weight:900;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-wine),var(--color-cherry));
      box-shadow:0 16px 34px rgba(90,31,46,.23);
    }
    .btn-primary:hover{transform:translateY(-3px);box-shadow:0 20px 44px rgba(90,31,46,.30);background:linear-gradient(135deg,#431722,var(--color-wine))}
    .btn-secondary{
      color:var(--color-wine);
      background:rgba(255,249,241,.64);
      border-color:rgba(90,31,46,.28);
    }
    .btn-secondary:hover{transform:translateY(-3px);background:#F8E2CB;border-color:var(--color-wine)}
    .btn:focus-visible,.m-link:focus-visible,.side-nav-link:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(242,198,160,.92);
      outline-offset:3px;
    }
    .section{padding:92px 0}
    .section-tight{padding:66px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(90,31,46,.18);
      border-radius:999px;
      background:rgba(255,249,241,.7);
      color:var(--color-wine);
      font-size:13px;
      font-weight:900;
      letter-spacing:.12em;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--color-caramel);
      box-shadow:0 0 0 5px rgba(182,106,60,.12);
    }
    .section-title{
      margin-top:16px;
      font-size:clamp(28px,4vw,42px);
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
      color:var(--color-ink);
    }
    .section-desc{
      margin-top:16px;
      max-width:760px;
      color:var(--color-muted);
      font-size:17px;
      line-height:1.9;
    }
    .hero{
      position:relative;
      padding:72px 0 54px;
      overflow:hidden;
    }
    .hero:after{
      content:"";
      position:absolute;
      right:-120px;
      top:40px;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(142,60,90,.18),transparent 68%);
      pointer-events:none;
    }
    .hero-card{
      position:relative;
      border:1px solid rgba(230,216,204,.9);
      border-radius:36px;
      background:
        linear-gradient(135deg,rgba(255,249,241,.92),rgba(248,241,232,.82)),
        repeating-linear-gradient(90deg,rgba(90,31,46,.04) 0 1px,transparent 1px 88px);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .hero-card:before{
      content:"方法论 / 数据流 / 合规表达";
      position:absolute;
      right:28px;
      top:26px;
      color:rgba(90,31,46,.16);
      font-size:12px;
      font-weight:900;
      letter-spacing:.24em;
    }
    .hero-title{
      font-size:clamp(34px,5.2vw,58px);
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.055em;
      color:var(--color-ink);
    }
    .hero-title mark{
      background:linear-gradient(180deg,transparent 54%,rgba(242,198,160,.78) 0);
      color:var(--color-wine);
      padding:0 .06em;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:8px 12px;
      background:rgba(90,31,46,.07);
      border:1px solid rgba(90,31,46,.12);
      color:var(--color-coffee);
      font-size:13px;
      font-weight:800;
    }
    .dark-panel{
      position:relative;
      border-radius:30px;
      padding:24px;
      color:#FFF9F1;
      background:
        linear-gradient(rgba(242,198,160,.07) 1px,transparent 1px),
        linear-gradient(90deg,rgba(242,198,160,.07) 1px,transparent 1px),
        linear-gradient(145deg,#211815 0%,#351d22 48%,#5A1F2E 100%);
      background-size:26px 26px,26px 26px,auto;
      border:1px solid rgba(242,198,160,.2);
      box-shadow:0 22px 50px rgba(33,24,21,.22);
    }
    .score-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .score-tile{
      padding:16px;
      border-radius:20px;
      background:rgba(255,249,241,.08);
      border:1px solid rgba(242,198,160,.14);
      transition:.24s ease;
    }
    .score-tile:hover{background:rgba(255,249,241,.12);transform:translateY(-3px)}
    .score-num{
      color:var(--color-apricot);
      font-size:28px;
      font-weight:950;
      line-height:1;
    }
    .line-progress{
      height:8px;
      border-radius:999px;
      overflow:hidden;
      background:rgba(255,249,241,.14);
      margin-top:12px;
    }
    .line-progress span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--color-apricot),var(--color-caramel));
    }
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:26px;
      top:18px;
      bottom:18px;
      width:2px;
      background:linear-gradient(var(--color-apricot),rgba(90,31,46,.22));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:54px 1fr;
      gap:18px;
      align-items:start;
    }
    .timeline-num{
      position:relative;
      z-index:1;
      width:54px;
      height:54px;
      border-radius:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:950;
      background:linear-gradient(145deg,var(--color-wine),var(--color-berry));
      box-shadow:0 12px 24px rgba(90,31,46,.18);
    }
    .timeline-card,.method-card,.metric-card,.faq-card,.mistake-card{
      background:rgba(255,249,241,.76);
      border:1px solid rgba(230,216,204,.9);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      transition:.25s ease;
    }
    .timeline-card:hover,.method-card:hover,.metric-card:hover,.faq-card:hover,.mistake-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 42px rgba(90,31,46,.14);
      border-color:rgba(182,106,60,.38);
    }
    .metric-card{
      padding:24px;
      overflow:hidden;
    }
    .metric-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:16px;
    }
    .metric-value{
      width:82px;
      height:82px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--color-wine);
      font-size:22px;
      font-weight:950;
      background:
        radial-gradient(circle at center,#FFF9F1 56%,transparent 57%),
        conic-gradient(var(--color-wine) var(--p),rgba(230,216,204,.9) 0);
      box-shadow:inset 0 0 0 1px rgba(90,31,46,.08);
    }
    .bar-row{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .bar-label{
      display:flex;
      justify-content:space-between;
      color:var(--color-muted);
      font-size:13px;
      font-weight:800;
    }
    .bar{
      height:10px;
      border-radius:999px;
      background:#EFE2D6;
      overflow:hidden;
    }
    .bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--color-wine),var(--color-caramel));
    }
    .method-card{
      padding:28px;
      min-height:100%;
      position:relative;
      overflow:hidden;
    }
    .method-card:after{
      content:"";
      position:absolute;
      right:-36px;
      top:-36px;
      width:110px;
      height:110px;
      border-radius:50%;
      background:rgba(242,198,160,.28);
    }
    .method-index{
      color:rgba(90,31,46,.26);
      font-size:42px;
      font-weight:950;
      line-height:1;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(242,198,160,.34);
      color:var(--color-wine);
      font-size:12px;
      font-weight:900;
      letter-spacing:.05em;
    }
    .quote-panel{
      border-radius:34px;
      padding:34px;
      background:linear-gradient(135deg,var(--color-wine),#2A1716);
      color:#FFF9F1;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .quote-panel:before{
      content:"“";
      position:absolute;
      right:32px;
      top:-28px;
      font-size:150px;
      color:rgba(242,198,160,.13);
      font-family:serif;
      line-height:1;
    }
    .mistake-card{
      padding:24px;
      background:linear-gradient(135deg,rgba(255,249,241,.82),rgba(248,225,205,.52));
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      color:var(--color-coffee);
      line-height:1.7;
    }
    .check-list li:before{
      content:"";
      margin-top:9px;
      width:8px;
      height:8px;
      flex:0 0 auto;
      border-radius:50%;
      background:var(--color-caramel);
      box-shadow:0 0 0 5px rgba(182,106,60,.12);
    }
    .faq-card{
      padding:22px 24px;
    }
    .faq-card h3{
      font-size:18px;
      color:var(--color-wine);
      font-weight:950;
      margin:0 0 8px;
    }
    .contact-wrap{
      border-radius:36px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(90,31,46,.97),rgba(33,24,21,.98)),
        radial-gradient(circle at 20% 20%,rgba(242,198,160,.22),transparent 32%);
      color:#FFF9F1;
      box-shadow:0 26px 70px rgba(90,31,46,.22);
    }
    .form-field label{
      display:block;
      margin-bottom:8px;
      font-size:14px;
      font-weight:900;
      color:rgba(255,249,241,.9);
    }
    .form-field input,.form-field select,.form-field textarea{
      width:100%;
      min-height:50px;
      padding:13px 15px;
      border-radius:16px;
      border:1px solid rgba(242,198,160,.25);
      background:rgba(255,249,241,.95);
      color:var(--color-ink);
      transition:.2s ease;
    }
    .form-field textarea{min-height:122px;resize:vertical}
    .form-field input:focus,.form-field select:focus,.form-field textarea:focus{
      border-color:var(--color-apricot);
      box-shadow:0 0 0 4px rgba(242,198,160,.22);
      background:#fff;
    }
    .footer{
      margin-left:0;
      background:
        linear-gradient(180deg,rgba(90,31,46,.98),rgba(33,24,21,1));
      color:#FFF9F1;
    }
    @media (min-width:1024px){
      .footer{margin-left:var(--side-width)}
    }
    .footer-card{
      border:1px solid rgba(255,255,255,.10);
      border-radius:26px;
      padding:24px;
      background:rgba(255,255,255,.045);
    }
    .footer a{
      color:rgba(255,249,241,.76);
      transition:.2s ease;
    }
    .footer a:hover{color:var(--color-apricot);transform:translateX(2px)}
    @media (max-width:767px){
      .section{padding:64px 0}
      .section-tight{padding:48px 0}
      .hero{padding:36px 0 38px}
      .hero-card{border-radius:28px}
      .hero-card:before{display:none}
      .dark-panel{border-radius:24px;padding:18px}
      .score-grid{grid-template-columns:1fr}
      .timeline:before{left:22px}
      .timeline-item{grid-template-columns:46px 1fr;gap:12px}
      .timeline-num{width:46px;height:46px;border-radius:16px}
      .timeline-card{padding:18px!important}
      .quote-panel{padding:26px;border-radius:28px}
      .metric-head{align-items:flex-start}
      .metric-value{width:70px;height:70px;font-size:18px}
      .btn{width:100%;white-space:normal}
    }
