/* footer */
.footer-box {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.logo-box {
  padding: 2.5rem 0;
}
.logo-box img {
  width: 12rem !important;
  height: auto !important;
}

.footer-menu-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
  margin-bottom: 2.1875rem;
}
.footer-menu-item {
  font-size: 1rem;
}
.footer-menu-item:hover a {
  color: #06893E;
  text-decoration: underline;
}

.footer-menu-item a {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.79);
  line-height: 2rem;
}

/*二维码*/
.footer-qrcode-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}
.qrcode-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: .9375rem;
}
.qrcode-box img {
  width: 8.0625rem !important;
  height: 8.0625rem !important;
}
.ewmtxt {
  padding-bottom: 1.8125rem;
  text-align: center;
}

.footer-bottom-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2.5rem 0;
  border-top: 1px solid #DCDCDC;
}
.footer-bottom-box p {
  font-size: .875rem;
  color: #000;
  line-height: 1.75rem;
}


@media screen and (max-width: 768px) {
  .logo-box {
    padding: 1.375rem 0 .625rem;
  }
  .footer-menu-box {
    gap: 1.875rem; 
    margin-bottom: .5rem;
  }
  .footer-menu-item a {
    font-size: .5rem;
  }
  .qrcode-box {
    padding-bottom: .9375rem;
  }
  .qrcode-box img {
    width: 4rem;
    height: 4rem;
  }
  .ewmtxt {
    font-size: .5rem;
    padding-bottom: .9375rem;
    text-align: center;
  }
  .footer-bottom-box p {
    font-size: .5rem;
  }
}