/* 外贸 B2B 平台 - 用户端公共样式（品牌橙 + 冷灰石材质感） */
:root {
  /* 主色：参考文化墙活力橙 */
  --brand: #f07c3d;
  --brand-hover: #e8692a;
  --brand-dark: #c55a1f;
  --brand-soft: rgba(240, 124, 61, 0.14);
  --brand-ghost: rgba(240, 124, 61, 0.09);
  --brand-line: rgba(240, 124, 61, 0.35);
  /* 兼容旧变量名：主交互色统一为品牌橙 */
  --primary: #f07c3d;
  --primary-light: #ff9354;
  --accent: #f07c3d;
  --accent-hover: #e8692a;
  --ink: #1a1f2e;
  --text: #1a1f2e;
  --text-secondary: #4a5568;
  --muted: #7a8499;
  --border: #e2e5eb;
  --white: #fff;
  --success: #2d8a54;
  --footer-bg: #2c2f38;
  --footer-bg2: #252830;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(28, 32, 44, 0.08);
  --shadow-sm: 0 4px 16px rgba(28, 32, 44, 0.06);
  --shadow-card: 0 2px 12px rgba(28, 32, 44, 0.05);
  --header-h: 64px;
  --max-w: 1200px;
  --link: #b85520;
  --modal-scrim: rgba(28, 30, 36, 0.52);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  background-color: #eceef1;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255, 255, 255, 0.75), transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 30%, rgba(215, 220, 228, 0.45), transparent 50%),
    radial-gradient(ellipse 55% 40% at 0% 80%, rgba(220, 225, 232, 0.4), transparent 48%),
    linear-gradient(180deg, #f1f2f5 0%, #e8eaef 100%);
  background-attachment: fixed;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--brand);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 229, 235, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 24px rgba(28, 32, 44, 0.04);
}

.site-header .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-rows: auto;
  grid-template-areas: "logo nav lang actions";
  align-items: center;
  column-gap: 16px;
}

.site-header .logo {
  grid-area: logo;
  justify-self: start;
  min-width: 0;
}

.site-header .main-nav {
  grid-area: nav;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 10px;
  padding: 6px 4px;
  margin: 0;
  border: none;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.site-header .main-nav::-webkit-scrollbar {
  height: 4px;
}

.site-header .main-nav::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.site-header .lang-switch {
  grid-area: lang;
  flex-shrink: 0;
}

.site-header .header-actions {
  grid-area: actions;
  flex-shrink: 0;
}

/* 移动端菜单按钮（由 mobile-nav.js 插入，桌面端隐藏） */
.nav-toggle {
  display: none;
  grid-area: toggle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-toggle:hover {
  background: var(--brand-ghost);
  border-color: var(--brand-line);
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 已取消顶栏菜单蒙层；保留 body 锁滚动（由 JS 切换） */
body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  white-space: normal;
  line-height: 1.25;
  max-width: min(100%, 380px);
  flex-shrink: 1;
}

.logo .logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-self: center;
  background: linear-gradient(145deg, #f58a4e 0%, #e85d22 48%, #d14e12 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(240, 100, 45, 0.35);
}

.logo .sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  display: block;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  padding: 8px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  color: var(--brand-dark);
  background: var(--brand-ghost);
}

.main-nav a.active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 600;
}

/* 关于我们：下拉子菜单 */
.main-nav > .nav-item--has-sub {
  position: relative;
  align-self: center;
  flex-shrink: 0;
}
.main-nav > .nav-item--has-sub > .nav-item__main {
  padding: 8px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  display: inline-block;
}
.main-nav > .nav-item--has-sub:hover > .nav-item__main,
.main-nav > .nav-item--has-sub:focus-within > .nav-item__main {
  color: var(--brand-dark);
  background: var(--brand-ghost);
}
.main-nav > .nav-item--has-sub > .nav-item__main.active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 600;
}
.nav-item__sub {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  min-width: 168px;
  padding: 8px 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(28, 32, 44, 0.12);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease;
}
.nav-item--has-sub:hover .nav-item__sub,
.nav-item--has-sub:focus-within .nav-item__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item__sub a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}
.nav-item__sub a:hover {
  background: var(--brand-ghost);
  color: var(--brand-dark);
}
.nav-item__sub a.active {
  color: var(--brand);
  font-weight: 600;
  background: rgba(240, 124, 61, 0.08);
}

