/* .site-footer {
  margin-top: 40px;
  padding: 32px 16px 48px;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  background: #fff;
  border-top: 0;
}

.site-footer__container {
  max-width: 960px;
  margin: 0 auto 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .site-footer__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.site-footer__info {
  font-size: 12px;
  color: #6b7280;
}

.site-footer__links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: #6b7280;
}

.site-footer__legal {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.site-footer__police {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer img {
  width: 16px;
  height: 16px;
  margin-right: 0;
  vertical-align: text-bottom;
}
 */
/* PC端样式 */
.site-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: 40px;
  padding: 32px 16px 48px;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  background: #fff;
  border-top: 0;
}

body[data-app-loaded="true"] .site-footer {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}

.site-footer__row>* {
  margin: 0 20px;
}

.site-footer__row>*:first-child {
  margin-left: 0;
}

.site-footer__row>*:last-child {
  margin-right: 0;
}

.site-footer__row a,
.site-footer__row span {
  white-space: nowrap;
}

.site-footer__police {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* 移动端样式 */
@media (max-width: 767px) {
  .site-footer {
    padding: 24px 16px 32px;
    font-size: 12px;
  }

  .site-footer__row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
  }

  .site-footer__row>* {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .site-footer__police {
    justify-content: center;
  }
}