  /* 底部导航 */
  footer {
    background: var(--color2);
    position: relative;
    z-index: 99;
    padding: 0 var(--container);
  }

  .footerTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .footerTop .logo img {
    max-width: 300px;
    max-height: 120px;
  }

  /* 社交媒体 */
  .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;
  }

  /* 导航 */
  .footer1 {
    padding-top: 60px;
    padding-bottom: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }


  .footerDesc p {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .footerDesc a {
    color: #fff;
    width: 150px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
  }

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

  .footerNav span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 25px;
  }

  .footerNav span .a1 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.50);
  }


  .footerNav span .a2 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.50);
  }

  @media (max-width: 1440px) {
    .footerDesc p {
      font-size: 32px;
    }

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

  @media (max-width:1200px) {
    .footer1 {
      padding: 30px 0;
    }

    .footerNav {
      margin-top: 30px;
      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: 5px 20px;
    }

    .footerNav span .a1 {
      width: 100%;
      font-weight: bold;
    }
  }

  @media (max-width: 460px) {
    .footerTop {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      grid-gap: 30px;
      padding: 30px 0 15px;
    }
  }

  /* 备案 */
  .Copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 15px;
  }

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



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



  /* IndexRight */
  .IndexRight {
    position: fixed;
    z-index: 99999;
    right: 40px;
    top: 60vh;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
  }

  .IndexRight a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }

  .IndexRight a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  @media (max-width: 800px) {
    .IndexRight {
      width: 100%;
      flex-direction: row;
      grid-gap: 0;
      right: 0;
      top: auto;
      bottom: 0;
    }

    .IndexRight a {
      width: 100%;
      height: 35px;
      padding: 5px;
      border-radius: 0%;
      padding: 5px;
    }
  }