:root {
    --page-bg: #f4fbff;
    --surface: #ffffff;
    --surface-soft: #e8f7ff;
    --primary: #10aeea;
    --primary-strong: #1688d8;
    --primary-deep: #155a9d;
    --text: #24384a;
    --muted: #60758a;
    --line: rgba(16, 174, 234, 0.18);
    --footer: #073a68;
    --footer-text: #eaf8ff;
    --shadow: 0 18px 50px rgba(19, 117, 180, 0.12);
    --shadow-soft: 0 10px 30px rgba(19, 117, 180, 0.09);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --header-h: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--text);
    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;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.28;
}

p:last-child {
    margin-bottom: 0;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 3000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--primary-deep);
    color: #fff;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(12, 97, 156, 0.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(100% - 32px, 1360px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 24px);
}

.brand-logo,
.drawer-logo,
.footer-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-width: 130px;
}

.brand-logo img,
.drawer-logo img,
.footer-logo img {
    width: auto;
    max-width: 160px;
    height: 44px;
    object-fit: contain;
}

.brand-fallback {
    display: none;
    color: var(--primary-strong);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand-logo img[style*="display: none"] + .brand-fallback,
.drawer-logo img[style*="display: none"] + .brand-fallback,
.footer-logo img[style*="display: none"] + .brand-fallback {
    display: inline-block;
}

.desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 0.65vw, 11px);
    overflow: hidden;
}

.desktop-nav a {
    position: relative;
    flex: 0 0 auto;
    padding: 8px clamp(3px, 0.28vw, 6px);
    color: #36566f;
    font-size: clamp(12px, 0.92vw, 14px);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 1px;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
    transition: left 0.2s ease, right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
    color: var(--primary-strong);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
    left: 4px;
    right: 4px;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-btn,
.secondary-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-btn {
    min-width: 82px;
    min-height: 42px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #35d7ff 0%, #1688d8 100%);
    color: #fff;
    box-shadow: 0 9px 22px rgba(22, 136, 216, 0.22);
}

.main-btn:hover,
.main-btn:focus-visible,
.secondary-btn:hover,
.secondary-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(22, 136, 216, 0.25);
}

.secondary-btn {
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-deep);
}

.text-link {
    color: var(--primary-strong);
    border-radius: 6px;
}

.text-link::after {
    content: "→";
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--primary-deep);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    border-radius: 12px;
    background: var(--surface-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--primary-deep);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(3, 38, 68, 0.42);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.drawer-overlay.is-visible {
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(88vw, 380px);
    height: 100dvh;
    padding: 20px;
    overflow-y: auto;
    border-left: 1px solid var(--line);
    background: #fff;
    box-shadow: -20px 0 45px rgba(3, 58, 105, 0.16);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
}

.mobile-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--primary-deep);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 18px 0;
}

.drawer-nav a {
    min-width: 0;
    padding: 11px 12px;
    border-radius: 12px;
    color: #36566f;
    font-weight: 600;
    white-space: nowrap;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-nav a.is-active {
    background: var(--surface-soft);
    color: var(--primary-deep);
}

.drawer-register {
    width: 100%;
}

.site-main {
    padding-top: var(--header-h);
}

.section {
    padding: clamp(56px, 7vw, 92px) 0;
}

.section-tight {
    padding: clamp(36px, 5vw, 62px) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-head {
    max-width: 800px;
    margin-bottom: 30px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
}

.section-title,
.page-title {
    margin-bottom: 14px;
    color: var(--primary-deep);
    font-weight: 800;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
}

.page-title {
    font-size: clamp(36px, 5.8vw, 64px);
}

.lead,
.section-intro {
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 19px);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 108px) 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(53, 215, 255, 0.22), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(22, 136, 216, 0.15), transparent 28%),
        linear-gradient(135deg, #f9fdff 0%, #e7f7ff 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(16, 174, 234, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(16, 174, 234, 0.04), 0 0 0 78px rgba(16, 174, 234, 0.035);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(30px, 6vw, 74px);
}

.hero-copy {
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-media,
.media-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fff 0%, #eaf8ff 100%);
    box-shadow: var(--shadow);
}

.hero-media {
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 30px);
}

.hero-media img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.hero-stat {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
}

.hero-stat strong {
    display: block;
    color: var(--primary-deep);
    font-size: 18px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 13px;
}

.carousel-wrap {
    padding: 24px 0 0;
}

