@charset "UTF-8";
@import "../lib/layui/css/layui.css";
@font-face {
  font-family: "PingFang SC";
  src: url("/static/font/PingFang-Medium.ttf");
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

body {
  font-family: "PingFang SC", Arial, sans-serif !important;
  margin: 0;
  padding: 0;
  background: #0f0f12;
  color: #fff;
  font-size: 14px;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 830px;
  max-width: 50vw;
  height: 550px;
  z-index: -1;
  background: url(/static/assets/bg1.png) no-repeat;
  background-size: contain;
  background-position: left top;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 860px;
  max-width: 50vw;
  height: 550px;
  z-index: -1;
  background: url(/static/assets/bg2.png) no-repeat;
  background-size: contain;
  background-position: left top;
}

h1 {
  font-size: 20px;
}

.section-title {
  margin: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title a {
  display: block;
  font-size: 12px;
}

.header-banner {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.layui-container {
  width: min(100%, 1552px);
  margin: 0 auto;
}

.layui-input {
  border-radius: 6px;
  font-size: 12px;
}

.layui-input:focus {
  border-color: #e1e3ea !important;
  box-shadow: none;
}

.nav {
  width: 300px;
  display: flex;
  justify-content: space-between;
}

.nav-item {
  text-align: center;
}

.nav-item a:hover {
  position: relative;
  display: inline-block;
  color: #fa8c16;
}

.nav-item a:hover::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 3px;
  transform: scaleY(0.5);
  background: #fa8c16;
}

.text-omitted {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagination-container {
  margin: 24px auto;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pagination-container ul li {
  cursor: pointer;
  width: 32px;
  height: 32px;
  background: #444;
  text-align: center;
  color: rgb(130, 130, 130);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: rgb(113, 94, 255);
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 32px;
}
.pagination-container ul li.page-options a {
  width: 32px;
}
.pagination-container ul li.page-options a img {
  width: 5px;
}

.action-sheet-common {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000000000000000000000000;
  display: none;
}
.action-sheet-common.show {
  display: block;
}
.action-sheet-common .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.action-sheet-common .action-sheet-content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  background: #232323;
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
}
.action-sheet-common .action-sheet-item {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #232323;
  font-size: 16px;
  border-bottom: 1px solid #2d2d2d;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.action-sheet-common .action-sheet-item:last-child {
  border-top: 6px solid #2d2d2d;
}

.head-mobile-pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #121212;
  z-index: 1002;
  display: none;
  overflow-y: auto;
  padding-bottom: 40px;
}
.head-mobile-pop.show {
  display: block;
}
.head-mobile-pop .pop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  padding-bottom: 0;
}
.head-mobile-pop .pop-top img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}
.head-mobile-pop .pop-top .pop-close-btn {
  width: 20px;
  height: 20px;
}
.head-mobile-pop .pop-top .pop-close-btn.left-btn {
  width: 24px;
  height: 24px;
}
.head-mobile-pop .logo-img {
  display: flex;
  justify-content: center;
  margin-top: 44px;
  margin-bottom: 54px;
}
.head-mobile-pop .logo-img img {
  height: 48px;
  width: auto;
}
.head-mobile-pop .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  color: #797979;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.head-mobile-pop .logo-link.active {
  color: #fff;
}
.head-mobile-pop .logo-link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 24px;
  height: 2px;
  background: #7066FF;
}
.head-mobile-pop .pop-line {
  height: 1px;
  background: #444;
  margin: 32px 24px 28px;
}
.head-mobile-pop .lang-pop {
  display: flex;
  align-items: center;
  margin: 0 32px;
  padding-left: 16px;
  padding-right: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border-radius: 8px;
  height: 54px;
  background: #151515;
  border: 1px solid #444444;
  cursor: pointer;
}
.head-mobile-pop .lang-pop img:first-child {
  width: 14px;
  margin-right: 35px;
}
.head-mobile-pop .lang-pop .lang-pop-item {
  flex: 1;
}
.head-mobile-pop .lang-pop img:last-child {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.head-mobile-pop .mobile-lang-list {
  margin: 12px 32px 0;
  background: #151515;
  border: 1px solid #444444;
  border-radius: 8px;
  overflow: hidden;
}
.head-mobile-pop .mobile-lang-list .mobile-lang-option {
  padding: 16px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #444444;
}
.head-mobile-pop .mobile-lang-list .mobile-lang-option:last-child {
  border-bottom: none;
}
.head-mobile-pop .mobile-lang-list .mobile-lang-option:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.head-mobile-pop .mobile-lang-list .mobile-lang-option:active {
  background-color: #3C3C3C;
}
.head-mobile-pop .notice-pop {
  padding: 20px 24px;
  display: flex;
  align-items: center;
}
.head-mobile-pop .notice-pop .notice-pop-icon {
  width: 20px;
  margin-left: 13px;
  margin-right: 32px;
}
.head-mobile-pop .notice-pop .notice-pop-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  flex: 1;
}
.head-mobile-pop .notice-pop .notice-pop-item img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.head-mobile-pop .notice-pop .notice-btn .notice-close-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  color: #797979;
}
.head-mobile-pop .notice-pop .notice-btn .notice-close-btn .num {
  background: linear-gradient(90deg, #7066FF 0%, #B794FF 100%);
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.head-mobile-pop .pop-notice-list {
  border: 1px solid #715EFF;
  border-radius: 12px;
  overflow: hidden;
  margin-left: 32px;
  margin-right: 32px;
}
.head-mobile-pop .pop-notice-list .list-item {
  padding: 8px 20px;
}
.head-mobile-pop .pop-notice-list .list-item:last-child {
  border-bottom: none;
}
.head-mobile-pop .pop-notice-list .list-item .list-item-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.head-mobile-pop .pop-notice-list .list-item .list-item-title::before {
  content: "•";
  color: #715EFF;
  margin-right: 8px;
  font-size: 16px;
}
.head-mobile-pop .pop-notice-list .list-item .list-item-content {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 17px;
}

.new-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
}

.new-user-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.new-user-modal-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 800px;
  transform: translate(-50%, -50%);
}
.new-user-modal-main.new-user-modal-main-en .btn-animate-svg {
  top: 455px;
}
.new-user-modal-main.new-user-modal-main-en .user-close-svg {
  top: 610px;
}

