@charset "UTF-8";

:root {
    --red: #c90000;
    --red-dark: #a80000;
    --red-light: #f12b2b;
    --ink: #1f2329;
    --muted: #5d6673;
    --soft: #8a93a0;
    --line: rgba(201, 0, 0, 0.12);
    --line-gray: #e7e9ee;
    --panel: #f6f7f9;
    --panel-2: #f1f3f6;
    --shadow: 0 12px 30px rgba(18, 28, 45, 0.08);
    --radius: 18px;
    --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding-top: var(--header-h);
    overflow-x: hidden;
    background: #fff;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: -80px;
    background: #11151c;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: top .2s ease;
}
.skip-link:focus { top: 10px; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 0, 0, 0.08);
}
.header-inner {
    width: min(1440px, calc(100% - 40px));
    min-height: var(--header-h);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { flex: 0 0 auto; }
.logo img { max-height: 52px; width: auto; }
.nav-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    white-space: nowrap;
    flex-wrap: nowrap;
    min-width: 0;
}
.nav-core a {
    position: relative;
    padding: 10px 4px;
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
}
.nav-core a:hover, .nav-core a.active { color: var(--red); }
.nav-core a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(180deg, var(--red-light) 0%, var(--red) 55%, var(--red-dark) 100%);
    box-shadow: 0 8px 18px rgba(201, 0, 0, 0.2);
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 22px rgba(201, 0, 0, 0.25); }
.header-register { flex: 0 0 auto; min-width: 84px; }
.menu-toggle { display: none; }

