@font-face {
  font-family: "Popping_extra_bold";
  src: url("/static/fonts/Poppins-ExtraBold.ttf") format("ttf");
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  src: url("/static/fonts/HarmonyOS_Sans_SC_Regular.woff2") format("woff2");
}
* {
  font-family: "HarmonyOS_Sans_SC_Regular", sans-serif;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: #17161c;
  padding: 0;
  width: 100%;
  background-color: #EFF3FF;
  position: relative;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  max-height: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.section {
  max-width: 1724px;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  left: 0;
  background-color: #EFF3FF;
}
header .section {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
  height: 92px;
  padding: 0 24px;
}
header .section > img {
  height: 48px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .page-wrap {
  display: flex;
  gap: 72px;
  align-items: center;
}
header .page-wrap a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 23px;
  min-width: 87px;
}
header .page-wrap a:hover {
  color: white;
  background-color: #4B76F9;
}
header .page-wrap img {
  width: 24px;
  height: 24px;
}

.banner-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}
.banner-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-wrap .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8.1% 5.3% 0 5.3%;
  width: 100%;
  height: 100%;
}
.banner-wrap .banner-content h1 {
  max-width: 1164px;
  margin: 0 0 28px 0;
  font-size: 64px;
  line-height: 1.4;
  font-weight: 800;
  background: linear-gradient(90deg, #00eeff, #4B76F9, #AB23B0);
  -webkit-background-clip: text;
  font-family: "Popping_extra_bold";
  color: transparent;
}
.banner-wrap .banner-content .subtitle {
  font-size: 36px;
  margin-bottom: 72px;
  font-weight: bold;
  line-height: 1.7;
}
.banner-wrap .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}
.banner-wrap .btn-wrap .btn {
  min-width: 276px;
  min-height: 92px;
  aspect-ratio: 276/92;
  text-decoration: none;
  color: #4B76F9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/static/images/chat.png");
  background-size: contain;
  font-size: 24px;
  font-weight: bold;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: center;
}
.banner-wrap .btn-wrap .btn span {
  padding: 0 15px;
}
.banner-wrap .btn-wrap .btn.download {
  background-image: url("/static/images/download.png");
  color: white;
}

.text-section {
  margin: 53px auto;
  position: relative;
  z-index: 20;
  color: #17161c;
}
.text-section .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: normal;
}
.text-section .title div {
  font-family: "Popping_extra_bold";
}
.text-section .subtitle {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.btn-section {
  display: none;
  gap: 36px;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 20;
  padding: 0 29px;
}
.btn-section .btn {
  min-width: 146px;
  min-height: 48px;
  text-decoration: none;
  aspect-ratio: 146/48;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/static/images/chat.png");
  background-size: contain;
  font-size: 12px;
  font-weight: bold;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: center;
  color: #4B76F9;
}
.btn-section .btn span {
  padding: 0 15px;
}
.btn-section .btn.download {
  background-image: url("/static/images/download.png");
  color: white;
}

.sections-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 30;
  gap: 72px;
}
.sections-wrap .section-item {
  background-color: #EFF3FF;
  box-shadow: 0px 19px 43px rgba(0, 26, 106, 0.2);
  border-radius: 40px;
  display: flex;
  gap: 54px;
  align-items: center;
  padding: 30px 64px;
}
.sections-wrap .section-item:nth-child(even) {
  flex-direction: row-reverse;
}
.sections-wrap .section-item img {
  height: 464px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sections-wrap .section-item .section-content {
  display: flex;
  flex-direction: column;
  gap: 54px;
  justify-content: center;
}
.sections-wrap .section-item .section-content .title {
  font-size: 48px;
  font-weight: bolder;
}
.sections-wrap .section-item .section-content .subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}

.safe-section {
  width: 100%;
  position: relative;
  z-index: 20;
  margin-top: -8%;
}
.safe-section .glob {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.safe-section .section-item {
  display: flex;
  justify-content: center;
  gap: 150px;
  padding: 0 118px;
  margin-top: -12%;
}
.safe-section .section-item img {
  width: 50%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.safe-section .section-item .section-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
.safe-section .section-item .section-content .title {
  font-size: 48px;
  font-family: "Popping_extra_bold";
  font-weight: bold;
}
.safe-section .section-item .section-content .subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}

footer {
  margin-top: 56px;
  position: relative;
  z-index: 20;
  background-color: rgb(203, 213, 255);
}
footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-size: 18px;
  gap: 56px;
  min-width: 211px;
  padding: 0 20px;
  flex-wrap: wrap;
}
footer .footer-inner a {
  color: rgb(23, 22, 28);
  text-decoration: none;
}

