/*
* 底部样式文件
* 创建时间: 2026/3/13
* 作者: 青柠
* 最后更新时间: 2026/3/13
*/

/* ========================================
 * 底部公共样式
 * ======================================== */
.footer-block {
  width: 100%;
  position: relative;
}

.footer-block .footer-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.footer-block footer {
  width: 100%;
  color: #0c1220;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 255, 0.92));
  position: relative;
}

.footer-block footer .footer-inner {
  max-width: calc(var(--wrapper-width) + 60px);
  ;
  margin: 0 auto;
  padding: 26px 16px 20px;
}

/* 波浪装饰 */
.footer-block footer .wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 74px;
  background:
    radial-gradient(120px 52px at 12% 0%, rgba(139, 92, 246, 0.18), transparent 68%),
    radial-gradient(140px 62px at 55% 0%, rgba(34, 211, 238, 0.16), transparent 68%),
    radial-gradient(120px 56px at 88% 0%, rgba(52, 211, 153, 0.14), transparent 68%);
  clip-path: path('M 0 55 C 140 20 240 80 360 48 C 480 16 600 84 720 46 C 840 8 980 78 1100 44 L 1100 0 L 0 0 Z');
}

/* 栅格布局 */
.footer-block footer .cols {
  display: grid;
  gap: 16px;
}

.footer-block footer .cols.two {
  grid-template-columns: 1.3fr 0.7fr;
}

.footer-block footer .cols.three {
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
}

@media (max-width: 520px) {

  .footer-block footer .cols.two,
  .footer-block footer .cols.three {
    grid-template-columns: 1fr;
  }
}

/* 品牌区域 */
.footer-block footer .brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-block footer .brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-block footer .brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-block footer .brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-block footer .brand .logo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: conic-gradient(from 180deg, #8b5cf6, #22d3ee, #8b5cf6);
}

.footer-block footer .brand .site-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.footer-block footer .brand .slogan {
  font-size: 12px;
  color: rgba(12, 18, 32, 0.62);
}

/* 提示框 */
.footer-block footer .note {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(12, 18, 32, 0.16);
  background: rgba(12, 18, 32, 0.03);
  color: rgba(12, 18, 32, 0.72);
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.footer-block footer .note p {
  margin: 0;
}

/* 右侧区域 */
.footer-block footer .right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .footer-block footer .right {
    justify-content: flex-start;
  }
}

/* 二维码组 */
.footer-block footer .qrcode-group {
  display: flex;
  gap: 16px;
}

.footer-block footer .qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-block footer .qrcode-item img,
.footer-block footer .qrcode-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-block footer .qrcode-placeholder {
  background: rgba(12, 18, 32, 0.06);
  border: 1px dashed rgba(12, 18, 32, 0.16);
}

.footer-block footer .qrcode-label {
  font-size: 12px;
  color: rgba(12, 18, 32, 0.62);
}

/* CTA按钮 */
.footer-block footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 18, 32, 0.07);
  border: 1px solid rgba(12, 18, 32, 0.14);
  color: rgba(12, 18, 32, 0.88);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-block footer .btn:hover {
  background: rgba(12, 18, 32, 0.12);
  transform: translateY(-2px);
}

/* 分割线 */
.footer-block footer .divider {
  height: 1px;
  background: rgba(12, 18, 32, 0.10);
  margin: 14px 0;
}

/* 导航列 */
.footer-block footer .col {
  display: flex;
  flex-direction: column;
}

.footer-block footer .col-title {
  font-weight: 780;
  margin-bottom: 8px;
}

.footer-block footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-block footer .links a {
  text-decoration: none;
  color: rgba(12, 18, 32, 0.72);
  transition: color 0.2s ease;
}

.footer-block footer .links a:hover {
  color: rgba(12, 18, 32, 0.95);
}

.footer-block footer .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-block footer .nav-list li {
  margin: 0;
}

.footer-block footer .nav-list a {
  text-decoration: none;
  color: rgba(12, 18, 32, 0.72);
  transition: color 0.2s ease;
}

.footer-block footer .nav-list a:hover {
  color: rgba(12, 18, 32, 0.95);
}

