* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  list-style: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html,
body {
  height: 100%;
  width: 100%;
}
@font-face {
    font-family: "headerIcon";
    src: none format(truetype);
}
.headerIconFontStyle {
    font-family: "Frijole", system-ui;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: #085E7D;
}

@font-face {
    font-family: "footerIcon";
    src: none format(truetype);
}
.footerIconFontStyle {
    font-family: "Frijole", system-ui;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: #085E7D;
}
.text-body {
  padding: 20px;
  color: #666;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.text-body div {
  max-width: 1200px;
  width: 100%;
}
.text-body p {
  font-size: 16px;
}

.valueBody {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#aboutHead {
  width: 100%;
  background: rgba(146, 255, 179, 1);
  display: flex;
  height: 40px;
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .13);
  padding: 5px;
  justify-content: center;
  align-items: center;
}
 footer {
  width: 100%;
  padding: 0 10px;
}

footer .footer-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

footer .footer-content-header {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

footer .footer-content-header span {
  display: none;
}

footer .links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 11px 0;
}

footer .links a {
  color: inherit;
  /* 确保继承父元素的 color */
  text-decoration: none;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  height: 36px;
  background: #0000000F;
  border-radius: 21.5px;
  padding: 0 16px;
  margin-right: 82px;
}

footer span {
  margin-left: auto;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1200px) {
  footer {
    padding: 0 30px;
  }
}

@media (max-width: 764px) {
  footer {
    padding: 0 12px;
  }

  footer .links {
    justify-content: space-between;
  }

  footer .links a {
    margin-right: 0;
    padding: 0 20px;
  }

  footer .links span {
    display: none;
  }

  footer .footer-content-header span {
    display: unset;
  }
}