  /* 底部导航 */
  footer {
    background: linear-gradient(71deg, #242933 0%, #4A5362 100%);
    position: relative;
  }

  .footerTop {
    padding: 75px var(--container) 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footerTop::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7E8898 0%, #606A7B 100%);
  }

  .footerTop img {
    width: 450px;
  }

  .footerTop span {}

  .footerTop span p {
    font-size: 22px;
    color: #FFFFFF;
    opacity: 0.7;
  }

  .footerTop span h1 {
    font-weight: 700;
    font-size: 50px;
    color: #FFFFFF;
  }


  /* 导航 */
  .footer1 {
    padding: 45px var(--container) 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footerNav {
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-between;
  }

  .footerNav span {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 15px;
  }

  .footerNav span:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 45px;
  }

  .footerNav span:first-child .a1 {
    grid-column: 1/3;
  }

  .footerNav span .a1 {
    font-size: 20px;
    color: #fff;
  }

  .footerNav span .a2 {
    font-size: 16px;
    color: #8A8F99;
  }

  .footerNav span .a2:hover {
    color: #AB5615;
  }

  .footerEwm {
    width: 150px;
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: 10px;
    font-size: 16px;
    color: #FFFFFF;
  }

  @media (max-width:1200px) {
    .footer1 {
      display: flex;
      grid-gap: 30px;
    }

    .footerTop span p {
      font-size: 16px;
    }

    .footerTop span h1 {
      font-size: 36px;
    }

    .footerNav {
      width: 100%;
    }

    .footerNav span .a1 {
      font-size: 18px;
    }

    .footerNav span .a2 {
      font-size: 14px;
    }
  }

  @media (max-width: 900px) {
    .footerTop {
      padding: 45px var(--container);
      grid-gap: 30px;
      flex-wrap: wrap;
    }

    .footerTop img {
      max-width: 100%;
    }

    .footerTop span {
      width: 100%;
    }

    .footerTop span h1 {
      font-size: 24px;
    }

    .footerNav {
      flex-wrap: wrap;
      grid-gap: 20px;
    }

    .footerNav span {
      width: 100%;
      display: flex !important;
      flex-direction: row;
      flex-wrap: wrap;
      grid-gap: 5px 15px !important;
    }

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

    .footerNav span a {
      width: auto;
    }
  }




  /* 备案 */
  .Copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 10px 20px;
    padding: 30px var(--container);
    position: relative;
  }

  .Copyright::after {
    content: "";
    position: absolute;
    left: var(--container);
    top: 0;
    width: calc(100% - var(--container) * 2);
    height: 1px;
    background: #60636a;
  }

  .Copyright a {
    color: #8A8F99;
    font-size: 16px;
    display: flex;
    align-items: center;
  }


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