.SlotCenter_center__FOTk9 {
    flex: 1 1; /* 占据剩余的所有空间 */
    background-color: #f1f1f1; /* 浅灰色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.SlotFooter_footer__6X6JJ {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.7rem;
    background: rgba(16, 9, 37, 0.55);
    padding: 0 0.22rem;
    display: flex;
    align-items: center;
    font-size: 0.3rem;
    color: #fff;
    z-index: 900;
    text-align: center;
}
.SlotFooter_coin_box__Anwo6 {
    width: 2.47rem;
    height: 0.6rem;
    background: rgba(17, 9, 37, 0.9);
    border-radius: 0.05rem;
    margin-right: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.05rem;
}
.SlotFooter_btn_coin__oGjPw {
    width: 0.33rem;
    height: 0.55rem;
    background: #0090ff;
    line-height: 0.55rem;
}
.SlotFooter_btn_coin__oGjPw:nth-child(1) {
    background: #868495;
}
.SlotFooter_result_box__FzQDD {
    width: 3.8rem;
    height: 0.6rem;
    background: rgba(17, 9, 37, 0.9);
    border-radius: 0.05rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 1;
}
.SlotFooter_sm_font__KCcHF {
    font-size: 0.16rem;
}

.form_item__p5QB6 {
    padding-bottom: 0.7rem;
    position: relative;
}
.form_item_wrapper__g8yDZ {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e4e4e4;
    border-radius: 0.2rem;
    padding: 0 0.4rem;
    height: 1.2rem;
}

.form_main_input__EkK0R {
    flex: 1 1;
    color: #211f2c;
}

.form_main_input__EkK0R input {
    width: 100%;
    line-height: 0.8rem;
}

.form_errorTips__WnSjJ {
    position: absolute;
    bottom: 0.15rem;
    color: #db496f;
    padding: 0.2rem 0.5rem 0 0.5rem;
}

.button_bock__xgd5w {
    display: block;
    width: 100%;
    color: #fff;
}

.button_small__qGKbq {
    padding: 0 0.3rem;
    line-height: 0.75rem;
    color: #fff;
    border-radius: 0.75rem;
}

.button_loadingSpinner__VMAgK {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button_spin__iImNR 0.8s linear infinite;
}

@keyframes button_spin__iImNR {
    to {
        transform: rotate(360deg);
    }
}
.popover_popover__CoGNM {
    position: relative;
}

.popover_dialog__b_G5F {
    position: absolute;
    width: 2rem;
    max-height: 6rem;
    background: #fff;
    text-align: center;
    line-height: 0.75rem;
    border-radius: 0.1rem;
    margin-top: 0.15rem;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 20px) scale(0.8);
    transform-origin: 0 0;
    filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
    transition:
        all 0.4s ease,
        transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44),
        filter 0.3s ease 0.2s;
}

.popover_dialog__b_G5F.popover_open__7JBBw {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 12px) scale(1);
    filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}

