html,
body,
#app,
#app > div {
  width: 100%;
  height: 100% !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 100%;
}
/* 语言切换样式 */
.lang-switcher {
  position: fixed;
  top: 50px;
  right: 250px;
  z-index: 100;
}
.lang-switcher .lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 8px 16px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  cursor: pointer;
  transition: background 0.3s;
}
.lang-switcher .lang-selector:hover {
  background: rgba(0, 0, 0, 0.8);
}
.lang-switcher .lang-selector .lang-current {
  color: #fff;
  font-size: 14px;
}
.lang-switcher .lang-selector .lang-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: transform 0.3s;
}
.lang-switcher .lang-selector .lang-arrow.active {
  transform: rotate(180deg);
}
.lang-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.lang-switcher .lang-dropdown .lang-option {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-switcher .lang-dropdown .lang-option:hover {
  background: rgba(152, 74, 254, 0.5);
  color: #fff;
}
.lang-switcher .lang-dropdown .lang-option.active {
  background: rgba(152, 74, 254, 0.7);
  color: #fff;
}
.tab-wrapper {
  position: fixed;
  top: 30.6vh;
  /* 距离屏幕顶部2/3位置 */
  right: 60px;
  width: 8vw;
  z-index: 10;
}
.charge-img {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 16vh;
  height: auto;
  cursor: pointer;
  animation: zoomInOut 1s infinite;
}
@keyframes zoomInOut {
0%,
  100% {
    transform: scale(1);
    /* 原始大小 */
}
50% {
    transform: scale(1.1);
    /* 放大到1.5倍 */
}
}
.tabs {
  width: 8vw;
  position: relative;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.tabs ::-webkit-scrollbar {
  display: none;
}
.tabs .tab-item {
  padding: 1vh;
  cursor: pointer;
  position: relative;
  margin: 0 5px;
  font-weight: 400;
  font-size: 0.1rem;
  color: rgba(255, 255, 255, 0.4);
}
.tab-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 30vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 49%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0px 0px 0px 0px;
}
.tab-indicator {
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAJlJREFUeNqlkk0NwCAMhbniACso2GUG5mIeJgABaEAOShDQNdl7W5OGC3vJd+kPbR4N27kHIiJJuZQunzpiydbapkMZMhFyB+ttE9WUrESQnxiEZq7HSRdedGBdTk420FAQlaoMUJSIXOOAYIzISBbxqshlGhYE4qsTg8a7DfSj0a9axau4VSfmFGNOnZiz9h3LB7B+cqtHfgP2KFJ/4DqlPwAAAABJRU5ErkJggg==);
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: -9px;
  /* 调整圆圈位置 */
}
.tabs .active {
  font-size: 0.12rem;
  color: #ffffff;
  bottom: 6px;
}
.swipper-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 1;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  width: 100% !important;
}
.first-page-wrapper {
  width: 100%;
  height: 100%;
  background-image: url(../img/web_bg_one.93b7a1b4.webp);
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.first-page-wrapper .animation-logo-wrapper {
  width: 40vw;
  height: 30vh;
  margin-top: 10vh;
}
.first-page-wrapper .slogon-wrapper {
  height: 9vh;
  margin-top: 1%;
}
.first-page-wrapper .more-wrapper {
  height: 5vh;
  margin-top: 2%;
}
.first-page-wrapper .swipper-content2 {
  position: absolute;
  bottom: 10px;
  height: 22vh;
  width: 100%;
}
.first-page-wrapper .swipper-content2 .swiper-slide2 {
  width: calc(100% / 5 - 100px) !important;
  height: 1000%;
  background: none;
}
.first-page-wrapper .swipper-content2 .swiper-bottom-wrapper {
  width: 95%;
  background-size: cover;
  background-repeat: no-repeat;
}
.second-page-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url(../img/pc-bg.8fcde12a.webp);
  background-size: cover;
  display: flex;
}
.third-page-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url(../img/pc-bg.8fcde12a.webp);
  background-size: cover;
  display: flex;
}
.four-page-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url(../img/pc-bg.8fcde12a.webp);
  background-size: cover;
  display: flex;
}
.six-page-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url(../img/pc-bg.8fcde12a.webp);
  background-size: cover;
  display: flex;
}
.six-page-wrapper .slogon2-wrapper {
  width: 50%;
  height: auto;
  margin-top: 20vh;
}
.six-page-wrapper .down-left {
  color: #fff;
}
.six-page-wrapper .qrcode {
  width: 100%;
  margin: 0 10px 10px 0;
}
.six-page-wrapper .down-wrapper {
  box-sizing: border-box;
  display: flex;
  max-width: 50vw;
  max-height: 60vh;
  margin-top: 2vh;
}
.six-page-wrapper .down-wrapper .qr-wrapper {
  flex: 2;
  width: 10vw;
  height: 10vw;
}
.six-page-wrapper .down-wrapper .button-wrapper {
  flex: 3;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.six-page-wrapper .down-wrapper .button-wrapper .button-top {
  width: 17vw;
  /* 设置图片宽度 */
  height: auto;
  /* 自适应高度 */
  margin-top: 6px;
}
.six-page-wrapper .down-wrapper .button-wrapper .button-bottom {
  width: 17vw;
  /* 设置图片宽度 */
  height: auto;
  /* 自适应高度 */
  margin-top: 2vh;
}
.six-page-wrapper .name-wrapper2 {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 12px;
  margin-top: 14px;
  padding-left: 15px;
  margin-bottom: 50px;
}
.five-page-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  position: relative;
}
.five-page-wrapper .five-wrapper {
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0px;
  left: 0;
}
.five-page-wrapper .join-wrapper {
  width: 20vw;
  height: 35vh;
}
.logo-wrapper {
  position: absolute;
  width: 120px;
  left: 70px;
  top: 70px;
}
.pic-wrapper {
  max-width: 45%;
  margin-top: 5%;
  margin-left: 1%;
}
.pic-wrapper2 {
  max-width: 35%;
  max-height: 80%;
  flex-shrink: 0;
  margin-top: 5%;
  margin-left: 5%;
}
.name-wrapper {
  text-align: left;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 10px;
  color: #ffffff;
  line-height: 12px;
  margin-top: 42px;
  padding-left: 15px;
}
.right-wrapper {
  max-width: 30vw;
  max-height: 30vh;
  margin-top: 8vh;
  margin-left: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beauty-wrapper {
  max-width: 35%;
  max-height: 40%;
  margin-top: 15%;
  margin-left: 50px;
}
.name-wrapper3 {
  position: absolute;
  right: 1vw;
  bottom: 1vh;
  width: 15vw;
  height: 4vh;
  background-image: url(../img/name.bcc57d2d.png);
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  z-index: 20;
}
.join-pop {
  position: fixed;
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居上 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.pop {
  width: 35vw;
  height: 40vh;
  background-image: url(../img/join_bg.108ba00b.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.name-img {
  height: 15px;
  position: absolute;
  right: 50px;
  top: 100px;
}
.lianxi-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url(../img/pc-bg.8fcde12a.webp);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lianxi-wrapper .title {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.lianxi-wrapper .form {
  width: 20%;
  min-width: 400px;
  margin: auto 0;
}
.lianxi-wrapper .form .el-form-item__label {
  color: #fff;
  line-height: 0;
  width: 100%;
}
.lianxi-wrapper .form .el-form-item {
  margin-bottom: 30px;
}
.lianxi-wrapper .form .el-form-item__content {
  width: 100% !important;
}
.lianxi-wrapper .form .el-select {
  text-align: left !important;
  width: 100%;
  position: relative;
}
.lianxi-wrapper .form .el-form-item__error {
  color: #ff4d4f;
  position: absolute;
  right: -50%;
  top: 30%;
  pointer-events: none;
}
.lianxi-wrapper .form .re-btn {
  width: 50%;
  height: 40px;
  border-radius: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 15px;
  background-color: #c489fe;
  margin: 0 auto;
  cursor: pointer;
}
.lianxi-wrapper .form .re-btn:hover {
  background-color: #984afe;
}
.lianxi-wrapper .form .is-max .el-input__count {
  color: #ff4d4f !important;
}

