.footer {
  background: #F6F9FD;
  color: #fff;
  padding: 20px 0;
}
.footer-container {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer-top h3 {
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333;
}

.footer-top ul {
  list-style: none;
  padding: 0;
}

.footer-top ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.footer-top ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-top ul li a:hover {
  color: #2d8cf0;
}
.footer-nav, .footer-info {
  flex: 1;
  /* min-width: 200px; */
  margin-right: 30px;
}
.footer-qrcode {
  min-width: 150px;
}
.footer-qrcode  .body {
  display: flex;
  gap:20px;
  text-align: center;
}
.footer-qrcode  img {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  margin-bottom: 6px;
  border-radius: 10px;
  margin-top: 10px;
}
.footer-qrcode  h4 {
  font-size: 12px;
  color: #666;
  font-weight: 400;
} 
.footer-qrcode  p {
  font-size: 12px;
  color: #b2b9c5;
}

.footer-bottom {
  font-size: 12px;
  color: #666;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.new-badge {
  width: 26px;
  vertical-align: middle;
  margin-left: 4px;
  margin-top: -16px;
}

.float-badge {
  width: 26px;
  vertical-align: middle;
  margin-left: 4px;
  margin-top: -16px;
}
#overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 998;
}