html { color-scheme: light dark; }
body { width: 100%; height:100%; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; }
p {  text-indent: 2em; /*2ch or 2em */ }
ul {
  display: flex;
  flex-direction: column; /* 使列表项垂直排列 */
  list-style-type: decimal;
}
li {
  margin-bottom: 10px; /* 在每个列表项之间添加空间 */
}
.container {
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  width: 100%;
  flex-direction: column;
  min-height: 100vh; /* 使用视口高度 */
}
.content {
  flex: 1; /* 使得内容部分可以伸缩以填满剩余空间 */
}
.footer {
  background-color: #f1f1f1;
  text-align: center; /* 对齐文本到中间 */
  padding: 10px;
}