.site-shell {
    width: min(1440px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.side-category {
    position: sticky;
    top: 96px;
    margin: 24px 0 44px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(201, 0, 0, 0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
}
.side-title {
    color: var(--red);
    font-weight: 900;
    padding: 8px 10px 12px;
    border-bottom: 1px solid var(--line-gray);
    margin-bottom: 8px;
}
.side-category nav { display: grid; gap: 4px; }
.side-category a {
    padding: 8px 10px;
    color: var(--ink);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 650;
}
.side-category a:hover, .side-category a.active { color: var(--red); background: rgba(201, 0, 0, 0.08); }
.site-main { min-width: 0; padding-bottom: 60px; }

.mobile-drawer {
    position: fixed;
    z-index: 1200;
    inset: 0 auto 0 0;
    width: min(84vw, 320px);
    background: #fff;
    transform: translateX(-102%);
    transition: transform .24s ease;
    box-shadow: 24px 0 50px rgba(0, 0, 0, .18);
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
    position: fixed;
    z-index: 1190;
    inset: 0;
    background: rgba(16, 21, 28, .48);
    opacity: 0;
    transition: opacity .22s ease;
}
.drawer-overlay.is-visible { opacity: 1; }
.drawer-head {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line-gray);
}
.drawer-logo img { max-height: 44px; width: auto; }
.drawer-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: var(--panel);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.drawer-nav { padding: 12px; display: grid; gap: 4px; }
.drawer-nav a { padding: 10px 12px; border-radius: 12px; font-weight: 700; }
.drawer-nav a.active, .drawer-nav a:hover { background: rgba(201, 0, 0, .08); color: var(--red); }
.drawer-note { margin: 4px 16px 24px; padding: 14px; border-radius: 14px; background: var(--panel); }
.drawer-note strong { color: var(--red); }
.drawer-note p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

h1, h2, h3, .section-title { color: var(--red); line-height: 1.3; }
p { color: var(--muted); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 999px; background: currentColor; }
.eyebrow.light { color: #fff; }
.text-link { color: var(--red); font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }

.banner-slider {
    width: 100%;
    margin: 24px auto 34px;
    border-radius: 22px;
    background: #f7f8fa;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1180 / 340;
    min-height: 260px;
    max-height: 360px;
}
.slides, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; visibility: hidden; transition: opacity .45s ease; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.banner-slider img { width: 100%; height: 100%; object-fit: contain; background: #f7f8fa; }
.banner-caption, .banner-text, .slide-title, .slide-desc, .slide-content, .slide-card, .banner-card { display: none !important; }
.slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 21, 28, .7);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.6); cursor: pointer; }
.slider-dots button.is-active { width: 24px; border-radius: 999px; background: #fff; }

.home-intro, .page-hero {
    margin: 28px 0 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 34px;
    align-items: center;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff 0%, #f6f7f9 100%);
    box-shadow: var(--shadow);
}
.home-intro h1, .page-hero h1 { margin: 10px 0 16px; font-size: clamp(32px, 4.8vw, 58px); }
.home-intro p, .page-hero p { margin: 0; font-size: 17px; }
.home-intro figure, .page-hero-media { margin: 0; border-radius: 20px; background: #fff; overflow: hidden; }
.home-intro img, .page-hero-media img { width: 100%; height: clamp(230px, 28vw, 330px); object-fit: contain; background: #fff; }
.page-hero { margin-top: 24px; }
.page-hero-copy { min-width: 0; }

.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 34px;
}
.quick-facts article { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 20px rgba(18,28,45,.05); }
.quick-facts strong { display: block; color: var(--red); font-size: 18px; }
.quick-facts span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }

.home-section, .content-section { margin: 34px 0; padding: clamp(24px, 3.5vw, 42px); border-radius: 22px; }
.soft-section { background: var(--panel); }
.section-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(26px, 3.2vw, 38px); }
.section-index { color: var(--red); font-weight: 900; letter-spacing: .08em; }
.channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.channel-grid a {
    min-height: 158px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(18,28,45,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.channel-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.channel-grid strong { display: block; color: var(--red); font-size: 19px; }
.channel-grid span { display: block; margin: 8px 0 12px; color: var(--muted); }
.channel-grid em { color: var(--ink); font-style: normal; font-weight: 800; font-size: 14px; }

.summary-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 34px 0;
    padding: 1px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
    box-shadow: 0 18px 40px rgba(201,0,0,.15);
}
.summary-band article { padding: 24px; background: linear-gradient(160deg, #d71313, #a80000); }
.summary-band strong { color: #fff; font-size: 18px; }
.summary-band p { margin: 8px 0 0; color: rgba(255,255,255,.86); font-size: 14px; }

.split-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: center; }
.split-feature.reverse { grid-template-columns: 1.1fr .9fr; }
.split-feature.reverse .feature-copy { order: 2; }
.feature-copy h2 { margin: 10px 0; font-size: clamp(28px, 3.2vw, 40px); }
.feature-copy p { font-size: 16px; }
.feature-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feature-gallery.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-gallery figure, .feature-single { margin: 0; overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.feature-gallery img, .feature-single img { width: 100%; height: 220px; object-fit: contain; background: #f7f8fa; }
.product-intro-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-intro-grid article { padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.product-intro-grid h3 { margin: 0 0 8px; }
.product-intro-grid p { margin: 0 0 10px; }
.product-intro-grid a { color: var(--red); font-weight: 800; }

.image-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.image-card-grid.four-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.image-card-grid a { overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(18,28,45,.05); }
.image-card-grid img { width: 100%; height: 170px; object-fit: contain; background: #f7f8fa; }
.image-card-grid strong, .image-card-grid span { display: block; padding: 0 16px; }
.image-card-grid strong { margin-top: 14px; color: var(--red); font-size: 18px; }
.image-card-grid span { padding-bottom: 16px; color: var(--muted); font-size: 14px; }
.notice-layout { display: grid; grid-template-columns: .8fr .8fr 1.2fr; gap: 18px; align-items: center; }
.notice-layout figure { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.notice-layout img { width: 100%; height: 190px; object-fit: contain; background: #f7f8fa; }
.notice-layout h3 { font-size: 26px; margin: 0 0 8px; }

.security-panel, .alert-panel {
    margin: 34px 0;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 22px;
    background: linear-gradient(135deg, #d71313 0%, #a80000 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 18px 40px rgba(201,0,0,.18);
}
.security-panel h2, .alert-panel h2 { color: #fff; margin: 8px 0; font-size: clamp(28px, 3.2vw, 40px); }
.security-panel p, .alert-panel p { color: rgba(255,255,255,.86); margin: 0; }
.light-btn { flex: 0 0 auto; display: inline-flex; padding: 11px 20px; border-radius: 999px; background: #fff; color: var(--red); font-weight: 900; }
.alert-panel ul { min-width: 260px; margin: 0; padding: 20px 22px 20px 40px; border-radius: 18px; background: rgba(255,255,255,.1); }
.alert-panel li { margin: 6px 0; }

.content-two-col { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 24px; align-items: stretch; }
.prose-card, .mini-guide, .content-media {
    margin: 0;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(18,28,45,.05);
}
.prose-card p:first-child { margin-top: 0; }
.prose-card p:last-of-type { margin-bottom: 18px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 24px; color: var(--ink); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }
.content-media { padding: 0; overflow: hidden; display: grid; place-items: center; }
.content-media img { width: 100%; height: 100%; max-height: 280px; object-fit: contain; background: #f7f8fa; }
.mini-guide { display: flex; flex-direction: column; justify-content: center; }
.mini-guide > span { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.mini-guide h3 { margin: 8px 0; font-size: 24px; }
.mini-guide p { margin: 0 0 12px; }

.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.review-grid.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card { position: relative; padding: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; }
.review-mark { color: rgba(201,0,0,.18); font-size: 68px; line-height: .7; font-family: Georgia, serif; }
.review-card p { margin: 4px 0 16px; }
.review-card strong { color: var(--red); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 48px 18px 20px; color: var(--ink); font-weight: 800; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; color: var(--red); font-size: 24px; top: 50%; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; }
.compliance-strip, .home-about {
    margin: 34px 0;
    padding: clamp(26px, 3.5vw, 42px);
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #fff, #f6f7f9);
}
.compliance-strip h2, .home-about h2 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 38px); }
.compliance-strip p, .home-about p { margin: 0 0 12px; }

.site-footer { background: #11151c; color: #e7ecf3; }
.footer-grid {
    width: min(1440px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 34px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
}
.site-footer h2 { color: #fff; font-size: 17px; margin: 0 0 14px; }
.site-footer p { color: #aeb7c3; font-size: 14px; }
.site-footer section:not(.footer-brand) a { display: block; color: #cbd3dd; margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-logo img { max-height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-app-link { display: inline-flex; margin-top: 8px; color: #fff; font-weight: 800; }
.footer-bottom { width: min(1440px, calc(100% - 40px)); margin: 0 auto; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #8f99a8; font-size: 13px; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1180px) {
    .site-shell { grid-template-columns: 190px minmax(0, 1fr); gap: 20px; }
    .header-inner { gap: 16px; }
    .nav-core { gap: 12px; }
    .nav-core a { font-size: 14px; }
    .image-card-grid.four-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .review-grid.three-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    :root { --header-h: 66px; }
    body { padding-bottom: 70px; }
    .site-shell { width: min(100% - 28px, 920px); display: block; }
    .side-category, .nav-core { display: none; }
    .header-inner { width: calc(100% - 24px); min-height: var(--header-h); position: relative; gap: 10px; }
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 42px;
        height: 42px;
        padding: 10px;
        border: 0;
        border-radius: 12px;
        background: var(--panel);
        cursor: pointer;
    }
    .menu-toggle span { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--ink); }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .logo img { max-height: 44px; max-width: 128px; }
    .header-register { min-width: 74px; min-height: 38px; padding: 8px 18px; margin-left: auto; }
    .banner-slider { min-height: 180px; max-height: 260px; aspect-ratio: 16 / 5.7; }
    .home-intro, .page-hero { grid-template-columns: 1fr; }
    .page-hero-media { order: -1; }
    .quick-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .channel-grid, .product-intro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .summary-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-feature, .split-feature.reverse { grid-template-columns: 1fr; }
    .split-feature.reverse .feature-copy { order: initial; }
    .image-card-grid, .image-card-grid.four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .notice-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .notice-layout > div { grid-column: 1 / -1; }
    .content-two-col { grid-template-columns: 1fr; }
    .review-grid, .review-grid.three-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .security-panel, .alert-panel { align-items: flex-start; flex-direction: column; }
    .alert-panel ul { width: 100%; min-width: 0; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mobile-bottom-nav {
        position: fixed;
        z-index: 900;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 62px;
        padding-bottom: env(safe-area-inset-bottom);
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line-gray);
        box-shadow: 0 -8px 24px rgba(18,28,45,.08);
    }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: var(--muted); font-size: 12px; font-weight: 800; }
    .mobile-bottom-nav a span { color: var(--ink); font-size: 18px; line-height: 1; }
    .mobile-bottom-nav a.active, .mobile-bottom-nav a.active span { color: var(--red); }
}

@media (max-width: 640px) {
    .site-shell { width: calc(100% - 20px); }
    .header-inner { width: calc(100% - 18px); }
    .header-register { min-width: 68px; padding: 7px 14px; font-size: 14px; }
    .logo img { max-height: 38px; max-width: 110px; }
    .banner-slider { margin: 14px 0 22px; min-height: 150px; max-height: 210px; border-radius: 16px; aspect-ratio: 16 / 6.2; }
    .slider-arrow { width: 36px; height: 36px; font-size: 28px; }
    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }
    .home-intro, .page-hero { padding: 22px; gap: 20px; border-radius: 18px; }
    .home-intro h1, .page-hero h1 { font-size: 32px; }
    .home-intro p, .page-hero p { font-size: 15px; }
    .home-intro img, .page-hero-media img { height: 210px; }
    .quick-facts { grid-template-columns: 1fr; gap: 10px; }
    .home-section, .content-section { margin: 22px 0; padding: 20px 16px; border-radius: 18px; }
    .section-heading { align-items: flex-start; gap: 10px; }
    .section-heading h2 { font-size: 26px; }
    .channel-grid, .product-intro-grid, .image-card-grid, .image-card-grid.four-col, .review-grid, .review-grid.three-col { grid-template-columns: 1fr; }
    .channel-grid a { min-height: 0; }
    .summary-band { grid-template-columns: 1fr; }
    .feature-gallery, .feature-gallery.four { grid-template-columns: 1fr; }
    .feature-gallery img, .feature-single img { height: 190px; }
    .image-card-grid img { height: 155px; }
    .notice-layout { grid-template-columns: 1fr; }
    .notice-layout > div { grid-column: auto; }
    .notice-layout img { height: 170px; }
    .security-panel, .alert-panel, .home-about, .compliance-strip { padding: 24px 20px; border-radius: 18px; }
    .prose-card, .mini-guide { padding: 20px; }
    .content-media img { max-height: 220px; }
    .footer-grid { width: calc(100% - 32px); grid-template-columns: 1fr; padding-top: 40px; gap: 26px; }
    .footer-bottom { width: calc(100% - 32px); flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
