  /* 底部导航 */
  footer {
    background: #000;
    position: relative;
    z-index: 2;
    padding: 0 var(--container);
    overflow: hidden;
  }

  footer::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    bottom: -70%;
    width: 100%;
    left: 0;
    height: 30vw;
    border-radius: 50%;
    background: var(--color);
    filter: blur(100px);
  }

  footer:hover::after {
    animation: text 2s linear infinite;
  }

  .footerTop {
    padding: 90px 0 60px;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footerTop img {
    max-height: 80px;
    filter: brightness(0) invert(1);
  }

  .footerTop span {
    color: #fff;
    font-family: MiSans2;
    font-size: 40px;
  }


  /* 导航 */
  .footer1 {
    padding: 45px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

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

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

  .footerNav span .a1 {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap;
  }

  .footerNav span p,
  .footerNav span .a2 {
    font-size: 16px;
    color: #fff;
    display: flex;
  }

  .footerNav span p b {
    color: rgb(255 255 255 / 70%);
    font-weight: 500;
    margin-right: 10px;
    /* width: max-content; */
    white-space: nowrap;
  }

  .footerEwm {
    width: 140px;
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: 10px;
    color: #fff;
  }



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

    .footerNav {
      width: 100%;
    }

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

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

  @media (max-width: 900px) {
    .footerTop {
      padding: 60px 0 30px;
    }

    .footerTop span {
      font-size: 32px;
    }

    .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%;
      margin: 0;
    }

    .footerNav span a {
      width: auto;
    }
  }

  @media (max-width: 600px) {
    .footerTop {
      padding: 60px 0 30px;
      flex-wrap: wrap;
      grid-gap: 15px;
    }

    .footerTop span {
      width: 100%;
      font-size: 32px;
    }

  }



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

  .Copyright a {
    color: #8A8F99;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: 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 .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .IndexRight a span {
    padding: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: 5px;
    position: absolute;
    right: calc(100% + 15px);
    display: none;
  }

  .IndexRight a span::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .IndexRight a:hover span {
    display: flex;
  }

  .IndexRight a span img {
    max-width: 120px;
  }

  .IndexRight a span p {
    color: #000;
    font-family: MiSans2;
    font-size: 20px;
    white-space: nowrap;
  }

  @media (max-width: 600px) {
    .IndexRight {
      right: 15px;
    }

    .IndexRight a span img {
      max-width: 90px;
    }

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