  /* 底部导航 */
  footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid #ededed;
    padding: 0 var(--container);
  }

  .footer1 {
    padding: 45px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
  }

  .footerDesc {
    color: #666666;
    font-size: 16px;
    line-height: 2;
    width: 260px;
  }

  @media (max-width: 1200px) {
    .footer1 {
      flex-wrap: wrap;
    }

    .footerDesc {
      width: 100%;
    }

    .footer1 .footerImg {
      width: 100%;
    }


  }

  /* 备案 */
  .Copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .Copyright a {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    opacity: 0.75;
  }

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