/* roulang page: index */
:root {
      --berry-950: #241326;
      --berry-900: #321832;
      --berry-800: #472044;
      --berry-700: #642c59;
      --coral-500: #e47d68;
      --coral-600: #c96354;
      --amber-300: #f2c078;
      --paper: #f8f4ef;
      --paper-deep: #eee6e3;
      --lavender: #eee9f0;
      --ink: #281f2b;
      --muted: #746976;
      --line: #ded4dc;
      --white: #fffdfb;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --shadow-sm: 0 8px 24px rgba(48, 25, 48, .07);
      --shadow-md: 0 18px 45px rgba(48, 25, 48, .13);
      --container: 1240px;
      --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--font-cn);
      font-size: 16px;
      line-height: 1.75;
      overflow-x: hidden;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { border: 0; cursor: pointer; }
    img { display: block; max-width: 100%; }
    ::selection { color: var(--white); background: var(--berry-700); }
    :focus-visible { outline: 3px solid var(--amber-300); outline-offset: 3px; }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }
    .section { padding: 96px 0; }
    .section-soft { background: var(--lavender); }
    .section-dark { color: var(--white); background: var(--berry-950); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--coral-600);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .eyebrow::before {
      width: 24px;
      height: 2px;
      background: currentColor;
      content: "";
    }
    .section-heading {
      max-width: 720px;
      margin-bottom: 42px;
    }
    .section-heading h2 {
      margin: 10px 0 14px;
      color: var(--ink);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.2;
      letter-spacing: 0;
    }
    .section-dark .section-heading h2 { color: var(--white); }
    .section-heading p {
      max-width: 650px;
      margin: 0;
      color: var(--muted);
    }
    .section-dark .section-heading p { color: #cbb9c9; }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 0;
      right: 0;
      left: 0;
      padding: 18px 0;
      color: var(--white);
      transition: .25s ease;
    }
    .site-header.scrolled {
      padding: 10px 0;
      color: var(--ink);
      background: rgba(248, 244, 239, .96);
      box-shadow: 0 5px 25px rgba(48, 25, 48, .1);
      backdrop-filter: blur(14px) saturate(120%);
    }
    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 54px;
      padding: 8px 12px 8px 20px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-md);
      background: rgba(36, 19, 38, .54);
      box-shadow: 0 12px 35px rgba(20, 10, 22, .16);
      backdrop-filter: blur(14px) saturate(120%);
    }
    .scrolled .nav-shell {
      border-color: var(--line);
      background: rgba(255,253,251,.86);
      box-shadow: none;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-size: 17px;
      font-weight: 800;
    }
    .brand-mark {
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 9px;
      color: var(--berry-950);
      background: var(--amber-300);
      font-size: 13px;
      font-weight: 900;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: auto;
      margin-right: 18px;
    }
    .nav-links a, .mobile-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 13px;
      border-radius: 8px;
      color: inherit;
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
    }
    .nav-links a:hover, .nav-links a.active,
    .mobile-links a:hover, .mobile-links a.active {
      color: var(--amber-300);
      background: rgba(255,255,255,.1);
    }
    .scrolled .nav-links a:hover, .scrolled .nav-links a.active {
      color: var(--berry-700);
      background: var(--lavender);
    }
    .nav-actions { display: flex; align-items: center; gap: 9px; }
    .search-trigger {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 42px;
      padding: 0 12px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 8px;
      color: inherit;
      background: transparent;
      font-size: 13px;
      transition: .2s ease;
    }
    .search-trigger:hover { border-color: var(--amber-300); }
    .scrolled .search-trigger { border-color: var(--line); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 9px;
      font-size: 14px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(1px); }
    .btn-primary { color: var(--white); background: var(--coral-600); box-shadow: 0 9px 20px rgba(201,99,84,.23); }
    .btn-primary:hover { background: #b95448; }
    .btn-light { color: var(--berry-950); background: var(--amber-300); }
    .btn-light:hover { background: #f6ce91; }
    .btn-outline { color: var(--berry-800); border-color: var(--line); background: transparent; }
    .btn-outline:hover { border-color: var(--berry-700); background: var(--lavender); }
    .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.3); background: transparent; }
    .btn-ghost:hover { border-color: var(--amber-300); background: rgba(255,255,255,.08); }
    .menu-toggle { display: none; color: inherit; background: transparent; font-size: 24px; }
    .mobile-menu {
      display: none;
      position: fixed;
      z-index: 45;
      inset: 0;
      padding: 90px 24px 30px;
      background: rgba(36,19,38,.97);
    }
    .mobile-menu.open { display: block; }
    .mobile-links { display: grid; gap: 8px; }
    .mobile-links a { justify-content: space-between; color: var(--white); font-size: 18px; }
    .mobile-menu .btn { width: 100%; margin-top: 26px; }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 170px 0 90px;
      overflow: hidden;
      color: var(--white);
      background-color: var(--berry-950);
      background-image: repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,.035) 39px 40px);
    }
    .hero::before {
      position: absolute;
      inset: 0;
      opacity: .17;
      background-image: radial-gradient(rgba(255,255,255,.5) .7px, transparent .7px);
      background-size: 7px 7px;
      content: "";
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
      align-items: center;
      gap: 72px;
    }
    .hero-copy { max-width: 670px; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 24px;
      color: var(--amber-300);
      font-size: 13px;
      font-weight: 800;
    }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); box-shadow: 0 0 0 5px rgba(228,125,104,.17); }
    .hero h1 {
      max-width: 700px;
      margin: 0 0 24px;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1.08;
      letter-spacing: 0;
    }
    .hero-copy > p {
      max-width: 620px;
      margin: 0 0 30px;
      color: #dbcbd9;
      font-size: 17px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 35px; }
    .hero-meta { display: flex; flex-wrap: wrap; gap: 22px; color: #c4afc0; font-size: 13px; }
    .hero-meta strong { display: block; color: var(--white); font-size: 19px; line-height: 1.25; }
    .index-panel {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-lg);
      background: rgba(255,253,251,.09);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(10px);
    }
    .panel-top, .index-row { display: flex; align-items: center; justify-content: space-between; }
    .panel-top { padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.16); }
    .panel-top strong { font-size: 18px; }
    .panel-code { color: var(--amber-300); font: 700 12px/1 system-ui; }
    .index-row {
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .index-row:last-child { border-bottom: 0; padding-bottom: 4px; }
    .row-num { color: var(--amber-300); font-size: 13px; font-weight: 800; }
    .row-main { flex: 1; }
    .row-main strong { display: block; margin-bottom: 2px; font-size: 15px; }
    .row-main span { color: #bda9bb; font-size: 12px; }
    .row-state { color: #a9d2b9; font-size: 12px; }
    .cover-strip {
      height: 118px;
      margin: -22px -22px 18px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      background-color: var(--berry-700);
      background-image: linear-gradient(120deg, rgba(242,192,120,.52), transparent 37%), repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.13) 27px 28px);
    }
    .age-note { margin-top: 16px; color: #af9cab; font-size: 12px; }

    .info-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
    .notice-list { border-top: 1px solid var(--line); }
    .notice-item {
      display: grid;
      grid-template-columns: 95px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      transition: .2s ease;
    }
    .notice-item:hover { padding-left: 8px; background: rgba(255,255,255,.3); }
    .notice-date { color: var(--muted); font-size: 12px; }
    .notice-item h3 { margin: 0 0 3px; font-size: 17px; }
    .notice-item p { margin: 0; color: var(--muted); font-size: 13px; }
    .arrow { color: var(--coral-600); font-size: 21px; }
    .featured-note { padding: 28px; border-radius: var(--radius-lg); color: var(--white); background: var(--berry-800); box-shadow: var(--shadow-sm); }
    .featured-note .label { color: var(--amber-300); font-size: 12px; font-weight: 800; }
    .featured-note h3 { margin: 12px 0; font-size: 26px; line-height: 1.3; }
    .featured-note p { margin: 0 0 22px; color: #d9c8d6; font-size: 14px; }

    .service-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
    .service-large, .service-small {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: .25s ease;
    }
    .service-large { min-height: 330px; padding: 34px; background: var(--berry-900); color: var(--white); }
    .service-large:hover, .service-small:hover { transform: translateY(-4px); border-color: var(--coral-500); box-shadow: var(--shadow-md); }
    .service-large::after {
      position: absolute;
      right: -40px;
      bottom: -70px;
      width: 260px;
      height: 180px;
      border-top: 1px solid rgba(242,192,120,.5);
      border-radius: 50%;
      transform: rotate(-20deg);
      content: "";
    }
    .service-small { padding: 25px; }
    .service-stack { display: grid; gap: 20px; }
    .number { color: var(--coral-600); font: 800 12px/1 system-ui; }
    .service-large .number { color: var(--amber-300); }
    .service-large h3, .service-small h3 { margin: 17px 0 9px; font-size: 24px; line-height: 1.3; }
    .service-small h3 { font-size: 19px; }
    .service-large p, .service-small p { margin: 0; color: var(--muted); font-size: 14px; }
    .service-large p { color: #d8c7d6; }
    .mini-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 23px; }
    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 25px;
      padding: 0 9px;
      border-radius: 6px;
      color: var(--berry-800);
      background: var(--lavender);
      font-size: 11px;
      font-weight: 700;
    }
    .service-large .tag { color: var(--berry-950); background: var(--amber-300); }

    .scene-section { background: var(--paper-deep); }
    .scene-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
    .browser {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);
    }
    .browser-head { display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
    .browser-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); }
    .browser-head i:nth-child(2) { background: var(--amber-300); }
    .browser-head i:nth-child(3) { background: #9dbca7; }
    .browser-body { padding: 23px; }
    .filter-line { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; }
    .fake-input { flex: 1; padding: 9px 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); font-size: 12px; }
    .filter-btn { padding: 8px 11px; border-radius: 7px; color: var(--white); background: var(--berry-700); font-size: 12px; }
    .scene-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
    .scene-thumb { aspect-ratio: 4 / 3; border-radius: 6px; background: var(--lavender); background-image: repeating-linear-gradient(0deg, transparent 0 8px, rgba(100,44,89,.15) 9px 10px); }
    .scene-item strong { display: block; font-size: 14px; }
    .scene-item span { color: var(--muted); font-size: 11px; }
    .scene-status { color: #578365; font-size: 11px; }
    .steps { display: grid; gap: 25px; margin-top: 10px; }
    .step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
    .step-num { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--coral-500); border-radius: 50%; color: var(--coral-600); font-weight: 800; }
    .step h3 { margin: 0 0 3px; font-size: 17px; }
    .step p { margin: 0; color: var(--muted); font-size: 14px; }

    .evidence-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .timeline, .quote-panel { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.05); }
    .timeline-row { display: flex; gap: 17px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .timeline-row:last-child { border-bottom: 0; }
    .timeline-mark { width: 9px; height: 9px; margin-top: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--amber-300); }
    .timeline-row strong { display: block; color: var(--white); font-size: 15px; }
    .timeline-row span { color: #bca9b9; font-size: 12px; }
    .quote-panel blockquote { margin: 0 0 25px; color: #ebdfea; font-size: 20px; line-height: 1.55; }
    .quote-panel cite { color: var(--amber-300); font-size: 12px; font-style: normal; }
    .metric-row { display: flex; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.14); }
    .metric strong { display: block; color: var(--white); font-size: 25px; line-height: 1.2; }
    .metric span { color: #bca9b9; font-size: 12px; }

    .faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 65px; align-items: start; }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question { display: flex; justify-content: space-between; gap: 20px; width: 100%; padding: 21px 0; color: var(--ink); text-align: left; background: transparent; font-weight: 800; }
    .faq-icon { color: var(--coral-600); font-size: 22px; line-height: 1; transition: .2s ease; }
    .faq-answer { max-height: 0; overflow: hidden; color: var(--muted); font-size: 14px; transition: max-height .3s ease, padding .3s ease; }
    .faq-item.open .faq-answer { max-height: 150px; padding: 0 35px 20px 0; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .about-band { padding: 65px 0 130px; background: var(--paper); }
    .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
    .about-layout h2 { max-width: 520px; margin: 13px 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.25; }
    .about-layout p { max-width: 590px; margin: 0; color: var(--muted); }
    .compliance-box { padding: 25px; border-left: 4px solid var(--coral-500); background: var(--white); box-shadow: var(--shadow-sm); }
    .compliance-box h3 { margin: 0 0 9px; font-size: 17px; }
    .compliance-box p { font-size: 13px; }

    .site-footer { padding: 58px 0 110px; color: #cdbdcb; background: var(--berry-950); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 35px; }
    .footer-brand p { max-width: 290px; margin: 17px 0 0; color: #9e899b; font-size: 13px; }
    .footer-title { margin: 0 0 15px; color: var(--white); font-size: 14px; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a { color: #b7a5b4; font-size: 13px; transition: .2s ease; }
    .footer-links a:hover { color: var(--amber-300); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8e798b; font-size: 12px; }

    .fixed-cta {
      position: fixed;
      z-index: 40;
      right: 22px;
      bottom: 20px;
      left: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: 1060px;
      margin: auto;
      padding: 12px 14px 12px 22px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 12px;
      color: var(--white);
      background: rgba(36,19,38,.94);
      box-shadow: 0 16px 40px rgba(20,10,22,.25);
      backdrop-filter: blur(14px);
    }
    .fixed-cta strong { display: block; font-size: 14px; }
    .fixed-cta span { color: #bda9bb; font-size: 12px; }
    .fixed-actions { display: flex; gap: 8px; align-items: center; }
    .close-cta { width: 35px; height: 35px; color: #bda9bb; background: transparent; font-size: 20px; }
    .close-cta:hover { color: var(--white); }

    @media (max-width: 1050px) {
      .nav-links { gap: 0; margin-right: 6px; }
      .nav-links a { padding: 0 8px; }
      .hero-grid { gap: 38px; }
      .container { width: min(calc(100% - 40px), var(--container)); }
    }
    @media (max-width: 820px) {
      .section { padding: 68px 0; }
      .nav-links, .nav-actions .search-trigger { display: none; }
      .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; }
      .nav-actions { margin-left: auto; }
      .hero { min-height: auto; padding: 145px 0 70px; }
      .hero-grid, .info-layout, .scene-layout, .faq-layout, .about-layout { grid-template-columns: 1fr; gap: 42px; }
      .hero-grid { align-items: start; }
      .service-layout, .evidence-layout { grid-template-columns: 1fr; }
      .service-large { min-height: 280px; }
      .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .fixed-cta { right: 12px; bottom: 12px; left: 12px; }
    }
    @media (max-width: 520px) {
      .container { width: min(calc(100% - 32px), var(--container)); }
      .hero h1 { font-size: 42px; }
      .hero-copy > p { font-size: 15px; }
      .hero-actions, .hero-actions .btn { width: 100%; }
      .hero-meta { gap: 15px; }
      .index-panel { padding: 17px; }
      .cover-strip { margin: -17px -17px 15px; }
      .notice-item { grid-template-columns: 1fr auto; gap: 5px 12px; }
      .notice-date { grid-column: 1 / -1; }
      .service-large, .service-small, .timeline, .quote-panel { padding: 22px; }
      .scene-item { grid-template-columns: 60px 1fr; }
      .scene-status { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { display: block; }
      .footer-bottom span { display: block; margin-top: 7px; }
      .fixed-cta { align-items: flex-start; padding: 12px; }
      .fixed-actions { flex-wrap: wrap; justify-content: flex-end; }
      .fixed-actions .btn { min-height: 40px; padding: 0 11px; font-size: 12px; }
      .fixed-cta > div:first-child { min-width: 100px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
    }

/* roulang page: category1 */
:root{
      --berry-950:#241326;--berry-900:#321832;--berry-800:#472044;--berry-700:#642c59;
      --coral-500:#e47d68;--coral-600:#c96354;--amber-300:#f2c078;
      --paper:#f8f4ef;--paper-deep:#eee6e3;--lavender:#eee9f0;--ink:#281f2b;
      --muted:#746976;--line:#ded4dc;--white:#fffdfb;--radius-sm:8px;--radius-md:14px;
      --radius-lg:24px;--shadow-sm:0 8px 24px rgba(48,25,48,.07);--shadow-md:0 18px 45px rgba(48,25,48,.13);
      --container:1240px;--font-cn:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",system-ui,sans-serif;
    }
    *,*:before,*:after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0;color:var(--ink);background:var(--paper);font-family:var(--font-cn);font-size:16px;line-height:1.75;overflow-x:hidden}
    body.menu-open{overflow:hidden}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{border:0;cursor:pointer}
    img{display:block;max-width:100%}
    .container{width:min(calc(100% - 48px),var(--container));margin:0 auto}
    .section{padding:92px 0}.section-soft{background:var(--lavender)}.section-dark{color:var(--white);background:var(--berry-950)}
    .eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--coral-600);font-size:12px;font-weight:800}
    .eyebrow:before{width:24px;height:2px;background:currentColor;content:""}
    .section-heading{max-width:720px;margin-bottom:40px}.section-heading h2{margin:10px 0 14px;font-size:clamp(30px,4vw,48px);line-height:1.2}
    .section-heading p{max-width:650px;margin:0;color:var(--muted)}
    .section-dark .section-heading h2{color:var(--white)}.section-dark .section-heading p{color:#cbb9c9}
    .site-header{position:fixed;z-index:50;top:0;right:0;left:0;padding:18px 0;color:var(--white);transition:.25s ease}
    .site-header.scrolled{padding:10px 0;color:var(--ink);background:rgba(248,244,239,.96);box-shadow:0 5px 25px rgba(48,25,48,.1);backdrop-filter:blur(14px) saturate(120%)}
    .nav-shell{display:flex;align-items:center;justify-content:space-between;min-height:54px;padding:8px 12px 8px 20px;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-md);background:rgba(36,19,38,.54);box-shadow:0 12px 35px rgba(20,10,22,.16);backdrop-filter:blur(14px) saturate(120%)}
    .scrolled .nav-shell{border-color:var(--line);background:rgba(255,253,251,.9);box-shadow:none}
    .brand{display:inline-flex;align-items:center;gap:10px;min-width:max-content;font-size:17px;font-weight:800}.brand-mark{display:grid;width:28px;height:28px;place-items:center;border-radius:9px;color:var(--berry-950);background:var(--amber-300);font-size:13px;font-weight:900}
    .nav-links{display:flex;align-items:center;gap:4px;margin-left:auto;margin-right:18px}.nav-links a,.mobile-links a{display:inline-flex;align-items:center;min-height:42px;padding:0 13px;border-radius:8px;font-size:14px;font-weight:700;transition:.2s ease}
    .nav-links a:hover,.nav-links a.active,.mobile-links a:hover,.mobile-links a.active{color:var(--amber-300);background:rgba(255,255,255,.1)}
    .scrolled .nav-links a:hover,.scrolled .nav-links a.active{color:var(--berry-700);background:var(--lavender)}
    .nav-actions{display:flex;align-items:center;gap:9px}.search-trigger{display:inline-flex;align-items:center;gap:7px;min-height:42px;padding:0 12px;border:1px solid rgba(255,255,255,.25);border-radius:8px;color:inherit;background:transparent;font-size:13px;transition:.2s ease}.search-trigger:hover{border-color:var(--amber-300)}.scrolled .search-trigger{border-color:var(--line)}
    .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:0 18px;border:1px solid transparent;border-radius:9px;font-size:14px;font-weight:800;transition:transform .2s,background .2s,box-shadow .2s,border-color .2s}.btn:hover{transform:translateY(-2px)}.btn:active{transform:translateY(1px)}.btn-primary{color:var(--white);background:var(--coral-600);box-shadow:0 9px 20px rgba(201,99,84,.23)}.btn-primary:hover{background:#b95448}.btn-light{color:var(--berry-950);background:var(--amber-300)}.btn-outline{color:var(--berry-800);border-color:var(--line);background:transparent}.btn-outline:hover{border-color:var(--berry-700);background:var(--lavender)}.btn-ghost{color:var(--white);border-color:rgba(255,255,255,.3);background:transparent}.btn-ghost:hover{border-color:var(--amber-300);background:rgba(255,255,255,.08)}
    :focus-visible{outline:3px solid var(--amber-300);outline-offset:3px}.menu-toggle{display:none;color:inherit;background:transparent;font-size:24px}.mobile-menu{display:none;position:fixed;z-index:45;inset:0;padding:90px 24px 30px;background:rgba(36,19,38,.97)}.mobile-menu.open{display:block}.mobile-links{display:grid;gap:8px}.mobile-links a{justify-content:space-between;color:var(--white);font-size:18px}.mobile-menu .btn{width:100%;margin-top:26px}
    .page-head{padding:172px 0 64px;color:var(--white);background:var(--berry-950);position:relative;overflow:hidden}.page-head:after{position:absolute;right:-8%;bottom:-80px;width:420px;height:220px;border:1px solid rgba(242,192,120,.22);border-radius:50%;content:"";transform:rotate(-12deg)}.crumb{margin-bottom:20px;color:#cbb9c9;font-size:13px}.crumb a{color:var(--amber-300)}.page-head h1{max-width:780px;margin:0 0 18px;font-size:clamp(36px,6vw,68px);line-height:1.12;letter-spacing:-.04em}.page-head p{max-width:700px;margin:0;color:#d7cbd5;font-size:17px}
    .index-layout{display:grid;grid-template-columns:280px 1fr;gap:54px}.filter-panel{align-self:start;position:sticky;top:100px;padding:24px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-sm)}.filter-panel h2{margin:0 0 20px;font-size:20px}.filter-group{padding:18px 0;border-top:1px solid var(--line)}.filter-group:first-of-type{border-top:0;padding-top:0}.filter-label{display:block;margin-bottom:10px;font-size:13px;font-weight:800}.filter-option{display:flex;align-items:center;gap:9px;margin:9px 0;color:var(--muted);font-size:14px}.filter-option input{accent-color:var(--coral-600)}
    .index-top{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:24px}.index-top h2{margin:0;font-size:30px}.index-top p{margin:4px 0 0;color:var(--muted)}.sorter{padding:10px 13px;border:1px solid var(--line);border-radius:9px;color:var(--berry-800);background:var(--white);font-size:13px}
    .featured-entry{display:grid;grid-template-columns:190px 1fr;gap:24px;padding:24px;margin-bottom:16px;border:1px solid var(--berry-700);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-sm);transition:.25s}.featured-entry:hover,.index-entry:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
    .cover{position:relative;min-height:135px;overflow:hidden;border-radius:10px;background:linear-gradient(135deg,var(--berry-800),var(--berry-950));}.cover:before{position:absolute;inset:24% -20% auto;height:2px;background:var(--amber-300);box-shadow:0 15px 0 rgba(242,192,120,.45),0 30px 0 rgba(242,192,120,.2);content:""}.cover span{position:absolute;bottom:12px;left:14px;color:#f8e6c9;font-size:12px;letter-spacing:.15em}
    .entry-meta{display:flex;align-items:center;gap:10px;margin-bottom:9px;color:var(--muted);font-size:12px}.tag{display:inline-flex;padding:3px 9px;border-radius:999px;color:var(--berry-800);background:var(--lavender);font-size:12px;font-weight:800}.tag.warm{color:#7f4c25;background:#f8e8cf}.featured-entry h3,.index-entry h3{margin:0 0 8px;font-size:21px;line-height:1.35}.entry-summary{margin:0 0 14px;color:var(--muted);font-size:14px}.index-list{display:grid;grid-template-columns:1fr 1fr;gap:14px}.index-entry{display:flex;gap:16px;padding:18px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--white);transition:.25s}.index-entry .cover{flex:0 0 92px;min-height:76px}.index-entry h3{font-size:16px}.index-entry .entry-summary{font-size:13px;margin-bottom:8px}.entry-link{color:var(--coral-600);font-size:13px;font-weight:800}
    .note-box{margin-top:22px;padding:18px 20px;border-left:3px solid var(--amber-300);background:var(--paper-deep);color:var(--muted);font-size:14px}.empty-state{display:none;margin-top:18px;padding:35px;text-align:center;border:1px dashed var(--line);border-radius:var(--radius-md);background:var(--lavender)}.empty-state strong{display:block;margin-bottom:5px;color:var(--berry-800)}
    .faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.faq-item{border-bottom:1px solid var(--line)}.faq-item summary{padding:20px 4px;cursor:pointer;font-weight:800;list-style:none}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary:after{float:right;content:"＋";color:var(--coral-600)}.faq-item[open] summary:after{content:"－"}.faq-answer{padding:0 4px 20px;color:var(--muted);font-size:14px}
    .cta-panel{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:38px 44px;border-radius:var(--radius-lg);color:var(--white);background:var(--berry-800);box-shadow:var(--shadow-md)}.cta-panel h2{margin:0 0 8px;font-size:32px}.cta-panel p{margin:0;color:#d9cbd6}.cta-actions{display:flex;gap:10px;flex-wrap:wrap}
    .site-footer{padding:65px 0 28px;color:#d7cbd5;background:var(--berry-950)}.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:34px}.footer-brand p{max-width:300px;color:#b9a8b7;font-size:14px}.footer-title{margin:0 0 15px;color:var(--amber-300);font-size:13px}.footer-links{display:grid;gap:8px;color:#cbb9c9;font-size:14px}.footer-links a:hover{color:var(--white)}.footer-bottom{display:flex;justify-content:space-between;gap:20px;margin-top:44px;padding-top:20px;border-top:1px solid rgba(255,255,255,.13);color:#a996a6;font-size:12px}
    .quick-bar{position:fixed;z-index:40;right:24px;bottom:20px;left:24px;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:12px 14px 12px 20px;border:1px solid rgba(255,255,255,.15);border-radius:13px;color:var(--white);background:rgba(36,19,38,.94);box-shadow:var(--shadow-md);backdrop-filter:blur(12px)}.quick-bar strong{font-size:14px}.quick-bar small{display:block;color:#cbb9c9}.quick-actions{display:flex;gap:8px}.quick-close{padding:7px;color:#cbb9c9;background:transparent;font-size:18px}
    @media(max-width:900px){.nav-links,.nav-actions .search-trigger,.nav-actions>.btn{display:none}.menu-toggle{display:block}.index-layout{grid-template-columns:1fr}.filter-panel{position:static}.index-list{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}.cta-panel{align-items:flex-start;flex-direction:column}}
    @media(max-width:640px){.container{width:min(calc(100% - 32px),var(--container))}.section{padding:64px 0}.page-head{padding:140px 0 50px}.featured-entry{grid-template-columns:1fr}.featured-entry .cover{min-height:160px}.index-top{align-items:flex-start;flex-direction:column}.faq-grid{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr}.footer-bottom{align-items:flex-start;flex-direction:column}.quick-bar{right:12px;bottom:calc(10px + env(safe-area-inset-bottom));left:12px;padding:10px 12px}.quick-bar small{display:none}.quick-actions .btn{min-height:42px;padding:0 12px;font-size:12px}.cta-panel{padding:28px 24px}.cta-panel h2{font-size:26px}}
    @media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;transition:none!important}}

/* roulang page: category2 */
:root{
      --berry-950:#241326;--berry-900:#321832;--berry-800:#472044;--berry-700:#642c59;
      --coral-500:#e47d68;--coral-600:#c96354;--amber-300:#f2c078;
      --paper:#f8f4ef;--paper-deep:#eee6e3;--lavender:#eee9f0;
      --ink:#281f2b;--muted:#746976;--line:#ded4dc;--white:#fffdfb;
      --radius-sm:8px;--radius-md:14px;--radius-lg:24px;
      --shadow-sm:0 8px 24px rgba(48,25,48,.07);--shadow-md:0 18px 45px rgba(48,25,48,.13);
      --container:1240px;--font-cn:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",system-ui,sans-serif;
    }
    *,*:before,*:after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0;color:var(--ink);background:var(--paper);font-family:var(--font-cn);font-size:16px;line-height:1.75;overflow-x:hidden}
    body.menu-open{overflow:hidden}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{border:0;cursor:pointer}
    img{display:block;max-width:100%}
    a:focus-visible,button:focus-visible,input:focus-visible{outline:3px solid var(--coral-500);outline-offset:3px}
    .container{width:min(calc(100% - 48px),var(--container));margin:0 auto}
    .section{padding:92px 0}.section-soft{background:var(--lavender)}.section-dark{color:var(--white);background:var(--berry-950)}
    .eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--coral-600);font-size:12px;font-weight:800;letter-spacing:.08em}
    .eyebrow:before{width:24px;height:2px;background:currentColor;content:""}
    .section-heading{max-width:720px;margin-bottom:42px}.section-heading h2{margin:10px 0 14px;color:var(--ink);font-size:clamp(30px,4vw,48px);line-height:1.2}.section-heading p{max-width:650px;margin:0;color:var(--muted)}
    .section-dark .section-heading h2{color:var(--white)}.section-dark .section-heading p{color:#cbb9c9}
    .site-header{position:fixed;z-index:50;top:0;right:0;left:0;padding:18px 0;color:var(--white);transition:.25s ease}
    .site-header.scrolled{padding:10px 0;color:var(--ink);background:rgba(248,244,239,.96);box-shadow:0 5px 25px rgba(48,25,48,.1);backdrop-filter:blur(14px) saturate(120%)}
    .nav-shell{display:flex;align-items:center;justify-content:space-between;min-height:54px;padding:8px 12px 8px 20px;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-md);background:rgba(36,19,38,.54);box-shadow:0 12px 35px rgba(20,10,22,.16);backdrop-filter:blur(14px) saturate(120%)}
    .scrolled .nav-shell{border-color:var(--line);background:rgba(255,253,251,.88);box-shadow:none}
    .brand{display:inline-flex;align-items:center;gap:10px;min-width:max-content;font-size:17px;font-weight:800}.brand-mark{display:grid;width:28px;height:28px;place-items:center;border-radius:9px;color:var(--berry-950);background:var(--amber-300);font-size:13px;font-weight:900}
    .nav-links{display:flex;align-items:center;gap:4px;margin-left:auto;margin-right:18px}.nav-links a,.mobile-links a{position:relative;display:inline-flex;align-items:center;min-height:42px;padding:0 13px;border-radius:8px;font-size:14px;font-weight:700;transition:.2s ease}
    .nav-links a:hover,.nav-links a.active,.mobile-links a:hover,.mobile-links a.active{color:var(--amber-300);background:rgba(255,255,255,.1)}.scrolled .nav-links a:hover,.scrolled .nav-links a.active{color:var(--berry-700);background:var(--lavender)}
    .nav-actions{display:flex;align-items:center;gap:9px}.search-trigger{display:inline-flex;align-items:center;gap:7px;min-height:42px;padding:0 12px;border:1px solid rgba(255,255,255,.25);border-radius:8px;color:inherit;background:transparent;font-size:13px;transition:.2s ease}.search-trigger:hover{border-color:var(--amber-300)}.scrolled .search-trigger{border-color:var(--line)}
    .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:0 18px;border:1px solid transparent;border-radius:9px;font-size:14px;font-weight:800;transition:transform .2s ease,background .2s ease,box-shadow .2s ease,border-color .2s ease}.btn:hover{transform:translateY(-2px)}.btn:active{transform:translateY(1px)}.btn-primary{color:var(--white);background:var(--coral-600);box-shadow:0 9px 20px rgba(201,99,84,.23)}.btn-primary:hover{background:#b95448}.btn-light{color:var(--berry-950);background:var(--amber-300)}.btn-light:hover{background:#f6ce91}.btn-outline{color:var(--berry-800);border-color:var(--line);background:transparent}.btn-outline:hover{border-color:var(--berry-700);background:var(--lavender)}.btn-ghost{color:var(--white);border-color:rgba(255,255,255,.3);background:transparent}.btn-ghost:hover{border-color:var(--amber-300);background:rgba(255,255,255,.08)}
    .menu-toggle{display:none;color:inherit;background:transparent;font-size:24px}.mobile-menu{display:none;position:fixed;z-index:45;inset:0;padding:90px 24px 30px;background:rgba(36,19,38,.97)}.mobile-menu.open{display:block}.mobile-links{display:grid;gap:8px}.mobile-links a{justify-content:space-between;color:var(--white);font-size:18px}.mobile-menu .btn{width:100%;margin-top:26px}
    .page-hero{padding:172px 0 74px;color:var(--white);background:var(--berry-950);position:relative;overflow:hidden}.page-hero:after{position:absolute;right:-80px;bottom:-170px;width:520px;height:520px;border:1px solid rgba(242,192,120,.2);border-radius:50%;box-shadow:0 0 0 30px rgba(242,192,120,.04),0 0 0 70px rgba(242,192,120,.03);content:""}
    .hero-grid{display:grid;grid-template-columns:7fr 5fr;gap:70px;align-items:end;position:relative;z-index:1}.breadcrumb{display:flex;gap:9px;margin-bottom:24px;color:#cbb9c9;font-size:13px}.breadcrumb a:hover{color:var(--amber-300)}
    .page-hero h1{max-width:760px;margin:0 0 22px;font-size:clamp(38px,6vw,72px);line-height:1.13;letter-spacing:-.04em}.page-hero .lead{max-width:650px;color:#dfd1dd;font-size:18px}
    .hero-note{margin-top:28px;color:#cbb9c9;font-size:13px}.hero-note strong{color:var(--amber-300)}
    .cover-panel{padding:26px;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-lg);background:rgba(255,255,255,.07);box-shadow:var(--shadow-md)}.cover-top{display:flex;justify-content:space-between;align-items:center;color:var(--amber-300);font-size:12px;font-weight:800}.cover-art{height:190px;margin:20px 0;border-radius:12px;background:linear-gradient(135deg,var(--berry-700),#8a536c);position:relative;overflow:hidden}.cover-art:before{position:absolute;inset:25% -10%;height:2px;background:rgba(255,255,255,.5);box-shadow:0 24px rgba(255,255,255,.22),0 48px rgba(255,255,255,.18),0 72px rgba(255,255,255,.13);content:""}.cover-art:after{position:absolute;inset:0;background:repeating-linear-gradient(90deg,transparent 0 8px,rgba(255,255,255,.035) 9px 10px);content:""}
    .cover-title{font-size:20px;font-weight:800}.cover-meta{display:flex;justify-content:space-between;margin-top:10px;color:#cbb9c9;font-size:13px}
    .timeline{position:relative;max-width:920px;margin:0 auto}.timeline:before{position:absolute;top:12px;bottom:20px;left:17px;width:1px;background:var(--line);content:""}.timeline-item{display:grid;grid-template-columns:36px 1fr;gap:22px;margin-bottom:28px}.timeline-dot{width:35px;height:35px;display:grid;place-items:center;border:1px solid var(--coral-500);border-radius:50%;color:var(--coral-600);background:var(--paper);font-size:12px;font-weight:800;z-index:1}.timeline-card{padding:24px 28px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-sm);transition:.2s ease}.timeline-card:hover{transform:translateY(-3px);border-color:var(--coral-500);box-shadow:var(--shadow-md)}.timeline-card h3{margin:0 0 7px;font-size:20px}.timeline-card p{margin:0;color:var(--muted);font-size:14px}.tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.tag{display:inline-flex;padding:4px 9px;border-radius:6px;color:var(--berry-700);background:var(--lavender);font-size:12px;font-weight:700}.tag.warm{color:#8b5432;background:#f9ead6}
    .directory{display:grid;grid-template-columns:5fr 7fr;gap:26px}.directory-intro{padding:30px;border-radius:var(--radius-lg);color:var(--white);background:var(--berry-800)}.directory-intro h2{margin:0 0 12px;font-size:30px}.directory-intro p{color:#e0cddd}.directory-list{display:grid;grid-template-columns:1fr 1fr;gap:14px}.index-card{padding:22px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--white);transition:.2s ease}.index-card:hover{transform:translateY(-3px);border-color:var(--coral-500);box-shadow:var(--shadow-sm)}.index-card h3{margin:12px 0 5px;font-size:17px}.index-card p{margin:0;color:var(--muted);font-size:13px}.status{color:var(--coral-600);font-size:12px;font-weight:800}
    .faq-list{max-width:850px;border-top:1px solid var(--line)}.faq-item{border-bottom:1px solid var(--line)}.faq-question{display:flex;justify-content:space-between;gap:20px;width:100%;padding:22px 0;color:var(--ink);background:transparent;text-align:left;font-weight:800}.faq-icon{color:var(--coral-600);font-size:22px}.faq-answer{display:none;max-width:720px;padding:0 38px 22px 0;color:var(--muted);font-size:14px}.faq-item.open .faq-answer{display:block}.faq-item.open .faq-icon{transform:rotate(45deg)}
    .feedback{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}.feedback h2{margin:10px 0 14px;color:var(--white);font-size:clamp(30px,4vw,46px);line-height:1.2}.feedback p{color:#cbb9c9}.form-box{padding:26px;border:1px solid rgba(255,255,255,.18);border-radius:var(--radius-md);background:rgba(255,255,255,.07)}.form-label{display:block;margin-bottom:7px;color:#eadde8;font-size:13px;font-weight:700}.form-row{display:flex;gap:9px}.form-input{width:100%;min-height:48px;padding:0 14px;border:1px solid rgba(255,255,255,.25);border-radius:8px;color:var(--white);background:rgba(255,255,255,.08)}.form-input::placeholder{color:#bcaabb}.form-tip{margin:12px 0 0;color:#bcaabb;font-size:12px}
    .site-footer{padding:58px 0 24px;color:#d9cbd7;background:var(--berry-950)}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px;padding-bottom:42px;border-bottom:1px solid rgba(255,255,255,.14)}.footer-brand p{max-width:300px;color:#bcaabb;font-size:14px}.footer-title{margin:0 0 13px;color:var(--white);font-size:14px}.footer-links{display:grid;gap:8px;color:#bcaabb;font-size:13px}.footer-links a:hover{color:var(--amber-300)}.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:20px;color:#9f8d9d;font-size:12px}
    .bottom-bar{position:fixed;z-index:40;right:20px;bottom:20px;left:20px;padding:12px 16px;border:1px solid rgba(255,255,255,.14);border-radius:14px;color:var(--white);background:rgba(36,19,38,.94);box-shadow:var(--shadow-md);backdrop-filter:blur(12px)}.bar-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}.bar-inner small{color:#d2c1d0}.bar-actions{display:flex;gap:9px}.bar-close{color:#d2c1d0;background:transparent;font-size:20px}
    .empty-state{display:none;margin-top:16px;padding:26px;border:1px dashed var(--line);border-radius:var(--radius-md);color:var(--muted);background:rgba(255,255,255,.45);text-align:center}.loading-line{height:8px;margin-top:16px;border-radius:8px;background:linear-gradient(90deg,var(--paper-deep),var(--lavender),var(--paper-deep));background-size:200% 100%;animation:load 1.4s infinite}.error-state{color:var(--coral-600);font-size:13px}
    @keyframes load{to{background-position:-200% 0}}
    @media(max-width:992px){.hero-grid{gap:35px}.footer-grid{grid-template-columns:1.5fr 1fr 1fr}.nav-links{margin-right:5px}.search-trigger{display:none}}
    @media(max-width:768px){.container{width:min(calc(100% - 40px),var(--container))}.section{padding:68px 0}.nav-links,.site-header .nav-actions .btn{display:none}.menu-toggle{display:block}.hero-grid,.directory,.feedback{grid-template-columns:1fr}.page-hero{padding-top:140px}.cover-panel{max-width:560px}.directory-list{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}.footer-bottom{display:grid}.bottom-bar{right:10px;bottom:10px;left:10px}.bar-inner{align-items:flex-start}.bar-actions .btn{min-height:42px;padding:0 12px;font-size:12px}}
    @media(max-width:480px){.container{width:calc(100% - 32px)}.page-hero h1{font-size:39px}.page-hero .lead{font-size:16px}.cover-art{height:150px}.timeline-item{gap:12px}.timeline-card{padding:18px}.timeline-card h3{font-size:17px}.footer-grid{grid-template-columns:1fr}.form-row{display:grid}.bar-inner small{max-width:135px;line-height:1.45}.bar-actions{display:grid;gap:5px}.bar-actions .btn{min-height:40px}}
    @media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;transition:none!important;animation:none!important}}