/* 桌面端：不得 clip 下拉；父级下缘透明“桥”承接鼠标，避免移入子菜单时丢 hover；子项盖住桥与 ::after 以便点击 */
@media (min-width: 769px) {
  .site-header,
  .site-header .inner {
    overflow: visible;
  }
  .site-header .main-nav {
    overflow: visible;
  }
  .main-nav > .nav-item--has-sub::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
    z-index: 0;
  }
  .main-nav > .nav-item--has-sub:hover,
  .main-nav > .nav-item--has-sub:focus-within {
    z-index: 5000;
  }
  .nav-item__sub {
    z-index: 5001;
  }
  /* 子菜单顶边再向上加一层命中带，与父级桥一起消除一级→二级的裂缝 */
  .nav-item__sub::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    bottom: 100%;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.lang-switch span {
  color: var(--muted);
}

.lang-switch a {
  padding: 4px 8px;
  color: var(--text-secondary);
}

.lang-switch a.current {
  color: var(--brand);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.btn-outline {
  background: var(--white);
  color: var(--brand);
  border: 1px solid var(--brand-line);
  box-shadow: 0 1px 2px rgba(28, 32, 44, 0.04);
}

.btn-outline:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.btn-primary {
  background: linear-gradient(145deg, #f5884e 0%, #e86a22 45%, #d95712 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240, 100, 45, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(240, 100, 45, 0.42);
}

.btn-accent {
  background: linear-gradient(145deg, #f9a855 0%, #f07c3d 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(240, 130, 60, 0.35);
}

.btn-accent:hover {
  filter: brightness(1.05);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 500;
}

.badge-cert {
  background: rgba(45, 138, 84, 0.12);
  color: var(--success);
}

.site-footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-bg2) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 20px 24px;
  margin-top: 48px;
  border-top: 3px solid var(--brand);
}

.site-footer .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 移动端顶栏：单行 logo + 语言 + 菜单 + 登录区；导航下拉 */
@media (max-width: 768px) {
  .site-header .inner {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    grid-template-areas: "logo lang toggle actions";
    column-gap: 8px;
    row-gap: 0;
  }

  .site-header .logo {
    grid-area: logo;
    max-width: none;
    gap: 0;
  }

  /* H5：仅展示角标，隐藏公司全称与副标题 */
  .logo > span:not(.logo-mark) {
    display: none !important;
  }

  .logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-radius: 10px;
  }

  .site-header .lang-switch {
    grid-area: lang;
    font-size: 12px;
  }

  .lang-switch a {
    padding: 4px 6px;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .site-header .header-actions {
    grid-area: actions;
  }

  .site-header .header-actions .btn-sm {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* 主导航移出栅格，改为固定下拉层 */
  .site-header .main-nav {
    grid-area: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 1001;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 8px 12px 16px;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(28, 32, 44, 0.12);
    overflow: visible;
    display: none;
  }

  .site-header.is-nav-open .main-nav {
    display: flex !important;
  }

  .site-header .main-nav a {
    padding: 14px 14px;
    font-size: 15px;
    border-radius: 10px;
    white-space: normal;
  }

  .site-header .main-nav a + a {
    margin-top: 2px;
  }

  .site-header .main-nav .nav-item--has-sub {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 2px;
  }
  .site-header .main-nav > .nav-item--has-sub > .nav-item__main {
    padding: 14px 14px;
    font-size: 15px;
    border-radius: 10px;
  }
  .site-header .main-nav .nav-item__sub {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 6px 8px;
    background: transparent;
    min-width: 0;
  }
  .site-header .main-nav .nav-item__sub a {
    padding: 10px 12px 10px 22px;
    font-size: 14px;
    color: var(--muted);
    border-radius: 8px;
  }
  .site-header .main-nav .nav-item__sub a:hover {
    color: var(--brand-dark);
    background: var(--brand-ghost);
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 12px;
}

.site-footer p,
.site-footer li {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: #ffb896;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.page-hero {
  background: linear-gradient(145deg, #f5884e 0%, #e86a22 42%, #cf4e0c 100%);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08), transparent 40%);
  pointer-events: none;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}

.page-hero p {
  margin: 0;
  opacity: 0.95;
  font-size: 15px;
  position: relative;
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 8px;
  text-align: center;
  letter-spacing: 0.02em;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.placeholder-img {
  background: linear-gradient(145deg, #e8ecf1, #d4dae3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--brand);
}

/* 产品 / 工厂 页：与顶栏 Banner 同色（.page-hero）+ 标签切换 + 圆角搜索条 */
.page-hero.page-hero--search {
  padding: 0;
  margin: 0;
  text-align: center;
  min-height: 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero.page-hero--search .site-search-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 20px 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.site-search-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.site-search-hero__tab {
  display: inline-block;
  padding: 6px 6px;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  opacity: 0.82;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.site-search-hero__tab:hover {
  opacity: 1;
  color: #fff;
}
.site-search-hero__tab.is-active {
  opacity: 1;
  border-bottom-color: #fff;
  cursor: default;
}
a.site-search-hero__tab:not(.is-active) {
  cursor: pointer;
}
.site-search-hero__tab-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
  font-weight: 400;
}
.site-search-hero__form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.site-search-hero__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  min-width: 0;
}
.site-search-hero__input {
  width: 100%;
  border: none;
  font-size: 15px;
  padding: 4px 0;
  outline: none;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}
.site-search-hero__input::placeholder {
  color: #9aa3b2;
}
.site-search-hero__submit {
  flex-shrink: 0;
  padding: 0 26px;
  min-width: 120px;
  border: none;
  background: linear-gradient(135deg, #ff9a3c 0%, #f07c3d 42%, #e05a1f 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.15s ease;
}
.site-search-hero__submit:hover {
  filter: brightness(1.05);
}
.site-search-hero__submit svg {
  flex-shrink: 0;
}
.site-search-hero__hint {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 14px 0 0;
}
.site-search-hero__empty {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 0;
}
@media (max-width: 560px) {
  .site-search-hero__form {
    flex-direction: column;
    border-radius: 16px;
  }
  .site-search-hero__submit {
    min-height: 48px;
    width: 100%;
    border-radius: 0;
  }
}

/* ---------- 全站右侧固定快捷条（联系邮箱 / 电话 / 询盘 / 成为OPC / 回顶）---------- */
.site-float-dock {
  position: fixed;
  z-index: 9990;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  -webkit-tap-highlight-color: transparent;
}
.site-float-dock__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.site-float-dock__item {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-float-dock__item--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.site-float-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(165deg, #ff9a52 0%, var(--brand) 48%, #e05a1f 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240, 100, 45, 0.38);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  font: inherit;
}
.site-float-dock__btn:hover,
.site-float-dock__item--link:hover .site-float-dock__btn {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 22px rgba(240, 100, 45, 0.32);
}
.site-float-dock__btn:focus-visible,
.site-float-dock__item--link:focus-visible .site-float-dock__btn {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.site-float-dock__btn svg {
  flex-shrink: 0;
}
.site-float-dock__pop {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-width: 200px;
  max-width: min(320px, 88vw);
  width: max-content;
  padding: 14px 18px;
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  border: 1px solid rgba(240, 124, 61, 0.14);
  box-shadow: 0 8px 28px rgba(28, 32, 44, 0.12);
  font-size: 14px;
  line-height: 1.5;
  writing-mode: horizontal-tb;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  text-align: left;
}
.site-float-dock__pop-h {
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.site-float-dock__pop-c {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
}
.site-float-dock__pop-c--tel {
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
/* 左侧三角指向按钮 */
.site-float-dock__pop::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left-color: #fff;
  filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.04));
}
@media (max-width: 420px) {
  .site-float-dock__pop {
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
  }
  .site-float-dock__pop::after {
    left: 50%;
    top: 100%;
    margin-left: -6px;
    margin-top: 0;
    border: 6px solid transparent;
    border-top-color: #fff;
    border-left-color: transparent;
  }
}
.site-float-dock__item:hover .site-float-dock__pop,
.site-float-dock__item:focus-within .site-float-dock__pop,
.site-float-dock__item.is-open .site-float-dock__pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-float-dock__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .site-float-dock {
    top: auto;
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    transform: none;
  }
}
@media print {
  .site-float-dock {
    display: none !important;
  }
}
