  /* 底部导航 */
  footer {
    background: var(--color);
    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;
    grid-gap: 15px;
  }

  .footerNav span {
    width: auto;
    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 {
    width: 400px;
  }

  .footerDesc .logo {
    max-width: 100%;
    max-height: 60px;
  }

  .footerDesc p {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid #FFF;
    color: #FFF;
    font-size: 14px;
    line-height: 2;
  }

  /* 社交媒体 */
  .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:first-child .ewm {
    left: 0;
  }

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

  @media (max-width:1440px) {
    .footerDesc {
      width: 300px;
    }

    .footerNav {
      width: calc(100% - 400px);
    }
  }

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

    .footerNav {
      width: 100%;
    }

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

    .footerDesc p {
      margin: 15px 0;
      padding-top: 5px;
    }
  }

  @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: 30px var(--container);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E27100;
    border-top: 1px solid rgb(217, 217, 217, 0.2);
  }

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





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

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

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


  @media (max-width: 1200px) {
    .footer2 {
      display: flex;
      flex-direction: column;
      grid-gap: 15px;
    }
  }

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