/* 社交图标 */
.footer-block footer .icon-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-block footer .icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 18, 32, 0.14);
  background: rgba(12, 18, 32, 0.05);
  color: rgba(12, 18, 32, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-block footer .icon-btn:hover {
  background: rgba(12, 18, 32, 0.1);
  color: rgba(12, 18, 32, 0.9);
}

.footer-block footer .icon-btn i {
  font-size: 16px;
}

.footer-block footer .icon-btn .lf-svg-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 底部版权 */
.footer-block footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-block footer .bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-block footer .copyright,
.footer-block footer .icp {
  font-size: 12px;
  color: rgba(12, 18, 32, 0.62);
}

.footer-block footer .icp {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-block footer .icp:hover {
  opacity: 1;
}

.footer-block footer .query-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(12, 18, 32, 0.5);
}

.footer-block footer .query-info i {
  font-size: 14px;
}

.footer-block footer .query-info .sep {
  opacity: 0.4;
}

/* ========================================
 * 深色模式适配
 * ======================================== */
[data-theme="dark"] .footer-block .footer-wrap {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .footer-block footer {
  background: linear-gradient(180deg, rgba(30, 35, 45, 0.95), rgba(20, 25, 35, 0.92));
  color: #e8eaed;
}

[data-theme="dark"] .footer-block footer .brand .slogan {
  color: rgba(232, 234, 237, 0.62);
}

[data-theme="dark"] .footer-block footer .links a,
[data-theme="dark"] .footer-block footer .nav-list a {
  color: rgba(232, 234, 237, 0.72);
}

[data-theme="dark"] .footer-block footer .links a:hover,
[data-theme="dark"] .footer-block footer .nav-list a:hover {
  color: rgba(232, 234, 237, 0.95);
}

[data-theme="dark"] .footer-block footer .qrcode-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .footer-block footer .qrcode-label {
  color: rgba(232, 234, 237, 0.62);
}

[data-theme="dark"] .footer-block footer .icon-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 234, 237, 0.8);
}

[data-theme="dark"] .footer-block footer .icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-block footer .divider {
  background: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .footer-block footer .btn {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(232, 234, 237, 0.88);
}

[data-theme="dark"] .footer-block footer .btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .footer-block footer .note {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.15);
  color: rgba(232, 234, 237, 0.72);
}

[data-theme="dark"] .footer-block footer .copyright,
[data-theme="dark"] .footer-block footer .icp {
  color: rgba(232, 234, 237, 0.62);
}

[data-theme="dark"] .footer-block footer .query-info {
  color: rgba(232, 234, 237, 0.5);
}

[data-theme="dark"] .footer-block footer .wave {
  opacity: 0.6;
}

/* ========================================
 * 响应式调整
 * ======================================== */
@media (max-width: 767px) {
  .footer-block .footer-wrap {
    margin: 10px;
    border-radius: 16px;
  }

  .footer-block footer .footer-inner {
    padding: 20px 12px 16px;
  }

  .footer-block footer .cols.three {
    gap: 20px;
  }

  .footer-block footer .col-title {
    margin-bottom: 6px;
  }

  .footer-block footer .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ========================================
 * 玻璃卡片样式 (Glass Footer)
 * ======================================== */
.footer-block.footer-glass .footer-wrap {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.footer-block.footer-glass footer {
  background: transparent;
  color: #0f172a;
}

.footer-block.footer-glass .footer-inner {
  padding: 14px;
}

.footer-block.footer-glass .wave {
  display: none;
}

/* 网格布局 */
.footer-block.footer-glass .glass-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

/* 左侧特色卡片 */
.footer-block.footer-glass .glass-left {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
}

.footer-block.footer-glass .glass-left .brand {
  margin-bottom: 10px;
}

.footer-block.footer-glass .glass-left .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-block.footer-glass .glass-left .logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-block.footer-glass .glass-left .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-block.footer-glass .glass-left .site-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--font-color);
}

.footer-block.footer-glass .glass-left .slogan {
  font-size: 12px;
  color: var(--gray-500);
}

.footer-block.footer-glass .glass-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--font-color);
}

.footer-block.footer-glass .glass-desc {
  margin: 0 0 12px;
  color: var(--gray-600);
  line-height: 1.55;
  font-size: 14px;
}

.footer-block.footer-glass .glass-tags {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.5);
  color: var(--gray-600);
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-block.footer-glass .glass-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--gray-900);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-block.footer-glass .glass-btn:hover {
  background: var(--gray-700);
}

/* 右侧内容区 */
.footer-block.footer-glass .glass-right {
  padding: 6px 2px 2px 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-block.footer-glass .glass-rows {
  display: grid;
  gap: 10px;
}

.footer-block.footer-glass .glass-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-block.footer-glass .glass-key {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #475569;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.footer-block.footer-glass .glass-val .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-block.footer-glass .glass-val .links a,
.footer-block.footer-glass .glass-val .nav-list a {
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-block.footer-glass .glass-val .links a:hover,
.footer-block.footer-glass .glass-val .nav-list a:hover {
  color: #0f172a;
}

.footer-block.footer-glass .glass-val .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-block.footer-glass .icon-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-block.footer-glass .icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-block.footer-glass .icon-btn:hover {
  background: #cbd5e1;
  border-color: #94a3b8;
}

.footer-block.footer-glass .icon-btn i {
  font-size: 16px;
}

.footer-block.footer-glass .icon-btn .lf-svg-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 底部元信息 */
.footer-block.footer-glass .glass-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0 10px 4px;
  flex-wrap: wrap;
}

.footer-block.footer-glass .glass-meta .copyright {
  font-size: 12px;
  color: #475569;
}

.footer-block.footer-glass .glass-meta .query-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.footer-block.footer-glass .glass-meta .query-info i {
  font-size: 14px;
}

.footer-block.footer-glass .glass-meta .query-info .sep {
  opacity: 0.4;
}

/* ========================================
 * 玻璃卡片 - 深色模式适配
 * ======================================== */
[data-theme="dark"] .footer-block.footer-glass .footer-wrap {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .footer-block.footer-glass footer {
  color: #e2e8f0;
}

[data-theme="dark"] .footer-block.footer-glass .glass-left {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--font-color);
}

[data-theme="dark"] .footer-block.footer-glass .glass-left .site-name,
[data-theme="dark"] .footer-block.footer-glass .glass-title {
  color: var(--font-color);
}

[data-theme="dark"] .footer-block.footer-glass .glass-left .slogan,
[data-theme="dark"] .footer-block.footer-glass .glass-desc {
  color: var(--font-color-light);
}

[data-theme="dark"] .footer-block.footer-glass .glass-tags {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--font-color-light);
}

[data-theme="dark"] .footer-block.footer-glass .glass-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-900);
}

