    /* 底部导航 */
    footer {
      position: relative;
    }

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

    .footerNav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      grid-gap: 5px;
    }

    .footerNav a img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .footerNav a h1 {
      font-size: 14px;
      line-height: 1.5;
      color: #fff;
      text-align: center;
    }

    .footerNav a span {
      width: 150px;
      height: 1px;
      width: 150px;
      background: #fff;
    }

    .footerContact {
      padding: 0 var(--container);
      display: flex;
      justify-content: space-between;
      align-items: center;
      grid-gap: 60px;
    }

    .footerContact .text {
      max-width: 600px;
      display: flex;
      flex-direction: column;
      grid-gap: 5px;
    }

    .footerContact .text h1 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
    }

    .footerContact .text h2 {
      font-size: 14px;
      color: #fff;
    }

    .footerContact .text span {
      display: flex;
      align-items: center;
      grid-gap: 5px;
    }

    .footerContact .text span .img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid #fff;
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footerContact .text span .img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footerContact .text span .text {
      font-size: 14px;
      color: #fff;
    }

    .footerContact .ewm img {
      max-height: 350px;
    }

    @media (max-width: 1600px) {
      .footerNav {
        grid-gap: 15px;
      }

      .footerNav a {
        width: 100%;
      }

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

    @media (max-width: 1200px) {
      .footerNav {
        display: none;
      }

      .footerContact {
        padding: 0 var(--container);
        padding-top: 60px;
        flex-wrap: wrap;
      }

      .footerContact .text {
        max-width: 100%;
        width: 100%;
      }
    }

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

    /* 备案 */
    .Copyright {
      margin-top: 60px;
      width: 100%;
      padding: 15px var(--container);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background: #ffffff20;
      grid-gap: 10px 20px;
    }

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



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