.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: 10.8rem;
    border: 2px solid #414152;
    text-align: center;
    color: white;
    position: relative;
    /*background: linear-gradient(360deg, #4250a2, #7520a1);*/
    background:#2C2C3A;
    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-weight: 600;
    font-size: clamp(0.2rem, 0.45rem, 0.45rem);
}

.SDialog_icon__SZpK_ {
    margin-right: 0.2rem;
}

.SDialog_closeButton__V3bNk {
    background: none;
    border: none;
    font-size: 24px;
    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;
    color:#585877;
}

/*.closeButton: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.25rem;
    right: 0.25rem;
    z-index: 2;
    color: #585877;
    font-size: 0.9rem;
    font-weight: 600;
}

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

    border-radius: 0.15rem;
    font-weight: 400;
    margin: 0 auto 0.5rem auto;
    min-height: 3.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: 6rem;
    background: linear-gradient(90deg, #FFED3C 0%, #FFA33A 100%);
    border: none;
    border-radius: 0.1rem;
    padding: 0.5rem 1rem;
    color: #0B1434;
    cursor: pointer;
    font-size: 0.3rem;
    font-weight: 600;
}

.SDialog_greenBtn__IUR4m {
    background: linear-gradient(90deg, #FFED3C 0%, #FFA33A 100%);
}

.SDialog_greenBtn__IUR4m:hover {
    background: linear-gradient(90deg, #FFED3C 0%, #FFA33A 100%);
}

.SDialog_warnBtn__Zr_t1 {
    background-color: #ff5252;
    border: none;
    border-radius: 0.6rem;
    color: #0B1434;
    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;
}

.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;
}

.page_page__rGA78 {
    padding: 0 0.3rem;
    color: #fff;
    text-align: center;
}

.page_title__vxjMX {
    text-align: center;
    position: relative;
}

.page_history__8s5Kg {
    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;
}

.page_record_box__k7mNP {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page_grid_item__JugqL {
    background: linear-gradient(180deg, rgba(122, 30, 123, 0.8), rgba(94, 23, 136, 0.8));
    border-radius: 0.2rem;
    padding: 0 0.15rem 0.2rem 0.15rem;
}

.page_grid_item_mr2__ca92E {
    width: 3.5rem;
    margin-right: 0.35rem;
    color: #fff;
    text-align: center;
}

.page_top__5Lmiw {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page_integral__qqv9A {
    line-height: 0.5rem;
    height: 0.75rem;
    font-size: 0;
}

.page_icon_vip__vpji5 {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.1rem;
    position: relative;
    cursor: pointer;
}

.page_icon_grade__67reK {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page_icon_upgrade__ZazDW {
    position: absolute;
    right: -0.075rem;
    top: -0.025rem;
    width: 0.3rem;
}

.page_ft_vip__RZtWo {
    /*font-size: .3rem;*/
    /*margin: 0 .1rem;*/
}

.page_ft_vip__RZtWo,
.page_ft_integral__e3J5Y {
    font-size: 0.35rem;
    font-weight: bold;
    letter-spacing: 0.02rem;
    line-height: 1.5;
}

.page_grid_item_content__iQ6yl {
    background: rgba(22, 8, 44, 0.4);
    border-radius: 0.2rem;
    /*padding-bottom: .2rem;*/
    margin-bottom: 0.2rem;
    padding-top: 0.5rem;
    margin-top: 0.05rem;
}

.page_gold_label___PJHU {
    color: #fff;
}

.page_gold_num__MSRBO {
    font-size: 0.45rem;
    /*color: var(--mark-text-color);*/
    color: #ee8a08;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0.4rem 0;
    margin-bottom: 0.2rem;
}

.page_mini_golds__S23Ey {
    width: 1.2rem;
}
.page_small_golds__b7btt {
    width: 1.3rem;
}
.page_middle_golds__YH3Hl {
    width: 1.5rem;
}
.page_largest_golds__YgFtI {
    width: 1.5rem;
}

.page_grid_overflow_wrapper__amfFY {
    width: calc(100% + 0.5rem);
    margin-left: -0.25rem;
    height: 20px;
    border-radius: 0.05rem;
    background: #c21bb4;
    font-size: 0.45rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
    margin-top: -0.3rem;
}
.page_no_bg__yCyrI {
    background: none;
    visibility: hidden;
}

.page_free_mode__NK1Q0,
.page_gold_label___PJHU {
    /*background: #33d24a;*/
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    font-size: 0.4rem;
}

.page_free_mode__NK1Q0 {
    margin: 0 0.05rem;
}

.page_tips__5PfqH {
    font-size: 0.5rem;
    padding: 0.5rem 0;
}

