/* 复用页面的颜色变量 */
.footer {
  margin: 16px 0 0;
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  border-top: 1px dashed var(--border);
}

.footer-line1 {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
  color: var(--text);
}
.footer .brand-wrap {
  font-weight: normal;
}
.footer .sep {
  opacity: 0.45;
}

.footer-line2 {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.beian {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.beian.hidden {
  display: none;
}
.beian a {
  color: var(--muted);
  text-decoration: none;
}
.beian a:hover {
  text-decoration: underline;
}

.beian-badge {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 0 transparent);
}
