  /* 底部导航 */
  footer {
    background: #F4F4F4;
    position: relative;
    padding: 0 var(--container);
  }

  .footerTop {
    padding: 90px 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footerTop img {
    max-height: 80px;
    max-width:100%;
  }

  .footerTop span {
    color: var(--color);
    font-family: MiSans2;
    font-size: 40px;
  }


  /* 导航 */
  .footer1 {
    padding: 45px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footerNav {
    width: calc(100% - 200px);
    display: flex;
    justify-content: space-between;
    grid-gap: 10px;
  }

  .footerNav span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 15px;
  }

  .footerNav span .a1 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap;
  }

  .footerNav span p,
  .footerNav span .a2 {
    font-size: 16px;
    color: #000;
    display: flex;
  }

  .footerNav span p b {
    color: rgba(0, 0, 0, 0.70);
    font-weight: 500;
    margin-right: 10px;
    /* width: max-content; */
    white-space: nowrap;
  }

  .footerEwm {
    width: 180px;
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: 10px;
    font-size: 16px;
    color: #000;
  }

  @media (max-width:1440px) {
    .footerNav {
      width: calc(100% - 240px);
    }
  }

  @media (max-width:1200px) {
    .footer1 {
      display: flex;
      grid-gap: 30px;
    }

    .footerNav {
      width: 100%;
    }

    .footerNav span .a1 {
      font-size: 18px;
    }

    .footerNav span p,
    .footerNav span .a2 {
      font-size: 14px;
    }
  }

  @media (max-width: 900px) {
    .footerTop {
      padding: 60px 0 30px;
    }

    .footerTop span {
      font-size: 32px;
    }

    .footerNav {
      flex-wrap: wrap;
      grid-gap: 20px;
    }

    .footerNav span {
      width: 100%;
      display: flex !important;
      flex-direction: row;
      flex-wrap: wrap;
      grid-gap: 5px 15px !important;
    }

    .footerNav span .a1 {
      width: 100%;
      margin: 0;
    }

    .footerNav span a {
      width: auto;
    }
  }

  @media (max-width: 600px) {
    .footerTop {
      padding: 60px 0 30px;
      flex-wrap: wrap;
      grid-gap: 15px;
    }

    .footerTop span {
      width: 100%;
      font-size: 32px;
    }

  }



  /* 备案 */
  .Copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 10px 20px;
    padding: 30px var(--container);
    position: relative;
  }

  .Copyright a {
    color: #8A8F99;
    font-size: 16px;
    display: flex;
    align-items: center;
  }


  @media (max-width: 1200px) {
    .Copyright a {
      font-size: 14px;
    }
  }
