footer {
  background: var(--color);
  padding: 30px 0 75px;
}

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

footer .footerNav {
  width: 300px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}

footer .footerNav h1 {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}

footer .footerNav a {
  font-size: 16px;
  color: #fff;
  width: 33.333%;
}

footer .footerNav a:hover {
  color: #fff;
}

footer .contact span {
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-size: 24px;
}

footer .contact p {
  font-size: 16px;
  margin: 0;
  margin-left: 10px;
}

footer .contact h1 {
  font-size: 46px;
  color: #fff;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
}

footer .contact h2 {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin: 0;
}

/* 备案 */
.footer {
  background: var(--color);
  border-top: 1px solid #fff;
  padding: 20px 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.footer a {
  color: #fff;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 1440px) and (min-width:0px) {}

@media screen and (max-width: 1200px) and (min-width:0px) {}

@media screen and (max-width: 992px) and (min-width:0px) {
  footer .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
  }

  footer .footerNav {
    margin-bottom: 45px;
  }

  footer .footerNav h1 {
    text-align: center;
  }

  footer .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .contact h2 {
    text-align: center;
  }

  .footer,
  .footer a {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) and (min-width:0px) {
  footer {
    padding: 30px 0
  }

  footer .footerNav {
    display: none;
  }

  footer .contact span {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  footer .contact h1 {
    font-size: 24px;
  }

  footer .contact p {
    font-size: 14px;
    margin-left: 0;
  }

  footer .contact h2 {
    font-size: 12px;
  }
}