:root {
  --theme: #009d85;
  --duration: 0.45s;
  --header-height: max(0.8rem, 60px);
  /* --- font40以下 */
  --font12: 12px;
  --font14: 14px;
  --font15: clamp(14px, 0.15rem, 15px);
  --font16: 16px;
  --font17: clamp(16px, 0.17rem, 17px);
  --font18: clamp(16px, 0.18rem, 18px);
  --font20: clamp(16px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --font400: 4rem;
  --space-min: 30px;
  --space: 45px;
  --color-white: rgba (255, 255, 255, 0.2);
  --liner: linear-gradient(to top, rgba(0, 157, 133, 0.8), transparent);
}
@font-face {
  font-family: "BebasNeue";
  src: url("https://font.fonwi.com/xinweb/commonFonts/BebasNeue-1.otf");
  font-display: swap;
}
@font-face {
  font-family: "HONORSansCN";
  src: url("https://font.fonwi.com/xinweb/commonFonts/HONORSansCN-Regular.ttf");
  font-display: swap;
}
html {
  font-size: calc(100vw / 19.2);
}
body {
  font-family: "HONORSansCN", "Microsoft YaHei", sans-serif;
  line-height: normal;
  font-size: 16px;
}
body.lock {
  overflow: hidden;
}
input,
textarea,
button {
  font-family: inherit;
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
.wrap {
  width: 86%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92% !important;
  }
}
header {
  position: fixed;
  left: 0;
  top: 18px;
  z-index: calc(99 * 6);
  width: 100%;
  height: var(--header-height);
  transition: 0.6s linear;
}
header.scroll {
  transform: translateY(calc(-100% - 18px));
}
header.about-header .header-wrap {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(200, 200, 200, 0.2));
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
}
/* 往下面拉动激活的样式 */
header.active .header-wrap,
header.phone-state .header-wrap {
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  background: rgba(0, 0, 0, 0.06);
}
header.active .header-wrap .nav .nav-item .nav-bottom .group,
header.phone-state .header-wrap .nav .nav-item .nav-bottom .group {
  background-color: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header.active .header-wrap .nav .nav-item .item-top,
header.phone-state .header-wrap .nav .nav-item .item-top {
  color: #000000;
}
header.active .header-wrap .other .search,
header.phone-state .header-wrap .other .search {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: none;
}
header.active .header-wrap .other .search img,
header.phone-state .header-wrap .other .search img {
  filter: brightness(0);
}
header.active .header-wrap .other .lang-area .current-lang,
header.phone-state .header-wrap .other .lang-area .current-lang {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: none;
}
header.active .header-wrap .other .lang-area .current-lang img,
header.phone-state .header-wrap .other .lang-area .current-lang img {
  filter: brightness(0);
}
header.active .header-wrap .other .lang-area .current-lang span,
header.phone-state .header-wrap .other .lang-area .current-lang span {
  color: #000000;
}
.header-wrap {
  max-width: 97.39583333%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0px 0px 14px 2px rgba(200, 200, 200, 0.21);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: max(0.28rem, 15px);
  padding-right: max(0.27rem, 15px);
}
.header-wrap .logo {
  width: 3.28rem;
  margin-right: 20px;
}
.header-wrap .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.header-wrap .nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-wrap .nav .nav-item {
  height: 100%;
  position: relative;
  z-index: 7;
}
.header-wrap .nav .nav-item:not(:last-child) {
  margin-right: 0.5rem;
}
.header-wrap .nav .nav-item.active .item-top,
.header-wrap .nav .nav-item:hover .item-top {
  color: #e6002d !important;
}
.header-wrap .nav .nav-item.active .item-top span::after,
.header-wrap .nav .nav-item:hover .item-top span::after {
  width: 100%;
}
.header-wrap .nav .nav-item .item-top {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  white-space: nowrap;
}
.header-wrap .nav .nav-item .item-top span {
  position: relative;
  line-height: 1.66666667;
}
.header-wrap .nav .nav-item .item-top span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 2px;
  background-color: #e6002d;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
  padding-top: 5px;
  display: none;
}
.header-wrap .nav .nav-item .nav-bottom .group {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
}
.header-wrap .nav .nav-item .nav-bottom .link {
  display: block;
  font-size: var(--font16);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: var(--duration);
  color: rgba(0, 0, 0, 0.6);
}
.header-wrap .nav .nav-item .nav-bottom .link:hover {
  color: #e6002d !important;
}
.header-wrap .other {
  margin-left: max(0.4rem, 20px);
  display: flex;
  align-items: center;
  --h: 40px;
}
.header-wrap .other .search {
  flex-shrink: 0;
  width: var(--h);
  height: var(--h);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .lang-area {
  margin-left: 7px;
  position: relative;
  width: 80px;
  flex-shrink: 0;
}
.header-wrap .other .lang-area .current-lang {
  width: 100%;
  height: var(--h);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .lang-area .current-lang span {
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  margin-left: 10px;
}
.header-wrap .other .lang-area .lang-list-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 100%;
  padding-top: max(0.2rem, 10px);
  display: none;
}
.header-wrap .other .lang-area .lang-list-area .list {
  white-space: nowrap;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-wrap .other .lang-area .lang-list-area .item {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  transition: var(--duration);
  font-size: 14px;
  padding: 10px;
  text-align: center;
  position: relative;
  z-index: 2;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .lang-area .lang-list-area .item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: var(--duration);
  background-color: var(--theme);
  z-index: -1;
}
.header-wrap .other .lang-area .lang-list-area .item:hover {
  color: #fff;
}
.header-wrap .other .lang-area .lang-list-area .item:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
footer {
  padding-top: max(0.86rem, var(--space));
  padding-bottom: max(0.46rem, var(--space));
  background-image: url(../images/foot-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: max(0.31rem, 20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot-top .foot-logo {
  width: 3.38rem;
  flex-shrink: 0;
}
footer .foot-top .foot-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .foot-top .icon-list {
  display: flex;
  align-items: center;
}
footer .foot-top .icon-list .item {
  display: block;
  position: relative;
  z-index: 20;
}
footer .foot-top .icon-list .item:hover .icon {
  background-color: #ffffff;
}
footer .foot-top .icon-list .item:hover .icon img {
  filter: none;
}
footer .foot-top .icon-list .item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}
footer .foot-top .icon-list .item:not(:last-child) {
  margin-right: 10px;
}
footer .foot-top .icon-list .item .icon {
  width: max(0.6rem, 45px);
  height: max(0.6rem, 45px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration);
}
footer .foot-top .icon-list .item .icon img {
  display: block;
  max-width: 50%;
  height: auto;
  transition: var(--duration);
  filter: brightness(0) invert(1) opacity(0.4);
}
footer .foot-top .icon-list .item .qrcode {
  width: max(1.4rem, 90px);
  height: max(1.4rem, 90px);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) scale(0, 1);
  pointer-events: none;
  user-select: none;
  transition: var(--duration);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
}
footer .foot-top .icon-list .item .qrcode img {
  display: block;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  object-fit: contain;
}
footer .foot-bottom {
  padding-top: max(0.4rem, 20px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.13rem;
}
footer .foot-bottom .foot-nav {
  display: flex;
  align-items: flex-start;
}
footer .foot-bottom .foot-nav .nav-item:not(:last-child) {
  margin-right: max(0.7rem, 20px);
}
footer .foot-bottom .foot-nav .nav-item .item-top {
  margin-bottom: max(0.2rem, 10px);
}
footer .foot-bottom .foot-nav .nav-item .item-top span {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
}
footer .foot-bottom .foot-nav .nav-item .item-bottom .bottom-link {
  display: block;
  font-weight: 400;
  font-size: var(--font16);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--duration);
}
footer .foot-bottom .foot-nav .nav-item .item-bottom .bottom-link:hover {
  color: #ffffff;
}
footer .foot-bottom .foot-nav .nav-item .item-bottom .bottom-link:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}
footer .foot-bottom .foot-nav .nav-item .item-bottom .bottom-link span {
  background-image: linear-gradient(to right, #fff, #fff);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  transition: background-size var(--duration);
}
footer .foot-bottom .foot-form {
  width: 29.5625%;
  flex-shrink: 0;
}
footer .foot-bottom .foot-form .form-text {
  font-weight: 400;
  font-size: var(--font18);
  line-height: 1.55555556;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: max(0.26rem, 20px);
}
footer .foot-bottom .foot-form .form {
  --h: max(0.6rem, 45px);
  width: 100%;
  height: var(--h);
  display: flex;
  align-items: stretch;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--duration);
  overflow: hidden;
}
footer .foot-bottom .foot-form .form:focus-within {
  border-color: #ffffff;
}
footer .foot-bottom .foot-form .form input {
  display: block;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding-left: max(0.42rem, 15px);
  padding-right: max(0.42rem, 15px);
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  transition: var(--duration);
  border: none;
  outline: none;
  background-color: transparent;
}
footer .foot-bottom .foot-form .form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
footer .foot-bottom .foot-form .form button {
  width: max(1.6rem, 140px);
  height: var(--h);
  background: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font20);
  color: #009d85;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: max(0.25rem, 20px);
  row-gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  column-gap: 10px;
}
footer .copyright a.text:hover {
  color: #ffffff;
}
footer .copyright .text {
  font-weight: normal;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.4);
  transition: var(--duration);
  display: flex;
  align-items: center;
}
footer .copyright .text:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.4);
}
footer .copyright .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.page-go-top {
  --unit: max(0.6rem, 35px);
  width: var(--unit);
  height: var(--unit);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  background-color: var(--theme);
  position: fixed;
  right: 3%;
  bottom: 5%;
  z-index: calc(99 * 2);
  border-radius: 50%;
}
.page-go-top img {
  display: block;
  max-width: 35%;
  max-height: 35%;
  object-fit: contain;
}
@media (min-width: 993px) {
  header .phone-nav {
    display: none !important;
  }
}
@media (max-width: 992px) {
  header {
    top: 0;
  }
  header.phone-state .header-wrap {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0px;
  }
  .header-wrap .nav {
    display: none;
  }
  .header-wrap .other {
    margin-left: auto;
  }
  .header-wrap .other .phone-btn {
    width: 40px;
    height: 40px;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
  }
  .header-wrap .other .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  .header-wrap .other .phone-btn span:last-child {
    margin-bottom: 0;
  }
  .header-wrap .other .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-1px, 3px);
  }
  .header-wrap .other .phone-btn.active span:nth-child(2) {
    display: none;
  }
  .header-wrap .other .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-1px, -4px);
  }
  header .phone-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: max(0.6rem, 45px);
    padding-bottom: max(0.6rem, 45px);
    display: none;
  }
  header .phone-nav .nav-item:not(:last-child) {
    margin-bottom: 20px;
  }
  header .phone-nav .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .phone-nav .item-top.active .top-link {
    color: var(--theme);
  }
  header .phone-nav .item-top.active .icon {
    transform: rotate(-45deg);
  }
  header .phone-nav .item-top.active .icon::before,
  header .phone-nav .item-top.active .icon::after {
    background-color: var(--theme);
  }
  header .phone-nav .item-top .top-link {
    font-size: 18px;
    color: #000;
    transition: var(--duration);
  }
  header .phone-nav .item-top .icon {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    user-select: none;
    transition: var(--duration);
  }
  header .phone-nav .item-top .icon::before,
  header .phone-nav .item-top .icon::after {
    content: "";
    background-color: #000;
    transition: var(--duration);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .phone-nav .item-top .icon::before {
    width: 20px;
    height: 2px;
  }
  header .phone-nav .item-top .icon::after {
    width: 2px;
    height: 20px;
  }
  header .phone-nav .nav-bottom {
    padding: 20px 1em 10px;
    display: none;
  }
  header .phone-nav .nav-bottom .link {
    display: block;
    font-size: 16px;
    color: #000;
    transition: var(--duration);
    overflow-wrap: break-word;
  }
  header .phone-nav .nav-bottom .link:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  footer .foot-bottom {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  footer .foot-bottom .foot-nav {
    width: 100%;
    flex-wrap: wrap;
  }
  footer .foot-bottom .foot-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
  footer .foot-bottom .foot-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }
  footer .foot-bottom .foot-nav .nav-item .item-bottom {
    display: none;
  }
  footer .foot-bottom .foot-nav .nav-item .item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .foot-bottom .foot-nav .nav-item .item-top.active .icon {
    transform: rotate(45deg);
  }
  footer .foot-bottom .foot-nav .nav-item .item-top .icon {
    --unit: 20px;
    width: var(--unit);
    height: var(--unit);
    position: relative;
    user-select: none;
    cursor: pointer;
    transition: var(--duration);
  }
  footer .foot-bottom .foot-nav .nav-item .item-top .icon::before,
  footer .foot-bottom .foot-nav .nav-item .item-top .icon::after {
    content: "";
    background-color: #fff;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  footer .foot-bottom .foot-nav .nav-item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  footer .foot-bottom .foot-nav .nav-item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
  footer .foot-bottom .foot-form .form-text br {
    display: none;
  }
  footer .foot-bottom .foot-form {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .header-wrap .logo {
    width: 7rem;
    flex-shrink: 0;
  }
  .header-wrap .other .search {
    width: 30px;
    height: 30px;
  }
  .header-wrap .other .lang-area {
    width: 60px;
  }
  .header-wrap .other .phone-btn {
    margin-left: 5px;
  }
  footer .foot-top {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  footer .foot-top .icon-list {
    width: 100%;
    justify-content: center;
  }
  footer .foot-top .foot-logo {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
