  /* 底部导航 */
  footer {
    background: #003163;
    position: relative;
    padding: 0 var(--container);
  }

  .footer1 {
    padding-top: 90px;
    padding-bottom: 120px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer1 .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 30px;
  }

  .footer1 .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer1 .item .icon img {
    width: 40%;
    height: 40%;
    object-fit: contain;
  }

  .footer1 .item h1 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
  }

  .footer1 .item .desc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    padding: 0 90px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
    color: #FFF;
    text-align: center;
    font-size: 16px;
  }

  .footer1 .item .desc::after {
    content: "";
    display: block;
    width: 1px;
    height: 75px;
    background: #A1A1A1;
    position: absolute;
    right: 0;
  }

  .footer1 .item:last-child .desc::after {
    display: none;
  }

  .footer1 .item img {
    max-width: 100%;
    max-height: 100%;
  }

  /* 导航 */
  .footerNav {
    display: flex;
    justify-content: center;
    grid-gap: 45px;
    padding-bottom: 60px;
  }

  .footerNav span {
    border-right: 1px dashed #fff;
  }

  .footerNav span:last-child {
    display: none;
  }

  .footerNav a {
    font-size: 16px;
    color: #fff;
  }

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

  @media (max-width:1200px) {
    .footer1 .item .icon {
      width: 60px;
      height: 60px;
    }

    .footer1 .item .desc {
      margin-top: 0;
      font-size: 16px;
    }
  }

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

    .footer1 .item {
      width: 50%;
      grid-gap: 15px;
    }

    .footer1 .item:nth-child(2) .desc::after {
      display: none;
    }

    .footerNav {
      display: flex;
      justify-content: space-evenly;
      grid-gap: 0;
    }
  }

  @media (max-width: 600px) {
    .footer1 .item .desc {
      padding: 0 14px;
      height: auto;
    }

    .footer1 .item img {
      max-height: 100px;
    }

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



    .footerNav span {
      display: none;
    }
  }

  /* 备案 */
  .Copyright {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 30px 0;
  }

  .Copyright::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #002246;
    position: absolute;
    z-index: -1;
    top: 0;
    left: calc(-1 * var(--container));
  }

  .Copyright a {
    color: #5A5A5A;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    padding:0 10px
  }

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

  }


  /* 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: 200px;
  }

  .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%;
    padding: 15px 0;
    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: 5px;
  }

  .phoneFooter a img {
    width: 4vw;
    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 {
      display: none;
    }

  }

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