  /* 底部导航 */
  footer {
    background: #202020;
    position: relative;
    padding: 0;
  }

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

  /* 导航 */
  .footerNav {
    width: calc(100% - 500px);
    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: 20px;
    font-weight: bold;
    color: #fff;
    opacity: 0.9;
  }

  .footerNav span .a2 {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
  }

  .footerDesc {
    max-width: 320px;
    font-size: 16px;
    line-height: 2;
    color: #FFFFFF;
  }

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

    .footerNav {
      width: 100%;
    }

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

  @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: 15px;
    }

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

  .footer2 {
    padding: 45px var(--container);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer2Rt {
    width: 35%;
    display: flex;
    justify-content: space-between;
  }

  .footer2Rt .top  {
    background: #fff0;
  }

  .footer2Rt .top img {
    width: 50px;
    border-radius: 6px;
  }

  /* 社交媒体 */
  .footerIcon {
    display: flex;
    grid-gap: 30px;
  }

  .footerIcon .item {
    position: relative;
    max-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footerIcon .item .icon {
    width: 100%;
  }

  .footerIcon .item .ewm {
    display: none;
    position: absolute;
    width: 100px;
    top: -100px;
  }

  .footerIcon .item:hover .ewm {
    display: block;
  }


  /* 备案 */
  .Copyright {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }

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

  .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) {
    .footer2 {
      flex-wrap: wrap;
    }

    .Copyright {
      width: 100%;
      margin-bottom: 30px;
    }

    .footer2Rt {
      width: 100%;
    }
  }