  /* 底部导航 */
  footer {
    position: relative;
    width: 100%;
  }

  .footer1 {
    padding: 30px var(--container);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* 导航 */
  .footerNav {
    width: calc(100% - 360px);
    display: flex;
    justify-content: space-between;
  }

  .footerNav span {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 25px;
  }

  .footerNav span .a1 {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }

  .footerNav span .a2 {
    font-size: 12px;
    color: #8b9ba8;
  }

  .footerDesc {
    max-width: 300px;
    font-size: 14px;
    line-height: 2;
    color: #bfbfbf;
  }

  @media (max-width:1200px) {
    .footer1 {
      padding: 45px var(--container);
    }

    .footerNav {
      width: 100%;
    }

    .footerDesc {
      margin-top: 30px;
      max-width: 100%;
    }
  }

  @media (max-width: 1000px) {
    .footerNav {
      width: 100%;
      display: flex;
      flex-direction: column;
      grid-gap: 20px;
    }

    .footerNav span {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      grid-gap: 15px;
    }

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


  /* 备案 */
  .Copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px 10px;
    background: rgba(0, 0, 0, .46);
    padding: 30px var(--container);
  }

  .Copyright a {
    color: #F9F9F9;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    opacity: 0.6;
  }