/* 乐鱼赛事 · 共享样式表 /assets/site.css
   reset → 变量 → 中文排版 → 刊头与栏目带 → 页脚 → 基础组件 → 图片容器 → 响应式与动效降级 */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  /* 品牌色板 */
  --deep: #08344F;
  --water: #0E5A8A;
  --cyan: #23E3C6;
  --mist: #BFEFE8;
  --cinnabar: #C1402E;
  --paper: #FBFAF7;
  --sand: #F0ECE4;
  --line: #D9D3C7;
  --ink: #10222E;
  --muted: #5A6B75;

  /* 派生层 */
  --deep-a: rgba(8, 52, 79, .08);
  --deep-b: rgba(8, 52, 79, .18);
  --mist-a: rgba(191, 239, 232, .16);
  --mist-b: rgba(191, 239, 232, .34);
  --paper-a: rgba(251, 250, 247, .78);

  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===== 中文排版 ===== */
h1, h2, h3, h4 {
  margin: 0 0 .6em;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 6.4vw, 66px); letter-spacing: -.024em; line-height: 1.1; }
h2 { font-size: clamp(24px, 3.4vw, 38px); }
h3 { font-size: clamp(19px, 2.1vw, 24px); }
h4 { font-size: 17px; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

a { color: var(--water); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--deep); }

strong { font-weight: 700; }
small { font-size: 13px; color: var(--muted); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===== 容器与网格 ===== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid--editorial { grid-template-columns: minmax(0, .36fr) minmax(0, 1fr); align-items: start; }
.grid--split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; }

.rail {
  position: sticky;
  top: 132px;
  align-self: start;
}

.section { padding-block: clamp(40px, 6vw, 84px); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--deep { background: var(--deep); color: var(--paper); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--paper); }
.section--deep .lede, .section--deep p { color: rgba(251, 250, 247, .82); }
.section--deep .note { color: rgba(191, 239, 232, .82); }
.section--deep .stat__value { color: var(--cyan); }
.section--deep .stat__label { color: rgba(191, 239, 232, .74); }

.prose { max-width: 42em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--water);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cyan);
  flex: none;
}
.section--deep .eyebrow { color: var(--mist); }

.lede {
  max-width: 42em;
  font-size: clamp(16.5px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--muted);
}

