  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
.footer a{
    text-decoration: none;
    color: #fff;
}

  .m-auto {
      margin: 0 auto !important;
  }
  

  /* 文字不换行- 显示1行 - 溢出显示... */
  .text-1 {
      display: -webkit-box;
      overflow: hidden;
      word-break: break-all;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
  }

  /* 纵向布局 居中*/
  .flex-col {
      flex-direction: column;
      align-items: center;
  }

  .flex {
      display: flex;
  }

  /* 横向翻转布局 */
  .flex-row-r {
      flex-direction: row-reverse;
  }

  /*两边对齐弹性布局*/
  .flex-between {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /*间隔相等弹性布局*/
  .flex-around {
      display: flex;
      justify-content: space-around;
      align-items: center;
  }

  /*水平居中*/
  .flex-center {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  /*弹性布局从头排*/
  .flex-start {
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }

  /*弹性布局从尾排*/
  .flex-end {
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }

  /*弹性布局项目缩放*/
  .flex-grow {
      flex-grow: 1;
  }

  .flex-shrink {
      flex-shrink: 0;
  }

  /*弹性布局换行*/
  .flex-wrap {
      flex-wrap: wrap;
  }

  /*弹性布局文字不换行，溢出显示...*/
  .flex-1 {
      flex: 1;
      overflow: hidden;
  }

  /*项目顶部对齐 */
  .align-start {
      align-self: flex-start;
  }

  /* 项目尾部对齐 */
  .align-end {
      align-self: flex-end;
  }

  /* 内容居中 */
  .text-center {
      text-align: center;
  }

  /* 版心 */
  .type-center {
      max-width: 1100px;
      margin: 0 auto;
  }
  .file-center{
      max-width: 760px;
      margin: 0 auto;
  }
  .head-center{
    max-width: 1400px;
    margin: 0 auto;
  }
  .body-center{
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
  }

  /* 定义文本数据规范 */
  .p-tag-m-5 {
      margin: 5px 0;
  }
  .p-tag-m-25{
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .bold {
      font-weight: bold;
  }

  .normal {
      font-weight: normal;
  }

  .italic {
      font-style: italic;
  }
  .font-xl{
    font-size: 32px;
  }
  .font-s{
    font-size: 13px;
  }
  .m-b-16{
    margin-bottom: 16px;
  }
  .m-t-32{
    margin-top: 32px;
  }