/* 页脚样式 */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFF8F0 !important; /* 强制100%不透明浅黄 */
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.footer .footer-nav {
  display: flex;
  gap: 24px;
}

.footer .footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.footer .footer-nav a:hover {
  background: #e8e8e8;
}

.footer .footer-nav a.active {
  background: #409eff;
  color: #fff;
}