  /* 底部导航 */
  footer {
    position: relative;
    z-index: 10;
    background: #444444;

  }

  .footer {
    padding: 30px var(--container);
    display: flex;
    justify-content: space-between;
    grid-gap: 30px;
  }

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

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

  .footerNav span .a1 {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    padding: 5px 0px;
    line-height: 2;
  }

  .footerNav span .a2 {
    font-size: 14px;
    color: #fff;
    opacity: 0.75;
    line-height: 2;
  }

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

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

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

    .footer1 .ewm img {
      margin-top: 45px;
    }
  }

  .footerIcon {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
  }

  .footerIcon h1 {
    font-size: 18px;
    color: #fff;
  }

  .footerIcon .item {
    display: flex;
    align-items: center;
    grid-gap: 5px;
  }

  .footerIcon .item img {
    width: 20px;
  }

  .footerIcon .item p {
    color: #fff;
  }

  .footer .ewm {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .ewm img {
    width: 100px;
  }

  @media (max-width: 1200px) {
    .footer {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* 备案 */
  .Copyright {
    background: #2d2c2c;
    width: 100%;
    padding: 10px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .Copyright a {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }

  .Copyright a p {
    display: block;
    margin: 0 5px;
  }

  .Copyright a:last-child p {
    display: none;
  }

  .Copyright a:hover {
    color: var(--color);
  }

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

    .Copyright a p {
      display: contents;
    }
  }

  @media (max-width: 720px) {}