/* 臻享物联 - 全站公共样式（页头 / 页脚） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

:root {
  --gw-header-h: 5rem;
  --brand-orange: #f15a24;
  --brand-red: #ed1c24;
  --brand-gradient: linear-gradient(135deg, #f15a24 0%, #ed1c24 100%);
  --primary: #f15a24;
  --foreground: #141414;
  --background: #fff;
  --border: #e6e6e6;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --max-w: 1440px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 门户 JSON 数据块不占版面 */
template.gw-portal-json,
script[type="application/json"],
.gw-portal-data {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

main {
  margin-bottom: 0;
  padding-bottom: 0;
  display: flow-root;
}

/* 子模板遗留 JSON 块：仅隐藏 main 内，不影响 footer */
main script[type="application/json"],
main template.gw-portal-json {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.btn-brand {
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ===== 页头 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 90, 36, 0.12);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header .container.header-inner {
  position: relative;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 90, 36, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 5rem;
}

.header-logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.header-logo img {
  height: 2.25rem;
  width: auto;
}

.header-logo span {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.header-nav {
  display: none;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: visible;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow: visible;
}

@media (min-width: 1200px) {
  .header-nav-list {
    gap: 0.25rem;
  }
}

@media (min-width: 1280px) {
  .header-nav-list {
    gap: 0.375rem;
  }
}

@media (min-width: 1440px) {
  .header-nav-list {
    gap: 0.625rem;
  }
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  padding: 0.375rem 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}

@media (min-width: 1200px) {
  .header-nav-link {
    padding: 0.4375rem 0.5rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1280px) {
  .header-nav-link {
    padding: 0.5rem 0.625rem;
  }
}

@media (min-width: 1440px) {
  .header-nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
  }
}

.header-nav-link:hover {
  color: var(--primary);
  background: #fff7ed;
}

.header-nav-link.is-active {
  color: var(--primary);
}

.lang-btn-label {
  font-size: 0.875rem;
  font-weight: 700;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  border: none;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-700);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--primary);
}

@media (min-width: 1200px) {
  .header-actions {
    gap: 1.75rem;
    margin-left: 0.625rem;
  }

  .header-phone {
    font-size: 0.875rem;
  }
}

@media (min-width: 1280px) {
  .header-actions {
    gap: 2rem;
    margin-left: 0.75rem;
  }
}

@media (min-width: 1440px) {
  .header-actions {
    gap: 2.25rem;
    margin-left: 1rem;
  }
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }
}

.lang-switch {
  position: relative;
  height: 5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn svg.chevron {
  transition: transform 0.3s;
  opacity: 0.6;
}

.lang-switch.is-open .lang-btn svg.chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--slate-200);
  min-width: 120px;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 60;
}

.lang-switch.is-open .lang-dropdown {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  pointer-events: auto;
}

.lang-dropdown button,
.lang-dropdown a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.2s, background 0.2s;
}

.lang-dropdown button:hover,
.lang-dropdown a:hover,
.lang-dropdown a.is-active {
  color: var(--primary);
  background: #fff7ed;
}

.mall-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 5rem;
  z-index: 110;
}

.mall-nav-btn {
  gap: 0.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.mall-nav-btn svg.chevron {
  transition: transform 0.3s;
  opacity: 0.6;
}

.mall-nav.is-open .mall-nav-btn svg.chevron {
  transform: rotate(180deg);
}

.mall-dropdown {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--slate-200);
  min-width: 140px;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 120;
  padding: 0.25rem 0;
}

.mall-nav.is-open .mall-dropdown {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  pointer-events: auto;
}

.mall-dropdown a {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: color 0.2s, background 0.2s;
}

.mall-dropdown a:hover {
  color: var(--primary);
  background: #fff7ed;
}

.mobile-mall-toggle {
  width: 100%;
  text-align: left;
}

.mobile-mall-items {
  display: none;
  padding-left: 1rem;
}

.mobile-mall.is-open .mobile-mall-items {
  display: block;
}

.mobile-mall-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-500);
  text-decoration: none;
}

