  /* 底部导航 */
  footer {
    background: #FAFAF8;
    position: relative;
    padding: 90px var(--container);
    padding-bottom: 0;
    overflow: hidden;
  }

  /* footer1 */

  .footer1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footerLogo h1 {
    color: #000;
    font-family: "Playfair Display";
    font-size: 20px;
  }

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

  .footer1 span .a1 {
    letter-spacing: 2.4px;
    font-size: 14px;
    color: #2C2C2C;
    margin-bottom: 15px;
  }

  .footer1 span .a2 {
    font-size: 14px;
    color: #707070;
  }

  .footer1 span .a2:hover {
    color: var(--color);
  }

  .footer1 span p {
    font-size: 14px;
    color: #707070;
    max-width: 400px;
    width: 100%;
  }

  @media (max-width: 1440px) {
    .footer1 span p {
      max-width: 300px;
    }
  }

  @media (max-width: 1200px) {
    .footer1 span p {
      max-width: 100%;
    }
  }

  @media (max-width:720px) {
    .footer1 span {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      grid-gap: 15px;
    }

    .footer1 span .a1 {
      width: 100%;
      padding: 0;
    }
  }

  /* footer1 */
  .footer2 {
    border-top: 1px solid #E8E4DF;
    padding: 30px 0;
    margin-top: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 200px;
  }


  /* 社交媒体 */
  .footerIcon {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    grid-gap: 30px;
  }

  .footerIcon .item {
    position: relative;
    max-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footerIcon .item .icon {
    width: 100%;
  }

  .footerIcon .item .icon img {
    width: 100%;
  }

  .footerIcon .item .ewm {
    display: none;
    position: absolute;
    width: 100px;
    top: -100px;
  }

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


  .Copyright {
    max-width: calc(50% - 150px);
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
  }

  .Copyright a {
    color: #707070;
    font-size: 14px;
    display: flex;
    align-items: center;
    grid-gap: 15px;
  }


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

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

  /* 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;
      bottom: 15vh;
      top: auto;
    }

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

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

  /* phoneFooter */
  .phoneFooter {
    display: none;
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.10);
  }

  .phoneFooter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 3px;
  }

  .phoneFooter a img {
    width: 20px;
    filter: grayscale(1);
  }

  .phoneFooter a.active img {
    filter: grayscale(0);
  }

  .phoneFooter a p {
    color: #000;
    text-align: center;
    font-size: 14px;
  }

  .phoneFooter a.active p {
    color: var(--color);
  }


  @media (max-width: 750px) {
    .phoneFooter {
      display: flex;
      justify-content: space-evenly;
    }

    footer {
      padding: 0;
      height: 60px;
      background: #fff;
    }

    footer * {
      display: none;
    }

  }

  @media (max-width: 400px) {
    .phoneFooter a p {
      font-size: 12px;
    }
  }
