@charset "UTF-8";

/* ============================================
   CYBER NAUTICAL THEME - Deep Navy & Cyan Glow
   Complete CSS
   ============================================ */

/* ----------------------
   RESET & BASE STYLES
   ---------------------- */
* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  background-color: #9195a3;
}

body {
  height: auto;
}

#app {
  width: 10rem;
  height: fit-content;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: var(--bg_color_L1);
}

.norem-app {
  width: 5rem;
}

/* ----------------------
   RESPONSIVE BREAKPOINTS
   ---------------------- */
@media screen and (max-width: 500px) {
  #app {
    width: 100%;
    min-height: 100vh;
  }
  #app::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  .van-popup.van-popup--bottom {
    max-width: none;
  }
}

@media (min-width: 501px) {
  .van-popup.van-popup--bottom {
    max-width: 10rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .van-popup.van-popup--center {
    max-width: 10rem;
  }
}

@media screen and (min-width: 800px) {
  html {
    font-size: 2.5rem !important;
  }
}

@media (orientation: landscape) {
  html.landscape {
    font-size: 9vh !important;
  }
}

/* ----------------------
   FONTS
   ---------------------- */
@font-face {
  font-family: bahnschrift;
  font-weight: 500;
  src: url(/assets/woff2/bahnschrift-610d57ac.woff2);
}

@font-face {
  font-family: digitalDreamFat;
  src: url(/assets/ttf/digitalDreamFat-7e51cfaf.ttf) format("truetype");
}

/* ----------------------
   HTML ELEMENTS
   ---------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

svg {
  height: 100%;
}

:-webkit-any(article, aside, nav, section) h1 {
  font-size: 2em;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

input {
  -webkit-user-select: text;
  user-select: text;
  color: var(--text_color_L1);
}

input:focus {
  outline: 0.01333rem solid var(--Dividing-line_color);
  -webkit-user-select: text;
  user-select: text;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

[v-cloak] {
  display: none;
}

/* ----------------------
   CSS VARIABLES (THEME)
   ---------------------- */
:root {
  /* ===== Core Brand Colors ===== */
  --main-color: #00B4D8;
  --main_gradient-color: linear-gradient(90deg, #00F5FF 0%, #0077B6 100%);
  --main_gradient-color2: linear-gradient(90deg, #00F5FF 0%, #0077B6 100%);
  --light-main_gradient-color: var(--main_gradient-color);
  
  /* ===== Text Colors ===== */
  --text_white: #FFFFFF;
  --text_color_L1: #E0F7FA;
  --text_color_L2: #80DEEA;
  --text_color_L3: #4A627A;
  --text_color_L4: #FFFFFF;
  
  /* ===== Backgrounds & Overlays ===== */
  --light-bg_white: #0A192F;
  --bg_color_L1: #0B1E33;
  --bg_color_L2: #071423;
  --bg_color_L3: #0A1424;
  --Dividing-line_color: #1E3A5F;
  --sheet_detail_bg_color: #0F223A;
  
  /* ===== Neon Blue Highlights ===== */
  --norm_bule-color: #00B4D8;
  --norm_blue_color: #48CAE4;
  --norm_blue2_color: #00F5FF;
  --norm_blue3_color: #90E0EF;
  --norm_Purple-color: #5E60CE;
  --norm_purple1_color: #6C63FF;
  --norm_purple2_color: #7B2CBF;
  
  /* ===== Status Colors ===== */
  --norm_red-color: #FF5A5F;
  --norm_green-color: #06FFA5;
  --Secondary_red_color: #E63946;
  --Secondary_green_color: #2DCB7A;
  --Secondary_Color1: #3A2E3A;
  --Secondary_Color2: #1A3A2A;
  --norm_Orange_color: #0B1E33;
  --norm_Orange2_color: #00B4D8;
  --norm_brown_color: ##6C63FF;
  
  /* ===== Gradient & Accent Glows ===== */
  --Secondary_moto_Color9: #FF4D6D;
  --Secondary_moto_Color8: #331C2C;
  --button_dis_color: linear-gradient(90deg, #2C3E50 15.38%, #1A2A3A 98.73%);
  --pop_bg-color: linear-gradient(180deg, #1E3A8A 0%, #0F172A 100%);
  
  /* ===== Cyan Glow Effects ===== */
  --icon1: rgba(0, 180, 216, 0.7);
  --icon2: rgba(0, 245, 255, 0.3);
  --iconSecondary: rgba(6, 255, 165, 0.3);
  
  /* ===== Tab Colors ===== */
  --tab1: #00B4D8;
  --tab2: #48CAE4;
  --sheet_nva_color: var(--main-color);
  
  /* ===== Component Overrides ===== */
  --van-sidebar-text-color: var(--main-color);
  --van-picker-background: var(--bg_color_L2);
  --van-picker-option-text-color: var(--text_color_L2);
  --van-picker-confirm-action-color: var(--main-color);
  --van-checkbox-checked-icon-color: var(--main-color);
  --van-checkbox-label-color: var(--text_color_L2);
  --van-field-input-text-color: var(--text_color_L1);
  --van-radio-checked-icon-color: var(--main-color);
  --van-grid-item-content-background: var(--bg_color_L1);
  --van-text-color: var(--text_color_L1);
  --van-dialog-background: var(--bg_color_L2);
  --van-circle-color: var(--main-color);
  --van-circle-layer-color: var(--bg_color_L3);
  --van-calendar-range-edge-background: var(--main-color);
  --van-button-primary-background: var(--main-color);
  --van-button-primary-border-color: var(--main-color);
  
  /* ===== Light Sky Blue Button ===== */
  --light-sky-blue-btn: #90E0EF;
  --light-sky-blue-btn-hover: #00B4D8;
}

:root [class*="van-hairline"]:after {
  content: none;
}

/* ----------------------
   UTILITY CLASSES
   ---------------------- */
.c-row {
  display: flex;
}

.c-row-middle-center {
  justify-content: center;
  align-items: center;
}

.c-row-between {
  justify-content: space-between;
}

.c-row-middle {
  align-items: center;
}

.c-flex-warp {
  flex-wrap: wrap;
}

.c-flew-end {
  justify-content: flex-end;
}

.c-tc {
  text-align: center;
}

.m-b-5 {
  margin-bottom: 0.13333rem;
}

.m-r-5 {
  margin-right: 0.13333rem;
}

.p-r-10 {
  padding-right: 0.26667rem;
}

.p-l-10 {
  padding-left: 0.26667rem;
}

.p-b-10 {
  padding-bottom: 0.26667rem;
}

.p-t-10 {
  padding-top: 0.26667rem;
}

/* ----------------------
   MARGIN / PADDING UTILITIES
   ---------------------- */
.mt0, .pt0 { margin-top: 0 !important; padding-top: 0 !important; }
.mb0, .pb0 { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.ml0, .pl0 { margin-left: 0 !important; padding-left: 0 !important; }
.mr0, .pr0 { margin-right: 0 !important; padding-right: 0 !important; }

.mt2 { margin-top: 0.05333rem !important; }
.mb2 { margin-bottom: 0.05333rem !important; }
.ml2 { margin-left: 0.05333rem !important; }
.mr2 { margin-right: 0.05333rem !important; }

.mt4 { margin-top: 0.10667rem !important; }
.mb4 { margin-bottom: 0.10667rem !important; }

.mt5 { margin-top: 0.13333rem !important; }
.mb5 { margin-bottom: 0.13333rem !important; }

.mt6 { margin-top: 0.16rem !important; }
.mb6 { margin-bottom: 0.16rem !important; }

.mt8 { margin-top: 0.21333rem !important; }
.mb8 { margin-bottom: 0.21333rem !important; }

.mt10 { margin-top: 0.26667rem !important; }
.mb10 { margin-bottom: 0.26667rem !important; }

.mt12 { margin-top: 0.32rem !important; }
.mb12 { margin-bottom: 0.32rem !important; }

.mt14 { margin-top: 0.37333rem !important; }
.mb14 { margin-bottom: 0.37333rem !important; }

.mt15 { margin-top: 0.4rem !important; }
.mb15 { margin-bottom: 0.4rem !important; }

.mt16 { margin-top: 0.42667rem !important; }
.mb16 { margin-bottom: 0.42667rem !important; }

.mt18 { margin-top: 0.48rem !important; }
.mb18 { margin-bottom: 0.48rem !important; }

.mt20 { margin-top: 0.53333rem !important; }
.mb20 { margin-bottom: 0.53333rem !important; }

.mt24 { margin-top: 0.64rem !important; }
.mb24 { margin-bottom: 0.64rem !important; }

.mt25 { margin-top: 0.66667rem !important; }
.mb25 { margin-bottom: 0.66667rem !important; }

.mt30 { margin-top: 0.8rem !important; }
.mb30 { margin-bottom: 0.8rem !important; }

.mt32 { margin-top: 0.85333rem !important; }
.mb32 { margin-bottom: 0.85333rem !important; }

.mt35 { margin-top: 0.93333rem !important; }
.mb35 { margin-bottom: 0.93333rem !important; }

.mt36 { margin-top: 0.96rem !important; }
.mb36 { margin-bottom: 0.96rem !important; }

.mt40 { margin-top: 1.06667rem !important; }
.mb40 { margin-bottom: 1.06667rem !important; }

.mt45 { margin-top: 1.2rem !important; }
.mb45 { margin-bottom: 1.2rem !important; }

.mt50 { margin-top: 1.33333rem !important; }
.mb50 { margin-bottom: 1.33333rem !important; }

.mt56 { margin-top: 1.49333rem !important; }
.mb56 { margin-bottom: 1.49333rem !important; }

.mt60 { margin-top: 1.6rem !important; }
.mb60 { margin-bottom: 1.6rem !important; }

.mt65 { margin-top: 1.73333rem !important; }
.mb65 { margin-bottom: 1.73333rem !important; }

.mt66 { margin-top: 1.76rem !important; }
.mb66 { margin-bottom: 1.76rem !important; }

.mt75 { margin-top: 2rem !important; }
.mb75 { margin-bottom: 2rem !important; }

.mt80 { margin-top: 2.13333rem !important; }
.mb80 { margin-bottom: 2.13333rem !important; }

.mt85 { margin-top: 2.26667rem !important; }
.mb85 { margin-bottom: 2.26667rem !important; }

.mt90 { margin-top: 2.4rem !important; }
.mb90 { margin-bottom: 2.4rem !important; }

.mt95 { margin-top: 2.53333rem !important; }
.mb95 { margin-bottom: 2.53333rem !important; }

.mt100 { margin-top: 2.66667rem !important; }
.mb100 { margin-bottom: 2.66667rem !important; }

/* Font Size Utilities */
.fz0 { font-size: 0 !important; }
.fz2 { font-size: 0.05333rem !important; }
.fz4 { font-size: 0.10667rem !important; }
.fz5 { font-size: 0.13333rem !important; }
.fz6 { font-size: 0.16rem !important; }
.fz8 { font-size: 0.21333rem !important; }
.fz10 { font-size: 0.26667rem !important; }
.fz12 { font-size: 0.32rem !important; }
.fz14 { font-size: 0.37333rem !important; }
.fz15 { font-size: 0.4rem !important; }
.fz16 { font-size: 0.42667rem !important; }
.fz18 { font-size: 0.48rem !important; }
.fz20 { font-size: 0.53333rem !important; }
.fz24 { font-size: 0.64rem !important; }
.fz25 { font-size: 0.66667rem !important; }
.fz30 { font-size: 0.8rem !important; }
.fz32 { font-size: 0.85333rem !important; }
.fz35 { font-size: 0.93333rem !important; }
.fz36 { font-size: 0.96rem !important; }
.fz40 { font-size: 1.06667rem !important; }
.fz45 { font-size: 1.2rem !important; }
.fz50 { font-size: 1.33333rem !important; }
.fz56 { font-size: 1.49333rem !important; }
.fz60 { font-size: 1.6rem !important; }
.fz65 { font-size: 1.73333rem !important; }
.fz66 { font-size: 1.76rem !important; }
.fz75 { font-size: 2rem !important; }
.fz80 { font-size: 2.13333rem !important; }
.fz85 { font-size: 2.26667rem !important; }
.fz90 { font-size: 2.4rem !important; }
.fz95 { font-size: 2.53333rem !important; }
.fz100 { font-size: 2.66667rem !important; }

/* Float Utilities */
.fl { float: left; }
.fr { float: right; }

/* Font Weight */
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }

/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

/* ----------------------
   FLEX UTILITIES (X-PREFIX)
   ---------------------- */
.x-page {
  padding: 0.4rem;
}

.x-row {
  display: flex;
}

.x-row-middle {
  align-items: center;
}

.x-row-center {
  justify-content: center;
}

.x-row-middle-center {
  justify-content: center;
  align-items: center;
}

.x-column {
  flex-direction: column;
}

.x-row-around {
  justify-content: space-around;
}

.x-row-between {
  justify-content: space-between;
}

.x-flew-end {
  justify-content: flex-end;
}

.x-flex-warp {
  flex-wrap: wrap;
}

.x-flex {
  flex: 1;
}

.x-pa {
  position: absolute;
}

.x-pr {
  position: relative;
}

.x-pf {
  position: fixed;
}

.x-tc {
  text-align: center;
}

.x-tr {
  text-align: right;
}

.x-tl {
  text-align: left;
}

.x-foot {
  position: fixed;
  max-width: 10rem;
  width: 100%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.x-btn {
  color: var(--text_color_L2);
  height: 1.06667rem;
  font-weight: 600;
  background: var(--button_dis_color);
}

.x-btn:active {
  background: var(--main_gradient-color);
  color: var(--text_color_L4);
}

.x-btn-plain {
  height: 1.06667rem;
  border-color: #e6e7eb;
  background: #f5f6fa;
  color: var(--text_color_L2) !important;
  font-weight: 600;
}

.x-btn-plain:active {
  background: none;
}

.x-btn-gray {
  height: 1.06667rem;
  font-weight: 600;
  background-color: var(--gray-1);
  border-color: var(--gray-1);
  color: var(--white);
}

.x-input {
  background-color: var(--white);
  color: var(--f666);
  height: 1.17333rem;
}

.x-hand {
  position: absolute;
  bottom: -0.93333rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10001;
}

/* ----------------------
   COMPONENT STYLES
   ---------------------- */

/* Toast */
.van-toast {
  word-break: break-word !important;
}

/* Buttons */
.cg-default.van-button {
  font-weight: 700;
  font-size: 0.4rem;
}

.cg-default.van-button .van-button__icon {
  height: 100%;
  display: flex;
  align-items: center;
}

.cg-default.van-button .van-button__icon > img {
  height: 80%;
}

/* Dialog */
.isAppForcedDownloadEnabled-dialog {
  z-index: 9999999 !important;
}

/* Popup */
.popup {
  border-radius: 0.26667rem 0.26667rem 0 0;
  z-index: 2006;
  left: auto;
  overflow-y: visible;
  position: fixed;
  max-height: 100%;
}

.popup-center {
  top: 50%;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  transform: translateY(-50%);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.PreSaleRule {
  width: 7.04rem;
}

.Tips {
  width: 8rem;
  height: 2.13333rem;
  line-height: 2.13333rem;
  background: var(--whiteBg);
  border: 0.01333rem solid var(--borderColor-5);
  border-radius: 0.26667rem;
  display: flex;
  justify-content: center;
  top: 80%;
}

.firstSaveDialog {
  width: 8rem;
  overflow: initial;
}

.firstSaveDialog .van-dialog__header {
  padding-top: 0;
}

.custom18dialog {
  width: 8.4rem;
}

.msg-window {
  padding: 0.13333rem 0.26667rem;
  width: 9.33333rem;
}

.msg-window .msg-header {
  color: var(--text_color_L1);
  font-size: 0.32rem;
}

.msg-window .msg-footer {
  color: var(--main-color);
  font-size: 0.32rem;
  padding-top: 0.32rem;
}

.msg-window .msg-footer div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.msg-window .msg-footer img {
  width: 0.4rem;
  height: 0.4rem;
}

.noOverHidden {
  overflow: inherit;
}

/* SVG Icon */
.svg-icon {
  width: 1em;
  height: 1em;
  fill: var(--svgHoticon);
  vertical-align: middle;
}

/* Text */
.text-dots {
  line-height: 0.453334rem;
  width: 2.13333rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.must:before {
  content: "*";
  color: #fb5151;
}

/* Content Area */
.content {
  padding: 0 0.32rem;
  background: var(--bg_color_L1) !important;
}

/* Flex Center */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------
   TABBAR
   ---------------------- */
.tabbar__container {
  position: fixed;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: flex-end;
  width: 10rem;
  transform: translateX(-50%);
  height: 1.73333rem;
  padding-block: 0 0.13333rem;
  font-size: 0.29333rem;
  background: url(/assets/png/tabBarBg-cb733401.webp) no-repeat center center/cover;
  z-index: 100;
}

.tabbar__container-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.11707rem;
  color: var(--text4, var(--text_color_L2));
}

.tabbar__container-item:nth-of-type(3) {
  position: relative;
}

.tabbar__container-item:nth-of-type(3) svg {
  position: relative;
  top: -0.4rem;
  width: 0.7504rem;
  height: 0.65rem;
  z-index: 3;
}

.tabbar__container-item:nth-of-type(3) svg path {
  fill: #fff !important;
}

.tabbar__container-item:nth-of-type(3) .promotionBg {
  position: absolute;
  left: 50%;
  bottom: 0.53333rem;
  transform: translateX(-50%);
  background: var(--bg_color_L2);
  width: 1.46667rem;
  height: 1.46667rem;
  border-radius: 50%;
  z-index: 2;
}

.tabbar__container-item:nth-of-type(3) .promotionBg:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--main_gradient-color2);
}

.tabbar__container-item:nth-of-type(3) .turntableBg {
  position: absolute;
  left: 50%;
  bottom: 0.08rem;
  transform: translateX(-50%);
  background-image: var(--6ab3f23e-getInvitedWheelImgUrl);
  background-repeat: no-repeat;
  background-size: cover;
  width: 2.04rem;
  height: 2.04rem;
  z-index: 2;
}

.tabbar__container-item:nth-of-type(3) .turntable-text {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.21333rem;
  z-index: 3;
  font-size: 0.34667rem;
  font-weight: 600;
  color: var(--main-color);
  min-width: 2.44rem;
}

.tabbar__container-item svg {
  display: block;
  width: 0.5776rem;
  height: 0.59387rem;
}

.tabbar__container-item span {
  line-height: 0.37333rem;
  height: 0.37333rem;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.tabbar__container-item.active {
  color: var(--main-color) !important;
}

@media screen and (max-width: 500px) {
  .tabbar__container {
    width: 100%;
    left: 0;
    transform: translateX(0);
  }
}

/* ----------------------
   NAVBAR
   ---------------------- */
.navbar {
  height: 1.22667rem;
  z-index: 100;
  flex: none;
}

.navbar.activity .navbar-fixed {
  background: var(--main_gradient-color);
}

.navbar.activity .navbar-fixed .navbar__content-left .van-icon {
  color: var(--text_color_L1);
}

.navbar.lottery .navbar-fixed {
  background: var(--bg_color_L2);
}

.navbar.lottery .navbar-fixed .navbar__content-left .van-icon,
.navbar.lottery .navbar-fixed .navbar__content-center {
  color: var(--text_color_L1);
}

.navbar.main .navbar-fixed {
  background: var(--light-main_gradient-color, var(--bg_color_L2));
}

.navbar.main .navbar-fixed .navbar__content-left .van-icon,
.navbar.main .navbar-fixed .navbar__content-center {
  color: #fff;
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  width: 10rem;
  transform: translateX(-50%);
  -webkit-user-select: none;
  user-select: none;
  z-index: 101;
  background: var(--bg_color_L2);
  color: var(--text_color_L1);
}

.navbar__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.22667rem;
  color: var(--text_color_L1);
}

.navbar__content-left {
  position: absolute;
  left: 0.32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
}

.navbar__content-left .van-icon {
  color: var(--text_color_L1);
  font-size: 0.48rem;
}

.navbar__content-center {
  font-size: 0.48rem;
  line-height: 0.48rem;
}

.navbar__content-center .headLogo {
  width: 2.98667rem;
  height: 1.12rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.navbar__content-right {
  position: absolute;
  right: 0.32rem;
}

@media screen and (max-width: 500px) {
  .navbar-fixed {
    width: 100%;
    left: 0;
    transform: translateX(0);
  }
}

/* ----------------------
   CUSTOMER SERVICE
   ---------------------- */
.customer {
  position: fixed;
  bottom: 2.4rem;
  right: 0.4rem;
  width: 1.49333rem;
  height: 1.49333rem;
  border-radius: 50%;
  z-index: 108;
}

.customer img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* ----------------------
   START PAGE
   ---------------------- */
.start-page {
  position: fixed;
  z-index: 9999;
  width: 10rem;
  height: 100%;
  background: linear-gradient(180deg, #FF962C 0%, #FD5810 100%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-page div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.start-page div .dice {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/png/start-4688a3c2.webp);
  width: 9.14667rem;
  height: 7.44rem;
  background-size: cover;
}

.start-page div .logo {
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 2.13333rem;
  max-width: 50%;
}

.start-page div .logo.vxth {
  margin-top: 40%;
}

.start-page div p {
  font-weight: 700;
  font-size: 0.50667rem;
  color: var(--text_color_L4);
  margin-top: 0.4rem;
  padding: 0 0.13333rem;
  text-align: center;
}

/* ----------------------
   HEADER
   ---------------------- */
.header {
  min-height: 1.86667rem;
  background-color: var(--bg_color_L3);
  color: var(--text_color_L1);
  padding-top: 0.33333rem;
  border-radius: 0.26667rem 0.26667rem 0 0;
}

.header .title {
  font-size: 0.37333rem;
}

.header .tip {
  font-size: 0.29333rem;
  font-weight: 400;
  margin-top: 0.26667rem;
}

/* ----------------------
   CONTAINER
   ---------------------- */
.container {
  padding: 0.26667rem 0.13333rem;
  background-color: var(--bg_color_L2);
  max-height: calc(100vh - 8.4rem);
  overflow: auto;
}

.container .first_list-item {
  box-shadow: none;
}

/* ----------------------
   FOOTER
   ---------------------- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 1.33333rem;
  background-color: var(--bg_color_L3);
  padding: 0 0.26667rem;
  border-radius: 0 0 0.26667rem 0.26667rem;
}

.footer .btn {
  background: var(--main_gradient-color);
  width: 2.66667rem;
  min-height: 0.66667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.33333rem;
  text-align: center;
  color: var(--text_color_L4);
  font-size: 0.37333rem;
  font-weight: 700;
}

.footer .active {
  color: var(--text_color_L2);
  font-size: 0.32rem;
  background-repeat: no-repeat;
  background-size: 0.48rem;
  background-position: left;
  display: flex;
  gap: 0.16rem;
  align-content: center;
}

/* ----------------------
   CLOSE BUTTON
   ---------------------- */
.close {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.93333rem;
  background-image: url(/assets/png/close-862c6a4d.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ----------------------
   SECOND VERIFICATION (PIN)
   ---------------------- */
.second-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg_color_L1) !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.13333rem;
}

.second-verification .head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.41333rem;
  font-size: 0.48rem;
  position: relative;
}

.second-verification .head .out {
  color: var(--norm_bule-color);
  font-size: 0.4rem;
  position: absolute;
  right: 0.26667rem;
  top: 50%;
  transform: translateY(-50%);
}

.pin-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.21333rem;
}

.pin-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.26667rem;
  margin-bottom: 3rem;
}

.pin-input .pin-box {
  height: 0.64rem;
  width: 0.64rem;
  border-radius: 50%;
  border: 0.01333rem solid var(--text_color_L1);
}

.pin-input .pin-box.a {
  background: var(--text_color_L1);
}

.pin-input .tip {
  text-align: center;
  color: var(--text_color_L2);
  font-size: 0.32rem;
  margin-bottom: 0.13333rem;
}

.errorText {
  color: var(--norm_red-color);
  text-align: center;
  margin-bottom: 0.13333rem;
}

.numeric-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1.17333rem;
  gap: 0.10667rem;
  -webkit-user-select: none;
  user-select: none;
}

.key {
  border: none;
  border-radius: 0.16rem;
  background: var(--bg_color_L2);
  font-size: 0.48rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.key:active {
  background: var(--bg_color_L3);
}

.key--danger {
  background: var(--norm_red-color);
  color: var(--text_color_L4);
}

.key--placeholder {
  visibility: hidden;
}

/* ----------------------
   REWARD DIALOG
   ---------------------- */
.reward-dialog .title {
  width: 4rem;
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-family: Roboto;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  height: 1.41333rem;
}

.reward-dialog .container {
  height: 8.8rem;
  padding: 0 0.32rem;
  background: var(--bg_color_L1);
  overflow-y: auto;
}

.reward-dialog.van-dialog {
  width: 8.29333rem;
  background: var(--bg_color_L1) url(/assets/png/reward_bg-e5a247a8.webp) no-repeat center/cover;
  overflow: inherit;
}

.reward-dialog.van-dialog .van-dialog__content {
  padding-bottom: 0.26667rem;
}

.reward-dialog.van-dialog .van-dialog__header {
  padding: 0.34667rem 0.42667rem 0.13333rem;
}

.reward-dialog.van-dialog .close {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.93333rem;
  background-image: url(/assets/png/close-862c6a4d.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ----------------------
   DIALOG WRAPPER
   ---------------------- */
.dialog-wrapper {
  padding: 0.26667rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-wrapper img {
  width: 3.73333rem;
  height: 2.16rem;
  position: relative;
  margin-top: -0.74667rem;
}

.dialog-wrapper .dialog-title {
  color: var(--text_color_L1);
  margin: 0.4rem 0 0.26667rem;
  font-size: 0.48rem;
  font-weight: 700;
}

.dialog-wrapper .dialog-tips,
.dialog-wrapper .dialog-receive {
  color: var(--text_color_L2);
  font-size: 0.32rem;
  margin: 0 0 0.32rem;
}

.dialog-wrapper .dialog-receive {
  text-align: center;
  margin: 0.13333rem 0.32rem 0;
}

.dialog-wrapper .dialog-para {
  color: var(--text_color_L2);
  font-size: 0.32rem;
}

.dialog-wrapper .dialog-btn {
  width: 5.6rem;
  height: 1.06667rem;
  text-align: center;
  line-height: 1.06667rem;
  background: var(--GradiantBlue, var(--main_gradient-color));
  border-radius: 1.06667rem;
  font-weight: 700;
  color: var(--text_color_L4);
  font-size: 0.42667rem;
  margin-top: 0.53333rem;
}

.dialog-wrapper .dialog-content {
  display: flex;
  align-items: center;
  color: var(--norm_secondary-color);
}

.dialog-wrapper .dialog-content img {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 0.13333rem 0 0;
}

.dialog-wrapper .dialog-footer {
  position: relative;
  bottom: -1.46667rem;
}

.dialog-wrapper .dialog-footer img {
  width: 0.8rem;
  height: 0.8rem;
}

/* 18+ Dialog */
.custom18dialog .dialog-18 {
  border-radius: 0.16rem;
  height: 6.66667rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0.53333rem;
  background: var(--bg_color_L2);
}

.custom18dialog .dialog-18 .icon18 {
  display: block;
  height: 1.30667rem;
  width: 1.30667rem;
  margin: 0 auto;
}

.custom18dialog .dialog-18 span:nth-child(1) {
  display: block;
  font-size: 0.53333rem;
  color: var(--text_color_L1);
  margin: 0.53333rem 0 0.18667rem;
  font-weight: 600;
}

.custom18dialog .dialog-18 .tip_txt {
  font-size: 0.34667rem;
  color: var(--text_color_L2);
  margin-bottom: 0.77333rem;
}

.custom18dialog .dialog-18 .dialog-footer .dialog-btn {
  margin: 0 auto 0.32rem;
  width: 7.33333rem;
  height: 1.06667rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.16rem;
  font-size: 0.37333rem;
  font-weight: 500;
}

.custom18dialog .dialog-18 .dialog-footer .btn-cnf {
  background: var(--main_gradient-color);
}

.custom18dialog .dialog-18 .dialog-footer .btn-cancel {
  border: 0.01333rem solid var(--main-color);
  color: var(--main-color);
}

.noAge .dialog-18 {
  height: 5.06667rem;
}

.noAge .dialog-18 .dialog-footer {
  margin-top: 0.53333rem;
}

/* ----------------------
   IOS DIALOG
   ---------------------- */
.iosDialog {
  padding: 0.53333rem 0.32rem;
}

.iosDialog .title {
  color: var(--text_color_L1, #1e2637);
  font-size: 0.48rem;
  font-weight: 600;
  margin-bottom: 0.53333rem;
}

.iosDialog .websit_info {
  padding: 0.24rem 0.37333rem;
  border-radius: 0.13333rem;
  background: var(--bg_color_L3, #f6f6f6);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.53333rem;
}

.iosDialog .websit_info img {
  border-radius: 0.28125rem;
  width: 1.44rem;
  height: 1.44rem;
  margin-right: 0.32rem;
  box-shadow: 0 0.02667rem 0.05333rem #b0baca80;
}

.iosDialog .websit_info .link div:nth-child(1) {
  color: var(--text_color_L1);
  font-size: 0.42667rem;
  font-weight: 500;
  margin-bottom: 0.05333rem;
}

.iosDialog .websit_info .link div:nth-child(2) {
  color: var(--text_color_L2);
  font-size: 0.37333rem;
  font-weight: 500;
}

.iosDialog .text {
  font-size: 0.42667rem;
  color: var(--text_color_L2);
  margin-bottom: 0.48rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.iosDialog .text svg {
  width: 0.42667rem;
  margin-left: 0.21333rem;
}

.iosDialog .text img {
  width: 0.56rem;
  height: 0.56rem;
  margin: 0 0.24rem;
}

.iosDialog .text span {
  margin-left: 0.21333rem;
  border-radius: 0.05333rem;
  padding: 0 0.16rem;
  color: var(--text_color_L1);
  background: var(--bg_color_L3);
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* ----------------------
   SEARCHBAR
   ---------------------- */
.ar {
  position: fixed;
  top: 0.93333rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 10rem;
  -webkit-user-select: none;
  user-select: none;
  z-index: 100;
  padding: 0 0.29333rem;
}

.ar-searchbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.29333rem;
  width: 100%;
  font-size: 0.37333rem;
  margin-top: 0.26667rem;
  margin-bottom: 0.21333rem;
}

.ar-searchbar input {
  width: 3.6rem;
  height: 1.06667rem;
  padding: 0 0.26667rem;
  font-weight: 400;
  border: none;
  border-radius: 0.13333rem;
}

.ar-searchbar input::placeholder {
  color: var(--colorText-63);
}

.ar-searchbar__selector {
  position: relative;
  display: flex;
  width: 4.53333rem;
  height: 1.06667rem;
  color: var(--text_color_L2);
}

.ar-searchbar__selector > div {
  width: 100%;
  line-height: 1.06667rem;
  border-radius: 0.13333rem;
  background: var(--darkBg, var(--bg_color_L2));
}

.ar-searchbar__selector > div:first-of-type {
  position: relative;
  padding: 0 0.26667rem;
  z-index: 10;
}

.ar-searchbar__selector > div:first-of-type i {
  position: absolute;
  top: 50%;
  right: 0.21333rem;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.ar-searchbar__selector-dropdown {
  position: absolute;
  top: 100%;
  transform: translateY(-10%);
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  border: 0.01333rem solid var(--text_color_L1);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.ar-searchbar__selector-dropdown li {
  padding: 0 0.26667rem;
  list-style: none;
}

.ar-searchbar__selector-dropdown li.selected {
  color: #fff;
  background-color: var(--norm_red-color);
}

.ar-searchbar__selector.active {
  z-index: 9;
}

.ar-searchbar__selector.active > div:first-of-type i {
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
}

.ar-searchbar__selector.active > div:last-of-type {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.ar-searchbar__selector .selectorA {
  color: var(--colorText-63);
}

.ar-searchbar > i {
  font-size: 1.625rem;
}

@media screen and (max-width: 500px) {
  .ar {
    max-width: none;
  }
}

/* ----------------------
   1PX BORDER UTILITIES
   ---------------------- */
.ar-1px-t,
.ar-1px-b,
.ar-1px-tb,
.ar-1px-rb,
.ar-1px-l,
.ar-1px-r {
  position: relative;
}

.ar-1px-t:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 0.01333rem;
  border-top: 0.01333rem solid #e6e8e8;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}

.ar-1px-b:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.01333rem;
  border-bottom: 0.01333rem solid var(--Dividing-line_color);
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}

.ar-1px-l:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.01333rem;
  bottom: 0;
  border-left: 0.01333rem solid #e6e8e8;
  transform-origin: 0 0;
  transform: scaleX(0.5);
}

.ar-1px-r:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.01333rem;
  bottom: 0;
  border-right: 0.01333rem solid #e6e8e8;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}

.ar-1px-rb:before {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.01333rem;
  bottom: 0;
  border-right: 0.01333rem solid #e6e8e8;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}

.ar-1px-rb:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.01333rem;
  border-bottom: 0.01333rem solid #e6e8e8;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}

.ar-1px-tb:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 0.01333rem;
  border-top: 0.01333rem solid #e6e8e8;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}

.ar-1px-tb:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.01333rem;
  border-bottom: 0.01333rem solid #e6e8e8;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}

/* ----------------------
   DAILY SIGN IN RULES
   ---------------------- */
.dailySignInRules__container-hero {
  display: flex;
  margin: 0.13333rem auto 0.53333rem;
  border-radius: 0.26667rem;
  overflow: hidden;
}

.dailySignInRules__container-hero__wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.dailySignInRules__container-hero__wrapper-titlebox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  color: var(--text_color_L1);
}

.dailySignInRules__container-hero__wrapper ul {
  width: 100%;
}

.dailySignInRules__container-hero__wrapper ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.dailySignInRules__container-hero__wrapper ul li div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.37333rem;
  padding: 0.34667rem 0;
  border-bottom: 0.01333rem solid var(--bgcolor-54);
}

.dailySignInRules__container-hero__wrapper-title {
  width: 100%;
  height: 1.06667rem;
  padding-block: 0.34667rem;
  font-size: 0.42667rem;
  line-height: 0.32rem;
  text-align: center;
  background: var(--main_gradient-color2);
}

.dailySignInRules__container-hero__wrapper-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.dailySignInRules__container-hero__wrapper-content > div {
  width: 100%;
  padding: 0.34667rem 0;
  font-size: 0.37333rem;
  line-height: 0.37333rem;
  text-align: center;
  border-bottom: 0.01333rem solid var(--bgColor-10);
}

.dailySignInRules__container-hero__wrapper-content > div:last-of-type {
  border-bottom: none;
}

/* ----------------------
   NOTICE BAR
   ---------------------- */
.noticeBar__container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 0.98667rem;
  padding-inline: 0.26667rem;
  color: #303a4c;
  font-size: 0.32rem;
  border-radius: 99rem;
  background: #fff;
  gap: 0.10667rem;
}

#app .noticeBar__container {
  background: var(--bg_color_L2);
  color: var(--text_color_L1);
}

.noticeBar__container .notice_svg {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/svg/noticeBarSpeaker-1fb24b6f.svg);
  background-size: cover;
  width: 0.42667rem;
  height: 0.42667rem;
  flex: none;
  margin-right: 0.13333rem;
}

.noticeBar__container-body {
  width: 9.33333rem;
  height: 100%;
  overflow: hidden;
  position: relative;
  height: 0.8rem;
  line-height: 0.98667rem;
  display: flex;
  align-items: center;
}

.noticeBar__container-body-text {
  width: 100%;
  height: fit-content;
  max-height: 0.98667rem;
  line-height: 0.49333rem;
  animation: marquee 7s linear infinite;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
}

@keyframes marquee {
  0% {
    transform: translateY(100%);
  }
  10% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

.noticeBar__container > svg {
  width: 0.42667rem;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.22667rem;
}

.noticeBar__container button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.06667rem;
  width: 2rem;
  height: 0.66667rem;
  margin-left: auto;
  color: var(--text_color_L4);
  border: 0.01333rem solid var(--main-color);
  border-radius: 0.53333rem;
  background: var(--main_gradient-color);
}

.noticeBar__container button.hotIcon:before {
  content: "";
  display: block;
  width: 0.32rem;
  height: 0.32rem;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 0.32rem;
  color: #fff;
  background-image: url(/assets/svg/hot-6b4f650f.svg);
}

/* ----------------------
   LOADING COMPONENT
   ---------------------- */
.ar-loading-view {
  background-color: #0000004d;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  position: fixed;
}

.ar-loading-view .loading-animat {
  width: 4rem;
  height: 4rem;
}

.ar-loading-view .loading-wrapper {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
}

.ar-loading-view .loading-wrapper img {
  width: 2.66667rem;
}

.ar-loading-view .loading-wrapper .van-loading {
  z-index: 999;
}

.ar-loading-view .skeleton-wrapper {
  padding: 0.26667rem 0.13333rem;
}

.com__box {
  position: relative;
  width: 2.66667rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  transform: rotate(45deg);
  animation: animationContainer 1s ease infinite;
}

.shape {
  width: 0.66667rem;
  height: 0.66667rem;
  border-radius: 50%;
  position: absolute;
}

.shape-1 {
  background-color: #0c67d7;
  left: 0;
  animation: animationShape1 0.3s ease infinite alternate;
}

html:lang(ar) .shape-1 {
  right: 0;
  left: unset;
}

.shape-2 {
  background-color: #cd371c;
  right: 0;
  animation: animationShape2 0.3s ease infinite 0.3s alternate;
}

html:lang(ar) .shape-2 {
  right: unset;
  left: 0;
}

.shape-3 {
  background-color: #2c9d3f;
  bottom: 0;
  animation: animationShape3 0.3s ease infinite 0.3s alternate;
}

.shape-4 {
  background-color: #eca712;
  right: 0;
  bottom: 0;
  animation: animationShape4 0.3s ease infinite alternate;
}

@keyframes animationContainer {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes animationShape1 {
  0% {
    transform: translate(0.13333rem, 0.13333rem);
  }
  to {
    transform: translate(-0.08rem, -0.08rem);
  }
}

@keyframes animationShape2 {
  0% {
    transform: translate(-0.13333rem, 0.13333rem);
  }
  to {
    transform: translate(0.08rem, -0.08rem);
  }
}

@keyframes animationShape3 {
  0% {
    transform: translate(0.13333rem, -0.13333rem);
  }
  to {
    transform: translate(-0.08rem, 0.08rem);
  }
}

@keyframes animationShape4 {
  0% {
    transform: translate(-0.13333rem, -0.13333rem);
  }
  to {
    transform: translate(0.08rem, 0.08rem);
  }
}

/* ----------------------
   FIREBASE NOTIFY
   ---------------------- */
.firebase-notify-with-img.van-notify {
  display: flex;
  align-items: center;
  padding-left: 0.64rem;
  padding-right: 50%;
  background-color: #fff;
  color: #333;
  text-align: left;
  justify-content: start;
}

.firebase-notify-with-img.van-notify:after {
  content: "";
  position: absolute;
  right: 0.16rem;
  top: 0.26667rem;
  width: 50%;
  bottom: 0.26667rem;
  aspect-ratio: 1/1;
  background-image: var(--notify-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

/* ----------------------
   VAN CALENDAR OVERRIDES
   ---------------------- */
.van-calendar {
  background: var(--bg_color_L1);
}

.van-calendar .van-calendar__header {
  background: var(--bg_color_L2);
  color: var(--text_color_L1);
}

.van-calendar .van-calendar__header .van-calendar__weekdays {
  color: var(--text_color_L2);
}

.van-calendar .van-calendar__month-mark {
  color: #2b3270;
}

.van-picker__title,
.van-calendar__header-title,
.van-calendar__header-subtitle,
.van-calendar__day,
.van-calendar__month-title,
.van-dialog__header {
  color: var(--text_color_L1);
}

.van-collapse-item__content {
  background: var(--bg_color_L2);
}

/* ----------------------
   VAN FLOATING BUBBLE
   ---------------------- */
.van-floating-bubble {
  background: transparent !important;
  overflow: inherit;
}

/* ----------------------
   MISCELLANEOUS
   ---------------------- */
.fail_message_toast {
  width: 5.33333rem;
}

#app .swiper_box {
  padding: 0;
  margin-top: 0.26667rem;
  margin-bottom: 0.26667rem;
}

#app .daman-lottery .daman-btn {
  border-color: #fff;
}

#app .WinningTip__C-body-l3 .head {
  color: #f38524;
}

#app .WinningTip__C-body-l3 .bonus {
  color: #cf3131;
}

#app .K3__C .WinningTip__C-body-l2 .line2 div {
  background-color: var(--norm_green-color);
}

#app .WinningTip__C-body:not(.isL) {
  background-image: url(/assets/png/missningBg-78e01c86.webp);
}

#app .WinningTip__C-body:not(.isL) .WinningTip__C-body-l2 {
  margin-bottom: 1.33333rem;
}

#app .prompt-dialog .van-button {
  background: transparent;
}

#app .ruleHead svg {
  position: absolute;
  top: -0.02667rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 6.58667rem;
  height: 0.8rem;
  z-index: 1;
  color: var(--main-color);
}

body .van-popup--bottom .betting-container .header-left .select-text {
  color: var(--text_color_L1);
}

body .van-popup--bottom .betting-container {
  background: var(--bg_color_L1);
}

.mgt10 {
  margin-top: 0.13333rem !important;
}

.mgt40 {
  margin-top: 0.53333rem !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.fz0 {
  font-size: 0 !important;
}

/* ----------------------
   RIPPLE ANIMATION (X-HAND)
   ---------------------- */
.x-hand .ripple {
  width: 0.53333rem;
  height: 0.53333rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 #ffffffb3;
  animation: ripple 1.5s infinite;
}

.x-hand .ripple:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff4d;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-expand 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple-expand {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

.x-hand .img {
  display: block;
  margin: -0.26667rem;
}