body .footer {
  width: 100%;
  padding: 30px 40px;
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.05);

  display: flex;
  /* justify-content: space-between; */
  justify-content: space-evenly;
  align-items: center;
  color: #cbd5e1;
  margin-top: 0;
}

/* 左侧 */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left .logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-left .brand h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
}

.footer-left .brand p {
  font-size: 12px;
  color: #94a3b8;
}

/* 右侧信息 */
.footer-right {
  /* text-align: right; */
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-left .footer-logo {
  height:60px;
}

.beian-icon{
  position: relative;
  top:4px;
}
.footer a{
  text-decoration: none;
  color: #94a3b8;
}

.footer .banquan{
  padding-top:12px;
}

/* 响应式 */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-right {
    text-align: left;
  }
}