.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;
}

.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;
}

.layout_page__0TMui {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(122, 30, 123, 0.8), rgba(94, 23, 136, 0.8));
    font-size: 0.4rem;
    padding-bottom: 1rem;
}
.layout_page_main__1FJ7h {
    width: 12rem;
    margin: 0 auto;
    max-width: 100%;
}

.layout_container__hz899 {
    padding: 1.3rem 0.8rem 0 0.8rem;
    color: #9e94a5;
}

.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;
    }
}

.GuidePreinstallDialog_guidePreinstall__3aH44 {
    --theme-color: #028760;
    --install-text-color: #000000;
    color: var(--install-text-color);
}
.GuidePreinstallDialog_layer__mask__2EhRR {
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    animation-name: GuidePreinstallDialog_fade-in__bI2Pz;
}
.GuidePreinstallDialog_layer__body__H5zUA {
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    opacity: 1;
    padding: 32px 24px 24px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 325px;
    z-index: 1000;
    animation-name: GuidePreinstallDialog_fade-in__bI2Pz;
}
/*.closeButton {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 10px;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    cursor: pointer;*/
/*}*/
/*.close-icon {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
.GuidePreinstallDialog_installNow__header__vv_S_ {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 37px;
}
.GuidePreinstallDialog_installNow__header__title__JnWGN {
    align-items: center;
    display: flex;
    margin-bottom: 8px;
}
.GuidePreinstallDialog_installNow__header__title_img__Gm7EL {
    margin-right: 7px;
    width: 28px;
    height: auto;
    max-width: 100%;
    display: block;
}
.GuidePreinstallDialog_installNow__header__title_span__Ma1db {
    color: #666;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 33px;
}
.GuidePreinstallDialog_installNow__header__msg__5LqZd {
    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;
}
.GuidePreinstallDialog_installNow__main__pXSZK {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 108px;
    justify-content: center;
    width: 100%;
}

.GuidePreinstallDialog_installNow__loading__L1HiH {
    align-items: center;
    color: var(--theme-color);
    display: flex;
    height: 100px;
    justify-content: center;
    position: relative;
    width: 100px;
}
.GuidePreinstallDialog_installNow__loading_svg__mprgl {
    left: 0;
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
.GuidePreinstallDialog_installNow__loading_svg_circle__ZNzQJ {
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    animation: GuidePreinstallDialog_loading-circular__xeYJp 1s ease-in-out infinite;
}
.GuidePreinstallDialog_installNow__loading_p__FaSBZ {
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    animation: GuidePreinstallDialog_animateNumber__pSrO_ 10s linear forwards;
}
.GuidePreinstallDialog_installNow__loading_p_span__UCEPb {
    text-align: center;
    width: 9px;
}
.GuidePreinstallDialog_installNow__active__vSzpB {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.GuidePreinstallDialog_installNow__active__tag__RICSX {
    align-items: center;
    background: rgba(2, 135, 96, 0.1);
    border: 1px solid var(--theme-color);
    border-radius: 14px;
    display: flex;
    height: 28px;
    justify-content: center;
    margin-bottom: 34px;
    padding: 0 11px;
}
.GuidePreinstallDialog_installNow__active__tag_img__quyUT {
    display: block;
    margin-right: 5px;
    height: 20px;
    width: 20px;
    max-width: 100%;
}
.GuidePreinstallDialog_installNow__active__tag_span__1JHWn {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.GuidePreinstallDialog_installNow__active__btn__P3WP4 {
    align-items: center;
    background: var(--theme-color);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    height: 45px;
    justify-content: center;
    width: 100%;
}
@keyframes GuidePreinstallDialog_loading-circular__xeYJp {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40;
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120;
    }
}
@keyframes GuidePreinstallDialog_animateNumber__pSrO_ {
    from {
        content: "0.00";
    }
    to {
        content: "100.00";
    }
}

.QRCode_qrcode_img__FhaFh {
    position: absolute;
    top: 47%;
    left: 51%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    -webkit-clip-path: inset(14px);
            clip-path: inset(14px);
}

/* 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 */
.newcomerGiftPack_layer__SIsOi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    padding: 0 0.5rem;
}

.newcomerGiftPack_wrapper__1UXHX {
    z-index: 1001;
    width: 9.2rem;
    max-width: 9.2rem;
    height: 11rem;
    background: url("data:image/webp;base64,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")
        no-repeat;
    background-size: 100% 100%;
}

.newcomerGiftPack_content__22LhA {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    padding-top: 0.4rem;
}

.newcomerGiftPack_content__22LhA h4 {
    color: #f1ab39;
}

