/* ============ 浩瀚体育平台 · 共享站点样式 ============ */

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

:root {
  --hh-blue: #0D1B2A;
  --hh-blue-deep: #091220;
  --hh-orange: #FF7F11;
  --hh-green: #39FF14;
  --hh-fog: #F4F7F6;
  --hh-ink: #1A1A2E;
  --hh-gray: #4A4A4A;
  --hh-edge: #D9E2E3;
  --hh-white: #FFFFFF;
  --hh-overlay: rgba(13, 27, 42, 0.8);
  --hh-yellow: #FFD166;
  --hh-mono: "Roboto Mono", "JetBrains Mono", Consolas, monospace;
  --hh-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --hh-radius: 0.5rem;
  --hh-ease: 0.2s ease;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--hh-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hh-ink);
  background: var(--hh-fog);
}

main {
  display: block;
}

#main-content {
  min-height: 60vh;
  scroll-margin-top: 3.5rem;
}

#main-content:focus,
#main-content:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--hh-sans);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.25rem;
}

a {
  color: var(--hh-orange);
}

figure {
  margin: 0;
}

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

button {
  font: inherit;
}

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

/* ===== 布局容器 ===== */

.hh-container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hh-dark {
  background: var(--hh-blue);
  color: var(--hh-white);
}

.hh-section {
  padding: 3.5rem 0;
}

.hh-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.625rem 0.75rem;
  margin-bottom: 1.75rem;
}

.hh-section-index {
  font-family: var(--hh-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hh-orange);
}

.hh-section-title {
  font-size: 1.75rem;
  margin: 0;
}

.hh-section-desc {
  flex-basis: 100%;
  max-width: 52em;
  margin: 0;
  color: var(--hh-gray);
}

.hh-page-header {
  background: var(--hh-blue);
  color: var(--hh-white);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(217, 226, 227, 0.1);
}

.hh-page-index {
  display: block;
  font-family: var(--hh-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hh-orange);
  margin-bottom: 0.5rem;
}

.hh-page-title {
  margin: 0;
  font-size: 2.25rem;
}

.hh-page-desc {
  max-width: 46em;
  margin: 0.875rem 0 0;
  font-size: 1rem;
  color: rgba(244, 247, 246, 0.72);
}

/* ===== 页头 ===== */

.hh-header {
  position: relative;
  background: var(--hh-blue);
  color: var(--hh-white);
}

.hh-skip {
  position: fixed;
  top: 0.375rem;
  left: 0.5rem;
  z-index: 200;
  padding: 0.5rem 0.875rem;
  background: var(--hh-orange);
  color: var(--hh-blue);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  border-radius: 0.25rem;
  transform: translateY(-300%);
  transition: transform var(--hh-ease);
}

.hh-skip:focus,
.hh-skip:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--hh-yellow);
  outline-offset: 2px;
}

.hh-header-top {
  background: var(--hh-blue-deep);
  border-bottom: 1px solid rgba(217, 226, 227, 0.1);
}

.hh-header-top .hh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-family: var(--hh-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: rgba(244, 247, 246, 0.65);
}

.hh-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hh-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hh-green);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.45);
  animation: hh-pulse 2.4s ease-out infinite;
}

@keyframes hh-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.hh-index-code {
  color: var(--hh-orange);
  letter-spacing: 0.12em;
}

.hh-masthead {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 1.125rem;
}

.hh-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    135deg,
    rgba(255, 127, 17, 0.07) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 127, 17, 0.07) 50%,
    rgba(255, 127, 17, 0.07) 75%,
    transparent 75%
  );
  background-size: 16px 16px;
  pointer-events: none;
}

.hh-masthead::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hh-orange));
  pointer-events: none;
}

.hh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hh-white);
  text-decoration: none;
  border-radius: 0.25rem;
}

.hh-brand:hover .hh-brand-name,
.hh-brand:focus-visible .hh-brand-name {
  color: var(--hh-orange);
}

.hh-logo {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.hh-logo-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hh-dot-1 {
  top: 2px;
  left: 2px;
  background: var(--hh-green);
}

.hh-dot-2 {
  top: 2px;
  right: 2px;
  background: var(--hh-white);
}

.hh-dot-3 {
  bottom: 2px;
  left: 2px;
  background: var(--hh-white);
  opacity: 0.65;
}

.hh-dot-4 {
  bottom: 2px;
  right: 2px;
  background: var(--hh-orange);
}

.hh-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hh-brand-name-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hh-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color var(--hh-ease);
}

.hh-brand-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hh-orange);
  box-shadow: 0 0 0 3px rgba(255, 127, 17, 0.18);
  flex: 0 0 9px;
}

.hh-brand-slogan {
  font-family: var(--hh-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: rgba(244, 247, 246, 0.55);
  margin-top: 0.25rem;
}

/* ===== 主导航 ===== */

.hh-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--hh-blue);
  border-bottom: 1px solid rgba(217, 226, 227, 0.12);
  padding: 0.375rem 0 0.625rem;
}