.note {
  position: relative;
  margin: 0 0 1.1em;
  padding: 1px 0 1px 12px;
  border-left: 2px solid var(--cyan);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== 跳过链接 ===== */
.skip-link {
  position: absolute;
  left: 14px;
  top: -68px;
  z-index: 140;
  padding: 10px 18px;
  background: var(--cyan);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; color: var(--deep); }

/* ===== 刊头带 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--deep);
  color: var(--paper);
  border-bottom: 1px solid rgba(191, 239, 232, .16);
  box-shadow: 0 14px 34px -30px rgba(8, 52, 79, .95);
}

.masthead {
  background:
    linear-gradient(100deg, rgba(14, 90, 138, .62) 0%, rgba(8, 52, 79, .18) 58%, rgba(8, 52, 79, 0) 100%),
    var(--deep);
  border-bottom: 1px solid rgba(191, 239, 232, .1);
}

.masthead__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 14px 12px;
}

.masthead__scale {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(191, 239, 232, .7);
}
.masthead__scale-mark {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(35, 227, 198, 0));
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  justify-self: center;
  text-decoration: none;
  color: var(--paper);
}
.brand__word {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.08;
}
.brand__sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  color: rgba(191, 239, 232, .88);
}
.brand:hover .brand__word { color: var(--cyan); }

.masthead__quick {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.masthead__quick .btn { padding: 8px 15px; font-size: 13px; }
.masthead__note {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(191, 239, 232, .8);
  text-decoration: none;
  border-bottom: 1px solid rgba(191, 239, 232, .32);
  padding-bottom: 2px;
}
.masthead__note:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

/* ===== 通用按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn--primary { background: var(--cyan); color: var(--deep); }
.btn--primary:hover { background: #6bf2dd; color: var(--deep); }
.btn--solid { background: var(--water); color: #fff; }
.btn--solid:hover { background: var(--deep); color: #fff; }
.btn--ghost { background: rgba(191, 239, 232, .07); border-color: var(--mist-b); color: var(--paper); }
.btn--ghost:hover { background: rgba(191, 239, 232, .18); border-color: var(--cyan); color: var(--paper); }
.btn--line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--water); color: var(--water); }
.btn--alert { background: transparent; border-color: rgba(193, 64, 46, .45); color: var(--cinnabar); }
.btn--alert:hover { background: rgba(193, 64, 46, .1); color: var(--cinnabar); }

/* ===== 栏目带 ===== */
.nav {
  position: relative;
  background: rgba(6, 40, 60, .94);
  border-top: 1px solid rgba(191, 239, 232, .12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  padding: 13px 6px;
  background: transparent;
  border: 0;
  color: var(--paper);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
}
.nav__bars {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 10px;
}
.nav__bars::before,
.nav__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transition: transform .2s var(--ease), top .2s var(--ease), bottom .2s var(--ease);
}
.nav__bars::before { top: 0; }
.nav__bars::after { bottom: 0; }
.nav[data-open] .nav__bars::before { top: 4px; transform: rotate(45deg); }
.nav[data-open] .nav__bars::after { bottom: 4px; transform: rotate(-45deg); }

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2.2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list a {
  display: block;
  padding: 14px 4px 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(251, 250, 247, .8);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.nav__list a:hover { color: #fff; border-bottom-color: rgba(35, 227, 198, .55); }
.nav__list a[aria-current="page"] { color: #fff; border-bottom-color: var(--cyan); }

/* ===== 页脚 ===== */
.site-footer {
  position: relative;
  margin-top: clamp(56px, 9vw, 110px);
  background: var(--deep);
  color: rgba(251, 250, 247, .86);
  border-top: 3px solid var(--cyan);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 239, 232, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 239, 232, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 72%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 72%);
  pointer-events: none;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.6vw, 44px);
  padding-block: clamp(40px, 6vw, 72px) clamp(26px, 4vw, 42px);
}

.footer__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--paper);
  text-decoration: none;
}
.footer__logo:hover { color: var(--cyan); }
.footer__tagline {
  margin: 7px 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  color: var(--mist);
}
.footer__meta {
  margin: 0;
  max-width: 34ch;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(251, 250, 247, .64);
}

.footer__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--mist);
}
.footer__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__list a {
  font-size: 14px;
  color: rgba(251, 250, 247, .78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.footer__list a:hover { color: var(--cyan); border-bottom-color: rgba(35, 227, 198, .55); }

.footer__bottom {
  position: relative;
  display: grid;
  gap: 8px;
  padding-block: 20px 30px;
  border-top: 1px solid rgba(191, 239, 232, .18);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(191, 239, 232, .72);
}
.footer__legal, .footer__contact { margin: 0; }
.footer__legal span[data-year] { font-family: var(--font-mono); color: var(--mist); }

/* ===== 面包屑 ===== */
.breadcrumb { padding-block: 14px; font-size: 13px; color: var(--muted); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--water); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== 首屏切入带 ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(34px, 6.5vw, 82px);
  background: var(--deep);
  color: var(--paper);
}
.page-hero h1, .page-hero h2, .page-hero h3 { color: var(--paper); }
.page-hero .lede { color: rgba(251, 250, 247, .8); }
.page-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -52%;
  width: min(640px, 72vw);
  height: min(640px, 72vw);
  background: radial-gradient(circle at 32% 32%, rgba(35, 227, 198, .26), rgba(35, 227, 198, 0) 62%);
  transform: rotate(-6deg);
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -6%;
  top: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(96deg, rgba(14, 90, 138, .5), rgba(14, 90, 138, 0));
  transform: skewX(-6deg);
  transform-origin: top left;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }

/* ===== 数据焦点与卡片 ===== */
.focus-number {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(44px, 9vw, 104px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--deep);
  margin: 0;
}
.focus-number em {
  font-style: normal;
  font-size: .3em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: .45em;
}
.section--deep .focus-number { color: var(--cyan); }
.section--deep .focus-number em { color: rgba(191, 239, 232, .7); }

.stat { display: flex; flex-direction: column; gap: 5px; }
.stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--deep);
}
.stat__unit { font-size: .42em; font-weight: 500; letter-spacing: 0; color: var(--muted); margin-left: .4em; }
.stat__label { font-size: 13px; letter-spacing: .08em; color: var(--muted); }