.newcomerGiftPack_content__22LhA h1 {
    color: #fff;
}

.newcomerGiftPack_icon_close__eEryu {
    position: absolute;
    top: 0;
    right: 0.3rem;
    z-index: 1010;
}

.newcomerGiftPack_main__7ZKuY {
    width: 94%;
    height: 4.4rem;
    background: #5a0c86;
    border-radius: 0.3rem;
    margin: 1.2rem auto 0.5rem auto;
    position: relative;
}

.newcomerGiftPack_main_icon__JIKbg {
    width: 4.8rem;
    margin-top: -1.1rem;
}

.newcomerGiftPack_text_claim__olEXt {
    font-size: 0.5rem;
    color: #9a8aff;
    margin-top: -0.1rem;
}

.newcomerGiftPack_icon_gold__3y8Dc {
    width: 1rem;
    margin-right: 0.2rem;
}

.newcomerGiftPack_text_num__J166M {
    font-size: 1.3rem;
    font-weight: 900;
    color: #faee31;
}

.newcomerGiftPack_text_num__J166M:nth-last-child(1) {
    color: #44ff0f;
}

.newcomerGiftPack_text_plus__49rcU {
    font-weight: 900;
    margin: 0 0.3rem;
    color: #fff;
    display: inline-block;
    vertical-align: 0.1rem;
}

.HomeTips_home_tips__vo8Na {
    position: relative;
}

.HomeTips_home_tips_main__VogVg {
    background: #1d1829;
    width: 12rem;
    padding: 0.1rem 0.5rem;
    margin: 0 auto;
    max-width: 100%;
}

.HomeTips_home_item__bfnU7 {
}

.HomeTips_home_icon__WbMwd {
    font-size: 0.65rem;
    color: #68656e;
}

.HomeTips_home_txt__Jsd2J {
    padding-left: 0.1rem;
    font-size: 0.28rem;
    font-weight: 900;
    color: #b2b2b2;
}

.AccumulatedCharge_accumulatedChargeMain__EdjAy{
  height: 2rem;
}
.AccumulatedCharge_accumulatedContent__cKD3Q {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  top: -0.21rem;
}
.AccumulatedCharge_accumulatedCharge__UciO1 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.AccumulatedCharge_bg__jvRf9 {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border-image: linear-gradient(0deg, #921b86, #65089c) 4 4;
}
.AccumulatedCharge_timeStyle__efksO {
  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;
}
.AccumulatedCharge_timeStyle__efksO p{
  font-family: Roboto;
  font-weight: 500;
  font-size: 0.32rem;
  color: #FFFFFF;
}
.AccumulatedCharge_timeStyle__efksO span{
  font-size: 0.28rem;
  color: #796790;
}
.AccumulatedCharge_statuIcon__T53Oh {
  width: 0.33rem;
  height: 0.33rem;
  background: #ff183e;
  box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.39);
  border-radius: 50%;
  border: 1px solid #ffe9e9;
  position: absolute;
  z-index: 1;
  right: -0.8rem;
  top: .2rem;
}