.hh-nav .hh-container {
  position: relative;
}

.hh-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hh-orange);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10;
}

.hh-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hh-nav-item {
  margin: 0;
}

.hh-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  color: rgba(244, 247, 246, 0.82);
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color var(--hh-ease), background-color var(--hh-ease), border-color var(--hh-ease);
}

.hh-nav-index {
  font-family: var(--hh-mono);
  font-size: 0.625rem;
  color: rgba(255, 127, 17, 0.75);
  transition: color var(--hh-ease);
}

.hh-nav-label {
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.hh-nav-link:hover,
.hh-nav-link:focus-visible {
  color: var(--hh-white);
  background: rgba(244, 247, 246, 0.07);
}

.hh-nav-link:hover .hh-nav-index,
.hh-nav-link:focus-visible .hh-nav-index,
.hh-nav-link[aria-current="page"] .hh-nav-index {
  color: var(--hh-green);
}

.hh-nav-link[aria-current="page"] {
  color: var(--hh-white);
  border-bottom-color: var(--hh-orange);
}

.hh-nav-toggle {
  display: none;
}

.hh-nav-toggle-text {
  font-family: var(--hh-mono);
  font-size: 0.71875rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ===== 页脚 ===== */

.hh-footer {
  position: relative;
  background: var(--hh-blue);
  color: rgba(244, 247, 246, 0.72);
  overflow: hidden;
}

.hh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 247, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 246, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hh-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hh-orange) 0%, var(--hh-orange) 55%, var(--hh-green) 55%, var(--hh-green) 100%);
  pointer-events: none;
}

.hh-footer .hh-container {
  position: relative;
}

.hh-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.2fr;
  gap: 2.5rem;
  padding: 2.75rem 0 2.25rem;
}

.hh-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--hh-orange);
}

.hh-footer-brand .hh-logo {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.hh-footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hh-footer-name {
  color: var(--hh-white);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
}

.hh-footer-sub {
  font-family: var(--hh-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 127, 17, 0.85);
}

.hh-footer-links,
.hh-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.hh-footer-label {
  font-family: var(--hh-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 246, 0.45);
  margin-bottom: 0.375rem;
}

.hh-footer-link {
  color: rgba(244, 247, 246, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.125rem 0;
  transition: color var(--hh-ease);
}

.hh-footer-link:hover,
.hh-footer-link:focus-visible {
  color: var(--hh-orange);
}

.hh-footer-email,
.hh-footer-phone,
.hh-footer-address,
.hh-footer-contact-note {
  font-family: var(--hh-mono);
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(244, 247, 246, 0.62);
}

.hh-footer-contact-note {
  color: rgba(57, 255, 20, 0.65);
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.hh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0 1.125rem;
  border-top: 1px solid rgba(217, 226, 227, 0.12);
}

.hh-footer-copy,
.hh-footer-icp {
  font-family: var(--hh-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(244, 247, 246, 0.5);
}

/* ===== 通用按钮 ===== */

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background: transparent;
  font-family: var(--hh-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--hh-ease), border-color var(--hh-ease), color var(--hh-ease);
}

.hh-btn-primary {
  background: var(--hh-orange);
  color: var(--hh-blue);
}

.hh-btn-primary:hover,
.hh-btn-primary:focus-visible {
  background: var(--hh-yellow);
  color: var(--hh-blue);
}

.hh-btn-outline {
  border-color: var(--hh-gray);
  color: var(--hh-ink);
}

.hh-btn-outline:hover,
.hh-btn-outline:focus-visible {
  border-color: var(--hh-orange);
  color: var(--hh-orange);
}

.hh-btn-outline-light {
  border: 1px solid rgba(244, 247, 246, 0.55);
  color: var(--hh-white);
}

.hh-btn-outline-light:hover,
.hh-btn-outline-light:focus-visible {
  border-color: var(--hh-orange);
  color: var(--hh-orange);
}

/* ===== 面包屑 ===== */

.hh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.hh-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.hh-breadcrumb-item + .hh-breadcrumb-item::before {
  content: "→";
  font-family: var(--hh-mono);
  color: var(--hh-orange);
}

.hh-breadcrumb-link {
  color: var(--hh-gray);
  text-decoration: none;
  transition: color var(--hh-ease);
}

.hh-breadcrumb-link:hover,
.hh-breadcrumb-link:focus-visible {
  color: var(--hh-orange);
}

.hh-breadcrumb-current {
  color: var(--hh-ink);
  font-weight: 500;
}

/* ===== 网格 ===== */

.hh-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

.hh-grid-span-2 {
  grid-column: span 2;
}

.hh-grid-span-3 {
  grid-column: span 3;
}

.hh-grid-span-4 {
  grid-column: span 4;
}

.hh-grid-span-6 {
  grid-column: span 6;
}

.hh-grid-span-8 {
  grid-column: span 8;
}

/* ===== 资料卡 ===== */

.hh-card {
  position: relative;
  background: var(--hh-white);
  border: 1px solid var(--hh-edge);
  border-radius: var(--hh-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(13, 27, 42, 0.08);
  transition: transform var(--hh-ease), border-color var(--hh-ease), box-shadow var(--hh-ease);
}

.hh-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 127, 17, 0.55);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.1);
}

