  /* 底部导航 */
  footer {
    position: relative;
    padding: 25px var(--container);
    background: url(/assets/images/foot.jpg) no-repeat;
    display: flex;
    justify-content: space-between;
  }

  /* 备案 */
  .Copyright {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 5px;
  }

  .Copyright,
  .Copyright a {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    align-content: center;
  }


  .footer1 {
    width: 20%;
    display: flex;
    justify-content: center;
  }

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

  @media (max-width: 720px) {
    footer {
      background-size: cover;
      display: flex;
      justify-content: space-between;
      flex-direction: column-reverse;
      align-items: center;
      grid-gap: 30px;
    }

    .Copyright a {
      font-size: 14px;
      display: contents;
    }

    .footer1 {
      width: 300px;
    }
  }