html,
body,
p {
  padding: 0;
  margin: 0;
}

html {
  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #17171a;
}

div {
  box-sizing: border-box;
}

@media (min-width: 950px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    background: #17171a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 999;
  }

  .header .left {
    display: flex;
    align-items: center;
  }

  .header .left .logo {
    display: flex;
    align-items: center;
  }

  .header .left .logo>img {
    height: 44px;
    object-fit: contain;
  }

  .header .left .tabs {
    color: #e5e5e5;
    font-size: 14px;
    margin: 0 24px;
    font-weight: 500;
    cursor: pointer;
    border: none;
  }

  .header .right {
    display: flex;
    align-items: center;
  }

  .header .right .icon {
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .right .icon img {
    width: 24px;
    height: 24px;
  }

  .header .right .downloadApp {
    align-items: center;
    background-color: #62eef8;
    border-radius: 50px;
    box-sizing: border-box;
    color: #001f29;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    justify-content: center;
    margin-right: 10px;
    min-width: 67px;
    padding: 4px 20px;
    transition: background .2s ease;
    width: 144px;
    margin-left: 24px;
    cursor: pointer;
    border: none;
    position: relative;
  }

  .header .right .downloadApp .iconImg {
    width: 24px;
    height: 24px;
    background: url('../img/download.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
    margin-right: 8px;
    transition: background .2s ease;
  }

  .header .right .downloadApp:hover {
    background-color: #084456;
    color: #fff;
  }

  .header .right .downloadApp:hover .iconImg {
    background-image: url('../img/downloadhover.png');
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-sidebar {
    display: none;
  }

  .overlay {
    display: none;
  }

  .banner {
    margin: 64px 0 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: url("../img/bg1.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner .sectionContent {
    width: 70%;
  }

  .banner .sectionContent .title {
    font-size: 94px;
    font-weight: 700;
    color: #fff;
  }

  .banner .sectionContent .title span {
    color: #00f0ff;
  }

  .banner .sectionContent .desc {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
  }

  .banner .sectionContent .popupContainerDiv {
    display: flex;
  }

  .banner .sectionContent .popupContainer {
    width: 175px;
    height: 50px;
    align-items: center;
    background-color: #62eef8;
    border-radius: 12px;
    color: #001f29;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 50px;
    padding: 0 20px;
    transform: scale(1);
    transition: all .3s ease, transform .3s ease !important;
    margin-top: 32px;
    font-weight: 500;
    position: relative;
    margin-right: 24px;
  }

  .banner .sectionContent .popupContainer2 {
    background-color: #ffffff60;
    backdrop-filter: blur(4px);
  }

  .banner .sectionContent .popupContainer .rightIcon {
    width: 24px;
    height: 24px;
    background: url('../img/rightIcon.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
  }

  .banner .sectionContent .popupContainer:hover {
    background-color: #001f29;
    transform-origin: 70% 70%;
    color: #62eef8
  }

  .banner .sectionContent .popupContainer:hover .rightIcon {
    width: 24px;
    height: 24px;
    background: url('../img/rightIcon1.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
  }

  .featureSection .sectionContent {
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 40px 0;
  }

  .featureSection .sectionContent .title {
    color: #172326;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
  }

  .featureSection .sectionContent .desc {
    color: #172326;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 24px 0 0;
  }

  .featureSection .sectionContent .cardImg {
    width: 520px;
    height: 363px;
    margin: 32px auto 0;
  }

  .featureSection .featureList {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
  }

  .featureSection .featureList .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .featureSection .featureList .featureItem {
    width: 542px;
    background: #17171a;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    margin: 16px;
  }

  .featureSection .featureList .featureItem .title {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #e5e5e5;
  }

  .featureSection .featureList .featureItem .title>img {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }

  .featureSection .featureList .featureItem .desc {
    color: #9d9da6;
    font-size: 20px;
    font-weight: 400;
    margin-top: 16px;
    text-align: left;
  }

  .faqSection .sectionContent .faqList .faqItem {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
  }

  .faqSection .sectionContent .faqList .faqItem .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: inherit;
  }

  .faqSection .sectionContent .faqList .faqItem .title .titleText {
    font-size: 28px;
    color: #e5e5e5;
    display: flex;
    flex: 1;
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .faqSection .sectionContent .faqList .faqItem .title .desc {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .faqSection .sectionContent .faqList .faqItem .title .desc.arrow-up {
    transform: rotate(180deg);
  }

  .faqSection .sectionContent .faqList .faqItem .desc {
    font-family: HarmonyOS_Sans_Regular;
    color: #9d9d9d;
    font-size: 20px;
    font-weight: 400;
    overflow: hidden;
    text-align: left;
    transition: height 0.3s ease;
  }

  .picWallSection {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    position: relative;
    width: 100vw;
  }

  .picWallSection .sectionContent {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .picWallSection .sectionContent .title {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: #e5e5e5;
  }

  .picWallSection .sectionContent .avatarSlide {
    margin-top: 80px;
    width: 110%;
  }

  .picWallSection .sectionContent .avatarSlide .firstRow {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }

  .cardSizeSmall {
    border-radius: 15px;
    margin-left: 25px;
    height: 300px;
    width: 264px;
    position: relative;
  }

  .cardSizeSmall .avatar {
    border-radius: 15px;
    height: 100%;
    opacity: 0;
    width: 100%;
  }

  .cardSizeMedium {
    border-radius: 15px;
    margin-left: 25px;
    height: 300px;
    width: 300px;
    position: relative;
  }

  .cardSizeMedium .avatar {
    border-radius: 15px;
    height: 100%;
    opacity: 0;
    width: 100%;
  }

  .cardSizeLong {
    border-radius: 15px;
    margin-left: 25px;
    height: 300px;
    width: 396px;
    position: relative;
  }

  .cardSizeLong .avatar {
    border-radius: 15px;
    height: 100%;
    opacity: 0;
    width: 100%;
  }

  .avatarVideo {
    border-radius: 25px;
    height: auto;
    left: 0;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    transform: scale(1);
    transform-origin: center;
    transition: transform .15s ease-out;
    width: auto;
  }

  .cardSizeLong .popIcon3 {
    display: block;
    height: 65px;
    position: absolute;
    right: -40px;
    top: -60px;
    transform-origin: 0 100%;
    width: 90px;
    z-index: 100;
  }
}

@media (max-width: 949px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 56px;
    background: #17171a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
  }

  .header .left {
    display: flex;
    align-items: center;
  }

  .header .left .logo {
    display: flex;
    align-items: center;
  }

  .header .left .logo>img {
    height: 36px;
    object-fit: contain;
  }

  .header .left .tabs {
    display: none;
  }

  .header .right .icon {
    display: none;
  }

  .header .right {
    display: flex;
    align-items: center;
  }

  .header .right .downloadApp {
    align-items: center;
    background-color: #62eef8;
    border-radius: 50px;
    box-sizing: border-box;
    color: #001f29;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    justify-content: center;
    min-width: 80px;
    padding: 4px 12px;
    transition: background .2s ease;
    margin-right: 12px;
    cursor: pointer;
    border: none;
    position: relative;
  }

  .header .right .downloadApp .iconImg {
    width: 18px;
    height: 18px;
    background: url('../img/download.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
    margin-right: 6px;
  }

  .header .right .downloadApp:hover {
    background-color: #084456;
    color: #fff;
  }

  .header .right .downloadApp:hover .iconImg {
    background-image: url('../img/downloadhover.png');
  }

  .mobile-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #17171a;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 60px;
  }

  .mobile-sidebar.show {
    transform: translateX(0);
  }

  .sidebar-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
  }

  .close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  .sidebar-content {
    padding: 20px;
  }

  .sidebar-tabs {
    color: #e5e5e5;
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }

  .sidebar-language {
    display: flex;
    align-items: center;
    color: #e5e5e5;
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    margin-top: 10px;
  }

  .sidebar-language img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .overlay.show {
    display: block;
  }

  .banner {
    margin: 56px 0 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: url("../img/bg1.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .banner .sectionContent {
    width: 100%;
  }

  .banner .sectionContent .title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
  }

  .banner .sectionContent .title span {
    color: #00f0ff;
  }

  .banner .sectionContent .desc {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: 16px;
  }

  .banner .sectionContent .popupContainerDiv {
    display: flex;
    flex-direction: column;
  }

  .banner .sectionContent .popupContainer {
    width: 100%;
    height: 44px;
    align-items: center;
    background-color: #62eef8;
    border-radius: 12px;
    color: #001f29;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
    margin-top: 24px;
    font-weight: 500;
    position: relative;
  }

  .banner .sectionContent .popupContainer2 {
    background-color: #ffffff60;
    backdrop-filter: blur(4px);
  }

  .banner .sectionContent .popupContainer .rightIcon {
    width: 24px;
    height: 24px;
    background: url('../img/rightIcon.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
  }

  .banner .sectionContent .popupContainer:hover {
    background-color: #001f29;
    transform-origin: 70% 70%;
    color: #62eef8;
  }

  .banner .sectionContent .popupContainer:hover .rightIcon {
    width: 24px;
    height: 24px;
    background: url('../img/rightIcon1.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
  }

  .featureSection .sectionContent {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 40px 0;
  }

  .featureSection .sectionContent .title {
    color: #172326;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }

  .featureSection .sectionContent .desc {
    color: #172326;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 24px 0 0;
  }

  .featureSection .sectionContent .cardImg {
    width: 90%;
    height: auto;
    margin: 32px auto 0;
  }

  .featureSection .featureList {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    width: 100%;
  }

  .featureSection .featureList .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .featureSection .featureList .featureItem {
    width: 100%;
    background: #17171a;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    margin: 8px 0;
  }

  .featureSection .featureList .featureItem .title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #e5e5e5;
  }

  .featureSection .featureList .featureItem .title>img {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }

  .featureSection .featureList .featureItem .desc {
    color: #9d9da6;
    font-size: 14px;
    font-weight: 400;
    margin-top: 16px;
    text-align: left;
  }

  .faqSection .sectionContent .faqList .faqItem {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }

  .faqSection .sectionContent .faqList .faqItem .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: inherit;
  }

  .faqSection .sectionContent .faqList .faqItem .title .titleText {
    font-size: 20px;
    color: #e5e5e5;
    display: flex;
    flex: 1;
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .faqSection .sectionContent .faqList .faqItem .title .desc {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .faqSection .sectionContent .faqList .faqItem .title .desc.arrow-up {
    transform: rotate(180deg);
  }

  .faqSection .sectionContent .faqList .faqItem .desc {
    font-family: HarmonyOS_Sans_Regular;
    color: #9d9d9d;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-align: left;
    transition: height 0.3s ease;
  }

  .picWallSection {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 20px;
    position: relative;
    width: 100vw;
    box-sizing: border-box;
  }

  .picWallSection .sectionContent {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .picWallSection .sectionContent .title {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: #e5e5e5;
    padding: 0 20px;
  }

  .picWallSection .sectionContent .avatarSlide {
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
  }

  .picWallSection .sectionContent .avatarSlide .firstRow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 20px;
    width: 100%;
    gap: 15px;
    overflow: hidden;
  }

  .cardSizeSmall,
  .cardSizeMedium,
  .cardSizeLong {
    border-radius: 15px;
    margin: 0;
    position: relative;
    flex: 0 0 auto;
    height: 200px;
  }

  .cardSizeSmall {
    width: calc(200px * 0.88);
  }

  .cardSizeMedium {
    width: 200px;
  }

  .cardSizeLong {
    width: calc(200px * 1.32);
  }

  .cardSizeSmall .avatar,
  .cardSizeMedium .avatar,
  .cardSizeLong .avatar {
    border-radius: 15px;
    height: 100%;
    opacity: 0;
    width: 100%;
    object-fit: cover;
  }

  .avatarVideo {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transform: none;
    transition: transform .15s ease-out;
  }

  .cardSizeLong .popIcon3 {
    display: block;
    height: 65px;
    position: absolute;
    right: -40px;
    top: -60px;
    transform-origin: 0 100%;
    width: 90px;
    z-index: 100;
  }
}

.container {
  margin: -1px 0 0;
  height: 616px;
  background: #17171a;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

.container .containerBox {
  width: 1200px;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1200px;
  max-width: 1200px;
  flex-shrink: 0;
  margin: 0 auto;
}

.container .centerBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 376px;
  height: 376px;
  border-radius: 24px;
  background: url('../img/centerBlock.webp') no-repeat center center;
  background-size: 100% 100%;
  color: #172326;
  font-size: 58px;
  font-weight: 700;
  text-align: center;
}

.container .block {
  width: 376px;
  height: 376px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.container .leftBlock {
  height: 376px;
  width: 376px;
  position: absolute;
  left: 0;
}

.container .rightBlock {
  height: 376px;
  width: 376px;
  position: absolute;
  right: 0;
}

.container .leftBlock .flipAnimate,
.container .rightBlock .flipAnimate {
  animation: flip 6s infinite ease-in-out;
  transform-style: preserve-3d;
  animation-fill-mode: both;
}

.container .leftBlock .flipAnimate:nth-child(1) {
  animation-delay: 0s;
}

.container .leftBlock .flipAnimate:nth-child(2) {
  animation-delay: 0.1s;
}

.container .leftBlock .flipAnimate:nth-child(3) {
  animation-delay: 0.2s;
}

.container .leftBlock .flipAnimate:nth-child(4) {
  animation-delay: 0.3s;
}

.container .leftBlock .flipAnimate:nth-child(5) {
  animation-delay: 0.4s;
}

.container .leftBlock .flipAnimate:nth-child(6) {
  animation-delay: 0.5s;
}

.container .leftBlock .flipAnimate:nth-child(7) {
  animation-delay: 0.6s;
}

.container .leftBlock .flipAnimate:nth-child(8) {
  animation-delay: 0.7s;
}

.container .leftBlock .flipAnimate:nth-child(9) {
  animation-delay: 0.8s;
}

.container .rightBlock .flipAnimate:nth-child(1) {
  animation-delay: 0.9s;
}

.container .rightBlock .flipAnimate:nth-child(2) {
  animation-delay: 1s;
}

.container .rightBlock .flipAnimate:nth-child(3) {
  animation-delay: 1.1s;
}

.container .rightBlock .flipAnimate:nth-child(4) {
  animation-delay: 1.2s;
}

.container .rightBlock .flipAnimate:nth-child(5) {
  animation-delay: 1.3s;
}

.container .rightBlock .flipAnimate:nth-child(6) {
  animation-delay: 1.4s;
}

.container .rightBlock .flipAnimate:nth-child(7) {
  animation-delay: 1.5s;
}

.container .rightBlock .flipAnimate:nth-child(8) {
  animation-delay: 1.6s;
}

.container .rightBlock .flipAnimate:nth-child(9) {
  animation-delay: 1.7s;
}

.container .block .flipAnimate {
  position: relative;
  width: 112px;
  height: 112px;
}

.container .block .flipAnimate>img {
  width: 112px;
  height: 112px;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.container .block .flipAnimate .back {
  transform: rotateY(180deg);
}

@keyframes flip {

  0%,
  42% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  92% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.featureSection {
  width: 100%;
  height: auto;
  background: url('../img/fengmian.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.featureSection .sideVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.faqSection {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 120px 40px;
  width: 100%;
}

.faqSection .sectionContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.faqSection .sectionContent .title {
  font-size: 64px;
  color: #e5e5e5;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.faqSection .sectionContent .faqList {
  margin: 48px 0 0;
  max-width: 1200px;
  width: 100%;
}

.faqSection .sectionContent .faqList .faqItem {
  width: 100%;
}

.faqSection .sectionContent .faqList .faqItem .showDesc {
  height: auto;
  padding: 16px 0;
  white-space: pre-line;
}

.faqSection .sectionContent .faqList .faqItem .hideDesc {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.copyright {
  width: 100%;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.aniSection {
  padding: 30px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.aniSection .bannerImage {
  height: auto;
  margin-bottom: 30px;
  transform-origin: 50% 100%;
  width: 70%;
}

.aniSection .catAni {
  height: 100px;
  position: absolute;
  width: 200px;
}

.language-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 15px;
  gap: 5px;
  position: relative;
}

.sidebar-language {
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

/* 通用语言选项样式 - 默认隐藏 */
.language-options {
  display: none;
  margin-top: 10px;
  padding: 8px 0;
  border-radius: 4px;
  background: #0000004f;
}

/* 语言选项显示状态 */
.language-options.show {
  display: block;
}

/* 移动端侧边栏语言选择器样式 */
.sidebar-language {
  position: relative;
  cursor: pointer;
  font-size: 16px;
}

/* 侧边栏语言选项样式 */
#mobileLangOptions {
  position: relative;
  margin-left: 15px;
  margin-top: 8px;
  width: 120px;
}

/* 语言选项子项样式 */
.language-option {
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.language-option:hover {
  background: #e0e0e0;
}

/* 桌面端语言选择器样式（补充） */
.language-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 10px;
}

#desktopLangOptions {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.language-option {
  padding: 8px 15px;
  cursor: pointer;
}

.language-option:hover {
  background: #f5f5f5;
}

.popupContainerDown {
  display: none;
  left: 0;
  padding: 14px 0 0;
  position: absolute;
  top: 40px;
  z-index: 10;
}

.qrAppDownLoadPopup {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn {
  align-items: center;
  background-color: #e2fdfd;
  border-radius: 30px;
  color: #001f29;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  padding: 0 12px;
  transition: background-color .3s ease, transform .3s ease !important;
  width: 160px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn {
  margin-bottom: 20px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn:last-child {
  margin-bottom: 0px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn {
  align-items: center;
  background-color: #e2fdfd;
  border-radius: 30px;
  color: #001f29;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  padding: 0 12px;
  transition: background-color .3s ease, transform .3s ease !important;
  width: 160px;
}


.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn .appleStores {
  width: 20px;
  height: 20px;
  background-image: url('../img/app1.png');
  background-size: cover;
  margin-right: 12px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn .googlePlay {
  width: 20px;
  height: 20px;
  background-image: url('../img/app2.png');
  background-size: cover;
  margin-right: 12px;
}

.qrAppDownLoadPopup .qrCodeAndBtns .btnGroup .btn .H5 {
  width: 20px;
  height: 20px;
  background-image: url('../img/app3.png');
  background-size: cover;
  margin-right: 12px;
}

/* 下载按钮容器 - 相对定位（关键） */
.downloadApp {
  position: relative;
  cursor: pointer;
  /* 提示可交互 */
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 你的自定义样式 + 默认隐藏 + z-index保证层级 */
.downloadNowBox {
  display: none;
  /* 默认隐藏 */
  position: absolute;
  top: 56px;
  right: 0;
  padding: 12px;
  border-radius: 12px;
  background: #00000088;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  /* 确保在最上层 */
}

.downloadNowBox .btn {
  align-items: center;
  background-color: #e2fdfd;
  border-radius: 30px;
  color: #001f29;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  padding: 0 12px;
  transition: background-color .3s ease, transform .3s ease !important;
  width: 160px;
  margin: 12px;
}

.downloadNowBox .btn .appleStores {
  width: 20px;
  height: 20px;
  background-image: url('../img/app1.png');
  background-size: cover;
  margin-right: 12px;
}

.downloadNowBox .btn .googlePlay {
  width: 20px;
  height: 20px;
  background-image: url('../img/app2.png');
  background-size: cover;
  margin-right: 12px;
}

.downloadNowBox .btn .H5 {
  width: 20px;
  height: 20px;
  background-image: url('../img/app3.png');
  background-size: cover;
  margin-right: 12px;
}

.registerFix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: #00000090;
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0;
}

.registerFix.show {
  display: flex;
}

.registerFix .register {
  background: #000000c2;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

@media (min-width: 950px) {
  .registerFix .register {
    width: 80%;
    padding: 64px 0;
  }

  .registerFix .register .registerLeft {
    width: 40%;
    border-radius: 28px;
    overflow: hidden;
  }

  .registerFix .register .registerLeft>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
  }

  .registerFix .register .registerRight {
    width: 50%;
    height: 100%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 40px;
  }

  .registerRight-title {
    font-family: MiSans, MiSans;
    font-weight: 600;
    font-size: 38px;
    color: #FFFFFF;
    font-style: normal;
  }

  .registerRight-txt1 {
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    font-style: normal;
    margin-top: 24px;
    margin-bottom: 6px;
  }

  .registerRight-inputTxt {
    margin: 24px 0 12px 0;
    font-family: MiSans, MiSans;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    font-style: normal;
  }

  .registerRight-input {
    width: 100%;
    padding: 14px 16px;
    background: #F6F6F6;
    border-radius: 8px;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 14px;
    color: rgba(23, 23, 23, 0.64);
  }

  .registerRight-input>input {
    all: unset;
    width: 100%;
    height: 100%;
  }

  .register-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }

  .register-button .tijiao {
    width: 180px;
    margin: 36px 0 0 0;
    padding: 12px 0;
    text-align: center;
    background-color: #62eef8;
    border-radius: 4px;
    color: #001f29;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }
}

@media (max-width: 949px) {
  .registerFix .register .registerLeft {
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .registerFix .register {
    width: 90%;
    padding: 24px 0 0;
  }

  .registerFix .register .registerRight {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px;
  }

  .registerRight-title {
    font-family: MiSans, MiSans;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    font-style: normal;
  }

  .registerRight-txt1 {
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    font-style: normal;
    margin-top: 12px;
  }

  .registerRight-inputTxt {
    margin: 12px 0 6px 0;
    font-family: MiSans, MiSans;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    font-style: normal;
  }

  .registerRight-input {
    width: 100%;
    padding: 12px 12px;
    background: #F6F6F6;
    border-radius: 8px;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 12px;
    color: rgba(23, 23, 23, 0.64);
  }

  .registerRight-input>input {
    all: unset;
    width: 100%;
    height: 100%;
  }

  .register-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .register-button .tijiao {
    width: 100%;
    margin: 24px 0 24px 0;
    padding: 10px 0;
    text-align: center;
    background-color: #62eef8;
    border-radius: 4px;
    color: #001f29;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  .error-tip {
    font-size: 11px;
    margin-top: 2px;
  }
}

.error-tip {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  z-index: 10;
}

.password-toggle-icon:hover {
  color: #62eef8;
}

.password-input-wrapper input {
  padding-right: 40px !important;
}

@media (max-width: 949px) {
  .password-toggle-icon {
    right: 12px;
  }

  .password-input-wrapper input {
    padding-right: 36px !important;
  }
}

.verify-code-box {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.verify-code-box input {
  flex: 1;
}

.verify-code-box input:focus {
  outline: none;
  border-color: #409eff;
}

.get-verify-code-btn {
  width: 200px;
  padding: 0 12px;
  background-color: #409eff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  user-select: none;
  margin-left: 12px;
}

.get-verify-code-btn:disabled {
  background-color: #c0c4cc;
  cursor: not-allowed;
}

.get-verify-code-btn:hover:not(:disabled) {
  background-color: #66b1ff;
}