/**
 * PC 头部导航 — 年轻化视觉（全站引用）
 * 与旧 header 内联样式并存时，本文件需后加载覆盖
 */
.zz-header-v2 {
  /* 导航以上区域：统一「冷灰底 + 靛青强调」，避免彩虹渐变抢戏 */
  --h-coral: #f43f5e;
  --h-violet: #6366f1;
  --h-accent: #4f46e5;
  --h-accent-soft: rgba(79, 70, 229, 0.12);
  --h-cyan: #0ea5e9;
  --h-ink: #0f172a;
  --h-muted: #64748b;
  --h-line: rgba(148, 163, 184, 0.35);
  --h-glass: rgba(255, 255, 255, 0.82);
  --h-max: 1280px;
  --h-gutter: 20px;
  --h-search-max: 482px;
  /* 保留变量名供旧选择器引用，改为靛青单色条 */
  --h-rainbow: linear-gradient(90deg, #4f46e5, #6366f1, #818cf8, #4f46e5);
  position: relative;
  z-index: 900;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #eef2f7 100%);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.zz-header-v2::before {
  content: "";
  position: absolute;
  inset: -35% -15% auto -15%;
  height: 78%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 12% 0%, rgba(79, 70, 229, 0.09), transparent 55%),
    radial-gradient(ellipse 55% 55% at 88% 8%, rgba(14, 165, 233, 0.06), transparent 50%);
  z-index: 0;
}

/* 勿用 >* 统一 z-index，否则会压过 .zz-h-navbox 的 sticky 层 */
.zz-h-top,
.zz-h-mid-wrap {
  position: relative;
  z-index: 1;
}

.zz-header-v2 .fl,
.zz-header-v2 .fr,
.zz-header-v2 .cl_b {
  float: none;
  clear: none;
}

.zz-h-top {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
}

.zz-h-top::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.45) 50%, transparent 100%);
  opacity: 1;
}

.zz-h-top .wrap {
  max-width: var(--h-max);
  margin: 0 auto;
  padding: 0 var(--h-gutter);
  box-sizing: border-box;
}

.zz-h-top .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  min-height: 44px;
  font-size: 13px;
  color: var(--h-muted);
}

.zz-h-top .top-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.zz-h-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.zz-h-pill--live {
  animation: zz-h-pulse 2.4s ease-in-out infinite;
}

@keyframes zz-h-pulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
    transform: scale(1.02);
  }
}

.zz-h-top .welcome-text {
  color: var(--h-ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}


.zz-h-top .top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: flex-end;
}

.zz-h-top .addSite {
  margin-left: 0;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--h-accent);
  font-weight: 700;
  text-decoration: none;
  background: var(--h-accent-soft);
  border: 1px solid rgba(79, 70, 229, 0.2);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.zz-h-top .addSite:hover {
  color: #4338ca;
  background: rgba(79, 70, 229, 0.16);
  border-color: rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
}

.zz-h-top .top-info {
  display: none;
}

.zz-h-top .top-split {
  width: 6px;
  height: 6px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.45);
  opacity: 1;
  vertical-align: middle;
  display: inline-block;
}

.zz-h-top .top-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zz-h-top .top-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--h-ink);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.zz-h-top .top-icon:hover {
  color: var(--h-accent);
}

.zz-h-top .top-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.zz-h-top .top-icon:hover .top-icon-circle {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.22);
}

.zz-h-top .top-icon-wechat .top-icon-circle {
  background: linear-gradient(145deg, #4f46e5, #6366f1);
}

.zz-h-top .top-icon-service .top-icon-circle {
  background: linear-gradient(145deg, #4338ca, #4f46e5);
}

@media (min-width: 900px) {
  .zz-h-top .top-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.85);
    font-weight: 600;
    color: var(--h-ink);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.06);
  }

  .zz-h-top .top-info::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  }
}

/* 主行外层：版心与顶栏、导航一致（仅此处留左右 gutter） */
.zz-h-mid-wrap {
  max-width: var(--h-max);
  width: 100%;
  margin: 0 auto;
  /*padding: 12px var(--h-gutter) 8px;*/
  box-sizing: border-box;
}

/* 主行：Logo + 搜索 + 行动区 — 内边距略大于版心 gutter，避免贴边拥挤 */
.zz-h-mid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  align-items: center;
  justify-items: stretch;
  column-gap: 40px;
  row-gap: 0;
  box-sizing: border-box;
  /*border-radius: 20px;*/
  /*background: rgba(255, 255, 255, 0.88);*/
  /*border: 1px solid rgba(15, 23, 42, 0.06);*/
  /*backdrop-filter: blur(16px) saturate(1.15);*/
  /*-webkit-backdrop-filter: blur(16px) saturate(1.15);*/
  /*box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);*/
  position: relative;
  overflow: hidden;
}

