.footer {
  background-color: #fff;
}

.footer .footer-belt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem 0;
  padding: 1.75rem 3.75rem;
  overflow: hidden;
  background-image: -o-linear-gradient(210deg, #02bbfe 0%, #0078fd 100%);
  background-image: linear-gradient(-120deg, #02bbfe 0%, #0078fd 100%);
  background-image: -webkit-linear-gradient(-120deg, #02bbfe 0%, #0078fd 100%);
}

.footer .footer-belt > div {
  --icon-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.footer .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: var(--view-width);
  margin: 3rem auto 1.25rem;
  gap: 3rem 12%;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.footer .footer-link > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}

.footer .footer-link > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.footer .footer-link > div:last-child a {
  color: #999;
  font-size: 0.8rem;
}

.footer .footer-link h2 {
  font-size: 1.4rem;
}

.footer .footer-link a {
  color: #999;
}

.footer .footer-link img {
  width: 8rem;
  height: 8rem;
}

.footer .footer-info {
  background-color: #1f242d;
  padding: 0.8rem 10%;
  text-align: center;
  color: #999;
  font-size: 0.8rem;
}

/* h5适配 */
.is-mobile .footer-belt > div {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}