.carousel {
    position: relative;
    width: min(100% - 32px, 1360px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: clamp(16px, 2vw, 28px);
    background: linear-gradient(135deg, #e8f7ff 0%, #ffffff 100%);
    box-shadow: var(--shadow);
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    aspect-ratio: 16 / 6.4;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e8f7ff, #f9fdff);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(38px, 4vw, 50px);
    height: clamp(38px, 4vw, 50px);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: rgba(7, 58, 104, 0.56);
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    background: rgba(7, 58, 104, 0.78);
}

.carousel-arrow.prev {
    left: clamp(10px, 2vw, 24px);
}

.carousel-arrow.next {
    right: clamp(10px, 2vw, 24px);
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(10px, 2vw, 18px);
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    background: rgba(7, 58, 104, 0.42);
    cursor: pointer;
    transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.carousel-dots button.is-active {
    width: 28px;
    border-radius: 99px;
    background: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.feature-card,
.review-card,
.notice-card,
.faq-item,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.info-card,
.feature-card,
.review-card,
.notice-card,
.contact-card {
    padding: clamp(22px, 3vw, 30px);
}

.info-card h3,
.feature-card h3,
.notice-card h3,
.contact-card h3 {
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 20px;
}

.info-card p,
.feature-card p,
.notice-card p,
.contact-card p {
    color: var(--muted);
}

.info-card .text-link,
.feature-card .text-link {
    margin-top: 4px;
}

.icon-badge,
.number-badge {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(53, 215, 255, 0.23), rgba(22, 136, 216, 0.13));
    color: var(--primary-deep);
    font-weight: 800;
}

.number-badge {
    border-radius: 50%;
}

.media-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}

.media-card.reverse .media-frame {
    order: 2;
}

.media-frame {
    min-height: 280px;
    display: grid;
    place-items: center;
    padding: 18px;
}

.media-frame img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.media-copy h2 {
    margin-bottom: 14px;
    color: var(--primary-deep);
    font-size: clamp(28px, 4vw, 42px);
}

.media-copy p {
    color: var(--muted);
}

.inline-list,
.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.inline-list li,
.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 28px;
    color: #36566f;
}

.inline-list li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary-strong);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 20px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.quick-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(19, 117, 180, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.quick-card h3 {
    margin-bottom: 8px;
    color: var(--primary-deep);
    font-size: 18px;
}

.quick-card p {
    color: var(--muted);
    font-size: 14px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    position: relative;
    padding-top: 34px;
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 22px;
    color: rgba(16, 174, 234, 0.28);
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: 1;
}

.review-card p {
    color: #3d566c;
}

.review-card strong {
    display: block;
    margin-top: 18px;
    color: var(--primary-deep);
    font-size: 14px;
}

.notice-strip {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.notice-primary {
    background: linear-gradient(135deg, #0c6eb4 0%, #10aeea 100%);
    color: #fff;
}

.notice-primary h2,
.notice-primary p {
    color: #fff;
}

.notice-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-strong);
    font-weight: 800;
}

.notice-primary small {
    color: #dff7ff;
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
}

.step-card h3 {
    color: var(--primary-deep);
}

.step-card p {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #fff;
    color: var(--primary-deep);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--primary-strong);
    font-size: 24px;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--muted);
}

.compliance-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff 0%, #e8f7ff 100%);
    box-shadow: var(--shadow-soft);
}

.compliance-panel h2 {
    margin-bottom: 12px;
    color: var(--primary-deep);
    font-size: clamp(26px, 4vw, 38px);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.compliance-item {
    padding: 18px;
    border: 1px solid rgba(16, 174, 234, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: #3d566c;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 700;
}

.site-footer {
    padding: 54px 0 24px;
    background: var(--footer);
    color: var(--footer-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr));
    gap: 34px;
}

.footer-brand p,
.site-footer a,
.footer-note {
    color: rgba(234, 248, 255, 0.78);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 17px;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin: 8px 0;
    font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.brand-fallback-light {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(234, 248, 255, 0.16);
    color: rgba(234, 248, 255, 0.66);
    font-size: 13px;
}

@media (max-width: 1179px) {
    .desktop-nav {
        display: none;
    }

    .header-inner {
        width: min(100% - 24px, 960px);
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .media-card {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 260px;
    }

    .media-card.reverse .media-frame {
        order: 0;
    }

    .quick-grid,
    .card-grid.four,
    .compliance-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .notice-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 68px;
    }

    .container {
        width: min(100% - 24px, 720px);
    }

    .brand-logo img {
        max-width: 132px;
        height: 38px;
    }

    .main-btn {
        min-width: 72px;
        min-height: 40px;
        padding: 9px 16px;
    }

    .carousel-wrap {
        padding-top: 14px;
    }

    .carousel {
        width: min(100% - 20px, 760px);
    }

    .carousel-slide {
        aspect-ratio: 16 / 8.5;
    }

    .card-grid,
    .card-grid.two,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 52px 0;
    }

    .header-inner {
        gap: 8px;
    }

    .brand-logo {
        min-width: 0;
    }

    .brand-logo img {
        max-width: 112px;
        height: 34px;
    }

    .header-actions {
        gap: 7px;
    }

    .header-actions .main-btn {
        min-width: 62px;
        padding-inline: 13px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .drawer-nav {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 54px 0;
    }

    .page-title {
        font-size: 38px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .main-btn,
    .hero-actions .secondary-btn {
        width: 100%;
    }

    .hero-media,
    .media-frame {
        min-height: 220px;
    }

    .carousel-slide {
        aspect-ratio: 4 / 3;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .quick-grid,
    .card-grid.four,
    .compliance-grid,
    .steps,
    .notice-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-card,
    .info-card,
    .feature-card,
    .review-card,
    .notice-card,
    .contact-card {
        padding: 22px;
    }
}

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