.animated-reward-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.animated-reward-overlay.show {
  opacity: 1;
}

.animated-reward-modal {
  position: relative;
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-reward-modal .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
  pointer-events: none;
}

.animated-reward-modal .bg-open {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.animated-reward-modal .bg-glow {
  z-index: 3;
  position: absolute;
  width: 480px;
  top: -177px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.animated-reward-modal .reward-card {
  position: relative;
  width: 311px;
  background: linear-gradient(180deg, #C9E3FF 49.52%, #FFFFFF 100%);
  border-radius: 32px;
  padding: 24px 16px 18px;
  border: 1px solid #fff;
  text-align: center;
  padding-top: 150px;
  transform-style: preserve-3d;
  animation: cardFlipIn 0.5s ease-out forwards;
}
@media screen and (max-width: 768px) {
  .animated-reward-modal .reward-card {
    padding-top: 100px;
  }
}

@keyframes cardFlipIn {
  0% {
    transform: perspective(1000px) rotateY(180deg) scale(0.3);
    opacity: 0;
  }
  100% {
    transform: perspective(1000px) rotateY(0deg) scale(1);
    opacity: 1;
  }
}
.animated-reward-modal .reward-title {
  color: rgb(5, 5, 5);
  font-size: 22px;
}

.animated-reward-modal .reward-amount {
  margin: 10px 0 6px;
  margin-top: 0;
}

.animated-reward-modal .reward-amount .num {
  font-size: 48px;
  font-weight: 600;
  color: rgb(5, 5, 5);
  margin-right: 8px;
}

.animated-reward-modal .reward-amount .unit {
  font-size: 12px;
  color: #050505;
  font-weight: 600;
}

.animated-reward-modal .reward-btn {
  padding: 14px 60px;
  border: 0;
  outline: none;
  cursor: pointer;
  color: #fff;
  border-radius: 130px;
  background: linear-gradient(98.36deg, #FC01F6 -35.91%, #4F00FF 91.35%);
}

.animated-reward-modal .reward-tips {
  color: #050505;
  font-size: 12px;
  margin-top: 16px;
}

.animated-reward-modal .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("/static/assets/open.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
  filter: invert(1);
}

.animate-svg {
  width: 100%;
}

.btn-animate-svg {
  width: 230px;
  position: absolute;
  top: 420px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.user-close-svg {
  width: 30px;
  position: absolute;
  z-index: 3;
  top: 580px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity 0.5s ease;
}

@media screen and (max-width: 768px) {
  .new-user-modal-main {
    width: 350px;
    transform: translate(-50%, -40%);
  }
  .new-user-modal-main.new-user-modal-main-en .btn-animate-svg {
    top: 285px;
  }
  .new-user-modal-main.new-user-modal-main-en .user-close-svg {
    top: 435px;
  }
  .animate-svg {
    width: 100%;
    transform: scale(1.65);
  }
  .btn-animate-svg {
    width: 225px;
    top: 250px;
  }
  .user-close-svg {
    width: 24px;
    top: 408px;
  }
}

/*# sourceMappingURL=style.css.map */
