:root {
  --theme: #e71c2b;
  --duration: 0.45s;
  --header-height: max(1rem, 70px);
  /* --- 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);
  --font21: clamp(16px, 0.21rem, 21px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font25: clamp(17px, 0.25rem, 25px);
  --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);
  --font55: clamp(28px, 0.55rem, 55px);
  --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;
  --phone-title: 24px;
}
html {
  font-size: calc(100vw / 19.2);
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url(https://font.fonwi.com/xinweb/commonFonts/HarmonyOS_Sans_SC_Regular.ttf);
  font-display: swap;
}
body {
  font-size: 16px;
  line-height: normal;
  font-family: "HarmonyOS Sans SC", sans-serif;
}
body.lock {
  overflow: hidden;
}
input,
textarea,
button {
  font-family: inherit !important;
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
.wrap {
  width: min(1600px, 86%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92% !important;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(137, 180, 219, 0.66);
  z-index: calc(99 * 2);
  transition: 0.6s linear;
}
header .head-wrap {
  width: min(1845px, 90%);
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .head-wrap {
    width: 92%;
  }
}
header .logo {
  display: block;
  width: max(2.41rem, 160px);
  flex-shrink: 0;
  margin-right: 20px;
}
header .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
header .nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
}
header .nav .nav-item {
  height: 100%;
  position: relative;
}
header .nav .nav-item.active .item-top .link {
  color: #e71c2b;
}
header .nav .nav-item.active .item-top .link span::before {
  transform: scale(1);
}
header .nav .nav-item:hover .item-top .link {
  color: #e71c2b;
}
header .nav .nav-item:not(:last-child) {
  margin-right: 0.9rem;
}
header .nav .nav-item .item-top {
  height: 100%;
}
header .nav .nav-item .item-top .link {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  font-size: var(--font22);
  color: #ffffff;
  line-height: 1.36363636;
  white-space: nowrap;
  transition: var(--duration);
}
header .nav .nav-item .item-top .link span {
  position: relative;
}
header .nav .nav-item .item-top .link span::before {
  content: "";
  position: absolute;
  right: calc(100% + 6px);
  top: 0;
  width: 10px;
  height: 10px;
  background: #e71c2b;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  transition: var(--duration);
}
header .nav .nav-item .item-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #89b4db;
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
}
header .nav .nav-item .item-bottom .bottom-link {
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: var(--font16);
  padding: 10px 20px;
  white-space: nowrap;
  transition: var(--duration);
}
header .nav .nav-item .item-bottom .bottom-link:hover {
  color: #e71c2b;
}
header .other {
  margin-left: max(0.74rem, 30px);
  display: flex;
  align-items: center;
}
header .other .search {
  width: max(0.25rem, 20px);
  margin-right: 30px;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
}
header .other .search img {
  display: block;
  max-width: 100%;
  height: auto;
}
header .other .lang {
  flex-shrink: 0;
  position: relative;
}
header .other .lang:hover .lang-list {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(-50%) translateY(0);
}
header .other .lang .current-lang {
  width: 82px;
  height: 36px;
  border-radius: 17px;
  border: 1px solid #f65d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  line-height: 1;
}
header .other .lang .current-lang span {
  font-weight: 400;
  font-size: var(--font20);
  color: #e71c2b;
  margin-right: max(0.15rem, 10px);
  transition: var(--duration);
}
header .other .lang .current-lang img {
  width: 12px;
  flex-shrink: 0;
  transition: var(--duration);
}
header .other .lang .lang-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: 100%;
  min-width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: var(--duration);
}
header .other .lang .lang-list .group {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .other .lang .lang-list .item {
  display: block;
  padding: 10px;
  font-size: var(--font14);
  color: #333;
  white-space: nowrap;
  text-align: center;
  transition: var(--duration);
}
header .other .lang .lang-list .item:hover {
  color: var(--theme);
}
header.active {
  background: #89b4db;
}
header.scroll {
  transform: translateY(-100%);
}
.header-search-area {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: max(0.6rem, 20px) 0;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header-search-area .search-wrap {
  max-width: 600px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.header-search-area .search-wrap form {
  display: flex;
  align-items: center;
  height: max(0.65rem, 45px);
  position: relative;
  overflow: hidden;
  transition: var(--duration);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.header-search-area .search-wrap .search-btn {
  width: 40px;
  margin-right: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  border-radius: 60px;
}
.header-search-area .search-wrap .search-btn img {
  display: block;
  max-width: 50%;
  height: auto;
  filter: brightness(0);
}
.header-search-area .search-wrap .search-input {
  display: block;
  flex: 1;
  min-width: 0;
  height: 100%;
  transition: var(--duration);
  padding-left: max(0.2rem, 15px);
  padding-right: max(0.2rem, 15px);
  font-size: 16px;
  color: #000000;
  border: none;
  background-color: transparent;
}
.header-search-area .search-wrap .form-close {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  width: 40px;
}
.header-search-area .search-wrap .form-close:hover img {
  filter: none;
}
.header-search-area .search-wrap .form-close img {
  filter: brightness(0);
  transition: var(--duration);
}
footer {
  /* padding-top: max(1.7rem, var(--space)); */
  padding-top: max(1rem, var(--space));
  background-color: #2174bb;
  height: 100%;
  overflow: hidden;
}
footer .foot-wrap {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}
footer .foot-top {
  padding-bottom: max(0.97rem, 20px);
  border-bottom: 1px solid rgba(199, 225, 248, 0.1);
}
footer .foot-top .foot-wrap {
  display: flex;
  align-items: flex-start;
}
footer .foot-top .left {
  width: 27.77777778%;
  flex-shrink: 0;
}
footer .foot-top .left .foot-logo {
  width: max(160px, 3.13rem);
  height: auto;
}
footer .foot-top .left .foot-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .foot-top .left .foot-qrcode {
  display: block;
  width: 135px;
  text-align: center;
  margin-top: max(0.5rem, 20px);
}
footer .foot-top .left .foot-qrcode img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .foot-top .left .foot-qrcode .text {
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  margin-top: 14px;
}
footer .foot-top .left .info-list {
  margin-top: max(1.45rem, 30px);
}
footer .foot-top .left .info-list .info-item {
  display: flex;
  align-items: center;
}
footer .foot-top .left .info-list .info-item:not(:last-child) {
  margin-bottom: max(0.2rem, 10px);
}
footer .foot-top .left .info-list .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: max(0.45rem, 30px);
  height: max(0.45rem, 30px);
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: max(0.2rem, 10px);
}
footer .foot-top .left .info-list .info-item .icon img {
  display: block;
  width: auto;
  max-width: 45.45454545%;
  height: auto;
}
footer .foot-top .left .info-list .info-item .text {
  font-weight: 400;
  font-size: var(--font20);
  line-height: 1.2;
  overflow-wrap: break-word;
}
footer .foot-top .left .info-list .info-item .text .text-title {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
footer .foot-top .left .info-list .info-item .text .text-desc {
  color: #ffffff;
}
footer .foot-top .right {
  /* width: 65%; */
  width: 67%;
  flex-shrink: 0;
  margin-left: auto;
}
footer .foot-top .right .foot-nav-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* column-gap: 1.04rem; */
  column-gap: 0.6rem;
}
footer .foot-top .right .foot-nav-list .item {
  flex-shrink: 0;
  flex: 1;
}
footer .foot-top .right .foot-nav-list .item .item-top {
  font-weight: bold;
  /* font-size: var(--font22); */
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.3rem, 20px);
}
footer .foot-top .right .foot-nav-list .item .item-top .icon {
  display: none;
}
footer .foot-top .right .foot-nav-list .item .item-bottom .item-link {
  display: block;
  width: fit-content;
  font-weight: 300;
  /* font-size: var(--font18); */
  font-size: var(--font14);
  overflow-wrap: break-word;
  color: #ffffff;
  line-height: 1.5;
}
footer .foot-top .right .foot-nav-list .item .item-bottom .item-link:not(:last-child) {
  margin-bottom: 10px;
}
footer .foot-top .right .foot-icon-area {
  margin-top: max(0.9rem, 20px);
}
footer .foot-top .right .foot-icon-area .text {
  font-weight: bold;
  font-size: var(--font22);
  color: #ffffff;
  line-height: 1;
  margin-bottom: max(0.37rem, 20px);
}
footer .foot-top .right .foot-icon-area .icon-list {
  display: flex;
  align-items: center;
  column-gap: max(0.2rem, 10px);
}
footer .foot-top .right .foot-icon-area .icon-list .item {
  flex-shrink: 0;
  width: max(0.65rem, 45px);
  height: max(0.65rem, 45px);
  border-radius: 50%;
  border: 1px solid #cbe3f9;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}
footer .foot-top .right .foot-icon-area .icon-list .item:hover {
  background-color: #e71c2b;
  border-color: transparent;
}
footer .foot-top .right .foot-icon-area .icon-list .item:hover img {
  filter: brightness(0) invert(1);
}
footer .foot-top .right .foot-icon-area .icon-list .item img {
  display: block;
  width: 40%;
  height: auto;
  transition: var(--duration);
}
footer .foot-copyright {
  padding-top: max(0.52rem, 20px);
  padding-bottom: max(0.52rem, 20px);
}
footer .foot-copyright .foot-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot-copyright .foot-wrap .text {
  font-weight: 300;
  font-size: var(--font16);
  color: #ffffff;
  line-height: 1;
  overflow-wrap: break-word;
}

footer .foot-copyright .foot-wrap .text a {
  color: #fff;
}
@media (max-width: 1300px) {
  header .nav .nav-item:not(:last-child) {
    margin-right: 0.6rem;
  }
  footer .foot-top .right .foot-nav-list {
    column-gap: 0.7rem;
  }
}
@media (min-width: 993px) {
  header .phone-nav,
  header .other .phone-btn {
    display: none !important;
  }
}
@media (max-width: 992px) {
  header {
    display: block !important;
  }
  header.active {
    background-color: #fff;
  }
  header .nav {
    display: none;
  }
  header .other {
    margin-left: auto;
  }
  header .phone-nav {
    display: none;
    position: absolute;
    left: 0;
    top: var(--header-height);
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background-color: #fff;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  header .phone-nav .nav-item {
    margin-bottom: 10px;
  }
  header .phone-nav .nav-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
  }
  header .phone-nav .nav-item .item-top.active .link {
    color: var(--theme);
  }
  header .phone-nav .nav-item .item-top.active .icon {
    transform: rotate(45deg);
  }
  header .phone-nav .nav-item .item-top.active .icon::before,
  header .phone-nav .nav-item .item-top.active .icon::after {
    background-color: var(--theme);
  }
  header .phone-nav .nav-item .item-top .link {
    font-size: 18px;
    color: #000000;
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon {
    --unit: 18px;
    position: relative;
    width: var(--unit);
    height: var(--unit);
    cursor: pointer;
    user-select: none;
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon::before,
  header .phone-nav .nav-item .item-top .icon::after {
    content: "";
    background-color: #000;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .phone-nav .nav-item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  header .phone-nav .nav-item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
  header .phone-nav .nav-item .item-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 1em;
    display: none;
  }
  header .phone-nav .nav-item .item-bottom .bottom-link {
    display: block;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
  }
  header .phone-nav .nav-item .item-bottom .bottom-link:not(:last-child) {
    margin-bottom: 6px;
  }
  header .other .phone-btn {
    width: 30px;
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  header .other .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  header .other .phone-btn.active span:nth-child(2) {
    display: none;
  }
  header .other .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  header .other .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  header .other .phone-btn span:nth-child(3) {
    margin-bottom: 0;
  }
  footer .foot-top .foot-wrap {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  footer .foot-top .left {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 2rem;
  }
  footer .foot-top .left .info-list {
    margin-top: 0;
  }
  footer .foot-top .right {
    width: 100%;
  }
  footer .foot-top .right .foot-nav-list .item .item-bottom .item-link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer .foot-top .right .foot-nav-list {
    flex-wrap: wrap;
  }
  footer .foot-top .right .foot-nav-list .item {
    width: 100%;
  }
  footer .foot-top .right .foot-nav-list .item .item-bottom {
    display: none;
    padding-bottom: 20px;
    padding-left: 0.5em;
  }
  footer .foot-top .right .foot-nav-list .item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
  }
  footer .foot-top .right .foot-nav-list .item .item-top.active .icon {
    transform: rotate(45deg);
  }
  footer .foot-top .right .foot-nav-list .item .item-top .icon {
    display: block;
    --unit: 16px;
    position: relative;
    width: var(--unit);
    height: var(--unit);
    cursor: pointer;
    user-select: none;
    transition: var(--duration);
  }
  footer .foot-top .right .foot-nav-list .item .item-top .icon::before,
  footer .foot-top .right .foot-nav-list .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-top .right .foot-nav-list .item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  footer .foot-top .right .foot-nav-list .item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
}
@media (max-width: 576px) {
  header .logo {
    width: 140px;
  }
  header .other .search {
    margin-right: 10px;
  }
  footer .foot-top .foot-wrap {
    flex-wrap: wrap;
  }
  footer .foot-top .left {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  footer .foot-top .left .foot-info {
    width: 100%;
  }
  footer .foot-top .left .info-list {
    width: 100%;
  }
  footer .foot-top .left .info-list .info-item .icon {
    width: 30px;
    height: 30px;
  }
  footer .foot-copyright .foot-wrap {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  footer .foot-copyright .foot-wrap .text {
    font-size: 14px;
  }
}