.service-wrap {
  position: fixed;
  bottom: 40px;
  text-decoration: none;
  right: 0;
  z-index: 31;
}
.service-wrap .bot {
  width: 120px;
  height: auto;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: 50%;
  right: 0;
}
.service-wrap .title {
  font-size: 16px;
  color: white;
  text-decoration: none;
  min-width: 111px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  background: linear-gradient(270deg, #f64eff, #4B76F9);
  box-shadow: inset 0 0px 8px 7px rgba(0, 0, 0, 0.2);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}
.dropbtn svg {
  width: 20px;
  height: 20px;
}
.dropbtn svg path {
  stroke: #17161c;
}
.dropbtn:hover svg path {
  stroke: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  padding: 0;
  list-style: none;
  background-color: #f9f9f9;
  right: 20px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content div {
  color: black;
  margin-left: 0 !important;
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.dropdown-content div:hover {
  background-color: #f1f1f1;
  color: #4B76F9;
}

.show {
  display: block;
}

@media screen and (max-width: 1570px) {
  .banner-wrap .banner-content h1 {
    font-size: 54px;
  }
  .banner-wrap .banner-content .subtitle {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .banner-wrap .btn-wrap .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .banner-wrap .banner-content {
    padding: 4% 2.5% 0 2.5%;
  }
  .banner-wrap .banner-content .btn-wrap {
    flex-direction: row;
  }
}
@media screen and (max-width: 1000px) {
  .banner-wrap .banner-content .title {
    line-height: 1.2;
  }
  .banner-wrap .banner-content .subtitle {
    line-height: 1.2;
  }
  .banner-wrap .banner-content .btn-wrap {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  header .section {
    height: 40px;
    padding: 0 10px;
    gap: 10px;
  }
  header .section > img {
    height: 24px;
  }
  header .page-wrap {
    gap: 5px;
  }
  header .page-wrap a {
    font-size: 11px;
    padding: 0 5px;
    height: 19px;
    min-width: 40px;
  }
  header .page-wrap svg {
    width: 16px;
    height: 16px;
  }
  .banner-wrap {
    margin-top: 10px;
  }
  .banner-wrap .banner-content .title {
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 90%;
  }
  .banner-wrap .banner-content .subtitle {
    max-width: 70%;
    font-size: 12px;
    margin-bottom: 0;
  }
  .banner-wrap .btn-wrap {
    display: none;
  }
  .text-section {
    margin: 32px 0;
    padding: 0 10px;
    width: 100%;
  }
  .text-section .title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .text-section .title div {
    text-align: center;
  }
  .text-section .subtitle {
    font-size: 10px;
  }
  .sections-wrap {
    padding: 0 10px;
    gap: 35px;
  }
  .sections-wrap .section-item {
    gap: 10px;
    border-radius: 8px;
    padding: 12px;
  }
  .sections-wrap .section-item img {
    height: 100px;
  }
  .sections-wrap .section-item .section-content {
    gap: 8px;
  }
  .sections-wrap .section-item .section-content .title {
    font-size: 14px;
  }
  .sections-wrap .section-item .section-content .subtitle {
    font-size: 11px;
  }
  .safe-section .section-item {
    gap: 16px;
    padding: 0 20px;
    margin-top: 0;
  }
  .safe-section .section-item img {
    width: 129px;
    height: 129px;
  }
  .safe-section .section-item .section-content {
    gap: 10px;
  }
  .safe-section .section-item .section-content .title {
    font-size: 14px;
  }
  .safe-section .section-item .section-content .subtitle {
    font-size: 11px;
    margin-bottom: 0;
  }
  footer .footer-inner {
    justify-content: center;
    height: auto;
    padding: 10px 0;
    gap: 14px;
    font-size: 11px;
  }
  footer .footer-inner a {
    padding: 0 5px;
  }
  .btn-section {
    display: flex;
  }
  .service-wrap .bot {
    width: 70px;
    bottom: 40%;
  }
  .service-wrap .title {
    min-width: 63px;
    min-height: 36px;
    font-size: 10px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
  }
}