[data-theme="dark"] .footer-block.footer-glass .glass-btn:hover {
  background: #fff;
}

[data-theme="dark"] .footer-block.footer-glass .glass-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-block.footer-glass .glass-key {
  color: rgba(226, 232, 240, 0.7);
}

[data-theme="dark"] .footer-block.footer-glass .glass-val .links a,
[data-theme="dark"] .footer-block.footer-glass .glass-val .nav-list a {
  color: rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .footer-block.footer-glass .glass-val .links a:hover,
[data-theme="dark"] .footer-block.footer-glass .glass-val .nav-list a:hover {
  color: #fff;
}

[data-theme="dark"] .footer-block.footer-glass .icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .footer-block.footer-glass .icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .footer-block.footer-glass .glass-meta .copyright {
  color: rgba(226, 232, 240, 0.6);
}

[data-theme="dark"] .footer-block.footer-glass .glass-meta .query-info {
  color: rgba(226, 232, 240, 0.5);
}

/* ========================================
 * 玻璃卡片 - 响应式调整
 * ======================================== */
@media (max-width: 760px) {
  .footer-block.footer-glass .glass-grid {
    grid-template-columns: 1fr;
  }

  .footer-block.footer-glass .glass-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-block.footer-glass .glass-key {
    margin-bottom: 4px;
  }
}

/* ========================================
 * 霓虹极简风格 (Neon Minimal Footer)
 * ======================================== */
.footer-block.footer-neon .footer-wrap {
  border-radius: 4px;
  border: 1px solid #273449;
  background: #0f172a;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.footer-block.footer-neon footer {
  background: transparent;
  color: #e5e7eb;
}

.footer-block.footer-neon .footer-inner {
  padding: 12px 14px;
}

.footer-block.footer-neon .wave {
  display: none;
}

/* 顶部区域 */
.footer-block.footer-neon .neon-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-block.footer-neon .neon-brand {
  display: flex;
  flex-direction: column;
}

.footer-block.footer-neon .neon-title {
  font-size: 14px;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.2;
}

.footer-block.footer-neon .neon-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* 右侧区域 */
.footer-block.footer-neon .neon-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 导航链接 */
.footer-block.footer-neon .neon-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-block.footer-neon .neon-nav a {
  font-size: 12px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-block.footer-neon .neon-nav a:hover {
  color: #fff;
}

/* 社交图标区 */
.footer-block.footer-neon .neon-social {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 16px;
  border-left: 1px solid #273449;
}

.footer-block.footer-neon .neon-social .icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-block.footer-neon .neon-social .icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-block.footer-neon .neon-social .icon-btn i {
  font-size: 14px;
}

.footer-block.footer-neon .neon-social .icon-btn .lf-svg-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* 底部区域 */
.footer-block.footer-neon .neon-bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #273449;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-block.footer-neon .neon-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-block.footer-neon .neon-bottom-left .copyright {
  font-size: 12px;
  color: #94a3b8;
}

.footer-block.footer-neon .neon-bottom-left .icp {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-block.footer-neon .neon-bottom-left .icp:hover {
  color: #94a3b8;
}

.footer-block.footer-neon .neon-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-block.footer-neon .neon-bottom-right .version {
  font-size: 12px;
  color: #64748b;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 查询信息 */
.footer-block.footer-neon .query-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.footer-block.footer-neon .query-info i {
  font-size: 14px;
}

.footer-block.footer-neon .query-info .sep {
  opacity: 0.4;
}

/* ========================================
 * 霓虹极简 - 始终保持深色 (不随主题切换)
 * ======================================== */
[data-theme="light"] .footer-block.footer-neon .footer-wrap,
html:not([data-theme="dark"]) .footer-block.footer-neon .footer-wrap {
  border-color: #273449;
  background: #0f172a;
}

/* ========================================
 * 霓虹极简 - 响应式调整
 * ======================================== */
@media (max-width: 760px) {
  .footer-block.footer-neon .neon-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block.footer-neon .neon-right {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-block.footer-neon .neon-social {
    padding-left: 0;
    border-left: none;
    margin-top: 8px;
  }

  .footer-block.footer-neon .neon-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-block.footer-neon .neon-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-block.footer-neon .neon-bottom-right {
    width: 100%;
    justify-content: space-between;
  }
}