.hh-card-index {
  display: block;
  font-family: var(--hh-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--hh-orange);
  margin-bottom: 0.5rem;
}

.hh-card-title {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.hh-card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--hh-gray);
  margin: 0;
}

.hh-card-dark {
  background: var(--hh-blue);
  border-color: rgba(217, 226, 227, 0.16);
  box-shadow: none;
  color: var(--hh-white);
}

.hh-card-dark .hh-card-title {
  color: var(--hh-white);
}

.hh-card-dark .hh-card-text {
  color: rgba(244, 247, 246, 0.68);
}

.hh-card-dark:hover {
  border-color: rgba(255, 127, 17, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ===== 标签 ===== */

.hh-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 999px;
  font-family: var(--hh-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  background: rgba(255, 127, 17, 0.12);
  color: #B85C00;
  border: 1px solid rgba(255, 127, 17, 0.35);
}

.hh-tag-green {
  background: rgba(57, 255, 20, 0.12);
  color: #1C8B0B;
  border-color: rgba(57, 255, 20, 0.4);
}

/* ===== 图片容器 ===== */

.hh-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--hh-radius);
  background: var(--hh-edge);
  aspect-ratio: 16 / 9;
}

.hh-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-figure-wide {
  aspect-ratio: 21 / 9;
}

.hh-figure-square {
  aspect-ratio: 1 / 1;
}

.hh-figure-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hh-overlay);
  pointer-events: none;
}

.hh-figure-caption {
  margin-top: 0.5rem;
  font-family: var(--hh-mono);
  font-size: 0.75rem;
  color: var(--hh-gray);
  letter-spacing: 0.04em;
}

/* ===== 响应式 ===== */

@media (max-width: 767px) {
  .hh-container {
    padding-inline: 1rem;
  }

  .hh-header-top .hh-container {
    font-size: 0.625rem;
    letter-spacing: 0.06em;
  }

  .hh-index-code {
    display: none;
  }

  .hh-masthead {
    padding: 1.125rem 1rem 0.875rem;
  }

  .hh-logo {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .hh-brand-name {
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
  }

  .hh-brand-slogan {
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
  }

  .hh-nav {
    padding: 0;
  }

  .hh-nav .hh-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hh-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4375rem 0.875rem;
    background: transparent;
    border: 1px solid rgba(217, 226, 227, 0.3);
    border-radius: 0.375rem;
    color: var(--hh-white);
    font-family: var(--hh-mono);
    font-size: 0.71875rem;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .hh-nav-toggle:hover,
  .hh-nav-toggle:focus-visible {
    border-color: var(--hh-orange);
  }

  .hh-nav-toggle-icon {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }

  .hh-nav-toggle-icon::before,
  .hh-nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--hh-ease), top var(--hh-ease);
  }

  .hh-nav-toggle-icon::before {
    top: -5px;
  }

  .hh-nav-toggle-icon::after {
    top: 5px;
  }

  .hh-nav[data-open] .hh-nav-toggle-icon {
    background: transparent;
  }

  .hh-nav[data-open] .hh-nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .hh-nav[data-open] .hh-nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hh-nav-list {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.625rem;
    background: var(--hh-blue);
    border: 1px solid rgba(217, 226, 227, 0.14);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity var(--hh-ease), transform var(--hh-ease), visibility var(--hh-ease);
    z-index: 50;
  }

  .hh-nav[data-open] .hh-nav-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hh-nav-item {
    border-bottom: 1px solid rgba(217, 226, 227, 0.08);
  }

  .hh-nav-item:last-child {
    border-bottom: none;
  }

  .hh-nav-link {
    display: flex;
    padding: 0.625rem 0.75rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }

  .hh-nav-link[aria-current="page"] {
    border-left-color: var(--hh-orange);
  }

  .hh-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 0 1.5rem;
  }

  .hh-section {
    padding: 2.5rem 0;
  }

  .hh-page-header {
    padding: 2rem 0 1.75rem;
  }

  .hh-page-title {
    font-size: 1.75rem;
  }

  .hh-section-title {
    font-size: 1.5rem;
  }

  .hh-grid-2,
  .hh-grid-3,
  .hh-grid-4,
  .hh-grid-12 {
    grid-template-columns: 1fr;
  }

  .hh-grid-span-2,
  .hh-grid-span-3,
  .hh-grid-span-4,
  .hh-grid-span-6,
  .hh-grid-span-8 {
    grid-column: span 1;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hh-footer-contact {
    grid-column: 1 / -1;
  }

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

/* ===== 动效降级 ===== */

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

  .hh-status-dot {
    box-shadow: none;
  }
}