.popover_dialog_content__iYcNq {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0.2rem 0;
}
.popover_dialog_content__iYcNq::before {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.2rem;
    background: #fff;
    top: -0.2rem;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.popover_arrow__dJF4T {
    margin-top: -0.75rem;
}

.popover_arrow_icon__fe5Zx {
    transform: rotate(180deg);
    width: 8px;
    height: 8px;
    color: #fff;
}

.popover_item__kh1ON {
    color: #95679d;
    font-weight: 700;
}
.popover_item__kh1ON:active,
.popover_item__kh1ON:hover {
    background: #dcd0e2;
}

/* 遮罩层样式 */
.SDialog_overlay__ghMmN {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    pointer-events: none; /* 禁止鼠标事件，直到弹窗显示 */
    transition: opacity 0.3s ease; /* 渐变显示效果 */
    opacity: 0;
}
.SDialog_overlay__ghMmN.SDialog_bottom__iTamQ {
    justify-content: center;
    align-items: end;
}
.SDialog_overlay__ghMmN.SDialog_show__yi0KU {
    opacity: 1;
    pointer-events: all; /* 弹窗显示后允许点击 */
}

.SDialog_overlay_hidden__NxXZJ {
    background: none;
    padding-top: 1.35rem;
}

/* 弹窗容器样式 */
.SDialog_container__7qZeu {
    border-radius: 0.3rem;
    padding: 0.5rem 0.2rem;
    width: 9.7rem;
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(360deg, #4250a2, #7520a1);

    transform: translateY(20px); /* 初始位置在下方 */
    opacity: 0; /* 初始透明度 */
    transition:
        transform 0.3s ease-out,
        opacity 0.3s ease-out; /* 进入时的动画效果 */
}

.SDialog_container__7qZeu.SDialog_showDialog__Nxwys,
.SDialog_full__kPJBV.SDialog_showDialog__Nxwys {
    /*transform: translateY(0); !* 向上移动到正常位置 *!*/
    /*opacity: 1; !* 显示 *!*/
    animation: SDialog_showDialogAni__iXHPy 0.3s ease forwards;
}

.SDialog_container__7qZeu.SDialog_hideDialog__8DOOt,
.SDialog_full__kPJBV.SDialog_hideDialog__8DOOt {
    animation: SDialog_hideDialogAni__EIyJe 0.3s ease forwards;
}

.SDialog_container__7qZeu.SDialog_showFlipDialog__YcDz0,
.SDialog_full__kPJBV.SDialog_showFlipDialog__YcDz0 {
    /*transform: translateY(0); !* 向上移动到正常位置 *!*/
    /*opacity: 1; !* 显示 *!*/
    animation-name: SDialog_flipIn__Va_MS;
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.SDialog_container__7qZeu.SDialog_hideFlipDialog__jGnQH,
.SDialog_full__kPJBV.SDialog_hideFlipDialog__jGnQH {
    animation-name: SDialog_flipOut__aA7oM;
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.SDialog_full__kPJBV {
    width: 100%;
    height: 100%;
    opacity: 0; /* 初始透明度 */
    transition:
        transform 0.3s ease-out,
        opacity 0.3s ease-out; /* 进入时的动画效果 */
}

/* 显示弹窗的动画 */
@keyframes SDialog_showDialogAni__iXHPy {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes SDialog_hideDialogAni__EIyJe {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}

@keyframes SDialog_flipIn__Va_MS {
    0% {
        opacity: 0;
        transform: perspective(600px) rotateX(0deg);
        transform-origin: center top;
        animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
    }
    50% {
        transform: perspective(600px) rotateX(-10deg);
        transform-origin: center top;
        animation-timing-function: ease-in;
    }
    100% {
        opacity: 1;
        transform: perspective(600px) rotateX(0deg);
        transform-origin: center top;
        animation-timing-function: ease-out;
    }
}

@keyframes SDialog_flipOut__aA7oM {
    0% {
        opacity: 1;
        transform: perspective(600px) rotateX(0deg);
        transform-origin: center top;
        animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
    }
    50% {
        transform: perspective(600px) rotateX(-10deg);
        transform-origin: center top;
        animation-timing-function: ease-in;
    }
    100% {
        opacity: 0;
        transform: perspective(600px) rotateX(0deg);
        transform-origin: center top;
        animation-timing-function: ease-out;
    }
}

/* 弹窗头部 */
.SDialog_header__oTAIz {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    /*margin-bottom: 0.6rem;*/
    position: relative;
    min-height: 1rem;
}

.SDialog_header__oTAIz .SDialog_title__0ZWTx {
    /*margin: 0 0 0 0.2rem;*/
    /*font-size: 0.7rem;*/
    font-weight: 600;
    font-size: clamp(0.2rem, 0.7rem, 0.65rem);
}

.SDialog_icon__SZpK_ {
    margin-right: 0.2rem;
}

.SDialog_closeButton__V3bNk {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.53rem;
    height: 1.53rem;
    overflow: hidden;
    z-index: 9999;
    border-radius: 0 0.3rem 0 0;
}

.SDialog_closeButton__V3bNk:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 1.53rem 1.53rem 0;
    border-color: transparent #5d258f transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.SDialog_closeButton__V3bNk:hover {
    color: #ffcccb;
}

.SDialog_closeIcon__CRAwF {
    position: absolute;
    top: 0.09rem;
    right: 0.09rem;
    z-index: 2;
    color: #a27ebf;
    font-size: 0.7rem;
    font-weight: 700;
}

/* 弹窗主体内容 */
.SDialog_body__GGC3t {
    font-size: 0.45rem;
    line-height: 0.56rem;
    color: #fff;
    width: 8.96rem;
    background-color: rgba(0, 0, 0, 0.2);

    border-radius: 0.15rem;
    font-weight: 400;
    margin: 0 auto 0.5rem auto;
    min-height: 5.6rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.SDialog_content__0CEpx {
    font-size: 0.45rem;
    line-height: 0.56rem;
    color: #fff;
    width: 8.96rem;
    font-weight: 400;
    margin: 0 auto;
    min-height: 5.6rem;
}

.SDialog_bodyCenter__IGVuu {
    text-align: center;
    overflow-wrap: break-word;
    white-space: normal;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.SDialog_bodyPad__H_UeG {
    padding: 0.4rem;
}

/* 弹窗底部按钮区域 */
.SDialog_footer__qr9LV {
    display: flex;
    justify-content: space-around;
}

.SDialog_defaultBtn__Tz8sc {
    min-width: 4rem;
    background-color: #3ddc97;
    border: none;
    border-radius: 0.6rem;
    padding: 0.2rem 1rem;
    color: white;
    cursor: pointer;
    font-size: 0.62rem;
    font-weight: 700;
}

.SDialog_greenBtn__IUR4m {
    background-color: #17c147;
}

.SDialog_greenBtn__IUR4m:hover {
    background-color: #17c147;
}

.SDialog_warnBtn__Zr_t1 {
    background-color: #ff5252;
    border: none;
    border-radius: 0.6rem;
    color: white;
    cursor: pointer;
    font-size: 0.6rem;
}

.SDialog_warnBtn__Zr_t1:hover {
    background-color: #ff7373;
}

.SDialog_blueBtn__VPMBu {
    background-color: #0090ff;
}

.SDialog_blueBtn__VPMBu:hover {
    background-color: #0090ff;
}

.SDialog_grayBtn__mfMcO {
    background-color: #ccc;
}

.SDialog_grayBtn__mfMcO:hover {
    background-color: #ccc;
    cursor: not-allowed;
}

/*@media screen and (max-height: 1000px) and (min-aspect-ratio: 1 / 1) {*/
/*    !*body {*!*/
/*    !*    font-size: 25px!important;*!*/
/*    !*}*!*/
/*}*/

.switch_switch__IPDjC {
    --checked-color: var(--switch-color);
    --height: 31px;
    --width: 51px;
    --border-width: 2px;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    position: relative;
}

.switch_checkbox__X1aoH {
    min-width: var(--width);
    height: var(--height);
    box-sizing: border-box;
    border-radius: 31px;
    background: #eee;
    z-index: 0;
    overflow: hidden;
    line-height: var(--height);
}

.switch_switch_checked__viuzt .switch_checkbox__X1aoH {
    background: var(--checked-color);
}

.switch_checkbox__X1aoH:before {
    content: " ";
    position: absolute;
    left: var(--border-width);
    top: var(--border-width);
    width: calc(100% - var(--border-width) * 2);
    height: calc(var(--height) - var(--border-width) * 2);
    border-radius: calc(var(--height) - var(--border-width) * 2);
    box-sizing: border-box;
    background: #fff;
    z-index: 1;
    transition: all 0.2s;
    transform: scale(1);
}

.switch_switch_checked__viuzt .switch_checkbox__X1aoH:before {
    transform: scale(0);
}

.switch_handle__dKuFC {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--height) - var(--border-width) * 2);
    height: calc(var(--height) - var(--border-width) * 2);
    border-radius: calc(var(--height) - var(--border-width) * 2);
    background: #fff;
    position: absolute;
    z-index: 2;
    top: var(--border-width);
    left: var(--border-width);
    transition: all 0.2s;
    box-shadow:
        0 0 2px 0 rgba(0, 0, 0, 0.2),
        0 2px 11.5px 0 rgba(0, 0, 0, 0.08),
        -1px 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.switch_switch_checked__viuzt .switch_handle__dKuFC {
    left: calc(100% - var(--height) + var(--border-width));
}

.switch_inner__hEvi4 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px 0 calc(var(--height) - var(--border-width) + 5px);
    height: 100%;
    color: #999;
    transition: margin 0.2s;
    font-size: 15px;
}

.switch_switch_checked__viuzt .switch_inner__hEvi4 {
    margin: 0 calc(var(--height) - var(--border-width) + 5px) 0 8px;
    color: #fff;
}

.GuidePage_guide_page__Wroh6 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
}

.CoinLabel_coinLabel__fPo4x {
  width: 100%;
  height: 0.9rem;
  background-color: #000000;
  border-radius: 0.6rem;
  border: 0.06rem solid var(--border-color);
}
.CoinLabel_coinLabel_add__r_9Fq {
  width: 100%;
}
.CoinLabel_coinLabel_add__r_9Fq .CoinLabel_addBtn__NBn4l {
  display: block;
}
.CoinLabel_type__JVb1R {
  color: var(--border-color);
  font-size: 0.53rem;
  font-weight: 900;
  width: 1rem;
  text-align: center;
}
.CoinLabel_coin__voIzt {
  font-weight: 700;
  font-size: 0.42rem;
  color: #ffffff;
  flex: 1 1;
}
.CoinLabel_addBtn__NBn4l {
  display: none;
  padding: 0.1rem;
  color: #ffffff;
  cursor: pointer;
}
.CoinLabel_add__pWE1W {
  background-color: #b400ff;
  border-radius: 50%;
  width: 0.66rem;
  height: 0.66rem;
}
.CoinLabel_add__pWE1W span {
  color: #ffffff;
  font-size: 0.46rem;
}
/*# sourceMappingURL=CoinLabel.module.css.map */
.bubble-tip-container {
    position: relative;
}

.question-mark-button {
    width: 0.7rem;
    height: 0.7rem;
    background-size: 100% 100%;
    cursor: pointer;
    font-size: 0.3rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    background: #46bf4f;
    border-radius: 5rem;
}

.question-mark-button:hover {
}

.bubble-tip {
    position: absolute;
    top: 1.15rem;
    right: -0.12rem;
    width: 8rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.15rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.bubble-tip-arrow {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1001;
}

.bubble-tip-content {
    padding: 0.3rem;
    font-size: 0.4rem;
}

.bubble-tip p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/_next/static/media/ajax-loader.0b80f665.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/_next/static/media/slick.25572f22.eot);
    src: url(/_next/static/media/slick.25572f22.eot?#iefix) format('embedded-opentype'), url(/_next/static/media/slick.653a4cbb.woff) format('woff'), url(/_next/static/media/slick.6aa1ee46.ttf) format('truetype'), url(/_next/static/media/slick.f895cfdf.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.toast_container__h1pbc {
    position: fixed;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    left: 0;
    z-index: 10000;
    text-align: center;
    color: #fff;
    font-size: 0.4rem;
    padding: 0.1rem 0;
}

.NumberScroll_wrapper__GqnRS {
    fontweight: 500;
    fontsize: 0.42rem;
    color: #ffffff;
}

.tabs_tabs__iwAKJ {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    overflow: hidden;
}

.tabs_tabHeaders__600FU {
    display: flex;
    background-color: #1d0a33;
    border-radius: 0.6rem;
    color: #9487a1;
    padding: 0.15rem;
}

.tabs_tabHeader__vtQLi {
    flex: 1 1;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    font-size: 0.37rem;
    color: #9487a1;
    transition:
        background-color 0.3s,
        color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs_tabHeader__vtQLi:hover {
    /* background-color: #eaeaea; */
}

.tabs_tabHeader__vtQLi.tabs_active__rZy9J {
    color: #ffffff;
    width: 5.5rem;
    height: 1rem;
    font-size: 0.37rem;
    background: var(--tabs-bg-color);
    border-radius: 0.5rem;
    white-space: nowrap;
}

.tabs_tabContent__sktX3 {
    flex: 1 1;
    font-size: 0.37rem;
    color: #333;
    overflow-y: auto; /* 默认支持滚动 */
    overflow-x: hidden; /* 禁止横向滚动 */
}

.progress-bar-container {
    /* width: 7.4rem; */
    position: relative;
    background: var(--modalOverlay--progress-bg);
    border-radius: 10px;
    box-sizing: border-box;
    height: 0.27rem;
    right: 0.45rem;
}

.progress-bar-track,
.progress-bar-fill {
    height: 0.15rem;
    border-radius: 15px;
    position: absolute;
    top: 0.06rem;
    left: 0;
    right: 0;
    width: 100%;
}

.progress-bar-track {
    background-color: var(--modalOverlay--progress-bg);
    z-index: 1;
}

.progress-bar-fill {
    background-color: #f39c12;
    z-index: 2;
    transition: width 0.3s ease-in-out;
    margin-left: 0.06rem;
}

.progress-bar-track-marker {
    position: absolute;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    background-color: var(--modalOverlay--progress-bg);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 2;
}

.progress-bar-marker-container {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    top: 0.15rem;
}

.progress-bar-marker {
    width: 0.35rem;
    height: 0.35rem;
    background-color: var(--modalOverlay--progress-bg);
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    top: -0.02rem;
    transform: translate(-50%, -50%);
    transition:
        background-color 0.3s ease-in-out,
        border-color 0.3s ease-in-out;
    right: -0.35rem;
}

.progress-bar-marker.active {
    background-color: #f39c12;
    border-color: #f39c12;
}

.progress-bar-label {
    color: white;
    font-weight: 300;
    font-size: 0.32rem;
    font-family: Roboto, sans-serif;
    white-space: nowrap;
    position: absolute;
    top: 0.35rem;
}

.Select_select__YFCUb {
    position: relative;
    font-size: 0.5rem;
    margin-right: 0.3rem;
    z-index: 10;
  }
  
  .Select_selected__FXHzx {
    background: #3b368b;
    color: #fff;
    border-radius: 0.18rem;
    padding: 0.18rem 0;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .Select_dropdown___xHEo {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #3b368b;
    border-radius: 0.18rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 100;
    overflow: hidden;
    animation: Select_fadeIn__7zdWn 0.15s;
    overflow: auto;
    max-height: 4rem;
  }
  
  @keyframes Select_fadeIn__7zdWn {
    from { opacity: 0; transform: translateY(-10%);}
    to { opacity: 1; transform: translateY(0);}
  }
  
  .Select_option__LCkdJ {
    padding: 0.18rem 0;
    text-align: center;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s;
  }
  
  .Select_option__LCkdJ:hover,
  .Select_active__OMuuo {
    background: #2d296b;
  }
.carousel-container {
    position: relative;
    overflow: hidden;
    /* --outer-r: 24px; */
    /* --p-distance: 12px; */
  }
  
  /* Track */
  .carousel-track {
    display: flex;
  }
  
  /* Carousel item */
  .carousel-item {
    position: relative;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    /* border-radius: calc(var(--outer-r) - var(--p-distance)); */
    background-color: #0D0D0D;
    overflow: hidden;
    cursor: grab;
  }
  
  .carousel-item:active {
    cursor: grabbing;
  }
  
  .carousel-container.round {
    border: 1px solid #555;
  }
  
  .carousel-item.round {
    background-color: #0D0D0D;
    position: relative;
    bottom: .1em;
    border: 1px solid #555;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .carousel-item-header.round {
    padding: 0;
    margin: 0;
  }
  
  .carousel-indicators-container.round {
    position: absolute;
    z-index: 2;
    bottom: 3em;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .carousel-indicator.active {
    background-color: #333333;
  }
  
  .carousel-indicator.inactive {
    background-color: rgba(51, 51, 51, 0.4);
  }
  
 
  
  /* Indicators */
  /* .carousel-indicators-container {
    display: flex;
    width: 100%;
    justify-content: center;
  } */
  
  .carousel-indicators {
    height: .2rem !important;
    display: flex;
    position: absolute;
    top: 0.4rem;
    width: 12rem;
    justify-content: center;
    align-items: center;
  }
  
  .carousel-indicator {
    width: .32rem;
    height: .1rem !important;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 150ms;
    margin: 0 .125rem !important;
  }
  
  .carousel-indicator.active {
    background-color: #fff;
  }
  
  .carousel-indicator.inactive {
    background-color: #555;
  }
.page_prefix_wrapper__wCABf {
    display: flex;
    align-items: center;
    margin-right: 0.4rem;
}

.page_error_wrapper__YwctR {
    display: flex;
    align-items: center;
}

.page_error_text__kU2dp {
    margin-left: 0.1rem;
}

.page_area_code_box__jFWCs {
    margin-left: 0.4rem;
}

.page_remember_box__THbbW {
    text-align: center;
    padding-bottom: 0.5rem;
    color: #fff;
}

.page_remember_content__vP64W {
    width: 4rem;
}

.page_remember_check__1xQAm {
    width: 0.5rem;
    height: 0.5rem;
    background: #7d5c8f;
    border-radius: 0.1rem;
    margin-right: 0.3rem;
    color: #00c6ff;
}

.page_protocol__qEQ58 {
    display: flex;
    justify-content: space-between;
    margin-top: 0.65rem;
    padding: 0 0.65rem;
    color: #0090ff;
}

.page_info__4pFMf {
    margin-top: 0.6rem;
    font-size: 0.35rem;
    text-align: center;
    padding: 0 0.6rem;
    color: #ae78b9;
}

.page_visitor_recharge_input__8agHS {
    background: #e4e4e4;
    line-height: 0.9rem;
    border-radius: 0.2rem;
    margin-top: 0.6rem;
    padding-left: 0.2rem;
}

.page_error_phone__vS_xH {
    color: red;
    padding-top: 0.2rem;
}

.page_signup_page__r27Yq {
    max-width: 10.8rem;
    margin: 0 auto;
}


.page_custom_item_wrapper__S3_rV.page_focused__7BEsB {
    outline: 2px solid #0090FF; 
    color: #0090FF;
}

.AIHelpSupportBox {
    display: none !important;
    width: 95%;
    max-width: 12rem;
    height: 80vh;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 10px;
    bottom: 0;
    z-index: 1000;
    animation: scaleIn 0.3s ease-in-out;
}
.AIHelpSupportBox iframe {
    border-radius: 8px 8px 0 8px;
}
.AIHelpSupportBox.hiding {
    animation: scaleOut 0.3s ease-in-out;
}
.AIHelpSupportBox.show {
    display: block !important;
}
.AIHelpSupportClose {
    display: none !important;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #f9c633;
    border-radius: 25px;
    cursor: pointer;
}
.aihelp-close {
    display: none;
    width: 100%;
    max-width: 12rem;
    height: 0.5rem;
    position: absolute;
    left: 46%;
    transform: translateX(-50%);
    text-align: right;
    bottom: 80vh;
    cursor: pointer;
    font-size: 0.5rem;
    z-index: 1000;
    top: 1.2rem;
}
.aihelp-close.show {
    display: block;
}
.aihelp-close div {
    color: #fff;
    font-size: 0.7rem;
}
@keyframes scaleIn {
    0% {
        transform: scale(0) translateX(-50%);
        transform-origin: right bottom;
    }
    99% {
        transform: scale(1.05) translateX(-50%);
        transform-origin: right bottom;
    }
    100% {
        transform: scale(1) translateX(-50%);
        transform-origin: right bottom;
    }
}

@keyframes scaleOut {
    0% {
        transform: scale(1) translateX(-50%);
        transform-origin: right bottom;
    }
    1% {
        transform: scale(1.05) translateX(-50%);
        transform-origin: right bottom;
    }
    99% {
        transform: scale(0) translateX(-50%);
        transform-origin: right bottom;
    }
    100% {
        transform: scale(0) translateX(-50%);
        transform-origin: right bottom;
    }
}

.Geo_guide_allow___Rwdr {
    position: relative;
    text-align: left;
    font-size: 0.45rem;
}

.Geo_guide_allow___Rwdr p {
    font-size: 0.4rem;
    font-weight: 400;
}
.Geo_guide_allow___Rwdr b {
    color: #19df51;
}

.Geo_p_top__fMMKd {
    font-size: 0.45rem !important;
    padding-bottom: 0.1rem;
}
.Geo_p_top2__bwlPB {
    padding: 0.1rem 0;
    font-size: 0.45rem !important;
    font-weight: bold !important;
}

.RegisterSuccessDialog_icons__P4X_R {
    width: 5.1rem;
    margin-top: -3rem;
    margin-bottom: 0.5rem;
}
.RegisterSuccessDialog_tips__JIUOg {
    line-height: 1.2;
    margin-bottom: 0.05rem;
}
.RegisterSuccessDialog_btn_icon__jZW29 {
    width: 1rem;
    margin-right: 0.5rem;
}
.RegisterSuccessDialog_icon_bonus__RMBHc {
    width: 0.55rem;
    vertical-align: bottom;
    margin-left: 0.15rem;
    margin-right: 0.05rem;
}
.RegisterSuccessDialog_sc_num_bonus__m3Sa_ {
    color: #55ff32;
    margin-right: 0.15rem;
    font-weight: bold;
}
.RegisterSuccessDialog_gc_num_bonus__C3ivF {
    color: #faee31;
    font-weight: bold;
}

.NavTabs_nav_tabs__LijUB {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.NavTabs_tab_container__XcGO8 {
    position: relative;
    flex: 1 1;
    text-align: center;
}

.NavTabs_tab_highlight__42YEd {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    /* background: var(--nav-bg-color); */
    background: greenyellow;
    border-radius: 2px;
    top: 1rem;
}


/* ******** footer */
/* .tab-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #211f2c;
}

.nav-tabs-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.tab {
  position: relative;
  padding: 0.3rem 0;
  flex: 1;
  text-align: center;
}
.tab_wrapper {
  position: relative;
  flex: 1;
}

.tab_highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #211f2c;
  z-index: 1;
}

.tab_icon {
  position: relative;
  z-index: 2;
}
.tab_textMain {
position: relative;
z-index: 2;
} */
.page_page__objNU {
    position: relative;
    color: #fff;
    text-align: center;
}
.page_goBack__oSEpM {
    position: absolute;
    top: 0.125rem;
    left: 0.2rem;
}
.page_header__AkSbC {
    height: 1.6rem;
    font-size: 0.7rem;
    line-height: 1.6rem;
    background: linear-gradient(180deg, rgba(122, 20, 123, 0.8), rgba(94, 23, 136, 0.8));
}
.page_tips__nxnbK {
    font-size: 0.4rem;
    color: #46bf4f;
    padding-top: 0.4rem;
}
.page_empty__Gm75Y {
    height: 6rem;
    line-height: 6rem;
    color: #999;
    font-size: 0.4rem;
}

.page_btn_refresh__lkFqy {
    width: 1.8rem;
    height: 0.8rem;
    background: #0090ff;
    margin: 0.2rem auto;
    border-radius: 0.8rem;
}

.paymentList_wrapper__Joi8Z {
    color: #fff;
    padding: 0 2%;
    min-height: 70vh;
}
.paymentList_head__copyh {
    display: flex;
    font-size: 0.4rem;
    color: #aa62dc;
    padding: 0.6rem 0 0.2rem 0;
}
.paymentList_row__gO6Ni {
    display: flex;
    background: rgba(56, 15, 86, 0.8);
    margin-bottom: 0.4rem;
    border-radius: 0.1rem;
    font-size: 0.3rem;
    padding: 0.2rem 0;
    align-items: center;
}
.paymentList_col__3zSzY {
    flex: 1 1;
}
.paymentList_sucess__QpDgo {
    color: #39e516;
}
.paymentList_waiting__FIfyo {
    color: #00b4ff;
}
.paymentList_fail__2fupL {
    color: #d9001b;
}
.paymentList_icon_coin__iuni2 {
    width: 0.55rem;
}
.paymentList_icon_payment__3G7f1 {
    width: 0.65rem;
    height: 0.65rem;
}

.VipGrade_header_vip_wrapper__gwJPU {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 0.06rem solid var(--border-color);
    padding: 0.05rem;
    background: #000;
}

.VipGrade_vip_circle__RdCfY {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*border: .06rem solid rgba(255, 255, 255, .3);*/
    background: conic-gradient(var(--circle-color) var(--progress), rgba(255, 255, 255, 0.3) var(--last));
    /*padding: 0.1rem;*/
}

.VipGrade_circle_num__4jSpZ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: #000;
    border-radius: 50%;
}

.VipGrade_vip_content__CK74C {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0;
    text-align: center;
    color: #fff;
    font-family: Roboto-Black;
    margin-top: -0.05rem;
}

.headerAuth_header__6KDoq {
    display: flex;
    color: #fff;
    font-size: 0.7rem;
    justify-content: space-between;
    padding: 0.6rem 0.3rem;
    position: relative;
}

.headerAuth_head_left__g2hnf,
.headerAuth_head_right__norgG {
    position: absolute;
}

.headerAuth_head_right__norgG {
    right: 0.4rem;
}

.headerAuth_head_back__bXRNU {
    font-size: 0.145rem;
    font-weight: 700;
}

.headerAuth_full_center__MAnBl {
    width: 100%;
}

.headerAuth_title__PQamx {
    font-weight: 700;
}

.GameFrame_content__TrC6A {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(122, 30, 123, 0.8), rgba(94, 23, 136, 0.8));
    /*width: 100%;*/
    /*height: 100%;*/
    overflow: auto; /* 内容超出时滚动 */
    /*padding: 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.GameHome_home__VLyIt {
    position: fixed;
    top: 0.1rem;
    left: 0.2rem;
    padding: 0.2rem;
    z-index: 99;
}

.GameLoad_game_container__bf0tA {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
    /*background-color: #361b4a;*/
    background: linear-gradient(180deg, rgba(122, 30, 123, 0.8), rgba(94, 23, 136, 0.8)) rgba(94, 23, 136, 1);
}
.GameLoad_game_fixed__0mZaS {
    position: fixed;
    top: 0;
    z-index: 1;
    left: 0;
}

.GameLoad_game_content__RRBvM {
    /*width: 5rem;*/
    height: 10rem;
    text-align: center;
    /*display: flex;*/
}
.GameLoad_game_box__A9XL8 {
    text-align: center;
    position: relative;
    width: 8rem;
    height: 8rem;
    padding-bottom: 0.3rem;
    box-sizing: content-box;
    margin: 0 auto;
}

.GameLoad_circle_1__KOujU,
.GameLoad_circle_2__uUGXj,
.GameLoad_circle_3__2UiGv,
.GameLoad_circle_4__GHtOL {
    border: 0.05rem solid transparent;
    border-top-color: rgba(227, 104, 255, 0.5);
    border-right-color: rgba(227, 104, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
}

.GameLoad_circle_4__GHtOL {
    width: 7.8rem;
    height: 7.8rem;
    margin-left: -3.9rem;
    margin-top: -3.9rem;
    /*animation: spin 2.25s linear infinite;*/
}

.GameLoad_circle_3__2UiGv {
    width: 6rem;
    height: 6rem;
    margin-left: -3rem;
    margin-top: -3rem;
    /*animation: spin 2s linear infinite;*/
}

.GameLoad_circle_2__uUGXj {
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -2.25rem;
    margin-top: -2.25rem;
    /*animation: spin 1.75s linear reverse infinite;*/
}

.GameLoad_circle_1__KOujU {
    width: 3.72rem;
    height: 3.72rem;
    margin-left: -1.86rem;
    margin-top: -1.86rem;
    /*animation: spin 1.5s linear infinite;*/
    border-width: 0.1rem;
    opacity: 0.9;
}

.GameLoad_icon__pjZYw {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.48rem;
    height: 3.48rem;
    margin-left: -1.74rem;
    margin-top: -1.74rem;
    overflow: hidden;
    border-radius: 50%;

    border: 0.2rem solid rgba(227, 104, 255, 0.1);
}

@keyframes GameLoad_spin__Q_JvV {
    0% {
        transform: rotate(0deg) translateZ(0);
    }
    100% {
        transform: rotate(360deg) translateZ(0);
    }
}

/* 添加媒体查询控制 */
/*@media (prefers-reduced-motion: reduce) {*/
/*    .circle_1, .circle_2, .circle_3, .circle_4 {*/
/*        animation: none !important;*/
/*        border-top-color: transparent;*/
/*        border-right-color: transparent;*/
/*    }*/
/*}*/

.GameLoad_game_title__PvOPL {
    text-align: center;
    color: #b378ce;
    font-size: 0.7rem;
    font-weight: 800;
}
.GameLoad_game_info__SOyCj {
    text-align: center;
    color: #bb81d4;
    font-size: 0.45rem;
    padding-top: 0.3rem;
    font-weight: 500;
}


.guideInstallDialog_rbLayer__xGOFS {
    display: block;
    --install-text-color: #000000;
    color: var(--install-text-color);
}
.guideInstallDialog_rbLayer_img__x4KbP {
    max-height: none;
    max-width: none;
}
.guideInstallDialog_animationDialog__HYgC5 {
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    opacity: 0;
    visibility: hidden;
}
.guideInstallDialog_dialogVisible__NoNQK {
    animation-name: guideInstallDialog_rb-fade-in__gnRtq;
}
.guideInstallDialog_rb_mask___LGxC {
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
}
.guideInstallDialog_rb_mask_p__R_1O4 {
    display: none;
    font-size: 0;
}
.guideInstallDialog_rb_mask_show__4LUiK {
    animation-name: guideInstallDialog_rb-fade-in__gnRtq;
}
.guideInstallDialog_rb_toast__cD_PA {
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    left: 50%;
    line-height: 36px;
    max-width: 90%;
    min-width: 48px;
    opacity: 0;
    padding: 0 10px;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    white-space: pre;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1000;
}
.guideInstallDialog_rb_toast_span__KvZEN {
    color: #fff;
    font-size: 16px;
}
.guideInstallDialog_rb_loading__3dQCt {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    left: 0;
    line-height: 20px;
    margin: 0 auto;
    max-height: 100%;
    max-width: 70%;
    min-height: 100px;
    opacity: 0;
    overflow: hidden;
    padding: 16px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s;
    visibility: hidden;
    white-space: pre-wrap;
    width: 100px;
    z-index: 1005;
}
.guideInstallDialog_rb_loading__text__pxiGB {
    min-height: 0;
    min-width: 100px;
    padding: 8px 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.guideInstallDialog_rb_loading__icon__vchIO {
    animation: guideInstallDialog_loading-rotate__i0qhl 2s linear infinite;
    display: flex;
    height: 30px;
    margin-bottom: 8px;
    width: 30px;
}
.guideInstallDialog_rb_loading__icon_svg__DHJnb {
    color: #fff;
    display: block;
    height: 100%;
    width: 100%;
}
.guideInstallDialog_rb_loading__icon_svg_circle__EsgKM {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    animation: guideInstallDialog_loading-circular__T9mg3 1.5s ease-in-out infinite;
}
.guideInstallDialog_rb_install_now_dialog__UXckh {
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    padding: 32px 24px 24px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: 325px;
    z-index: 1000;
}
.guideInstallDialog_install_now__header__Cxc4k {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 37px;
}
.guideInstallDialog_install_now__header_title__d5mQL {
    align-items: center;
    display: flex;
    margin-bottom: 8px;
}
.guideInstallDialog_install_now__header_title_img__4XisF {
    margin-right: 7px;
    width: 28px;
}
.guideInstallDialog_install_now__header_title_span__YQ3ba {
    color: #666;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 33px;
}
.guideInstallDialog_install_now__header_msg__NDxuc {
    align-items: center;
    border: 1px solid #747475;
    border-radius: 3px;
    color: #666;
    display: flex;
    font-size: 18px;
    font-weight: 400;
    height: 25px;
    padding: 0 10px;
}
.guideInstallDialog_install_now__main__dF0Ob {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 108px;
    justify-content: center;
    width: 100%;
}
.guideInstallDialog_install_now__loading__MBjym {
    align-items: center;
    color: #0e7bd3;
    display: none;
    height: 100px;
    justify-content: center;
    position: relative;
    width: 100px;
}
.guideInstallDialog_install_now__loading_svg__mFs7G {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.guideInstallDialog_install_now__loading_svg_circle__e6kOm {
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    animation: guideInstallDialog_loading-circular__T9mg3 1.5s ease-in-out infinite;
}
.guideInstallDialog_install_now__loading_span__CbffC {
    font-size: 16px;
    font-weight: 600;
}
.guideInstallDialog_install_now__active__jiUUn {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.guideInstallDialog_install_now__active_tag__uynvU {
    align-items: center;
    background: rgba(2, 135, 96, 0.1);
    border: 1px solid #0e7bd3;
    border-radius: 14px;
    display: flex;
    height: 28px;
    justify-content: center;
    margin-bottom: 34px;
    padding: 0 11px;
}
.guideInstallDialog_install_now__active_tag_img__QLbWg {
    margin-right: 5px;
    width: 15px;
}
.guideInstallDialog_install_now__active_tag_span__ZkG72 {
    color: #0e7bd3;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.guideInstallDialog_install_now__active_btn__9m41Z {
    align-items: center;
    background: #0e7bd3;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    height: 45px;
    justify-content: center;
    width: 100%;
}
.guideInstallDialog_rb_install_dialog__dTgmO {
    background-color: #fff;
    border-radius: 18px;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: 353px;
    z-index: 100;
}
.guideInstallDialog_install__title__K8C1u {
    color: #111;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 28px;
}
.guideInstallDialog_install__main__5l0aQ {
    align-items: center;
    display: flex;
    margin-bottom: 32px;
    width: 100%;
}
.guideInstallDialog_install__main_icon__ArXsQ {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    height: 37px;
    margin-right: 12px;
    width: 37px;
}
.guideInstallDialog_install__main_title__EzzJe {
    color: #111;
    font-size: 23px;
    font-weight: 400;
    line-height: 27px;
}
.guideInstallDialog_install__main_url__4cWiF {
    color: #111;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
}
.guideInstallDialog_install__foot__Kkcl_ {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
    width: 100%;
}
.guideInstallDialog_install__foot_div__XtER0 {
    color: #3f80ed;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    width: 94px;
}
.guideInstallDialog_rb_back_dialog__gJAkM {
    align-items: center;
    background-color: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    font-family:
        Google Sans Bold,
        Roboto,
        Arial,
        sans-serif;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    padding: 25px 20px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    width: 85%;
    max-width: 700px;
    z-index: 1000;
}
.guideInstallDialog_back__logo__YHbNt {
    width: 166px;
}
.guideInstallDialog_back__title__I2wpH {
    font-size: 17px;
    line-height: 24px;
    margin-top: 32px;
    text-align: center;
}
.guideInstallDialog_back__block__YqK_0 {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
    display: flex;
    margin: 15px 0;
    padding: 20px;
    width: 100%;
}
.guideInstallDialog_back__icon__m3ZDr {
    border-radius: 20%;
    height: 70px;
    margin-right: 20px;
    width: 70px;
}
.guideInstallDialog_back__info_title__jnG16 {
    align-items: center;
    display: flex;
    font-family:
        Google Sans Bold,
        Roboto,
        Arial,
        sans-serif;
    font-size: 22px;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: keep-all;
}
.guideInstallDialog_back__info_title_img__rnzNW {
    height: 20px;
    margin-left: 5px;
    width: 20px;
}
.guideInstallDialog_back__info_description__ibRip {
    color: #0e7bd3;
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0;
}
.guideInstallDialog_back__info_play__PVPjH {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 10px;
    font-weight: 500;
    height: 14px;
}
.guideInstallDialog_ic_dun__QwGjp {
    margin-right: 4px;
    width: 10px;
}
.guideInstallDialog_back__detail__XIU_y {
    align-items: center;
    display: flex;
    font-size: 14px;
    width: 100%;
}
.guideInstallDialog_back__detail_p__Ato8P {
    line-height: 18px;
    margin: 10px 0;
}
.guideInstallDialog_back__detail_img__HuAiX {
    width: 89px;
}
.guideInstallDialog_back__btn___aPFw {
    align-items: center;
    background-color: #0e7bd3;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 35px;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}
.guideInstallDialog_install_btn__ing__rapid__L3g_A {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    line-height: 21px;
}
.guideInstallDialog_install_btn__ing__rapid_img__q9YU8 {
    display: block;
    margin-right: 4px;
    width: 24px;
}
@keyframes guideInstallDialog_rb-fade-in__gnRtq {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

/* AddressCom.module.css */
.AddressCom_container__Ihrlh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3.8rem, 1fr));
  grid-gap: 0.2rem;
  padding: 0.2rem;
  corlor: #211f2c;
}
.AddressCom_formGroup__5Vxbb {
  /*background-color: lightblue;*/
  padding: 0.1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.AddressCom_formGroup__5Vxbb:nth-child(0) {
  z-index: 10;
}
.AddressCom_formGroup__5Vxbb:nth-child(1) {
  z-index: 9;
}
.AddressCom_formGroup__5Vxbb:nth-child(2) {
  z-index: 8;
}
.AddressCom_label__D4SOo {
  display: block;
  font-size: 0.4rem;
  font-weight: 400;
  margin-bottom: 0.1rem;
}
.AddressCom_input__z3Nlb {
  width: 100%;
  height: 1rem;
  border: 0;
  border-radius: 0.15rem;
  font-size: 0.36rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 9;
  padding: 0.1rem 0.1rem 0.1rem 0.3rem;
}
.AddressCom_button__dC__8 {
  padding: 12px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.AddressCom_button__dC__8:hover {
  background-color: #45a049;
}
/* 自定义下拉框 */
.AddressCom_customDropdown__9OSgP {
  position: relative;
  z-index: 1;
  display: flex;
}
.AddressCom_customDropdown__9OSgP input {
  color: #765c88;
}
.AddressCom_shrink__dJrNb {
  position: absolute;
  top: 0;
  right: 0;
  color: #b270c6;
  display: block;
  height: 1rem;
  line-height: 1rem;
  z-index: 10;
}
.AddressCom_dropdownList__kzjYe {
  position: absolute;
  top: 0.9rem;
  width: 100%;
  background: #cbbdd0;
  border-radius: 0 0 0.15rem 0.15rem;
  display: block;
  max-height: 4rem;
  overflow-y: auto;
  z-index: 1;
  padding-top: 0.1rem;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
.AddressCom_dropdownItem__5V18C {
  cursor: pointer;
  font-size: 0.36rem;
  color: #211f2c;
  padding: 0.25rem 0 0.25rem 0.25rem;
}
.AddressCom_dropdownItem__5V18C:hover {
  background-color: #b270c6;
}
/* 显示下拉菜单 */
.AddressCom_customDropdown__9OSgP.AddressCom_open__1WcLM .AddressCom_dropdownList__kzjYe {
  display: block;
}
/*# sourceMappingURL=AddressCom.module.css.map */
.redeem_btn__8IoY1 {
  width: 9rem;
  display: block;
  color: #fff;
  height: 1.2rem;
  font-size: 0.6rem;
  background: #0090ff;
  margin: 0.7rem auto;
  border-radius: 1rem;
}
.redeem_btn_cash_out_confirm__0oDxY {
  margin-top: 2.4rem;
}
.redeem_listLogo__hFSHC {
  position: relative;
  min-height: 1.8rem;
  width: 2.8rem;
  margin: 0.2rem auto;
}
.redeem_logoItem__wPDrk {
  width: 2.1rem;
  height: 1.3rem;
  margin: 0.1rem 0.1rem;
  position: relative;
  box-sizing: content-box;
  cursor: pointer;
  border-radius: 0.23rem;
}
.redeem_logoItem__wPDrk img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.redeem_logoItem__wPDrk input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.redeem_curActive__ZeC_2 {
  border: 0.08rem solid #ffffff;
}
.redeem_curActive__ZeC_2:after {
  content: "";
  width: 0;
  height: 0;
  z-index: 9;
  position: absolute;
  bottom: -0.23rem;
  left: 50%;
  display: block;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0.2rem;
  border-color: #ffffff transparent transparent transparent;
  border-radius: 0.2rem;
  transform: translate(-50%, 0);
}
.redeem_content__f1SIe {
  width: 100%;
  margin: 0.2rem auto;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.3rem 0.3rem;
  border-radius: 0.15rem;
  color: #ffffff;
}
.redeem_emailBox__qW7gw .redeem_info__3cqob {
  font-size: 0.3rem;
  color: #b263c9;
  width: 8rem;
  margin: 0.5rem auto;
  text-align: center;
}
.redeem_eTitle__6OX6N {
  font-size: 0.6rem;
  font-weight: 500;
}
.redeem_inputBox__akT34 .redeem_inputName__Pbxaj {
  width: 2rem;
  text-align: right;
  margin-right: 0.2rem;
  font-size: 0.4rem;
  line-height: 0.4rem;
}
.redeem_inputBox__akT34 .redeem_input__qs_iP {
  width: 6.4rem;
  height: 1rem;
  background-color: #e4e4e4;
  border-radius: 0.15rem;
  position: relative;
  font-size: 0.4rem;
}
.redeem_inputBox__akT34 input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  color: #000000;
  font-size: 0.4rem;
}
.redeem_inputBox__akT34 input:-ms-input-placeholder {
  color: #9e94a5;
}
.redeem_inputBox__akT34 input::placeholder {
  color: #9e94a5;
}
.redeem_inputBox__akT34 .redeem_err__w7pZI {
  position: absolute;
  bottom: -0.38rem;
  left: 0.2rem;
  color: #ff235c;
  font-size: 0.3rem;
}
.redeem_inputItem__NppZQ {
  padding: 0.4rem 0;
}
/* AddressForm.css */
.redeem_form-group__fLKT8 {
  margin-bottom: 15px;
}
.redeem_redeemInfo__j1NYl {
  padding: 0.5rem 0.6rem;
}
.redeem_accountBox___ZZ6k {
  width: 100%;
  margin: 0.2rem auto;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0;
  border-radius: 0.15rem;
  color: #ffffff;
}
.redeem_avatar__T88rJ {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  position: relative;
}
.redeem_iconPen__WrDu3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #4f9bf8;
  color: #ffffff;
  overflow: hidden;
  border-radius: 50%;
  border: #411957 0.06rem solid;
  cursor: pointer;
}
.redeem_accountInfo___5N58 {
  padding: 0.2rem 0.4rem;
  max-width: 80%;
}
.redeem_accountInfo___5N58 .redeem_title__8fA9E {
  font-weight: bold;
  font-size: 0.4rem;
}
.redeem_accountInfo___5N58 .redeem_account__mD8xg {
  font-weight: 400;
  font-size: 0.52rem;
  padding-top: 0.2rem;
}
.redeem_outBox__Mrstj {
  width: 100%;
  margin: 0.2rem auto;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0.6rem;
  border-radius: 0.15rem;
  color: #ffffff;
}
.redeem_redeemInfoBottom__aiyjb {
  background-color: #3a0f55;
  padding: 0.4rem 0.6rem;
  border-bottom-left-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
}
.redeem_redeemInfoBottom_info__o9jRI {
  font-weight: 500;
  font-size: 0.4rem;
  color: #ffffff;
}
.redeem_redeemInfoBottom_info2__lmcv_ {
  padding-top: 0.2rem;
}
.redeem_outAmount__VGcad {
  padding: 0.4rem 0;
}
.redeem_outAmount_type__cjHNH {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  position: relative;
}
.redeem_outAmount_type__cjHNH img {
  width: 100%;
}
.redeem_outAmount_input__aeWLi {
  position: relative;
  width: 6.8rem;
  height: 1rem;
  margin-left: 0.4rem;
}
.redeem_outAmount_input__aeWLi input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.36rem;
  padding: 0.2rem 0.39rem;
  background-color: #e4e4e4;
  border-radius: 0.15rem;
  color: #000000;
}
.redeem_outAmount_input__aeWLi input:-ms-input-placeholder {
  color: #9e94a5;
}
.redeem_outAmount_input__aeWLi input::placeholder {
  color: #9e94a5;
}
.redeem_outAmount_input_err__Dp7dX {
  font-weight: 500;
  font-size: 0.3rem;
  color: #db496f;
  padding-left: 0.4rem;
  padding-top: 0.1rem;
}
.redeem_inf___q3EF {
  font-size: 0.4rem;
}
.redeem_outInfo_item__j_J47 {
  padding: 0.1rem 0;
}
.redeem_outInfo_tips__rk0N_ {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  background-color: #db496f;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0.2rem;
}
.redeem_outInfo_tipsDow__WrW3T {
  position: absolute;
  opacity: 1;
  display: block;
  top: 0.8rem;
  left: -0.5rem;
  background-color: #ffffff;
  color: #000000;
  width: 7.2rem;
  border-radius: 0.15rem;
  padding: 0.3rem 0.5rem;
}
.redeem_outInfo_tipsDow_icon__KXtQi {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.15rem;
}
.redeem_outInfo_tipsDow__WrW3T h3 {
  font-size: 0.46rem;
  font-weight: 700;
}
.redeem_outInfo_tipsDow__WrW3T section {
  font-size: 0.44rem;
  font-weight: 400;
  padding: 0.15rem 0;
}
.redeem_outInfo_tipsDow__WrW3T :after {
  content: "";
  width: 0;
  height: 0;
  z-index: 9;
  position: absolute;
  left: 0.55rem;
  top: -0.2rem;
  display: block;
  border-width: 0.2rem 0.2rem 0 0.2rem;
  border-left: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
  border-bottom: 0.2rem solid #ffffff;
  border-radius: 0;
}
.redeem_SCIcon__E3qLI {
  margin-right: 0.3rem;
  width: 0.86rem;
  height: 0.86rem;
}
.redeem_redeem_account_wrapper__W7GCj,
.redeem_redeem_cash_out_wrapper__QWrhC {
  width: 100%;
  height: auto;
  min-height: 100%;
  padding: 1.6rem 0.3rem 1rem 0.3rem;
  background: linear-gradient(180deg, rgba(122, 30, 123, 0.8), rgba(94, 23, 136, 0.8));
}
.redeem_cardAddIcon__hCcUY {
  width: 4.4rem;
  height: 2.4rem;
  margin: 0.2rem auto;
  cursor: pointer;
}
/*# sourceMappingURL=redeem.module.css.map */
.UI_test__x5scQ {
    background: red;
    font-size: 0.3rem;
}

.UI_confirmBody__iBE1G {
    text-align: left;
    font-size: 0.45rem;
}
.UI_account__pjJUF {
    background-color: #e4e4e4;
    width: 7.6rem;
    min-height: 1rem;
    padding: 0.2rem 0.2rem;
    text-align: center;
    color: #211f2c;
    margin: 0.2rem auto;
    border-radius: 0.15rem;
    font-size: 0.52rem;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    white-space: normal;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    display: block !important;
}

.UI_s_head__SDCEn {
    background-color: rgba(0, 0, 0, 0.3);
    color: #bc8cf0;
    border-radius: 0.1rem;
    padding: 0.2rem 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.4rem;
}

.UI_s_col__OMv41 {
    width: 30%;
}

.BubbleTipFree_container__SEiwr {
    position: relative;
    /*display: inline-block;*/
}

.BubbleTipFree_btn__Rs2ek {
    position: relative;
    width: 0.48rem;
    height: 0.48rem;
    background-color: #db496f;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 0.2rem;
}

/*.question-mark-button {*/
/*    !*background-color: #f0f0f0;*!*/
/*    !*border: 1px solid #ccc;*!*/
/*    !*border-radius: 50%;*!*/
/*    width: 0.8rem;*/
/*    height: 0.8rem;*/
/*    background: url("/img/redeem/img_smdi.webp") no-repeat;*/
/*    background-size: 100% 100%;*/
/*    cursor: pointer;*/
/*    font-size: 0.3rem;*/
/*    color: #333;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*.question-mark-button:hover {*/
/*    !*background-color: #e0e0e0;*!*/
/*}*/

.BubbleTipFree_tip__lWWwf {
    position: absolute;
    top: 0.8rem;
    left: 0;
    width: 6rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.15rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: BubbleTipFree_fadeIn__JFW7g 0.3s ease;
}

.BubbleTipFree_arrow_left__l225R {
    position: absolute;
    top: -10px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1001;
}

.BubbleTipFree_content__MITTC {
    padding: 0.3rem;
    font-size: 0.43rem;
}

.BubbleTipFree_content__MITTC p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

@keyframes BubbleTipFree_fadeIn__JFW7g {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list_wrapper__qDZgR {
    color: #fff;
    padding: 0 2%;
    min-height: 70vh;
    overflow: auto;
}
.list_head__WhRXE {
    display: flex;
    font-size: 0.4rem;
    color: #aa62dc;
    padding: 0.6rem 0 0.3rem 0;
}
.list_row__pVpzE {
    display: flex;
    background: rgba(56, 15, 86, 0.8);
    margin-bottom: 0.4rem;
    border-radius: 0.1rem;
    font-size: 0.3rem;
    padding: 0.2rem 0;
    align-items: center;
}
.list_col__TUp8w {
    flex: 1 1;
}
.list_sucess__9u04_ {
    color: #39e516;
}
.list_waiting__YcOjL {
    color: #00b4ff;
}
.list_fail__339FB {
    color: #d9001b;
}
.list_icon_coin__pUf44 {
    width: 0.55rem;
}
.list_icon_payment__HLXgy {
    width: 0.92rem;
    height: 0.92rem;
    vertical-align: middle;
    margin-right: 0.2rem;
}
.list_empty__2RKN8 {
    height: 6rem;
    line-height: 6rem;
    color: #999;
    font-size: 0.4rem;
}

.select_list__Zr69X {
    max-height: 6.5rem;
}
.select_out_item__Nkeh2 {
    padding: 0.05rem 0.36rem;
    cursor: pointer;
}
.select_goBack__j1hTC {
    position: absolute;
    top: 0.125rem;
    left: 0.2rem;
}
.select_header__Q_bGA {
    height: 1.6rem;
    font-size: 0.7rem;
    line-height: 1.6rem;
    background: linear-gradient(180deg, rgba(122, 20, 123, 0.8), rgba(94, 23, 136, 0.8));
}
.select_tips__pJXcj {
    font-size: 0.4rem;
    color: #46bf4f;
    padding-top: 0;
}

.page_page__hPHK_ {
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 1.6rem;
}
.page_goBack__mt7g2 {
    position: absolute;
    top: 0.125rem;
    left: 0.2rem;
}
.page_header__KYKQN {
    height: 1.6rem;
    font-size: 0.7rem;
    line-height: 1.6rem;
    background: linear-gradient(180deg, rgba(122, 20, 123, 0.8), rgba(94, 23, 136, 0.8));
}
.page_tips__EFApw {
    font-size: 0.4rem;
    color: #46bf4f;
    padding-top: 0;
}

.redeem_page__TzuYV {
  padding: 0 0.3rem;
  color: #fff;
  text-align: center;
}
.redeem_title__bDKY2 {
  text-align: center;
  position: relative;
  /*margin-top: .15rem;*/
}
.redeem_history__uxa3P {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 4.05rem;
  border: 0.06rem solid var(--border-color);
  padding: 0.1rem;
  border-radius: 1rem;
  width: 0.8rem;
  height: 0.8rem;
}
.redeem_record_box__tv5LY {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.redeem_redeemHistoryIcon__soKTZ {
  color: #ffffff;
  font-size: 0.5rem !important;
}
.redeem_itemCenter__Tier8 {
  background: linear-gradient(180deg, #7a1e7b, #5e1788);
  border-radius: 0.25rem;
  width: 9.06rem;
  margin: 0.4rem auto;
  padding: 0.56rem 0.25rem;
  position: relative;
}
.redeem_itemCenterMore__yEi1l {
  position: absolute;
  top: 0.05rem;
  right: 0.1rem;
}
.redeem_item__JuIVB {
  width: 100%;
  height: 2.7rem;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 0.2rem;
  text-align: center;
}
.redeem_item__JuIVB .redeem_info__zv3_R {
  font-weight: 400;
  font-size: 0.45rem;
  color: #ffffff;
  padding-top: 0.48rem;
}
.redeem_itemTop__N9J7W {
  margin-top: 0.25rem;
}
.redeem_gold___VDz3 {
  padding-top: 0.2rem;
}
.redeem_gold___VDz3 .redeem_goldIcon__M12Hn {
  margin-right: 0.3rem;
  width: 0.86rem;
  height: 0.86rem;
}
.redeem_gold___VDz3 .redeem_val___1u8b {
  font-weight: 700;
  font-size: 0.9rem;
}
.redeem_btn__IAJdd {
  width: 9rem;
  display: block;
  color: #fff;
  height: 1.2rem;
  font-size: 0.6rem;
  background: #33d24a;
  margin: 0.4rem auto;
  border-radius: 1rem;
  font-weight: 700;
}
.redeem_tips_bottom__XuwPN {
  max-width: 10.24rem;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 0.45rem;
  color: #ffffff;
}
.redeem_bubbleTipContent__Mrry7{
  padding: 0.7rem 0.6rem 0.4rem!important;
}
.redeem_bubble__nPexP{
  right: -0.25rem !important;
}
.redeem_textBefore__OqJe2 {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.45rem;
  text-align: left;
  display: block;
}

.redeem_textBefore__OqJe2 li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 0.7rem;
}

.redeem_textBefore__OqJe2 li:before {
  content: "●";
  color: #999999;
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: -0.05rem;
}
/*# sourceMappingURL=redeem.module.css.map */
.ForcedSignUpDialog_icons__GzAPY {
    width: 5.1rem;
    margin-top: -3rem;
    margin-bottom: 0.5rem;
}
.ForcedSignUpDialog_tips__bf8Ds {
    line-height: 1.2;
}
.ForcedSignUpDialog_btn_icon__dzU1a {
    width: 1rem;
    margin-right: 0.5rem;
}

.AppHeader_header__32ALv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    z-index: 1000;
    transition:
            background-color 0.3s ease,
            transform 0.3s ease,
            opacity 0.3s ease;
    /*background-color: rgba(23, 23, 23, 0);*/
    background: #000;
}

.AppHeader_show_header__xIszN {
    z-index: 10001;
}

.AppHeader_header__32ALv.AppHeader_shrink__OBkSe {
    background-color: rgba(23, 23, 23, 1);
}

header.AppHeader_fade__NkgO1 {
    background-color: rgba(23, 23, 23, 0.8) !important;
}

.AppHeader_header_wrapper__lED_S {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    margin: 0 auto;
}
.AppHeader_header_logo__DW1vK {
    display: block;
}
.AppHeader_header_logo__DW1vK {
    width: 1.9rem;
    height: 0.8rem;
    cursor: pointer;
    /*background: url("/img/logo.webp");*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
}

.AppHeader_header_logo_img__X8Dzk {
    width: 100%;
}

.AppHeader_hd_border__c8X1_ {
    background: #000;
    border-radius: 0.6rem;
    border: 0.06rem solid var(--border-color);
}

.AppHeader_header_gold_wrapper__QJyVq {
    width: 4.8rem;
    height: 0.9rem;
    padding: 0 0.1rem 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.5rem;
}

.AppHeader_gold_left__xY3k5 {
    /*font-size: .5rem;*/
}

.AppHeader_gold_right__zd52x {
    width: 0.65rem;
    height: 0.65rem;
    background: #b400ff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.3;
}

.AppHeader_gold_plus__xMoSS {
    color: #fff;
    font-size: 0.56rem !important;
}

.AppHeader_header_switch_wrapper__eA7RC {
    width: 1.6rem;
    height: 0.9rem;
    padding: 0.1rem;
}

.AppHeader_header_vip_wrapper__o3grz {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 0.05rem solid var(--border-color);
    padding: 0.05rem;
    background: #000;
}

.AppHeader_vip_circle__p18IY {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*border: .06rem solid rgba(255, 255, 255, .3);*/
    background: conic-gradient(#46bf4f var(--progress), rgba(255, 255, 255, 0.3) var(--last));
    /*padding: 0.1rem;*/
    cursor: pointer;
}

.AppHeader_circle_num__c4E6L {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: #000;
    border-radius: 50%;
    overflow: hidden;
    border: 0.05rem solid rgba(255, 255, 255, 0);
}

.AppHeader_vip_content__zXd7g {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0;
    text-align: center;
    color: #fff;
    font-family: Roboto-Black;
    margin-top: -0.05rem;
}

.AppHeader_mode__iPEzP {
    color: var(--border-color);
    vertical-align: middle;
    margin-right: 0.2rem;
}

.AppHeader_gold_num__ivaOb {
    color: #fff;
    font-size: 0.4rem;
}

.AppHeader_switch__2Nm_Q {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.AppHeader_switch__2Nm_Q input {
    opacity: 0;
    width: 0;
    height: 0;
}

.AppHeader_slider__2Oj0I {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1em;
    background: rgba(228, 145, 0, 0.36);
    transition: 0.4s;
}

.AppHeader_slider__2Oj0I:before {
    position: absolute;
    content: "G";
    height: 0.65rem;
    width: 0.65rem;
    border-radius: 0.65rem;
    left: 0;
    bottom: -0.05em;
    background-color: var(--mark-text-color);
    transition: 0.4s;
    color: #fff;
    font-size: 0.55rem;
    text-align: center;
    font-weight: 600;
    line-height: 0.65rem;
}

input:checked + .AppHeader_slider__2Oj0I {
    background: rgba(91, 228, 53, 0.36);
}

input:checked + .AppHeader_slider__2Oj0I:before {
    content: "S";
    left: 100%;
    transform: translateX(-100%);
    background-color: var(--bg-color);
}
.PwaGuideDialog_container__pNT_e {
    position: relative;
    padding-top: 2.8rem;
}

.PwaGuideDialog_phone__sgW0V {
    width: 4.7rem;
    height: 4.1rem;
    position: absolute;
    left: 0;
    top: -1.4rem;
    z-index: 101;
}

.PwaGuideDialog_circle__mLCvP {
    width: 2.6rem;
    height: 2.7rem;
    position: absolute;
    left: 3.85rem;
    top: -0.6rem;
    z-index: 102;
}

.PwaGuideDialog_money__vxAu6 {
    width: 1.1rem;
    height: 0.8rem;
    position: absolute;
    z-index: 103;
}

.PwaGuideDialog_money1__O6Shp {
    top: -0.95rem;
    left: 0.7rem;
}

.PwaGuideDialog_money2__vkjy7 {
    top: 1.5rem;
    left: 5.9rem;
}

.PwaGuideDialog_gold__bzpPp {
    width: 0.75rem;
    height: 0.75rem;
    position: absolute;
    left: 0.45rem;
    top: 0.3rem;
}

.PwaGuideDialog_sc_free__MAKQa {
    width: 6.1rem;
    height: 1.3rem;
    background: #240758;
    border-radius: 0.6rem;
    color: #44ff0f;
    font-size: 0.7rem;
    line-height: 1.3rem;
    position: relative;
    text-indent: 0.6rem;
    margin: 0.25rem auto 0 auto;
    font-weight: 700;
}

.PwaGuideDialog_title__Ao1Ly {
    color: #55FF32;
    font-weight: bold;
    font-size: .6rem;
}

.PwaGuideDialog_btn_install___sHjH {
    position: fixed;
    right: 1.3rem;
    bottom: 1.85rem;
    width: 2.9rem;
    z-index: 100001;
}
.WebHeader_header__aHO0H {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
    /*background-color: rgba(23, 23, 23, 0);*/
    background: #000;
    margin: 0 auto;
}

.WebHeader_show_header__NkCeN {
    z-index: 10001;
}

.WebHeader_header__aHO0H.WebHeader_fixed__vh1IK {
    position: unset;
}

.WebHeader_header__aHO0H.WebHeader_shrink__P_fc9 {
    background-color: rgba(23, 23, 23, 1);
}

header.WebHeader_fade__Jo_uc {
    background-color: rgba(23, 23, 23, 0.8) !important;
}

.WebHeader_header_wrapper__okEUf {
    display: flex;
    align-items: center;
    width: 12rem;
    max-width: 100%;
    margin: 0 auto;
}
.WebHeader_morey__e46Ds {
    justify-content: center;
}
.WebHeader_header_logo__Se62p {
    display: block;
}
.WebHeader_header_logo__Se62p {
    width: 1.9rem;
    height: 0.8rem;
    cursor: pointer;
    /*background: url("/img/logo.webp");*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
}

.WebHeader_header_logo_img__VukHo {
    width: 100%;
}

.WebHeader_hd_border__0CO3o {
    background: #000;
    border-radius: 0.6rem;
    border: 0.06rem solid var(--border-color);
}

.WebHeader_header_gold_wrapper__QcJrY {
    width: 5.8rem;
    height: 0.9rem;
    padding: 0 0.1rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.5rem;
}

.WebHeader_gold_left__9JCAi {
    /*font-size: .5rem;*/
}

.WebHeader_gold_right__p292O {
    width: 0.65rem;
    height: 0.65rem;
    background: #b400ff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.3;
}

.WebHeader_gold_plus__WX4w_ {
    color: #fff;
    font-size: 0.56rem !important;
}

.WebHeader_header_switch_wrapper__kqa1F {
    width: 1.6rem;
    height: 0.9rem;
    padding: 0.1rem;
    margin: 0 0.3rem;
}

.WebHeader_header_vip_wrapper__VzvDY {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 0.05rem solid var(--border-color);
    padding: 0.05rem;
    background: #000;
}

.WebHeader_download__OKTQ7 {
    /*width: 1.1rem;*/
    /*height: .8rem;*/
    /*background: red;*/
    margin-left: auto;
    text-align: center;
    font-size: 0;
}

.WebHeader_arrow__v6ByK {
    margin-bottom: 0.1rem;
    animation: WebHeader_download__OKTQ7 1s ease-in-out infinite;
}

@keyframes WebHeader_download__OKTQ7 {
    0% {
        transform: translateY(-0.2rem);
    }
    50% {
        transform: translateY(-0.1rem);
    }
    100% {
        transform: translateY(0);
    }
}

.WebHeader_vip_circle__77B6E {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*border: .06rem solid rgba(255, 255, 255, .3);*/
    background: conic-gradient(#46bf4f var(--progress), rgba(255, 255, 255, 0.3) var(--last));
    /*padding: 0.1rem;*/
    cursor: pointer;
}

.WebHeader_circle_num__5DihE {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: #000;
    border-radius: 50%;
    overflow: hidden;
    border: 0.05rem solid rgba(255, 255, 255, 0);
}

.WebHeader_vip_content__Pmln9 {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0;
    text-align: center;
    color: #fff;
    font-family: Roboto-Black;
    margin-top: -0.05rem;
}

.WebHeader_mode__Yaqd3 {
    color: var(--border-color);
    vertical-align: middle;
    margin-right: 0.2rem;
}

.WebHeader_gold_num__H95oq {
    color: #fff;
    font-size: 0.4rem;
}

.WebHeader_switch__GBTty {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.WebHeader_switch__GBTty input {
    opacity: 0;
    width: 0;
    height: 0;
}

.WebHeader_slider__8gHFz {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1em;
    background: rgba(228, 145, 0, 0.36);
    transition: 0.4s;
}

.WebHeader_slider__8gHFz:before {
    position: absolute;
    content: "G";
    height: 0.65rem;
    width: 0.65rem;
    border-radius: 0.65rem;
    left: 0;
    bottom: -0.05em;
    background-color: var(--mark-text-color);
    transition: 0.4s;
    color: #fff;
    font-size: 0.55rem;
    text-align: center;
    font-weight: 600;
    line-height: 0.65rem;
}

input:checked + .WebHeader_slider__8gHFz {
    background: rgba(91, 228, 53, 0.36);
}

input:checked + .WebHeader_slider__8gHFz:before {
    content: "S";
    left: 100%;
    transform: translateX(-100%);
    background-color: var(--bg-color);
}

.InfoDetailBox_gift_content__bEoQ6 {
    padding-bottom: 0.5rem;
    text-align: left;
    white-space: pre-wrap;
}

.InfoDetailBox_gift_msg_content__98LYC {
    max-height: 3.9rem;
    overflow-y: auto;
}

.InfoDetailBox_gift_box__7shtA {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.3rem;
    text-align: left;
    height: 3rem;
}

.InfoDetailBox_gift_list__UCbTt {
    display: flex;
    gap: 0.3rem;
    text-align: center;
    font-size: 0.4rem;
    margin-top: 0.2rem;
    color: #33d24a;
    font-weight: bold;
}

.InfoDetailBox_gift__l45_G {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.1rem;
    padding: 0.25rem 0.3rem 0.1rem 0.3rem;
    position: relative;
}

.InfoDetailBox_gift_no_bg__gcECR {
    background: none;
}

.InfoDetailBox_gift_gray__xo7Fo {
    background: none;
    border-radius: 0.2rem;
    /*filter: brightness(0.5);*/
}

.InfoDetailBox_gift_gray__xo7Fo::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(27, 28, 38, 0.6);
    border-radius: 0.1rem;
}

.InfoDetailBox_gift_icon__bTeDK {
    width: 1.2rem;
}

.InfoDetailBox_gift_check__PgP57 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.7rem;
}

.InfoDetailBox_gc_color__zkHya {
    color: #faee31;
    margin-top: -0.15rem;
}

.InfoDetailBox_sc_color__ehe_w {
    color: #33d24a;
    margin-top: -0.15rem;
}

.inboxDialog_modalOverlay__DJlTx {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 1.8rem;
    margin: 0 auto;
}

.inboxDialog_modal__7WQIC {
    background: #05011d;
    color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    font-size: 0.3rem;
    max-width: 12rem;
}

.inboxDialog_header__bJKAb {
    text-align: center;
    background-image: url("/img/rewards/banner_inbox@2x.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
}
.inboxDialog_headerContent__Qjfdp {
    display: flex;
    align-items: center;
}
.inboxDialog_headerContent__Qjfdp img {
    width: 0.52rem;
    margin: 0 0.56rem;
    /* height: 0.32rem; */
}
.inboxDialog_headerContent__Qjfdp h1 {
    font-weight: lighter !important;
}

.inboxDialog_emails__L5wf9 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: calc(100% - 3.8rem) !important;
    /* height: 100%; */
    overflow-y: auto;
    margin-top: 0.3rem;
    padding: 0 0.4rem 0.4rem 0.4rem;
    position: relative;
}

.inboxDialog_emailItem__VEYVq {
    padding: 0.5rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #2a0a3b, #22083f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.inboxDialog_item_gray___s5QA {
    background: #261c31;
    color: #655c6f;
}

.inboxDialog_item_gray___s5QA .inboxDialog_rechargeLabel__ieGhy {
    color: #655c6f;
}

.inboxDialog_item_gray___s5QA .inboxDialog_emailValue__adTHG {
    color: #4f4659;
}

.inboxDialog_statuIcon__A8JlP {
    width: 0.39rem;
    height: 0.39rem;
    background: #ff183e;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.39);
    border-radius: 50%;
    border: 1px solid #ffe9e9;
    position: absolute;
    right: 0;
    top: 0;
}

.inboxDialog_leftContent__zGUjN {
    display: flex;
    align-items: center;
    width: 100%;
}
.inboxDialog_iconStyle__bSq1I {
    width: 1rem;
    margin-right: 0.4rem;
}

.inboxDialog_emailDetails__VaXth {
    display: flex;
    justify-content: space-between;
    /* margin: 0.2rem 0; */
    font-size: 14px;
    color: #333;
}
.inboxDialog_delTime__shl_0 {
    color: #1cd551;
}

.inboxDialog_emailButton__Si5Du {
    width: 2.8rem;
    height: 1rem;
    background: #0090ff;
    border-radius: 0.5rem;

    font-family: Roboto;
    font-weight: 700;
    font-size: 0.52rem;
    color: #ffffff;
}
.inboxDialog_claimButton__GgR7z {
    background: #1cd551;
}
.inboxDialog_emailButton__Si5Du:hover {
    opacity: 0.9;
}

.inboxDialog_emailButton__Si5Du:active {
    transform: scale(0.98);
}

.inboxDialog_checkmark__XQffP {
    display: inline-block;
    height: 0.52rem;
    /* position: absolute;
  bottom: -0.1rem;
  right: 0; */
}
.inboxDialog_checkmark__XQffP img {
    width: 100%;
    height: 100%;
    transform: scaleX(-1); /* 水平翻转 */
}

.inboxDialog_progressContainer__gyfA8 {
    width: 100%;
    color: #fff;
    font-family: Arial, sans-serif;
    background: var(--tabs-bg-color);
    height: 2rem;
    border-radius: 0.2rem;
    padding: 0 0.2rem 0.2rem 0;
    margin: 0.4rem 0;
    display: flex;
}
.inboxDialog_progressContainerImg__z95OY {
    width: 2.7rem !important;
    height: 2rem !important;
    position: relative !important;
}
.inboxDialog_progressStyle__jPLZH {
    width: 77%;
}

.inboxDialog_label__tZHqA {
    margin-bottom: 8px;
    font-size: 0.4rem;
    color: #d0c0e0;
    position: relative;
    right: 0.5rem;
    margin-top: 0.2rem;
}

.inboxDialog_progressBar__lFm7f {
    position: relative;
    height: 0.4rem;
    border-radius: 50px;
    padding: 0.1rem;
    background-color: #3e2146; /* 背景条颜色 */
    overflow: hidden;
    right: 0.5rem;
}

.inboxDialog_progressFill__Yy3xi {
    height: 100%;
    background-color: #ff8c00; /* 进度条颜色 */
    transition: width 0.3s ease;
    border-radius: 50px;
}

.inboxDialog_milestones__eQHKA {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ffffff;
    right: 0.5rem;
    top: 5px;
}

.inboxDialog_milestone__CepLz {
    position: relative;
    text-align: center;
    font-size: 0.38rem;
}

.inboxDialog_rechargeText__42y1y {
    font-size: 0.4rem;
    color: #d0c0e0;
    margin-bottom: 0.1rem;
}

.inboxDialog_rechargeLabel__ieGhy {
    color: #d0c0e0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    max-width: 7rem;
}

.inboxDialog_rechargeTarget___h4Fc {
    color: #1cd551;
    font-weight: bold;
}

.inboxDialog_rechargeProgress___sPwQ {
    color: #d0c0e0;
}

.inboxDialog_progressComplete__qrLlt {
    color: #1cd551; /* 完成时的颜色 */
    font-weight: bold;
}

.inboxDialog_progressIncomplete__LbxLf {
    color: #d0c0e0; /* 未完成时的颜色 */
}
.inboxDialog_emailValue__adTHG {
    color: #7b6b8d;
    display: flex;
    align-items: center;
    font-size: 0.4rem;
}

.inboxDialog_emailValue__adTHG span {
    margin-left: 0.2rem;
}
.inboxDialog_noPresent__yCBYu {
    width: 100%;
    height: 0.49rem;
    font-family: Roboto;
    font-weight: 400;
    font-size: 0.52rem;
    color: #454354;
    text-align: center;
    margin-bottom: 1rem;
}

.VipClubPopup_vipClubPopupMain__KBwuD {
    height: 2rem;
}
.VipClubPopup_vipClubPopupContent__Mvcvf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    top: -0.21rem;
}
.VipClubPopup_vipClub__x7fFK {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.VipClubPopup_bg__0MDEJ {
    width: 1.44rem;
    height: 1.2rem;
    border-radius: 50%;
    border-image: linear-gradient(0deg, #921b86, #65089c) 4 4;
}
.VipClubPopup_timeStyle__ZFOCJ {
    min-width: 1.62rem;
    height: 0.41rem;
    border-radius: 0.2rem;
    font-family: Roboto;
    font-weight: bold;
    font-size: 0.3rem;
    color: #ffffff;
    position: absolute;
    bottom: -0.48rem;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding: 0 0.1rem;
}
.VipClubPopup_timeStyle__ZFOCJ p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 0.32rem;
    color: #ffffff;
}

.GrandPrizeAnnouncement_main__iUkim {
    width: 12rem;
    max-width: 100%;
    margin: 0 auto;
}

.GrandPrizeAnnouncement_category_title__w5B0O {
    font-size: .5rem;
    text-align: center;
    color: var(--game-category-title);
}

.GrandPrizeAnnouncement_category_title_name__fQ4t3 {
    margin: 0 .2rem;
    color: #fff;
}

.GrandPrizeAnnouncement_list_wrapper__xcL3_ {
    margin-top: .4rem;
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.GrandPrizeAnnouncement_list_content__3i7TM {
    width: 100%;
    height: 16rem;
    margin-top: -1.6rem;
}

.GrandPrizeAnnouncement_has_bg__WTEVZ {
    background: #261c31;
}

.GrandPrizeAnnouncement_list_item__vfzHb {
    position: absolute;
    width: 100%;
    height: 1.6rem;
    display: flex;
    color: #fff;
    font-size: .3rem;
    justify-content: space-between;
    align-items: center;
    padding: 0 .3rem;
    transition: transform 0.5s ease-in-out;
}

.GrandPrizeAnnouncement_list_item__vfzHb:hover {
    /*transform: scale(1.05);*/
    /*transition: all .2s ease-in-out;*/
}

.GrandPrizeAnnouncement_list_animate_active__1AdGL {
    transform: translate(0, 1.6rem);
}

.GrandPrizeAnnouncement_item_left__knl12 {
    display: flex;
}

.GrandPrizeAnnouncement_item_avatar__77IM7 {
    display: block;
    width: .8rem;
    height: .8rem;
    overflow: hidden;
    margin-right: .2rem;
    cursor: pointer;
}

.GrandPrizeAnnouncement_item_game_name__q5Jsw {
    font-size: .4rem;
}

.GrandPrizeAnnouncement_player_name__IzjLj {
    color: #78767c;
}

.GrandPrizeAnnouncement_vip_icon__OED_M {
    width: .3rem;
    height: .3rem;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    margin-left: .1rem;
    margin-top: -0.1rem;
}

.GrandPrizeAnnouncement_item_total__iSuUf {
    color: #0CEB4B;
    font-weight: 600;
    text-align: right;
}

.GrandPrizeAnnouncement_bet_info__n0_Oh {
    font-size: .25rem;
    margin-bottom: .1rem;
}

.GrandPrizeAnnouncement_bet_num__2xhjs {
    background: #44444a;
    margin-right: .1rem;
}

.GrandPrizeAnnouncement_bet_rate__E6jQZ {
    background: #3154f8;
}

.GrandPrizeAnnouncement_bet_num__2xhjs, .GrandPrizeAnnouncement_bet_rate__E6jQZ {
    padding: 0.05rem .1rem;
    border-radius: .05rem;
}
.page_page__sC1co {
    width: 100%;
    height: 100%;
    overflow-y: inherit;
    padding-bottom: 0.3rem;
    padding-top: 1.8rem;
}

.page_show_pwa_install__S0ORl {
    padding-top: 0;
}

.page_game_list_wrapper__rpdrD {
    position: relative;
    padding: 0 0.3rem;
    margin-top: 0.6rem;
}

.page_game_list_title__7yiUm {
    font-size: 0.5rem;
    color: var(--game-category-title);
    text-align: center;
    margin-bottom: 0.35rem;
}

.page_ft_icon_title__cU0SY {
    color: var(--font-icon-color);
    width: 1.2em !important;
    height: 1.2em !important;
}

.page_game_list_grid__WQ0UU {
    display: grid;
    grid-column-gap: 0.2rem;
    column-gap: 0.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-row-gap: 0.3rem;
    row-gap: 0.3rem;
    max-width: 12rem;
    margin: 0 auto;
}

.page_grid_item__HyxKP {
    /*background: #fff;*/

    cursor: pointer;
}

/* google 测试账号样式 */
.page_footerNotice__1PMIN {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    background: none;
    font-size: 0.3rem;
    line-height: 1.5;
    max-width: 12rem;
    color: #c1e1ff;
    margin: 0.5rem auto 0;
    padding: 0.2rem;
    background-color: #110b25;
    border-radius: 0.2rem;
}

.page_noticeIcon__AI8Cz {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 0.04rem;
}

.lading-page_landingPage__0oDtf {
    max-width: 12rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 10000;
    background-color: #161532;
}
/* header */
.lading-page_header__Q8PWE {
    width: 100%;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.6rem;
    box-sizing: border-box;
    background: #0D0B32;
    position: fixed;
    top: 0;
    max-width: 13rem;
    z-index: 20;
}
.lading-page_ImageWrapper__dv1ZW {
    width: 100%;
    height: auto;
}
.lading-page_loginBtn__DKkuY {
    padding: 0.18rem 0.4rem;
    font-size: 0.36rem;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid #e304a6;
    border-radius: 0.4rem;
    cursor: pointer;
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
    outline: none;
    transition: background 0.2s;
}
.lading-page_signUpBtn__V1B6S {
    padding: 0.18rem 0.4rem;
    font-size: 0.36rem;
    font-weight: 700;
    color: #ffffff;
    background: #f805af;
    border-radius: 0.4rem;
    cursor: pointer;
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
    outline: none;
    transition: background 0.2s;
    margin-left: .5rem;
}
.lading-page_buttons__2OKwz{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* container */
.lading-page_container__LgQDQ {
    margin-top: 1.7rem;
    padding: 0 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 12rem;
}
.lading-page_bannerBox__ownqq {
    position: relative;
    width: 100%;
    height: 5rem;
    border-radius: 0.2rem;
    overflow: hidden;
    background: url("/img/google-landing/banner1.webp") center center/contain no-repeat;
    display: flex;
    align-items: center;
    box-shadow: 0 0.04rem 0.2rem 0 rgba(0, 0, 0, 0.15);
}
.lading-page_bannerContent__XfCtC {
    position: relative;
    z-index: 2;
    width: 70%;
    color: #fff;
    text-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.2);
    padding: 0 0.4rem;
    top: -.2rem;
}
.lading-page_bannerTitle__kzd37 {
    /*font-size: 0.5rem;*/
    font-size: clamp(0.2rem, 4vw, 0.5rem);
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.1;
    text-wrap: nowrap;
    color: #FCFF00;
}
.lading-page_bannerDesc__d6GoA {
    font-size: 0.24rem;
    margin-bottom: 0.24rem;
    line-height: 1.4;
    color: #e6d1ff;
}
.lading-page_bannerSub__NvnNt {
    font-size: 0.3rem;
    font-weight: 700;
}
.lading-page_bannerBtn__ZzYKd {
    font-size: 0.28rem;
    font-weight: 700;
    background: #ff2fa6;
    color: #fff;
    border: none;
    border-radius: 0.4rem;
    padding: 0.16rem 0.7rem;
    cursor: pointer;
    box-shadow: 0 0.02rem 0.1rem 0 rgba(255, 47, 166, 0.2);
    transition: background 0.2s;
    position: relative;
    top: -0.2rem;
}
.lading-page_bannerBtn__ZzYKd:hover {
    background: #e02690;
}

/* game */
.lading-page_gamesWrapper___nd_p {
    margin-top: 0.8rem;
    width: 100%;
    max-width: 12rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.2rem;
}

.lading-page_slotSection__arsYz {
    margin-bottom: 0.6rem;
}

.lading-page_slotTitle__t0gAX {
    font-size: 0.36rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.24rem;
    padding-left: 0.1rem;
}

.lading-page_slotListWrapper__VrsTz {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-height: calc(2 * 3.2rem);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.lading-page_slotList__mZOGe {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 3rem);
    grid-gap: 0.2rem;
    gap: 0.2rem;
    width: -webkit-max-content;
    width: max-content;
    max-width: none;
    overflow-y: hidden;
    overflow-x: auto;
    align-content: flex-start;
    /* cursor: grab; */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.lading-page_slotList__mZOGe::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.lading-page_slotListWrapper__VrsTz::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.lading-page_slotItem__zlJGb {
    flex: 0 0 2.2rem;
    width: 2.2rem;
    height: 3rem;
    margin-bottom: 0.15rem;
    margin-bottom: 0.15rem;
    border-radius: 0.18rem;
    overflow: hidden;
    background: #18182c;
    box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s;
}

.lading-page_slotItem__zlJGb:hover {
    transform: translateY(-0.08rem) scale(1.04);
}

.lading-page_slotImg__kWOlw {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.18rem;
    pointer-events: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

/* text */
.lading-page_featureGrid__D3rKp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.12rem;
    gap: 0.12rem;
    width: 100%;
    max-width: 12rem;
    padding: 0.1rem;
    background-color: #211f50;
    border-radius: 0.2rem;
}

.lading-page_featureItem__4SMNx {
    border-radius: 0.18rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
}

.lading-page_featureImg__dE6RW {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    z-index: 0;
    pointer-events: none;
    margin-bottom: 0;
}

.lading-page_featureText__j5wJm {
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 100%;
    color: #fbddff;
    font-size: 0.26rem;
    text-align: left;
    line-height: 1.4;
    z-index: 1;
    padding: 0.18rem 0.1rem 0.12rem 0.1rem;
    background: transparent;
    white-space: pre-wrap;      /* 保留空白符，允许换行，但保持整词换行 */
    word-break: keep-all;       /* 禁止在单词内断行（适用于中英文） */
    overflow-wrap: break-word;
}

.lading-page_featureText__j5wJm li{
    list-style-type: disc;
    margin-left: 0.5rem;
}

.lading-page_featureBanner__1pOUK {
    max-width: 12rem;
    padding: 0 0.2rem;
}
.lading-page_featureBanner__1pOUK p {
    font-weight: 900;
    font-size: 0.5rem;
    margin: 0.7rem 0 0.5rem;
    color: #ffffff;
    line-height: 0.42rem;
    text-align: center;
}

/* footer */
.lading-page_footer__b7QXl {
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
    padding: 0.6rem 0.2rem 0.2rem 0.2rem;
    background: none;
    color: #fff;
    font-size: 0.25rem;
    box-sizing: border-box;
}

.lading-page_partnerTitle__28yOo {
    font-size: 0.48rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.22rem;
    letter-spacing: 0.01rem;
}

.lading-page_partnerList__GOpWG {
    display: flex;
    align-items: center;
    margin-bottom: 0.22rem;
    max-width: 12rem;
}

.lading-page_partnerItem__3RyrD {
    /* width: 100%; */
}

.lading-page_partnerItem__3RyrD img {
    /* height: 0.5rem; */
    height: 100%;
}

.lading-page_partnerMore__LS8CI {
    text-align: center;
    color: #c1e1ff;
    font-size: 0.36rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.1rem;
    letter-spacing: 0.01rem;
}

.lading-page_footerLinks__nOTR6 {
    display: flex;
    justify-content: center;
    gap: 0.28rem;
    margin-bottom: 0.28rem;
    flex-wrap: wrap;
    max-width: 12rem;
}

.lading-page_footerLinks__nOTR6 a {
    color: #7c7fff;
    font-size: 0.26rem;
    text-decoration: underline;
    transition: color 0.2s;
}

.lading-page_footerLinks__nOTR6 a:hover {
    color: #ff2fa6;
}

.lading-page_footerNotice__JPPCq {
    display: flex;
    align-items: flex-start;
    gap: 0.18rem;
    background: none;
    margin-bottom: 0.8rem;
    font-size: 0.25rem;
    line-height: 1.5;
    max-width: 12rem;
    color: #c1e1ff;
}

.lading-page_noticeIcon__5b4J2 {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    object-fit: contain;
    /*margin-top: 0.04rem;*/
    margin-top: -0.08rem;
}

.lading-page_footerCopyright__kvEr2 {
    color: #bdb9e3;
    font-size: 0.25rem;
    text-align: left;
    line-height: 1.5;
    word-break: break-all;
    max-width: 12rem;
    background-color: #0d0c28;
    margin: 0 auto;
    /*position: relative;*/
    z-index: 10000;
    padding: 0.4rem;
}

/* PC端横向排版 */
@media (min-width: 900px) {
    .lading-page_landingPage__0oDtf {
        max-width: 100%;
        width: 100%;
        height: 100%;
    }
    .lading-page_headerContainer__Of9Ar {
        padding: 0 3rem;
    }

    .lading-page_header__Q8PWE {
        max-width: none;
    }
    .lading-page_container__LgQDQ {
        margin-top: 1.7rem;
        padding: 0 0.2rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .lading-page_slotTitle__t0gAX {
        font-size: 0.6rem;
        margin-top: 1.1rem;
    }
    .lading-page_bannerBox__ownqq {
        flex-direction: row;
        height: 7.5rem;
        min-height: 5.7rem;
        padding: 0 1.2rem;
        background: url("/img/google-landing/banner_2.webp") center center/contain no-repeat;
        display: flex;
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
    }
    .lading-page_banner_bg__T4My0 {
        background: #5902d3;
        width: 100%;
    }
    .lading-page_slotSection__arsYz {
        margin-bottom: 0;
    }
    .lading-page_bannerContent__XfCtC {
        width: 70%;
        padding: 0 0.6rem 0.4rem 0.2rem;
        margin-top: 0;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center; /* 垂直居中内容 */
    }
    .lading-page_bannerTitle__kzd37 {
        font-size: clamp(0.6rem, 4vw, 1rem); /* 自适应字体大小 */
        font-weight: 700;
        margin-bottom: 0.24rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    .lading-page_bannerDesc__d6GoA {
        font-size: clamp(0.2rem, 4vw, 0.3rem); /* 自适应字体大小 */
        margin-bottom: 0.24rem;
        line-height: 1.5;
        color: #e6d1ff;
    }
    .lading-page_bannerSub__NvnNt {
        font-size: clamp(0.2rem, 4vw, 0.5rem); /* 自适应字体大小 */
        font-weight: 400;
    }
    .lading-page_bannerBtn__ZzYKd {
        font-size: clamp(0.2rem, 2.8vw, 0.5rem); /* 自适应字体大小 */
        top: 0.4rem;
        width: 6.07rem;
        height: 1.2rem;
        border-radius: 1rem;
    }
    .lading-page_bannerImage__OE846 {
        width: 45%;
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%;
        overflow: hidden;
    }
    .lading-page_characterImg__Xk7uq {
        width: 7rem;
        max-width: 100%;
        height: auto;
        min-width: 320px;
        object-fit: contain;
        display: block;
    }
    .lading-page_gamesWrapper___nd_p {
        max-width: 1200px;
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .lading-page_slotListWrapper__VrsTz {
        overflow-x: visible;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .lading-page_slotList__mZOGe {
        display: flex;
        flex-direction: row;
        gap: 0.24rem;
        width: 100%;
        max-width: 1200px;
        align-items: flex-start;
        justify-content: flex-start;
        grid-auto-flow: unset;
        grid-template-rows: unset;
    }
    .lading-page_slotItem__zlJGb {
        width: 2.2rem;
        height: 3.5rem;
        margin-bottom: 0;
        flex: 0 0 2.5rem;
    }
    .lading-page_featureGrid__D3rKp {
        max-width: 1100px;
        margin: 2rem auto;
        padding: 0.2rem;
    }
    .lading-page_featureItem__4SMNx {
        height: 100%;
        padding: 0.2rem;
    }
    .lading-page_featureText__j5wJm {
        font-size: 0.40rem;
        padding: 1rem;
        bottom: -0.4rem;
    }
    .lading-page_featureBanner__1pOUK {
        max-width: 100%;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
    .lading-page_featureImg__dE6RW {
        max-width: 1200px;
    }
    .lading-page_featureImgContainer__scFqX {
        width: 100%;
        /* 渐变色由上到下：9f1513-d2310b */
        background: linear-gradient(to bottom, #9f1513, #d2310b);
    }
    .lading-page_featureBanner__1pOUK p {
        font-size: 1.1rem;
        margin: 1rem 0 1.3rem;
    }
    .lading-page_partnerTitle__28yOo {
        margin: 1.56rem 0 0.8rem;
        font-size: 1.1rem;
    }
    .lading-page_partnerList__GOpWG {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lading-page_partnerMore__LS8CI {
        color: #a3afd7;
        font-size: 0.5rem;
        margin-bottom: 2rem;
        font-weight: 400;
        margin-top: 0.8rem;
    }
    .lading-page_footerLinks__nOTR6,
    .lading-page_footerNotice__JPPCq {
        max-width: 1100px;

        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto auto 0.4rem;
    }
    .lading-page_footerLinks__nOTR6 a {
        margin: 0 0.5rem;
    }
    .lading-page_linksIcon__Br5lQ {
        width: 1.1rem;
        height: 0.6rem;
        background: url("/img/google-landing/logo.webp") center center/contain no-repeat;
        margin-right: 0.2rem;
    }
    .lading-page_footer__b7QXl {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .lading-page_footerCopyright_1__QIykQ {
        background: #0d0c28;
        display: grid;
        align-items: center;
        justify-content: center;
    }
    .lading-page_footerCopyright__kvEr2 {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .lading-page_footerCopyright__kvEr2 p {
        font-size: 0.32rem;
        text-align: justify;
        line-height: 1.5;
        max-width: 1100px;
        color: #c1e1ff;
    }
}

@media (min-width: 1100px){
    .lading-page_bannerDesc__d6GoA {
        font-size: clamp(0.2rem, 4vw, 0.5rem); /* 自适应字体大小 */
        margin-bottom: 0.24rem;
        line-height: 1.5;
        color: #e6d1ff;
    }

    .lading-page_bannerSubBox__iYaf2{
        max-width: 1150px;
        margin: auto;
    }
}

.page_btn__6DjOs {
}

.page_container__rigBV {
    /*grid-template-columns: repeat(auto-fill, minmax(6rem, 1fr));*/
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 0.2rem;
    /*padding: 0 0.2rem;*/
    justify-content: flex-start; /* 左对齐 */
}

.page_grid__gdJNW {
    flex: 1 1 2rem; /* 可增长，可缩小，基础宽度为 5rem */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.3rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 0.4rem;
    background: #33d24a;
    margin: 0.1rem auto;
    border-radius: 1rem;
}

.SettingsDialog_layer__O7BkR {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
}
.SettingsDialog_settings_wrapper__t9nQJ {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.16rem;
}
.SettingsDialog_content__7NvKR {
    width: 4.1rem;
    height: 3.25rem;
    border-radius: 0.175rem;
    background: linear-gradient(180deg, rgba(115, 34, 160, 0.8), rgba(44, 13, 66, 0.8));
    position: relative;
    padding: 0.45rem 0.22rem 0 0.22rem;
}
.SettingsDialog_close__XxiK0 {
    position: absolute;
    top: 0.12rem;
    right: 0.12rem;
    color: #a97ac3;
}
.SettingsDialog_item__PpMRO {
    height: 0.55rem;
    background: rgba(22, 8, 44, 0.4);
    border-radius: 0.11rem;
    margin-bottom: 0.11rem;
    display: flex;
    padding: 0 0.16rem;
    align-items: center;
    justify-content: space-between;
}
.SettingsDialog_item__PpMRO:nth-last-child(1) {
    font-size: 0.22rem;
}

