body {
  margin: 0;
  padding: 0;

  background: #f5f8f9;
  height: 100vh;
  overflow: auto;
  position: relative;
}
.header {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 24px 0px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 80px;
}
.headerInner {
  width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.headerImg {
  width: 98px;
  margin: 0px 10px 0px 0px;
  cursor: pointer;
}
.headerSeparator {
  color: rgb(233, 233, 233);
  font-size: 20px;
  font-weight: 400;
}
.headerTitle {
  font-size: 20px;
  color: rgb(58, 64, 86);
}
.box {
  background: #fff;
  height: fit-content;
  width: 1200px;
  margin: auto;
  margin-top: 80px;
}
.container {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, Arial,
    PingFang SC, PingFang TC, PingFang HK, Microsoft Yahei, Microsoft JhengHei !important;
  -webkit-font-smoothing: antialiased;
  padding: 0 30px 20px;
  min-height: calc(100vh - 95px);
}
.ul-list-container {
  padding-left: 20px;
}
.ul-list-item {
  position: relative;
  padding-left: 15px;
}
.ul-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}
h1 {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5em 0;
}
h3 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}

/* 针对移动端的特殊优化 */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 26px;
    text-align: center;
  }

  .header {
    display: none;
  }
  .box {
    background: #fff;
    width: 100%;
    margin-top: 0;
  }
  .container {
    padding: 0 30px 20px;
  }
}
