/* 粘性页脚 — 页脚始终在视口底部 */
html, body {
  height: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-foot {
  margin-top: auto;
  flex-shrink: 0;
}