.mobile-mall-link:hover {
  color: var(--primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.625rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 62;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(241, 90, 36, 0.12);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 61;
  max-height: calc(100vh - var(--gw-header-h, 5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a,
.mobile-menu .nav-link,
.mobile-menu button.nav-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--slate-700);
  padding: 0.625rem 0;
  text-decoration: none;
  background: none;
  border: none;
  transition: color 0.2s;
  box-sizing: border-box;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: var(--primary);
}

.mobile-divider {
  height: 1px;
  background: var(--slate-100);
  margin: 0.5rem 0;
}

.mobile-lang {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-lang a,
.mobile-lang button {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-600);
  text-decoration: none;
}

.mobile-lang a:hover,
.mobile-lang a.is-active,
.mobile-lang button:hover {
  color: var(--primary);
}

.mobile-cta,
.mobile-menu .btn-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: var(--brand-gradient);
  border: none;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ===== 页脚 ===== */
.site-footer {
  width: 100%;
  background: #fff;
  color: var(--slate-800);
  border-top: 1px solid var(--slate-200);
}

/* 子页 main 内已有独立 CTA 时，隐藏 footer 内重复的全站 CTA 条 */
body.charge-page .site-footer .footer-cta-wrap,
body.bb-page .site-footer .footer-cta-wrap,
body.sb-page .site-footer .footer-cta-wrap {
  display: none;
}

.footer-cta-wrap {
  padding: 2rem 0 1rem;
  background: #fff;
}

@media (min-width: 768px) {
  .footer-cta-wrap {
    padding: 2.5rem 0 1rem;
  }
}

.footer-cta-box {
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: var(--slate-50);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.footer-cta-box > div {
  min-width: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-cta-box {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    border-radius: 1rem;
  }
}

.footer-cta-box h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.375rem;
  word-break: break-word;
}

@media (min-width: 768px) {
  .footer-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.footer-cta-box p {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-cta-box p {
    font-size: 0.9375rem;
  }
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .footer-cta-btn {
    width: auto;
    font-size: 0.875rem;
    padding: 0.75rem 2rem;
  }
}

.footer-main {
  padding: 2rem 0 0;
  background: #fff;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 3rem 0 0;
  }
}

.footer-main > .container {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main > .container {
    padding-bottom: 3rem;
  }
}

.footer-main > .footer-bottom {
  margin-top: 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 1280px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
  }
}

.footer-brand {
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .footer-brand {
    max-width: 24rem;
  }
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand-head {
    margin-bottom: 1.25rem;
  }
}

.footer-brand-head img {
  height: 1.5rem;
}

@media (min-width: 768px) {
  .footer-brand-head img {
    height: 2rem;
  }
}

.footer-brand-head span {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-900);
}

@media (min-width: 768px) {
  .footer-brand-head span {
    font-size: 1.25rem;
  }
}

.footer-brand-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-brand-desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .footer-contact {
    gap: 0.75rem;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-600);
}

.footer-contact-item span {
  font-size: 0.6875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-contact-item span {
    font-size: 0.8125rem;
  }
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 0.5rem;
  width: 100%;
}

/* 平板 / 手机：三栏链接区整体居中，列内文字左对齐 */
@media (max-width: 1279px) {
  .footer-links {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    justify-items: start;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-link-col {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .footer-links {
    width: fit-content;
    max-width: calc(100% - 1.5rem);
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    column-gap: 0.75rem;
    row-gap: 0.625rem;
    padding-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-link-col h4 {
    margin-bottom: 0.625rem;
    line-height: 1.35;
  }

  .footer-link-col a {
    margin-bottom: 0.375rem;
    line-height: 1.45;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-links {
    flex: none;
    width: 80%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: start;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-right: none;
    padding: 0.75rem 0 0;
    gap: 1.5rem 2.75rem;
  }

  .footer-link-col h4,
  .footer-link-col a {
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
  }

  .footer-qr {
    width: 100%;
    max-width: 22rem;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 0.5rem;
  }
}

@media (min-width: 1280px) {
  .footer-links {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    margin-left: 0;
    margin-right: 0;
    border-left: 1px solid var(--slate-100);
    border-right: 1px solid var(--slate-100);
    padding: 0 2rem;
    gap: 2rem;
  }
}

.footer-link-col h4 {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-link-col h4 {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

.footer-link-col a {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link-col a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer-link-col a {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.footer-qr {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding-top: 0.5rem;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .footer-qr {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1rem 0.75rem;
    gap: 0.75rem;
  }

  .footer-qr-box {
    background: #fff;
  }
}

@media (min-width: 768px) {
  .footer-qr {
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .footer-qr {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(3, 5.5rem);
    gap: 1rem;
    padding-top: 0;
    align-self: flex-start;
  }
}

.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-qr-box {
  width: 4rem;
  height: 4rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.footer-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .footer-qr-box {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.75rem;
  }
}

.footer-qr-item span {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate-600);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .footer-qr-item span {
    font-size: 0.75rem;
  }
}

.footer-bottom {
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 1rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding: 1.25rem 0;
  }
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
  }
}

.footer-bottom-inner > span {
  font-size: 0.6875rem;
  color: var(--slate-500);
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-bottom-inner > span {
    font-size: 0.8125rem;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
    gap: 1.5rem;
  }
}

.footer-bottom-links a,
.footer-bottom-links span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 0.8125rem;
  }
}

.footer-bottom-links .icp {
  color: var(--slate-400);
}

.footer-bottom-links a.icp:hover {
  color: var(--primary);
}

/* 图标颜色 */
.icon-primary {
  color: var(--primary);
}
