  /* 底部导航 */
  footer {
    position: relative;
    padding: 20px var(--container);
    border-top: #82a865 solid 1px;
  }


  /* 导航 */
  .footerNav {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
  }


  .footerNav a {
    color: #252525;
    font-size: 12px;
  }

  .footerNav span {
    width: 1px;
    height: 12px;
    background: #252525;
  }

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

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

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

  /* 备案 */
  .Copyright {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .Copyright a {
    color: #252525;
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
    opacity: 0.6;
  }

  .Copyright a p {
    display: block;
    margin: 0 5px;
  }

  .Copyright a:last-child p {
    display: none;
  }



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

    .Copyright a p {
      display: contents;
    }
  }