body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
img {
  object-fit: contain;
}

/* Layout for both PC and Mobile */
.bgimage {
  width: 100%;
}
.bgimage-one,
.bgimage-mobile-one {
  display: flex;
  position: relative;
}
.bgimage-one img,
.bgimage-mobile-one img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* PC Specific Styles */
.down-box {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: end;
  bottom: -1.5%;
}

.down-box img {
  width: 35%;
}

.down-box2 img {
  width: 35%;
  margin-right: 1%;
}

.down-box2 {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 0.6%;
}
/* Mobile Specific Styles */
.down-box-mobile {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 0.5%;
}

.down-box-mobile img {
  width: 60%;
  margin-right: 1%;
}

.down-box-mobile2 {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 0.6%;
}

.down-box-mobile2 img {
  width: 60%;
  margin-right: 1%;
}

/* Additional mobile-specific styles */
.androidDown {
  width: 60%;
}

/* QR Code Styling */
.qr-code {
  position: fixed;
  bottom: 25px;
  left: 23px;
  width: 96px;
  height: 96px;
  padding: 10px;
  display: block;
}

.sys {
  position: fixed;
  bottom: 10px;
  left: 5px;
  width: calc(284px * 0.5);
  height: calc(557px * 0.5);
  background-size: 100%;
  background-image: url(../picture/qr_bg_hk.png);
  display: block;
  z-index: 1;
  background-repeat: no-repeat;
  z-index: 99999;
}

.fixedView {
  height: 80px;
}

.nav--scroll #nav {
  height: 58px;
}
.nav--scroll #navbar__brand {
  width: 140px;
  /* height: 32px; */
}
@media (max-width: 800px) {
  .nav--scroll #navbar__brand {
    width: 120px;
    /* height: 28px; */
    padding-top: 0;
  }
}
.nav--scroll #nav__langMenu {
  top: 42px;
}

#nav {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(254, 180, 11);
  transition: height 0.3s ease-in;
  z-index: 30;
}
@media (max-width: 800px) {
  #nav {
    height: 58px;
  }
  .fixedView {
    height: 58px;
  }
}

#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 800px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  #navbar {
    width: 100%;
    padding: 0 15px;
  }
}

#navbar__brand {
  width: 165px;
  /* height: 40px; */
}
@media (max-width: 800px) {
  #navbar__brand {
    width: 120px;
    /* height: 28px; */
    z-index: 40;
  }
}

.nav__link {
  font-size: 18px;
  font-weight: 700;
  line-height: 80px;
  margin: 0 30px;
  color: #ffffff;
}
.nav__link:first-of-type .active,
.nav__link:first-of-type:hover {
  color: #ff61b6;
}
.nav__link:nth-of-type(2) .active,
.nav__link:nth-of-type(2):hover {
  color: #8260d2;
}
.nav__link:nth-of-type(3) .active,
.nav__link:nth-of-type(3):hover {
  color: #65d1ff;
}

#nav__account {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#nav__profile {
  color: #ffffff;
  font-size: 12px;
  text-align: right;
}

#nav__langSelector {
  width: 28px;
  height: 28px;
  margin: 2px 18px 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 800px) {
  #nav__langSelector {
    margin: 0 12px;
  }
}

#nav__langSelector.active #nav__langMenu {
  display: block;
}

#nav__langMenu {
  display: none;
  width: 110px;
  height: fit-content;
  position: absolute;
  top: 53px;
  right: 0;
  overflow: hidden;
}
@media (max-width: 800px) {
  #nav__langMenu {
    width: 98px;
    top: 42px;
    right: 0;
  }
  #nav__langMenu a:before {
    top: 14px;
    left: 15px;
  }
  #nav__langMenu a:after {
    top: 16px;
    left: 17px;
  }
}
#nav__langMenu li {
  display: block;
  width: 100%;
  height: 50px;
  background: rgb(82, 0, 48);
  border-bottom: 1px solid rgba(154, 159, 165, 0.3);
  color: #ffffff;
  font-size: 14px;
  padding: 15px 0 0 37px;
  position: relative;
}
#nav__langMenu li:last-child {
  border: 0;
}
#nav__langMenu li:after {
  content: "";
  border-radius: 100%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  top: 21px;
  left: 19px;
}
@media (max-width: 800px) {
  #nav__langMenu li:after {
    top: 16px;
    left: 17px;
  }
}
#nav__langMenu li:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1.5px solid #ffffff;
  top: 19px;
  left: 17px;
}
@media (max-width: 800px) {
  #nav__langMenu li:before {
    top: 14px;
    left: 15px;
  }
}
#nav__langMenu li:hover:before {
  border-color: #ff61b6;
}
#nav__langMenu li:hover:after {
  background-color: #ff61b6;
}
#nav__langMenu li.active:before {
  border-color: #ff61b6;
}
#nav__langMenu li.active:after {
  background-color: #ff61b6;
}