.AmountLossPopup_amountLossPopupMain__yc5O1{
    height: 2rem;
}
.AmountLossPopup_amountLossPopupContent___eo7f {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    top: -0.21rem;
}
.AmountLossPopup_amountLoss__oTf1L {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.AmountLossPopup_bg__eeWng {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border-image: linear-gradient(0deg, #921b86, #65089c) 4 4;
}
.AmountLossPopup_timeStyle__0gtWe {
    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;
}
.AmountLossPopup_timeStyle__0gtWe p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 0.32rem;
    color: #ffffff;
}
.AmountLossPopup_timeStyle__0gtWe span {
    font-size: 0.28rem;
    color: #796790;
}
.AmountLossPopup_statuIcon__8Ld5v {
    width: 0.33rem;
    height: 0.33rem;
    background: #ff183e;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.39);
    border-radius: 50%;
    border: 1px solid #ffe9e9;
    position: absolute;
    z-index: 1;
    right: -0.8rem;
    top: 0.2rem;
}

.AmountLossPopup_bgstyle__zkk3Q{
    position: absolute;
    top: 0.85rem;
    left: 0.6rem;
}
.HomePopupsList_home_popups_list__QXmLV {
    max-width: 12rem;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    padding: 0 0.2rem;
    margin: 0.3rem auto 0;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.HomePopupsList_home_popups_list__QXmLV::-webkit-scrollbar {
    display: none;
}
.HomePopupsList_accumulated_charge__7d4QX,
.HomePopupsList_inbox_popup__UWjP7,
.HomePopupsList_vip_club_popup__qKV0Q,
.HomePopupsList_amount_loss_popup__ESuLg {
    width: 2.6rem;
    height: 2rem;
    background: #211b2e;
    border-radius: 0.1rem;
    margin: 0.4rem 0.11rem 0;
    border-bottom: 4px solid #3e224c;
    padding-bottom: 4px;
    position: relative;
    flex-shrink: 0;
}

.HomePopupsList_accumulated_charge__7d4QX::after,
.HomePopupsList_inbox_popup__UWjP7::after,
.HomePopupsList_vip_club_popup__qKV0Q::after,
.HomePopupsList_amount_loss_popup__ESuLg::after {
    content: "";
    width: 0.6rem;
    border-radius: 50%;
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 0 0 30px 25px rgba(236, 135, 11, 0.2);
}
.HomePopupsList_selected__6MkFD {
    border-bottom: 4px solid #ec4cff;
    padding-bottom: 4px;
}

.InBoxPopup_inBoxPopupMain__iuTHw {
    height: 2rem;
}
.InBoxPopup_inBoxPopupContent__qr073 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    top: -0.21rem;
}
.InBoxPopup_inBox___nifH {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.InBoxPopup_bg__KG6eu {
    width: 0.98rem;
    height: 1.2rem;
    border-radius: 50%;
    border-image: linear-gradient(0deg, #921b86, #65089c) 4 4;
}
.InBoxPopup_timeStyle__YA5QX {
    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;
}
.InBoxPopup_timeStyle__YA5QX p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 0.32rem;
    color: #ffffff;
}

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

.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_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;
}

.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;
}

.license-header_header__yfW40 {
    width: 100%;
    max-width: 21rem;
    height: 0.96rem;
    margin: 0 auto;
    background: #191820;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    box-sizing: border-box;
}

.license-header_left__s_FbX {
    display: flex;
    align-items: center;
}

.license-header_logo__OqAPY {
    display: block;
    width: 2.4rem;
    height: auto;
}

.license-header_center__237_O {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    margin-left: 0.3rem;
}

.license-header_promotions__WWR_c {
    background: #23222b;
    color: #fff;
    border: none;
    border-radius: 0.12rem;
    padding: 0.2rem 0.36rem;
    font-weight: 600;
    font-size: 0.2rem;
    cursor: pointer;
    border: 0.02rem solid #23222b;
}