@media (min-width: 1101px) and (max-width: 1220px) {
  .zz-h-mid {
    grid-template-columns: 200px minmax(0, 1fr) 236px;
    column-gap: 28px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/*.zz-h-mid::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 3px;*/
  /*background: linear-gradient(90deg, #4f46e5, #6366f1, #818cf8);*/
/*  opacity: 0.85;*/
/*  pointer-events: none;*/
/*}*/

@media (max-width: 1100px) {
  .zz-h-mid-wrap {
    padding-left: var(--h-gutter);
    padding-right: var(--h-gutter);
  }

  .zz-h-mid {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    text-align: center;
    padding: 22px 18px 24px;
    row-gap: 22px;
  }

  .zz-h-search-wrap {
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }

  .zz-h-actions {
    align-items: center !important;
    justify-self: center !important;
    max-width: 380px !important;
  }
}

.zz-h-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  max-width: 220px;
  justify-self: start;
  align-self: center;
}

@media (max-width: 1100px) {
  .zz-h-brand {
    align-items: center;
    text-align: center;
    max-width: 100%;
    justify-self: center;
  }
}

.zz-h-brand__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  max-width: 100%;
  color: #475569;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .zz-h-brand__sub {
    max-width: 100%;
  }
}

.zz-h-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  min-height: 52px;
  /*padding: 8px 12px;*/
  margin: 0;
  border-radius: 14px;
  /*background: #fff;*/
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
  /*width: 100%;*/
  max-width: 220px;
}

.zz-h-logo-link:hover {
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateY(-2px);
  background: #fff;
}

@media (max-width: 1100px) {
  .zz-h-logo-link {
    justify-content: center;
    max-width: 280px;
  }
}

.zz-h-mid .h_log {
  display: block;
 
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.08));
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .zz-h-mid .h_log {
    object-position: center;
    max-width: 280px;
  }
}

.zz-h-search-wrap {
  width: 100%;
  min-width: 0;
  max-width: 640px;
  justify-self: stretch;
  align-self: center;
}

@media (min-width: 1101px) {
  .zz-h-search-wrap {
    max-width: var(--h-search-max);
    justify-self: center;
  }
}

.zz-h-search-wrap .header-search-form {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}

.zz-h-search-wrap .input-box {
  position: relative;
  flex: 1 1 auto;
  min-width: 220px;
  box-sizing: border-box;
}

.zz-h-search-wrap input#keywords,
.zz-h-search-wrap input[type="text"] {
  display: block !important;
  width: 100% !important;
  min-width: 200px !important;
  height: 50px !important;
  line-height: 1.4 !important;
  padding: 0 44px 0 20px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px !important;
  color: var(--h-ink) !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.25s ease, transform 0.2s ease;
}

.zz-h-search-wrap input#keywords:focus,
.zz-h-search-wrap input[type="text"]:focus {
  background: #fff !important;
  border-color: rgba(79, 70, 229, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15), 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

.zz-h-search-wrap .header-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--h-muted);
  pointer-events: none;
}

.zz-h-search-wrap .header-search-btn {
  flex: 0 0 auto;
  height: 50px !important;
  min-width: 108px !important;
  padding: 0 24px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 999px !important;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #e54694 0%, #f1638b 55%, #f88181 100%) !important;
  box-shadow: 0 8px 22px #f472b678;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-sizing: border-box;
}

.zz-h-search-wrap .header-search-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.42);
}

@media (max-width: 560px) {
  .zz-h-search-wrap .header-search-form {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .zz-h-search-wrap .header-search-btn {
    width: 100% !important;
  }
}

.zz-h-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 2px;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .zz-h-tags {
    justify-content: center;
  }
}

.zz-h-tags span {
  font-size: 13px;
  font-weight: 800;
  color: var(--h-ink);
  margin-right: 2px;
  letter-spacing: 0.02em;
}

.zz-h-tags a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #334155 !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, border-color 0.2s ease, color 0.2s ease,
    background 0.2s ease;
}

.zz-h-tags a:hover {
  transform: translateY(-2px);
  color: #4f46e5 !important;
  border-color: rgba(79, 70, 229, 0.28);
  background: #fff;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.12);
}

.zz-h-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding: 18px 20px;
  /* border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(253, 242, 248, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9); */
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 1101px) {
  .zz-h-actions {
    justify-self: end;
    align-self: center;
    max-width: 260px;
  }
}

@media (max-width: 1100px) {
  .zz-h-actions {
    align-items: center;
    max-width: 380px;
  }
}

.zz-h-tel {
  font-size: 12px;
  font-weight: 700;
  color: var(--h-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: right;
}

@media (max-width: 1100px) {
  .zz-h-tel {
    text-align: center;
  }
}

.zz-h-tel strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #0f172a;
}

.zz-h-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #e54652 0%, #ed3ad2 100%);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.zz-h-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(79, 70, 229, 0.42);
}

