/* 页脚固定在底部样式 */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
footer {
  position: sticky;
  bottom: 0;
  width: 100%;
}