.license-header_wallet__DFyiJ {
    display: flex;
    align-items: center;
    border: 0.02rem solid #424242;
    border-radius: 0.12rem;
    padding: 0.08rem 0.24rem;
    gap: 0.12rem;
    width: 3.14rem;
    height: 0.52rem;
    font-size: 0.24rem;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.license-header_wallet__DFyiJ img {
    position: absolute;
    left: 0.16rem;
    width: 0.32rem;
    height: 0.32rem;
}

.license-header_balance__V7jzX {
    color: #fff;
    font-size: 0.25rem;
    font-weight: 600;
    padding-left: 0.2rem;
}

.license-header_right__4CKmz {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.license-header_register__SykBt {
    background: linear-gradient(90deg, #FFED3C 0%, #FFA33A 100%);
    color: #191820;
    border: none;
    border-radius: 0.12rem;
    padding: 0.16rem 0.42rem;
    font-weight: 700;
    font-size: 0.22rem;
    cursor: pointer;
    margin-right: 0.08rem;
}

.license-header_login__MOWcF {
    background: #23222b;
    color: #fff;
    border: none;
    border-radius: 0.12rem;
    padding: 0.16rem 0.42rem;
    font-weight: 600;
    font-size: 0.22rem;
    cursor: pointer;
    margin-right: 0.08rem;
}

.license-header_avatar__kgh_u {
    width: 0.64rem;
    height: 0.64rem;
    border-radius: 50%;
    background: #23222b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.use-deposit_backdrop___7tB_ {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.use-deposit_modal__BpsGI {
    background: #2C2C3A;
    border-radius: 0.36rem;
    width: 8.8rem;
    padding: 0.32rem;
    color: #fff;
    position: relative;
    transform: scale(0.8)!important;
    transform-origin: center;
    border: 0.05rem solid #414152;
}
.use-deposit_tabHeader__dgb6v {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0.08rem;
    width: 5.6rem;
    margin: 0 auto;
    margin-bottom: 0.36rem;
    border: 0.02rem solid #585877;
}
.use-deposit_closeBtn__ULi5_ {
    position: absolute;
    right: 0.3rem;
    top: 0.18rem;
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.84rem;
    line-height: 100%;
    height: 0.32rem;
    cursor: pointer;
}
.use-deposit_tabBtn__Eevob {
    background: transparent;
    color: #585877;
    border: none;
    border-radius: 0.12rem;
    padding: 0.12rem 0.36rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    font-size: 0.3rem;
    flex: 1 1;
    height: 0.58rem;
}
.use-deposit_tabBtn__Eevob.use-deposit_active__FqKyh {
    background: #39385a;
    color: #fff;
    border: 1px solid #888888;
}
.use-deposit_sectionTitle___agTb {
    font-weight: 700;
    font-size: 0.36rem;
    text-align: center;
    margin-bottom: 0.12rem;
}
.use-deposit_withdrawSection__e2Z67 {
    display: flex;
    flex-direction: row;
    gap: 0.24rem;
    align-items: center;
    justify-content: center;
}
.use-deposit_packageGrid__N9JeQ,
.use-deposit_paymentGrid__T_C6v {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24rem;
    margin-bottom: 0.48rem;
    background-color: #1f1e25;
    border-radius: 0.12rem;
    padding: 0.18rem;
}
.use-deposit_packageBtn__ZKTjj,
.use-deposit_paymentBtn__6z4FX {
    flex: 1 0 40%;
    min-width: 2.64rem;
    padding: 0.18rem 0;
    border-radius: 0.08rem;
    border: 0.06rem solid #414152;
    background: #414152;
    color: #fff;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    font-size: 0.36rem;
    outline: none;
    cursor: pointer;
    transition:
        border 0.2s,
        background 0.2s;
    overflow: hidden;
    position: relative;
}
.use-deposit_selected__CuD5E {
    border: none;
}
.use-deposit_selected__CuD5E::before{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 0.06rem solid;
    border-image: linear-gradient(0deg, #FFED3C, #FFA33A) 10 10;
    border-radius: 0.08rem;
}
.use-deposit_infoText__GFRXA {
    font-size: 0.2rem;
    color: #aaa;
    margin-bottom: 0.36rem;
    line-height: 1.5;
    height: 1.5rem;
    overflow-y: auto;
}
.use-deposit_infoText__GFRXA span{
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}
.use-deposit_actionBtn__j76mD {
    width: 4.08rem;
    height: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 0.18rem;
    background: linear-gradient(90deg, #ffe16a 0%, #ffb43a 100%);
    color: #23223a;
    font-weight: bold;
    font-size: 0.36rem;
    border: none;
    margin-bottom: 0.18rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.use-deposit_actionBtn__j76mD:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
.use-deposit_link__GJz4b {
    text-align: center;
    font-size: 0.24rem;
    color: #aaa;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 0.3rem;
}
.use-deposit_balanceBox__mGtsn {
    background: #18182c;
    border-radius: 0.18rem;
    padding: 0.18rem 0.36rem;
    font-size: 0.42rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 3rem;
}
.use-deposit_formContainer__Izh7j{
    padding: 0.24rem 0.15rem;
    background: #1F1E25;
    border-radius: 0.08rem;
    border: 0.03rem solid #30303F;
    margin-top: 0.12rem;
    margin-bottom: 0.28rem;
}
.use-deposit_inputLabel__cBcYf {
    font-weight: 700;
    font-size: 0.24rem;
    margin-bottom: 0.11rem;
}
.use-deposit_input__vrzQb {
    width: 100%;
    height: 0.68rem;
    display: block;
    padding: 0.18rem;
    border-radius: 0.08rem;
    border: none;
    background: #414152;
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 0.3rem;
    outline: none;
}
.use-deposit_input__vrzQb:last-child{
    margin-bottom: 0rem;
}
.use-deposit_deposit__PcxR7{
    font-size: 0.24rem;
    font-weight: 100;
    max-height: 8rem;
    overflow: auto;
}
.use-deposit_deposit__PcxR7 h1{
    text-align: center;
}
.use-deposit_deposit__PcxR7 strong{
    font-weight: 900;
}
.use-deposit_balanceInput__CvIaF{
    width: 1.2rem;
    font-size: 0.42rem;
    background: transparent;
    margin-left: 0.3rem;
}

.use-error_backdrop__YNBHu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.use-error_modal___eK6d {
    background: #2C2C3A;
    border-radius: 0.3rem;
    width: 5.24rem;
    padding: 0rem 1.04rem;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    border: 0.03rem solid #414152;
    animation: use-error_fadeIn__dL9hk 0.3s ease-in-out;
}
.use-error_closeBtn__GMEdG {
    position: absolute;
    right: 0.3rem;
    top: 0.1rem;
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.8rem;
    cursor: pointer;
}
.use-error_content__fzNEq {
    font-size: 0.24rem;
    font-weight: 700;
    margin-top: 0.99rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}
@keyframes use-error_fadeIn__dL9hk {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.use-cookie_backdrop__7YwBj {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.use-cookie_modal__sh1ok {
    background: #23223a;
    border-radius: 0.3rem;
    margin-bottom: 0.5rem;
    width: 10rem;
    padding: 0 0.3rem;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    border: 0.03rem solid #414152;
    animation: use-cookie_fadeIn__ufNJ0 0.3s ease-in-out;
}
.use-cookie_closeBtn__uGSes {
    position: absolute;
    right: 0.3rem;
    top: 0.1rem;
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.8rem;
    cursor: pointer;
}
.use-cookie_content__WcTyd {
    font-size: 0.24rem;
    font-weight: 700;
    margin-top: 0.39rem;
    margin-bottom: 0.05rem;
    line-height: 1.5;
}
.use-cookie_content__WcTyd h1{
    font-size: 0.36rem;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.use-cookie_content__WcTyd h1:before{
    content: '';
    display: block;
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.2rem;
    background: url("/img/icon_chioce_1@2x.png")  center / 100% no-repeat;
}
.use-cookie_content__WcTyd p {
    margin-bottom: 0.3rem;
}
.use-cookie_content__WcTyd p span {
    text-decoration: underline;
    cursor: pointer;
    color: blue;
}
.use-cookie_btns__O8duQ{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0.3rem;
}
.use-cookie_acceptBtn__o1wmx{
    width: 3rem;
    height: 0.52rem;
    background: linear-gradient(90deg, #FFED3C 0%, #FFA33A 100%);
    border-radius: 0.08rem;
    border: 0px solid #0B1434;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.24rem;
}
.use-cookie_rejectBtn__aY0wh{
    width: 3rem;
    height: 0.52rem;
    background: #626284;
    border-radius: 0.08rem;
    border: 0.03rem solid #6C6C8D;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.24rem;
}
@keyframes use-cookie_fadeIn__ufNJ0 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.userInfo_backdrop__Uoodr {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.userInfo_modal__3PFDH {
    background: #2C2C3A;
    border-radius: 0.36rem;
    width: 8.5rem;
    padding: 0.6rem 0.6rem 0.7rem 0.6rem;
    color: #fff;
    position: relative;
    box-sizing: border-box;
    border: 0.03rem solid #414152;
}
.userInfo_header__kIKVK {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.4rem;
}
.userInfo_title__PVJd5 {
    font-size: 0.3rem;
    font-weight: 700;
    text-align: center;
}
.userInfo_closeBtn__8VQAl {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.7rem;
    cursor: pointer;
}
.userInfo_profile__b0YOW {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.userInfo_avatar__GW_Sp {
    width: 1.36rem;
    height: 1.36rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.3rem;
    background: #39385a;
}
.userInfo_info__KJ19D {
    flex: 1 1;
}
.userInfo_usernameRow__7EO8X,
.userInfo_uidRow__W6fQd {
    display: flex;
    align-items: center;
    margin-bottom: 0.12rem;
}
.userInfo_label__96aa1 {
    font-size: 0.26rem;
    color: #fff;
    margin-right: 0.12rem;
    font-weight: 700;
}
.userInfo_value__a3hHP {
    font-size: 0.28rem;
    color: #fff;
    margin-right: 0.12rem;
    font-weight: 700;
}
.userInfo_iconBtn__XJsT_ {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 0.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.userInfo_actionGrid__7Ntqt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.3rem 0.22rem;
    gap: 0.3rem 0.22rem;
    background: #1f1e25;
    padding: 0.26rem;
    border-radius: 0.1rem;
}
.userInfo_actionBtn__ptDwM {
    height: 0.68rem;
    background: #414152;
    color: #fff;
    border: none;
    border-radius: 0.08rem;
    font-size: 0.32rem;
    font-family: Roboto;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.userInfo_actionBtn__ptDwM:hover {
    background: #2d2c45;
}

.use-confirm_backdrop__IceZY {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-confirm_modal__ZbFou {
    width: 8.92rem;
    min-height: 4.55rem;
    background: #2C2C3A;
    border-radius: 0.3rem;
    border: 0.03rem solid #414152;
    max-width: 12rem;
    padding: 0.38rem 0.3rem;
    box-shadow: 0 0.08rem 0.32rem rgba(0, 0, 0, 0.25);
    position: relative;
}

.use-confirm_closeBtn___IypZ {
    position: absolute;
    top: 0.1rem;
    right: 0.4rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.6rem;
    cursor: pointer;
    z-index: 1;
}

.use-confirm_title__zDbTw {
    font-size: 0.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.24rem;
    text-align: center;
}

.use-confirm_content__HIbJg {
    width: 8.3rem;
    min-height: 2rem;
    padding: 0.56rem 0.33rem;
    font-size: 0.24rem;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: center;
    line-height: 1.5;
    background: #1F1E25;
}

.use-confirm_confirmBtn__qw72i {
    width: 4.8rem;
    height: 0.96rem;
    background: linear-gradient(90deg, #ffe16a 0%, #ffb43e 100%);
    border: none;
    border-radius: 0.2rem;
    color: #23222b;
    font-size: 0.24rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 0.04rem;
    display: block;
    transition: background 0.2s;
    box-shadow: 0 0.08rem 0.24rem rgba(255, 180, 62, 0.15);
}

.login_backdrop__ejxqK {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_modal__6iJ2b {
    background: #2C2C3A;
    border-radius: 0.36rem;
    width: 8.8rem;
    padding: 0.32rem;
    color: #fff;
    position: relative;
    transform: scale(0.8)!important;
    transform-origin: center;
    border: 0.05rem solid #414152;
}
.login_header__I3Ueb {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.4rem;
}
.login_title__g2eo4 {
    font-size: 0.5rem;
    font-weight: 700;
    text-align: center;
}
.login_closeBtn__F6p9L {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.7rem;
    cursor: pointer;
}
.login_form__Y7wU5 {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}
.login_inputGroup__sX2eB {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.12rem;
}
.login_inputGroup__sX2eB:last-child {
    margin-top: 0.3rem;
}
.login_label__u8wYT {
    font-size: 0.26rem;
    color: #aaa;
    margin-bottom: 0.08rem;
    font-weight: 700;
}
.login_input__zzXtM {
    width: 100%;
    padding: 0.22rem 0.18rem;
    border-radius: 0.14rem;
    border: none;
    background: #414152;
    color: #fff;
    font-size: 0.32rem;
    outline: none;
}
.login_pwdWrapper__asQ1f {
    position: relative;
    display: flex;
    align-items: center;
}
.login_eyeBtn__c5RaX {
    position: absolute;
    right: 0.12rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}
.login_forgotRow__i4Edp {
    text-align: right;
    margin-bottom: 0.18rem;
    text-align: center;
}
.login_forgotBtn__FNzPH {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.24rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}
.login_inputContainer__QP8Wa {
    border-radius: 0.2rem;
    padding: 0.2rem;
    background: #1f1e25;
}
.login_loginBtn__kVftW {
    width: 100%;
    padding: 0.3rem 0;
    border-radius: 0.18rem;
    background: linear-gradient(90deg, #ffe16a 0%, #ffb43a 100%);
    color: #23223a;
    font-weight: 700;
    font-size: 0.36rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.login_loginBtn__kVftW:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.use-registration_backdrop__ggvjw {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.use-registration_modal__WOtgv {
    background: #2c2c3a;
    border-radius: 0.36rem;
    width: 8.8rem;
    padding: 0.32rem;
    color: #fff;
    position: relative;
    transform: scale(0.8) !important;
    transform-origin: center;
    border: 0.05rem solid #414152;
}
.use-registration_tabHeader__AbXV5 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0.08rem;
    width: 5.6rem;
    margin: 0 auto;
    margin-bottom: 0.36rem;
    border: 0.02rem solid #585877;
}
.use-registration_tabBtn__zu6zw {
    background: transparent;
    color: #585877;
    border: none;
    border-radius: 0.12rem;
    padding: 0.12rem 0.36rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    font-size: 0.24rem;
    flex: 1 1;
    height: 0.58rem;
}
.use-registration_tabBtn__zu6zw.use-registration_active__8udoH {
    background: #39385a;
    color: #fff;
}
.use-registration_closeBtn__JqGLh {
    position: absolute;
    right: 0.3rem;
    top: 0.18rem;
    background: transparent;
    border: none;
    color: #585877;
    font-size: 0.84rem;
    line-height: 100%;
    height: 0.32rem;
    cursor: pointer;
}
.use-registration_form__O1hu0 {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}
.use-registration_inputContainer__iEvkX {
    padding: 0.2rem;
    background-color: #1f1e25;
    border-radius: 0.2rem;
}
.use-registration_inputGroup__TmGli {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.3rem;
}
.use-registration_label__sdpvr {
    font-weight: 700;
    font-size: 0.24rem;
    margin-bottom: 0.11rem;
}
.use-registration_input__SgSat {
    width: 100%;
    height: 0.68rem;
    display: block;
    padding: 0.18rem;
    border-radius: 0.08rem;
    border: none;
    background: #414152;
    color: #fff;
    font-size: 0.3rem;
    outline: none;
}
.use-registration_inputGroup__TmGli:last-child {
    margin-bottom: 0rem;
}
.use-registration_pwdWrapper__6W_Tp {
    position: relative;
    display: flex;
    align-items: center;
}
.use-registration_eyeBtn__IIgVf {
    position: absolute;
    right: 0.12rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}
.use-registration_codeRow__rtTbl {
    display: flex;
    align-items: center;
    gap: 0.14rem;
}
.use-registration_sendBtn__PDGDU {
    background: linear-gradient(90deg, #209bf1 0%, #1278e0 100%);
    color: #fff;
    border: none;
    border-radius: 0.12rem;
    font-size: 0.28rem;
    font-weight: 700;
    padding: 0.18rem 0.4rem;
    cursor: pointer;
    transition: background 0.2s;
}
.use-registration_sendBtn__PDGDU:disabled {
    background: #888;
    cursor: not-allowed;
}
.use-registration_agreeRow__OZPw5 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.18rem;
    gap: 0.12rem;
}
.use-registration_agreeRow__OZPw5 span {
    color: #0899ff;
    text-deroration: underline;
    cursor: pointer;
}
.use-registration_checkbox__w9Cuq {
    width: 0.32rem;
    height: 0.32rem;
    accent-color: #2196f3;
    margin-top: 0.04rem;
    -webkit-appearance: auto;
            appearance: auto;
    border-radius: 0.1rem;
}
.use-registration_agreeLabel__AKzMn {
    font-size: 0.22rem;
    color: #fff;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.use-registration_agreeLabel__AKzMn a {
    color: #2196f3;
    text-decoration: underline;
}
.use-registration_registerBtn__fKPIc {
    width: 100%;
    padding: 0.32rem 0;
    border-radius: 0.18rem;
    background: linear-gradient(90deg, #ffe16a 0%, #ffb43a 100%);
    color: #23223a;
    font-weight: 700;
    font-size: 0.36rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.use-registration_registerBtn__fKPIc:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.license-footer_footer__pSErj {
    background: #23222b;
    color: #fff;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 21rem;
    margin: 0 auto;
    min-height: 6rem;
    background-image: url("/img/license-page/img_botttom.webp");
    background-size: 50% 100%;
    background-position: left;
    background-repeat: no-repeat;
}

.license-footer_top__b5imt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0.48rem;
    margin-bottom: 0.32rem;
}

.license-footer_logoAndDesc__OXYHA {
    display: flex;
    flex-direction: column;
    flex: 1.5 1;
}

.license-footer_logo__mk0eq {
    margin-bottom: 0.12rem;
}

.license-footer_desc__9wxdS {
    font-size: 0.2rem;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 0.08rem;
}

.license-footer_links__mKKhl {
    display: flex;
    gap: 1rem;
    flex: 2 1;
    justify-content: flex-end;
}

.license-footer_linkTitle__M7Jd4 {
    font-weight: bold;
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01rem;
}

.license-footer_linkItem__KIcrF {
    font-size: 0.28rem;
    color: #fff;
    margin-bottom: 0.2rem;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.license-footer_linkItem__KIcrF:hover {
    opacity: 1;
    text-decoration: underline;
}

.license-footer_bottom__u2JoA {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem 0;
    position: relative;
}

.license-footer_badges__t2__L {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.18rem;
    cursor: pointer;
}

.license-footer_badge__C3J7c {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ffe066 0%, #ffb347 100%);
    color: #23222b;
    border-radius: 0.08rem;
    padding: 0.12rem 0.38rem;
    font-weight: bold;
    font-size: 0.36rem;
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.06);
    gap: 0.4rem;
    border: 0.02rem solid #23222b;
    justify-content: center;
    width: 5.34rem;
    height: 0.98rem;
}

.license-footer_badge__C3J7c img {
    display: block;
    margin-right: 0.12rem;
}

.license-footer_badge__C3J7c span {
    text-align: left; /* 文字居中 */
    font-size: 0.24rem;
    font-weight: 600;
}

.license-footer_copyright__mDCXv {
    color: #bdbdbd;
    font-size: 0.26rem;
    margin-top: 0.08rem;
    text-align: center;
    position: absolute;
    bottom: -1rem;
    left: 0.5rem;
}
.license-footer_badge_logo__CfjXp{
    display: inline-block;
    width: 53px;
    height: 53px;
}
.license-footer_badge_logo__CfjXp img{
    width: 100%;
    height: 100%;
}