/* 主导航 — 多巴胺配色 · 彩虹条 + 玻璃胶囊 + 分项光晕 */
@keyframes zz-nav-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes zz-nav-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.45));
  }
}

.zz-h-navbox {
  position: sticky;
  top: 0;
  z-index: 880;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    #fff7ed 0%,
    #ffecf5 18%,
    #f3e8ff 36%,
    #e0f2fe 55%,
    #ecfccb 72%,
    #fef9c3 88%,
    #ffedd5 100%
  );
  background-size: 220% 220%;
  animation: zz-nav-shimmer 14s ease-in-out infinite alternate;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.zz-h-navbox::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #f472b6,
    #c084fc,
    #60a5fa,
    #2dd4bf,
    #4ade80,
    #facc15,
    #fb923c,
    #f472b6
  );
  background-size: 200% 100%;
  animation: zz-nav-shimmer 8s linear infinite;
}

.zz-h-navbox::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 10% -20%, rgba(244, 114, 182, 0.2), transparent 45%),
    radial-gradient(ellipse 60% 100% at 90% 120%, rgba(96, 165, 250, 0.18), transparent 40%);
  z-index: 0;
}

.zz-h-nav {
  position: relative;
  z-index: 1;
  max-width: var(--h-max);
  margin: 0 auto;
  /*padding: 0 var(--h-gutter);*/
  box-sizing: border-box;
}

.zz-h-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 justify-content: space-around;
  gap: 14px 20px;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  min-height: 0;
}

.zz-h-nav li {
  display: flex;
  align-items: center;
}

.zz-h-nav li > a {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 13px 26px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  color: #1e1b4b !important;
  text-decoration: none !important;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.25s ease,
    color 0.25s ease, background 0.28s ease;
}

.zz-h-nav li > a::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(120deg, #f472b6, #a78bfa, #38bdf8, #4ade80);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.zz-h-nav li > a:hover {
  transform: translateY(-3px) scale(1.04);
}

.zz-h-nav li > a:hover::before {
  opacity: 1;
}

/* 每一项悬停 / 当前：不同多巴胺色光晕 */
.zz-h-nav li:nth-child(8n + 1) > a:hover {
  color: #be185d !important;
  box-shadow: 0 12px 28px rgba(244, 114, 182, 0.45), 0 4px 12px rgba(236, 72, 153, 0.2);
  border-color: rgba(251, 207, 232, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 2) > a:hover {
  color: #6d28d9 !important;
  box-shadow: 0 12px 28px rgba(167, 139, 250, 0.5), 0 4px 12px rgba(139, 92, 246, 0.2);
  border-color: rgba(221, 214, 254, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 3) > a:hover {
  color: #0369a1 !important;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.45), 0 4px 12px rgba(14, 165, 233, 0.2);
  border-color: rgba(186, 230, 253, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 4) > a:hover {
  color: #047857 !important;
  box-shadow: 0 12px 28px rgba(74, 222, 128, 0.45), 0 4px 12px rgba(34, 197, 94, 0.2);
  border-color: rgba(187, 247, 208, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 5) > a:hover {
  color: #a16207 !important;
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.45), 0 4px 12px rgba(234, 179, 8, 0.25);
  border-color: rgba(254, 249, 195, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 6) > a:hover {
  color: #c2410c !important;
  box-shadow: 0 12px 28px rgba(251, 146, 60, 0.45), 0 4px 12px rgba(249, 115, 22, 0.2);
  border-color: rgba(255, 237, 213, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 7) > a:hover {
  color: #0d9488 !important;
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.45), 0 4px 12px rgba(20, 184, 166, 0.2);
  border-color: rgba(153, 246, 228, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.zz-h-nav li:nth-child(8n + 8) > a:hover {
  color: #7c3aed !important;
  box-shadow: 0 12px 28px rgba(167, 139, 250, 0.45), 0 4px 12px rgba(124, 58, 237, 0.2);
  border-color: rgba(237, 233, 254, 0.95) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* 当前页：渐变实心胶囊（易优把 cur 写在 <a> 上） */
.zz-h-nav li > a.cur {
  color: #fff !important;
  border-color: transparent !important;
  background-image: linear-gradient(135deg, #ec4899 0%, #8b5cf6 40%, #06b6d4 100%) !important;
  box-shadow: 0 10px 32px rgba(139, 92, 246, 0.45), 0 4px 14px rgba(236, 72, 153, 0.3) !important;
  animation: zz-nav-glow 3s ease-in-out infinite;
}

.zz-h-nav li > a.cur::before {
  opacity: 0;
}

.zz-h-nav li > a.cur:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.06);
}

.zz-header-v2 .nav_box {
  background: transparent;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .zz-h-pill--live {
    animation: none;
  }

  .zz-h-pill--live,
  .zz-h-search-wrap .header-search-btn,
  .zz-h-cta,
  .zz-h-tags a,
  .zz-h-logo-link {
    transition: none;
  }
}