.card {
  padding: clamp(18px, 2.4vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card--sand { background: var(--sand); border-color: var(--line); }
.card--glass {
  background: rgba(191, 239, 232, .08);
  border-color: var(--mist-b);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card__head { margin: 0 0 10px; font-size: 17px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid rgba(35, 227, 198, .5);
  color: var(--deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.pill--mono { font-family: var(--font-mono); }
.pill--alert {
  background: rgba(193, 64, 46, .1);
  border-color: rgba(193, 64, 46, .38);
  color: var(--cinnabar);
}

/* ===== 标签页 ===== */
.tabs { margin-block: clamp(20px, 3vw, 34px); }
.tabs__list {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.tabs__tab {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 11px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.tabs__tab:hover { color: var(--water); }
.tabs__tab[aria-selected="true"] { color: var(--deep); border-bottom-color: var(--cyan); }
.tabs__panel { padding-top: 22px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel:not([hidden]) { animation: tabIn .18s var(--ease) both; }

@keyframes tabIn {
  from { opacity: 0; transform: translateX(7px); }
  to { opacity: 1; transform: none; }
}

/* ===== 数据表 ===== */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--paper);
}
.table caption {
  text-align: left;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}
.table th, .table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted);
}
.table tbody tr:nth-child(even) { background: var(--sand); }
.table .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ===== 图片 / 图形容器 ===== */
.plate { margin: 0 0 clamp(20px, 3vw, 32px); }
.plate__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--sand);
  background-image:
    radial-gradient(120% 90% at 16% 10%, rgba(191, 239, 232, .8), rgba(191, 239, 232, 0) 62%),
    linear-gradient(180deg, var(--sand) 0%, rgba(217, 211, 199, .62) 100%);
  isolation: isolate;
}
.plate__frame > img,
.plate__frame > svg,
.plate__frame > video,
.plate__frame > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate__frame:empty::after {
  content: attr(data-placeholder);
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--water);
}
.plate--heat .plate__frame {
  background-image:
    radial-gradient(38% 44% at 28% 62%, rgba(193, 64, 46, .5), rgba(193, 64, 46, 0) 70%),
    radial-gradient(34% 40% at 64% 36%, rgba(35, 227, 198, .72), rgba(35, 227, 198, 0) 72%),
    linear-gradient(180deg, var(--mist) 0%, var(--sand) 100%);
}
.plate--pitch .plate__frame {
  aspect-ratio: 4 / 3;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .38) 0 2px, rgba(255, 255, 255, 0) 2px 12.5%),
    linear-gradient(180deg, var(--water) 0%, var(--deep) 100%);
}
.plate--timer .plate__frame {
  aspect-ratio: 21 / 6;
  background-image:
    repeating-linear-gradient(90deg, rgba(191, 239, 232, .5) 0 1px, rgba(191, 239, 232, 0) 1px 3.2%),
    linear-gradient(90deg, rgba(35, 227, 198, .34) 0%, rgba(14, 90, 138, .24) 100%);
}
.plate__caption {
  margin-top: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--cyan);
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.section--deep .plate__caption { color: rgba(191, 239, 232, .8); }

/* ===== 滚动进度与显现 ===== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 130;
  pointer-events: none;
  background: transparent;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--water));
  transition: width .12s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .grid--editorial,
  .grid--split { grid-template-columns: minmax(0, 1fr); }
  .rail { position: static; top: auto; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 108px; }

  .masthead__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 10px;
    padding-block: 16px 14px;
  }
  .masthead__scale { display: none; }
  .masthead__quick { justify-self: center; }

  .nav__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav__toggle { display: flex; }
  .nav__list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 12px;
  }
  .nav[data-open] .nav__list { display: flex; }
  .nav__list a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(191, 239, 232, .14);
    border-left: 2px solid transparent;
  }
  .nav__list a:hover,
  .nav__list a[aria-current="page"] {
    border-bottom-color: rgba(191, 239, 232, .14);
    border-left-color: var(--cyan);
    padding-left: 16px;
  }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .tabs__tab { padding-inline: 12px; }
  .masthead__quick { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tabs__panel:not([hidden]) { animation: none; }
  .progress__bar { transition: none; }
  .btn, .nav__list a, .footer__list a, .skip-link, .nav__bars::before, .nav__bars::after {
    transition-duration: .001ms;
  }
}
