.jz1 {
  /*flex格子全部居中对齐从左往右（默认）*/
  display: flex;
  justify-content: center;
  align-self: center;
  width: fit-content;
}
.jz2 {
  /*flex格子全部居中对齐从上往下*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  width: fit-content;
}
.kb {
  /*留一个占满body的90px白色间隔（横向）*/
  background-color: white;
  height: 90px;
  padding: 0;
  margin: 0;
}

.bj0 {
  /*内外边距都是0*/
  padding: 0;
  margin: 0;
}
.nx {
  /*适用于按钮，取消所有下划线等等*/
  list-style-type: none;
  text-decoration: none;
}
.kb {
  /*留一个占满body的90px白色间隔（横向）*/
  background-color: white;
  height: 90px;
  padding: 0;
  margin: 0;
  width: 100%;
}
/*我知道上面六个是屎山，很复杂还没啥用，但是现在文件已经太复杂了，
实在没动力去改，先将就着吧，
等有心情了一切都做完了再看看有没有必要删掉这个没啥用的玩意。
以上为特定值部分
以下为页眉部分
*/
/* 全页面通用固定值 */
html {
  font-size: 16px;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f0f5fa;
  min-width: 1200px;
  width: 100%;
}

/* 标题样式 */
h1 {
  font-size: 2.81rem;
  color: #54a0dc;
}

h2 {
  font-size: 1.88rem;
  color: #6ec1e4;
}

h3 {
  font-size: 1.44rem;
  color: #284242;
}

h4 {
  font-size: 1.44rem;
  color: #6ec1e4;
}

h5 {
  font-size: 1.88rem;
  color: #000000;
}

/* 段落和链接样式 */
p {
  color: #333333;
}

a {
  font-size: 1.13rem;
}

/* 页眉部分 */
.header {
  display: flex;
  height: 5rem;
  padding: 0;
  margin: 0;
  background-color: white;
  width: 100%;
}

.headerTitle,
.headerNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 0;
}

.headerTitle > h1 {
  width: fit-content;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.headerNavigation ul li {
  display: inline-flex;
}

.headerNavigationBar {
  padding: 0 1rem;
  list-style-type: none;
  text-decoration: none;
  color: #000;
}

.headerNavigationBar:hover {
  color: #045cb4;
}

/* 页脚部分 */
footer {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 8rem;
  background-color: white;
  padding: 0;
  margin: 0;
}

footer > div {
  display: flex;
  flex-direction: column;
}

footer div > p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.footerCopyright,
.footerFiling {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0;
}

.footerFiling > a {
  text-decoration: none;
  color: rgb(25, 0, 255);
  padding: 0;
}

@media (max-width: 767px) {
  /* 全页面通用固定值 */
  html {
    font-size: 13px;
  }

  body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    min-width: 150px;
  }

  /* 页眉部分 */
  .headerTitle {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .headerTitle > h1 {
    font-size: 20px;
  }

  .headerNavigation > ul {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .headerNavigation ul li a {
    padding: 0px 10px;
  }

  /* 页面其他元素样式 */
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 15px;
  }

  a {
    font-size: 13px;
  }

  p {
    color: #333333;
  }

  /* 页脚部分（虽然只有一个属性，但为了结构清晰还是单独列出） */
  footer {
    height: 8rem;
  }

  /* 其他独立样式 */
  .kb {
    height: 2rem;
  }
}
