/* 蘑菇视频 MOGU VIDEO - 全局样式 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #444444;
    background: #FFFFFF;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #E90052; text-decoration: none; transition: color 0.2s; }
a:hover { color: #C90046; }
a:focus-visible, button:focus-visible { outline: 2px solid #FF1765; outline-offset: 3px; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { color: #222222; font-weight: 700; line-height: 1.3; }
h1 { font-size: 1.85rem; margin-bottom: 1rem; }
h2 { font-size: 1.45rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
p { margin-bottom: 0.9rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* 顶部导航 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(255,23,101,0.12);
    height: 72px;
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 20px; }
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 36px; width: auto; }
.brand-text { font-size: 1.35rem; font-weight: 800; color: #FF1765; letter-spacing: 0.02em; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
    padding: 8px 14px;
    font-size: 0.95rem;
    color: #333;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}
.desktop-nav a:hover { color: #FF1765; background: #FFF0F5; }
.desktop-nav a.active {
    color: #FF1765;
    background: #FFF0F5;
    box-shadow: inset 0 -2px 0 #FF1765;
}
.header-right { display: flex; align-items: center; gap: 10px; }
.search-btn {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    color: #444; border-radius: 50%;
}
.search-btn:hover { background: #FFF0F5; color: #FF1765; }
.nav-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 0 18px;
    font-size: 0.9rem; font-weight: 600;
    border-radius: 24px; white-space: nowrap;
}
.nav-btn-outline {
    color: #FF1765; border: 1.5px solid rgba(255,23,101,0.35);
}
.nav-btn-outline:hover { background: #FFF0F5; color: #C90046; }
.nav-btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    box-shadow: 0 6px 18px rgba(255,23,101,0.25);
}
.nav-btn-primary:hover { filter: brightness(1.05); color: #fff; }
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
}
.menu-icon {
    display: block; width: 22px; height: 2px;
    background: #222; position: relative;
}
.menu-icon::before, .menu-icon::after {
    content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #222;
}
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

/* 频道面板 */
.channel-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 460px; max-width: 88vw;
    background: #FFFFFF;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(30,20,25,0.12);
}
.channel-panel.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.channel-panel-inner { padding: 20px 24px 40px; }
.channel-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.panel-brand img { height: 32px; width: auto; }
.panel-brand span { font-size: 1.2rem; font-weight: 800; color: #FF1765; }
.panel-close {
    width: 44px; height: 44px; font-size: 1.8rem; color: #666;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.panel-close:hover { background: #FFF0F5; color: #FF1765; }
.channel-group { margin-bottom: 28px; }
.channel-group h3 {
    font-size: 0.8rem; color: #999; text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 12px; font-weight: 600;
}
.channel-group a {
    display: block; padding: 12px 14px; margin-bottom: 4px;
    border-radius: 12px; color: #333;
}
.channel-group a:hover { background: #FFF7FA; color: #FF1765; }
.channel-group a strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.channel-group a span { display: block; font-size: 0.82rem; color: #777; line-height: 1.4; }
.panel-overlay, .search-overlay {
    position: fixed; inset: 0; background: rgba(20,10,15,0.45);
    z-index: 1100; visibility: hidden; pointer-events: none;
    opacity: 0; transition: opacity 0.3s, visibility 0.3s;
}
.panel-overlay.open, .search-overlay.open {
    visibility: visible; pointer-events: auto; opacity: 1;
}
body.panel-open, body.search-open { overflow: hidden; }

/* 搜索面板 */
.search-panel {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #FFFFFF; z-index: 1150;
    max-height: calc(100vh - 72px); overflow-y: auto;
    visibility: hidden; pointer-events: none;
    transform: translateY(-12px); opacity: 0;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    box-shadow: 0 16px 40px rgba(30,20,25,0.1);
    border-bottom: 1px solid rgba(255,23,101,0.1);
}
.search-panel.open {
    visibility: visible; pointer-events: auto;
    transform: translateY(0); opacity: 1;
}
.search-panel-inner {
    max-width: 800px; margin: 0 auto; padding: 24px 20px 40px;
}
.search-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.search-header h2 { font-size: 1.25rem; margin: 0; }
.search-close {
    width: 44px; height: 44px; font-size: 1.8rem; color: #666;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.search-close:hover { background: #FFF0F5; color: #FF1765; }
.search-input-wrap input {
    width: 100%; height: 52px; padding: 0 20px;
    border: 1.5px solid rgba(255,23,101,0.2); border-radius: 26px;
    font-size: 1rem; color: #222; background: #FFF7FA;
}
.search-input-wrap input:focus {
    outline: none; border-color: #FF1765; background: #fff;
    box-shadow: 0 0 0 3px rgba(255,23,101,0.12);
}
.search-hot, .search-links { margin-top: 24px; }
.search-hot h3, .search-links h3 {
    font-size: 0.85rem; color: #999; margin-bottom: 12px;
}
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tags a {
    padding: 8px 16px; background: #FFF0F5; color: #C90046;
    border-radius: 20px; font-size: 0.9rem; font-weight: 500;
}
.search-tags a:hover { background: #FFD8E6; color: #E90052; }
.search-links a {
    display: inline-block; margin-right: 16px; margin-bottom: 8px;
    color: #444; font-size: 0.95rem;
}
.search-links a:hover { color: #FF1765; }
.search-results { margin-top: 20px; }
.search-results ul li { margin-bottom: 8px; }
.search-results a { color: #E90052; font-weight: 500; }
.search-empty { color: #777; font-size: 0.95rem; }

/* 主内容 */
.site-main {
    min-height: 60vh;
    padding-bottom: 40px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 48px 0; }
.section-alt { background: #FFF7FA; }
.section-soft { background: #F7F7F8; }
.section-title {
    font-size: 1.5rem; margin-bottom: 8px;
}
.section-desc {
    color: #777; font-size: 0.95rem; margin-bottom: 24px; max-width: 640px;
}
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 24px;
    font-size: 0.95rem; font-weight: 600;
    border-radius: 24px; white-space: nowrap;
    transition: filter 0.2s, box-shadow 0.2s;
}
.btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    box-shadow: 0 8px 24px rgba(255,23,101,0.22);
}
.btn-primary:hover { filter: brightness(1.06); color: #fff; }
.btn-outline {
    color: #FF1765; border: 1.5px solid rgba(255,23,101,0.4);
    background: #fff;
}
.btn-outline:hover { background: #FFF0F5; color: #C90046; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

/* 首页首屏 */
.hero {
    padding: 32px 0 40px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.hero-visual {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #FFF0F5 0%, #FFD8E6 50%, #FFE8F0 100%);
    min-height: 360px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow: 0 14px 40px rgba(30,20,25,0.08);
}
.hero-visual img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 16/10;
}
.hero-fallback {
    text-align: center; padding: 40px;
}
.hero-fallback .brand-mark {
    font-size: 2.8rem; font-weight: 800; color: #FF1765;
    letter-spacing: 0.04em;
}
.hero-fallback p { color: #777; margin-top: 8px; }
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 12px 0;
}
.hero-brand {
    font-size: 0.9rem; font-weight: 700; color: #FF1765;
    letter-spacing: 0.08em; margin-bottom: 10px;
}
.hero-title {
    font-size: 1.75rem; color: #202020; margin-bottom: 14px;
    line-height: 1.35;
}
.hero-intro {
    color: #555; font-size: 0.98rem; line-height: 1.7;
    margin-bottom: 18px;
}
.hero-recos {
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}
.hero-recos li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.92rem; color: #444;
}
.hero-recos li strong { color: #222; }

/* 频道快捷条 */
.channel-bar {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.channel-bar-inner {
    display: flex; gap: 8px; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}
.channel-bar-inner::-webkit-scrollbar { display: none; }
.channel-bar a {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.88rem; color: #555;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px; background: #fff;
    white-space: nowrap;
}
.channel-bar a:hover, .channel-bar a.active {
    color: #FF1765; border-color: rgba(255,23,101,0.35);
    background: #FFF0F5;
}

/* 胶囊主题 */
.pill-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.pill-item {
    display: flex; flex-direction: column;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(255,23,101,0.12);
    border-radius: 16px;
    max-width: 280px;
    min-width: 160px;
    flex: 1 1 180px;
    box-shadow: 0 4px 16px rgba(30,20,25,0.04);
}
.pill-item strong {
    font-size: 0.98rem; color: #222; margin-bottom: 4px;
}
.pill-item span {
    font-size: 0.82rem; color: #777; line-height: 1.45;
}
.pill-item a { color: inherit; }
.pill-item:hover {
    border-color: rgba(255,23,101,0.3);
    box-shadow: 0 8px 24px rgba(255,23,101,0.1);
}

/* 卡片通用 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(30,20,25,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
    box-shadow: 0 14px 40px rgba(255,23,101,0.12);
}
.card-body { padding: 18px 20px 22px; }
.card-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    color: #E90052; background: #FFF0F5;
    padding: 3px 10px; border-radius: 10px;
    margin-bottom: 8px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: #555; margin-bottom: 12px; }
.card-link {
    font-size: 0.88rem; font-weight: 600; color: #FF1765;
}
.card-visual {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #FFF0F5, #FFD8E6);
    display: flex; align-items: center; justify-content: center;
}
.card-visual img { width: 100%; height: 100%; object-fit: cover; }

/* 主推荐 */
.main-feature {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,23,101,0.1);
    box-shadow: 0 14px 40px rgba(30,20,25,0.07);
}
.main-feature-visual {
    min-height: 280px;
    background: linear-gradient(145deg, #FFD8E6, #FFF0F5);
    display: flex; align-items: center; justify-content: center;
}
.main-feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.main-feature-body { padding: 28px 28px 32px; }
.main-feature-body .card-tag { margin-bottom: 10px; }
.main-feature-body h2 { font-size: 1.4rem; margin-bottom: 12px; }
.main-feature-body p { color: #555; font-size: 0.95rem; }

/* 横向轨道 */
.track {
    display: flex; gap: 16px; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.track-item {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px;
    box-shadow: 0 6px 20px rgba(30,20,25,0.05);
}
.track-item h3 { font-size: 1rem; margin-bottom: 6px; }
.track-item p { font-size: 0.85rem; color: #666; margin: 0; }

/* 编号列表 */
.num-list { counter-reset: num; }
.num-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.num-item::before {
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
    font-size: 1.4rem; font-weight: 800; color: #FF1765;
    min-width: 42px; line-height: 1.2;
}
.num-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.num-item p { font-size: 0.9rem; color: #555; margin: 0; }

/* 片单样式 */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.list-card {
    background: #FFF7FA;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255,23,101,0.1);
}
.list-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.list-card p { font-size: 0.88rem; color: #666; margin: 0; }

/* 时间轨道 */
.timeline {
    display: flex; gap: 12px; overflow-x: auto;
    padding-bottom: 12px;
}
.timeline-item {
    flex: 0 0 200px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.07);
}
.timeline-status {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    padding: 3px 10px; border-radius: 8px;
    margin-bottom: 8px;
}
.status-live { background: #E8F8EE; color: #1A7A3C; }
.status-plan { background: #FFF0F5; color: #C90046; }
.status-wait { background: #F0F0F2; color: #666; }

/* 杂志式 */
.magazine-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}
.magazine-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.06);
}
.magazine-block.wide { grid-column: 1 / -1; }

/* 影评列表 */
.review-list article {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.review-list article:last-child { border-bottom: none; }
.review-meta {
    font-size: 0.8rem; color: #999; margin-bottom: 6px;
}
.review-meta .editor-tag {
    color: #E90052; font-weight: 600; margin-right: 8px;
}

/* FAQ */
.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 16px 20px;
    font-weight: 600; color: #222;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; color: #FF1765; font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
    padding: 0 20px 18px;
    color: #555; font-size: 0.95rem;
}

/* 页面头部 */
.page-hero {
    padding: 36px 0 28px;
    background: linear-gradient(180deg, #FFF7FA 0%, #FFFFFF 100%);
    border-bottom: 1px solid rgba(255,23,101,0.08);
}
.page-hero h1 { font-size: 1.9rem; margin-bottom: 10px; }
.page-hero .lead {
    font-size: 1.05rem; color: #555; max-width: 720px; line-height: 1.7;
}

/* 内容区 */
.content-block {
    max-width: 820px;
}
.content-block p { margin-bottom: 1rem; }
.content-block h2 { margin-top: 2rem; margin-bottom: 0.8rem; }
.content-block h3 { margin-top: 1.5rem; }
.prose { line-height: 1.75; color: #444; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* 页脚 */
.site-footer {
    background: #171717;
    color: #F4F4F4;
    padding: 56px 0 100px;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-brand { margin-bottom: 36px; }
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-brand-text { font-size: 1.3rem; font-weight: 800; color: #FF3D7D; }
.footer-en {
    font-size: 0.8rem; letter-spacing: 0.12em; color: #999;
    margin: 6px 0 10px;
}
.footer-desc { color: #AAA; font-size: 0.9rem; max-width: 480px; line-height: 1.6; }
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}
.footer-col h4 {
    font-size: 0.85rem; color: #FF3D7D; margin-bottom: 14px;
    font-weight: 600; letter-spacing: 0.04em;
}
.footer-col a {
    display: block; color: #CCC; font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer-col a:hover { color: #FF3D7D; }
.footer-note {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}
.footer-note p { color: #999; font-size: 0.85rem; line-height: 1.6; margin-bottom: 10px; }
.footer-copy { color: #777 !important; font-size: 0.8rem !important; }

/* 手机底部导航 */
.mobile-bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    height: 56px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: 900;
    justify-content: space-around;
    align-items: center;
}
.mobile-bottom-nav a {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 48px; color: #777; font-size: 0.7rem;
    gap: 2px;
}
.mobile-bottom-nav a .bn-icon { font-size: 1.15rem; line-height: 1; }
.mobile-bottom-nav a.active { color: #FF1765; font-weight: 600; }

/* 工具类 */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.soft-box {
    background: #FFF7FA;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid rgba(255,23,101,0.1);
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .main-feature { grid-template-columns: 1fr; }
    .magazine-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; }
    .three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .nav-btn-outline { display: none; }
    .header-inner { padding: 0 12px; }
    .header-left { gap: 8px; }
    .site-header { height: 64px; }
    .header-inner { height: 64px; }
    .search-panel { top: 64px; max-height: calc(100vh - 64px); }
    .hero-title { font-size: 1.45rem; }
    .page-hero h1 { font-size: 1.55rem; }
    .section { padding: 36px 0; }
    .mobile-bottom-nav { display: flex; }
    .site-footer { padding-bottom: 120px; }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 20px; }
    .three-col { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
    .channel-panel { width: 88vw; }
    body { padding-bottom: 0; }
}
@media (max-width: 480px) {
    .pill-item { min-width: 140px; }
    .track-item { flex: 0 0 180px; }
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; }
    .footer-columns { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
