html,
body {
  width: 100%;
  height: 100%;
  margin: 0%;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color:#1a2338;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

a {
  transition: 0.3s all;
  text-decoration: none;
}

a:hover {
  filter: brightness(1.1);
}

.showMobile {
  display: block;
}
.showDesktop {
  display: none;
}

.full-container {
  /* height: 100vh; */
}

.main-wrapper {
  /* background-image: url(../img/bg.png);
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat; */
  min-height: 100vh;
  max-width: 550px;
  margin: auto;
}

.top-wrapper {
  padding: 16px 0px 14px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width:100%;
  /*gap: 10px;*/
}

.top-wrapper img:not(.xf-logo) {
  width: 100%;
  max-width: 220px;
}

.lh-logo{

}

.xf-logo {
  height: 74px;
  max-width: 100px;
  padding: 16px 0px;
}

.banner-wrapper {
  padding: 0px 16px 16px;
}

.action-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.action-btn.lh-register {
  background: url("../img/lh-register.png") no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 532/256;
}

.action-btn.xf-register{
  background: url("../img/xf-item.png") no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 532/256;
}

.action-btn.dy-register {
  background: url("../img/dy-register.png") no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 532/256;
}

.action-btn.download {
  background: url("../img/app-dl.png") no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 532/256;
}

.action-btn img {
  width: 44px;
}

.action-btn__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: FZHanZhenGuangBiaoS-GB;
  text-align: left;
  font-weight: 400;
}

.action-btn__title {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.action-btn__description {
  font-size: 1rem;
  line-height: 1.3rem;
  opacity: 0.4;
}

.announcement-wrapper {
  background: url(../img/announcement-wrapper.png) no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 1080 / 168;
  display: flex;
  align-items: center;
  padding-left: 75px;
  padding-right: 35px;
}

.announcement-description {
  color: #7a80a1;
  font-family: PingFang SC;
  font-size: 20px;
}

.section-title {
  margin-bottom: 10px;
}

.new-user-wrapper {
  padding: 0px 16px 33.6px;
}

.new-user-discount-wrapper {
  display: flex;
  flex-direction: column;
}

.game-wrapper {
  padding: 0px 16px 29.6px;
}

.game-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.main-sticky-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: sticky;
  bottom: 0;
  left: 0;
}

.main-sticky-wrapper a {
  display: contents;
}

.main-sticky-btn {
  position: relative;
  padding: 20px 0px 25px;
  width: 40%;
}

.benefit {
  background: url("../img/footer-left.png") no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  aspect-ratio: 606/228;
  margin-right: -35px;
}

.customer-service {
  background: url("../img/footer-right.png") no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  aspect-ratio: 606/228;
}

#image-container {
  position: relative;
  width: calc(100% - 32px);
  aspect-ratio: 1000/400;
  height: auto;
  min-height: 120px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

#image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

@media (max-width: 550px) {
  .benefit .main-sticky-btn__text-wrapper {
    left: calc(100vw * 0.16);
  }

  .customer-service .main-sticky-btn__text-wrapper {
    right: calc(100vw * 0.22);
  }
}

@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main-sticky-btn__description {
    font-size: 1rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 14px;
  }

  .new-user-discount-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  html {
    font-size: 12px;
  }

  .game-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
