/* ============================================
   男男做运动 · 运动网站设计系统
   设计风格：活力橙 × 薄荷绿 · 运动杂志风
   ============================================ */

:root {
    --primary: #FF5A3C;
    --primary-light: #FF8A6C;
    --primary-dark: #E6452A;
    --secondary: #00C9A7;
    --secondary-light: #5CE1C8;
    --accent: #FFD166;
    --bg: #FFF8F0;
    --bg-alt: #FFF0E6;
    --card-bg: #FFFFFF;
    --text: #2D3142;
    --text-light: #6B7280;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --shadow: 0 8px 30px rgba(255, 90, 60, 0.10);
    --shadow-hover: 0 16px 40px rgba(255, 90, 60, 0.18);
    --shadow-secondary: 0 8px 30px rgba(0, 201, 167, 0.14);
    --gradient-primary: linear-gradient(135deg, #FF5A3C 0%, #FF8A6C 100%);
    --gradient-secondary: linear-gradient(135deg, #00C9A7 0%, #5CE1C8 100%);
    --gradient-accent: linear-gradient(135deg, #FFD166 0%, #FFB84D 100%);
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* ---------- 核心布局 ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-alt);
}

/* ---------- 导航 ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 90, 60, 0.08);
    box-shadow: 0 2px 20px rgba(45, 49, 66, 0.03);
    transition: box-shadow 0.3s ease;
}

.site-header:hover {
    box-shadow: 0 4px 30px rgba(255, 90, 60, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 90, 60, 0.3);
    transform: rotate(-8deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
    transform: rotate(0deg) scale(1.1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover {
    color: var(--primary);
}

.main-nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 9px 22px;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(255, 90, 60, 0.3);
    transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 90, 60, 0.1);
}

/* ---------- 首页Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 90, 60, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(0, 201, 167, 0.08) 0%, transparent 40%),
        var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border: 3px dashed rgba(255, 90, 60, 0.18);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: slowSpin 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    right: 60px;
    top: 100px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 201, 167, 0.35);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

@keyframes slowSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: var(--gradient-secondary);
    color: #fff;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.25);
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.75;
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-hover);
    transform: rotate(1deg);
    transition: transform 0.4s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 90, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 90, 60, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(255, 90, 60, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.12);
}

/* ---------- 标签/标题 ---------- */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    padding-left: 18px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text);
}

.section-desc {
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 44px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: var(--radius-md);
    padding: 32px 28px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 90, 60, 0.06);
    transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 49, 66, 0.04);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.category-card:nth-child(3)::before {
    background: var(--gradient-accent);
}

.category-card:nth-child(4)::before {
    background: linear-gradient(135deg, #7B61FF, #9B8FEA);
}

.category-card:hover {
    transform: translateY(-6px) rotate(0.3deg);
    box-shadow: var(--shadow-hover);
    background: #fff;
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
    background: rgba(255, 90, 60, 0.1);
    color: var(--primary);
    transition: 0.3s ease;
}

.category-card:nth-child(2) .card-icon {
    background: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
}

.category-card:nth-child(3) .card-icon {
    background: rgba(255, 209, 102, 0.15);
    color: #E8A800;
}

.category-card:nth-child(4) .card-icon {
    background: rgba(123, 97, 255, 0.1);
    color: #7B61FF;
}

.category-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.card-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ---------- 特性块 ---------- */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 90, 60, 0.08), rgba(0, 201, 167, 0.08));
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text {
    position: relative;
}

.feature-text .section-label {
    padding-left: 18px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 201, 167, 0.3);
}

/* ---------- 数据条 ---------- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    text-align: center;
}

.stat-item {
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 90, 60, 0.06);
    box-shadow: 0 4px 16px rgba(45, 49, 66, 0.04);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- 内容墙 ---------- */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 90, 60, 0.06);
    transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(45, 49, 66, 0.04);
}

.content-wall-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.05);
}

.content-wall-body {
    padding: 22px;
}

.content-wall-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.content-wall-body p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(255, 90, 60, 0.06);
    box-shadow: 0 2px 12px rgba(45, 49, 66, 0.04);
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 90, 60, 0.12);
    box-shadow: 0 4px 20px rgba(255, 90, 60, 0.08);
}

.faq-item .faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    gap: 16px;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.35s ease;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px dashed rgba(45, 49, 66, 0.06);
    padding-top: 14px;
    color: var(--text-light);
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

/* ---------- CTA横幅 ---------- */
.cta-banner {
    padding: 70px 40px;
    text-align: center;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 90, 60, 0.95), rgba(255, 138, 108, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="3" cy="3" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: cover, 30px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(255, 90, 60, 0.3);
}

.cta-banner::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 240px;
    font-weight: 900;
    opacity: 0.08;
    color: #fff;
    line-height: 1;
    font-family: Georgia, serif;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* ---------- 页脚 ---------- */
.site-footer {
    padding: 64px 0 28px;
    background: var(--bg);
    border-top: 1px solid rgba(255, 90, 60, 0.06);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    margin-top: 6px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(45, 49, 66, 0.06);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ---------- 工具类 ---------- */
.text-accent {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.7;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .feature-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .site-header {
        background: rgba(255, 248, 240, 0.96);
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        box-shadow: 0 16px 40px rgba(45, 49, 66, 0.08);
        border-bottom: 1px solid rgba(255, 90, 60, 0.08);
    }

    .main-nav.open {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }

    .main-nav a:not(.nav-cta) {
        font-size: 1rem;
        padding: 6px 0;
    }

    .nav-cta {
        align-self: flex-start;
        margin-top: 4px;
    }

    .menu-toggle {
        display: flex;
        font-size: 1.4rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
        transform: rotate(0deg);
    }

    .hero::before {
        right: -150px;
        width: 280px;
        height: 280px;
    }

    .hero::after {
        display: none;
    }

    .content-wall-item img {
        height: 180px;
    }

    .cta-banner {
        padding: 50px 24px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }

    .container {
        padding: 0 20px;
    }

    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .faq-item .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-item .faq-answer {
        padding: 0 18px 16px;
        padding-top: 12px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 32px;
        font-size: 0.78rem;
    }
}

/* ---------- 微交互 & 装饰 ---------- */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}