.sec1 {
  position: relative;
  overflow: hidden;
}
.sec1 .boxImg {
  width: 100%;
  height: auto;
}

.sec1 .sec1_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sec1 .sec1_bg .top_logo {
  display: flex;
  justify-content: center;
  padding-top: 1%;
}

.sec1 .sec1_bg .top_logo img {
  width: 45%;
  z-index: 4;
}

.sec1 .bottom_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
}

.sec1 .bottom_bg .top_left {
  width: 22vw;
  z-index: 3;
}

.sec1 .bottom_bg .top_center {
  width: 40vw;
  z-index: 3;
}

.sec1 .bottom_bg .center_logo {
  width: 35vw;
  z-index: 5;
  position: absolute;
  bottom: 19%;
}

.sec1 .bottom_bg .top_right {
  width: 26vw;
  z-index: 3;
}

.sec1 .float_bg {
  width: 100%;
  position: absolute;
  bottom: 7%;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: end;
  z-index: 7;
}

.sec1 .float_bg .topBtns {
  display: flex;
  align-items: center;
}

.sec1 .float_bg .top_content {
  width: 50%;
  display: flex;
  justify-content: end;
}

.sec1 .float_bg .top_content img {
  width: 90%;
}

.sec2 {
  position: relative;
  overflow: hidden;
}
.sec2 .boxImg {
  width: 100%;
  height: auto;
}

.sec2 .sec2_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}

.sec2 .sec2_bg .content_bg {
  width: 50vw;
  margin-top: -7%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec2 .sec2_bg .content_bg img {
  width: 80%;
  z-index: 5;
}

.sec2 .sec3_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 3;
}

.sec2 .sec3_bg .bottom_bg {
  display: flex;
  justify-content: space-between;
}

.sec2 .sec3_bg .bottom_bg img {
  width: 26vw;
  margin-bottom: -22px;
}
.sec2 .sec3_bg .bottom_bg .game_center {
  width: 55vw;
  position: absolute;
  left: 25%;
  z-index: 10;
  bottom: 30px;
}

.sec3 {
  position: relative;
  overflow: hidden;
}
.sec3 .boxImg {
  width: 100%;
  height: auto;
}

.sec3 .sec3_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}

.sec3 .sec3_bg .content_bg {
  width: 65vw;
  height: 70%;
  background-image: url(../picture/bottom-bg.png);
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8%;
  padding-left: 4%;
  padding-right: 6%;
}

.sec3 .sec3_bg .content_bg .top {
  width: 100%;
  /* height: 100%; */
  display: flex;
  align-items: start;
}

.sec3 .sec3_bg .content_bg .top .left {
  width: 17.5%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.sec3 .sec3_bg .content_bg .top .left .imgLetf {
  width: 100%;
  height: auto;
}

.sec3 .sec3_bg .content_bg .top .right {
  width: 82.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98%;
}

.sec3 .sec3_bg .content_bg .top .btn_left {
  width: 35px;
}

.sec3 .sec3_bg .content_bg .top .lunbo {
  flex-grow: 1;
  height: 100%;
}

.sec3 .sec3_bg .content_bg .top .btn_right {
  width: 35px;
}

.sec3 .sec3_bg .content_bg .bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 15%;
}

.sec3 .sec3_bg .content_bg .bottom img {
  width: 26%;
}

* {
  box-sizing: border-box;
}

.boxImg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: center;
}

.smallPicBg {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 7px;
}

.smallPicBg img {
  width: 100%;
  display: block;
  vertical-align: center;
}

.smallPicBg .layer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.m_sec1 {
  position: relative;
}
.m_sec1 .m_logo {
  width: 68%;
  position:absolute;
  top:8%;
  left:20%
}

.m_sec1 .contentImgs {
  display: flex;
  justify-content: space-between;
  position:absolute;
  width:100%;
  left:0;
  bottom:2%;
}

.m_sec1 .contentImgs .m_person_left {
  width: 42%;
  display: block;
  margin-left:-5%;
}
.m_sec1 .contentImgs .m_person {
  width: 60%;
  display: block;
  position:absolute;
  left:25%;
  bottom:40%;
}
.m_sec1 .contentImgs .m_person_right {
  width: 35%;
  display: block;
  margin-right:-8%;
  margin-bottom:40px;
}
.m_sec1 .m_float_bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  z-index: 20;
  position: absolute;
  bottom:5%;
}
.m_sec1 .m_float_bg .m_topbtns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m_sec1 .m_float_bg .m_topbtns img {
  width: 30%;
  margin: 0 20px;
}

.m_sec2 {
  position: relative;
  overflow: hidden;
}

.m_sec2 .contentImgs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 20px;
}

.m_sec2 .contentImgs .ctop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

img {
  width: 100%;
  display: block;
  vertical-align: center;
}

.m_sec3 {
  width: 100%;
  background-image: url(../picture/m_bottom_bg2.jpg);
  background-size: 100% 100%;
}
