@charset "UTF-8";
:root {
    --animate-duration: .3s;
    --animate-delay: .3s;
    --animate-repeat: 1
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: calc(var(--animate-duration) * 1);
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    animation-iteration-count: infinite
}

.animate__animated.animate__forwards {
    animation-fill-mode: forwards
}

.animate__animated.animate__faster {
    animation-duration: .5s;
    animation-duration: calc(var(--animate-duration) * .5)
}

.animate__animated.animate__fast {
    animation-duration: .8s;
    animation-duration: calc(var(--animate-duration) * .8)
}

.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2)
}

.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3)
}

.animate__animated.animate__direction_normal {
    animation-direction: normal
}

.animate__animated.animate__direction_reverse {
    animation-direction: reverse
}

.animate__animated.animate__direction_alternate {
    animation-direction: alternate
}

.animate__animated.animate__direction_alternate-reverse {
    animation-direction: alternate-reverse
}

.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: calc(var(--animate-repeat) * 1)
}

.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animate__animated.animate__repeat-4 {
    animation-iteration-count: 4;
    animation-iteration-count: calc(var(--animate-repeat) * 4)
}

.animate__animated.animate__repeat-5 {
    animation-iteration-count: 5;
    animation-iteration-count: calc(var(--animate-repeat) * 5)
}

.animate__animated.animate__delay-50ms {
    animation-delay: .05s;
    animation-delay: calc(var(--animate-delay) * .05)
}

.animate__animated.animate__delay-100ms {
    animation-delay: .1s;
    animation-delay: calc(var(--animate-delay) * .1)
}

.animate__animated.animate__delay-150ms {
    animation-delay: .15s;
    animation-delay: calc(var(--animate-delay) * .15)
}

.animate__animated.animate__delay-200ms {
    animation-delay: .2s;
    animation-delay: calc(var(--animate-delay) * .2)
}

.animate__animated.animate__delay-250ms {
    animation-delay: .25s;
    animation-delay: calc(var(--animate-delay) * .25)
}

.animate__animated.animate__delay-300ms {
    animation-delay: .3s;
    animation-delay: calc(var(--animate-delay) * .3)
}

.animate__animated.animate__delay-350ms {
    animation-delay: .35s;
    animation-delay: calc(var(--animate-delay) * .35)
}

.animate__animated.animate__delay-400ms {
    animation-delay: .4s;
    animation-delay: calc(var(--animate-delay) * .4)
}

.animate__animated.animate__delay-450ms {
    animation-delay: .45s;
    animation-delay: calc(var(--animate-delay) * .45)
}

.animate__animated.animate__delay-500ms {
    animation-delay: .5s;
    animation-delay: calc(var(--animate-delay) * .5)
}

.animate__animated.animate__delay-550ms {
    animation-delay: .55s;
    animation-delay: calc(var(--animate-delay) * .55)
}

.animate__animated.animate__delay-600ms {
    animation-delay: .6s;
    animation-delay: calc(var(--animate-delay) * .6)
}

.animate__animated.animate__delay-650ms {
    animation-delay: .65s;
    animation-delay: calc(var(--animate-delay) * .65)
}

.animate__animated.animate__delay-700ms {
    animation-delay: .7s;
    animation-delay: calc(var(--animate-delay) * .7)
}

.animate__animated.animate__delay-750ms {
    animation-delay: .75s;
    animation-delay: calc(var(--animate-delay) * .75)
}

.animate__animated.animate__delay-800ms {
    animation-delay: .8s;
    animation-delay: calc(var(--animate-delay) * .8)
}

.animate__animated.animate__delay-850ms {
    animation-delay: .85s;
    animation-delay: calc(var(--animate-delay) * .85)
}

.animate__animated.animate__delay-900ms {
    animation-delay: .9s;
    animation-delay: calc(var(--animate-delay) * .9)
}

.animate__animated.animate__delay-950ms {
    animation-delay: .95s;
    animation-delay: calc(var(--animate-delay) * .95)
}

.animate__animated.animate__delay-1000ms {
    animation-delay: 1s;
    animation-delay: calc(var(--animate-delay) * 1)
}

.animate__animated.animate__delay-1050ms {
    animation-delay: 1.05s;
    animation-delay: calc(var(--animate-delay) * 1.05)
}

.animate__animated.animate__delay-1100ms {
    animation-delay: 1.1s;
    animation-delay: calc(var(--animate-delay) * 1.1)
}

.animate__animated.animate__delay-1150ms {
    animation-delay: 1.15s;
    animation-delay: calc(var(--animate-delay) * 1.15)
}

.animate__animated.animate__delay-1200ms {
    animation-delay: 1.2s;
    animation-delay: calc(var(--animate-delay) * 1.2)
}

.animate__animated.animate__delay-1250ms {
    animation-delay: 1.25s;
    animation-delay: calc(var(--animate-delay) * 1.25)
}

.animate__animated.animate__delay-1300ms {
    animation-delay: 1.3s;
    animation-delay: calc(var(--animate-delay) * 1.3)
}

.animate__animated.animate__delay-1350ms {
    animation-delay: 1.35s;
    animation-delay: calc(var(--animate-delay) * 1.35)
}

.animate__animated.animate__delay-1400ms {
    animation-delay: 1.4s;
    animation-delay: calc(var(--animate-delay) * 1.4)
}

.animate__animated.animate__delay-1450ms {
    animation-delay: 1.45s;
    animation-delay: calc(var(--animate-delay) * 1.45)
}

.animate__animated.animate__delay-1500ms {
    animation-delay: 1.5s;
    animation-delay: calc(var(--animate-delay) * 1.5)
}

.animate__animated.animate__delay-1550ms {
    animation-delay: 1.55s;
    animation-delay: calc(var(--animate-delay) * 1.55)
}

.animate__animated.animate__delay-1600ms {
    animation-delay: 1.6s;
    animation-delay: calc(var(--animate-delay) * 1.6)
}

.animate__animated.animate__delay-1650ms {
    animation-delay: 1.65s;
    animation-delay: calc(var(--animate-delay) * 1.65)
}

.animate__animated.animate__delay-1700ms {
    animation-delay: 1.7s;
    animation-delay: calc(var(--animate-delay) * 1.7)
}

.animate__animated.animate__delay-1750ms {
    animation-delay: 1.75s;
    animation-delay: calc(var(--animate-delay) * 1.75)
}

.animate__animated.animate__delay-1800ms {
    animation-delay: 1.8s;
    animation-delay: calc(var(--animate-delay) * 1.8)
}

.animate__animated.animate__delay-1850ms {
    animation-delay: 1.85s;
    animation-delay: calc(var(--animate-delay) * 1.85)
}

.animate__animated.animate__delay-1900ms {
    animation-delay: 1.9s;
    animation-delay: calc(var(--animate-delay) * 1.9)
}

.animate__animated.animate__delay-1950ms {
    animation-delay: 1.95s;
    animation-delay: calc(var(--animate-delay) * 1.95)
}

.animate__animated.animate__delay-2000ms {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2)
}

@media print,
(prefers-reduced-motion: reduce) {
    .animate__animated:not(.animate__no_reduce) {
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important
    }
    .animate__animated:not(.animate__no_reduce)[class*=Out] {
        opacity: 0
    }
}

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

.animate__spin {
    animation-name: spin;
    animation-timing-function: linear
}

@keyframes beatUpAndDown {
    0% {
        translate: 0 -.02rem
    }
    to {
        translate: 0 .02rem
    }
}

.animate__beatUpAndDown {
    animation-name: beatUpAndDown
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.3)
    }
    to {
        transform: scale(1)
    }
}

.animate__heartBeat,
.animate__heartBeat__hover:hover,
.animate__heartBeat__hover:focus,
.animate__heartBeat__hover:active {
    animation-name: heartBeat;
    animation-duration: calc(var(--animate-duration) * 1.8);
    animation-timing-function: ease-in-out
}

.animate__heartBeat__hover:hover,
.animate__heartBeat__hover:focus,
.animate__heartBeat__hover:active {
    animation-duration: 1s;
    animation-duration: calc(var(--animate-duration) * 1);
    animation-fill-mode: both
}

@keyframes zoomIn {
    0% {
        transform: scale3d(.3, .3, .3);
        opacity: 0
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        transform: scale3d(.3, .3, .3);
        opacity: 0
    }
    to {
        opacity: 0
    }
}

.animate__zoomIn {
    animation-name: zoomIn
}

.animate__zoomOut {
    animation-name: zoomOut
}

.animate-zoom-enter-active {
    animation: var(--animate-duration) zoomIn both
}

.animate-zoom-leave-active {
    animation: var(--animate-duration) zoomOut both
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.animate__fadeIn {
    animation-name: fadeIn
}

.animate__fadeOut {
    animation-name: fadeOut
}

.animate-fade-enter-active {
    animation: var(--animate-duration) fadeIn both
}

.animate-fade-leave-active {
    animation: var(--animate-duration) fadeOut both
}

.animate-fade__without-normal-flow-enter-active {
    animation: var(--animate-duration) fadeIn both
}

.animate-fade__without-normal-flow-leave-active {
    position: absolute !important;
    animation: var(--animate-duration) fadeOut both
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        transform: translate3d(0, -100%, 0)
    }
}

.animate__slideInUp {
    animation-name: slideInUp
}

.animate__slideOutUp {
    animation-name: slideOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        transform: translate3d(0, 100%, 0)
    }
}

.animate__slideInDown {
    animation-name: slideInDown
}

.animate__slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        transform: translate3d(-100%, 0, 0)
    }
}

.animate__slideInLeft {
    animation-name: slideInLeft
}

.animate__slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        transform: translate3d(100%, 0, 0)
    }
}

.animate__slideInRight {
    animation-name: slideInRight
}

.animate__slideOutRight {
    animation-name: slideOutRight
}

.animate-slide-up-enter-active {
    animation: var(--animate-duration) slideInUp both
}

.animate-slide-up-leave-active {
    animation: var(--animate-duration) slideOutDown both
}

.animate-slide-down-enter-active {
    animation: var(--animate-duration) slideInDown both
}

.animate-slide-down-leave-active {
    animation: var(--animate-duration) slideOutUp both
}

.animate-slide-left-enter-active {
    animation: var(--animate-duration) slideInRight both
}

.animate-slide-left-leave-active {
    animation: var(--animate-duration) slideOutRight both
}

.animate-slide-right-enter-active {
    animation: var(--animate-duration) slideInLeft both
}

.animate-slide-right-leave-active {
    animation: var(--animate-duration) slideOutLeft both
}

.animate-slide-up-same-enter-active {
    animation: var(--animate-duration) slideInUp both
}

.animate-slide-up-same-leave-active {
    animation: var(--animate-duration) slideOutUp both
}

.animate-slide-down-same-enter-active {
    animation: var(--animate-duration) slideInDown both
}

.animate-slide-down-same-leave-active {
    animation: var(--animate-duration) slideOutDown both
}

.animate-slide-left-same-enter-active {
    animation: var(--animate-duration) slideInRight both
}

.animate-slide-left-same-leave-active {
    animation: var(--animate-duration) slideOutLeft both
}

.animate-slide-right-same-enter-active {
    animation: var(--animate-duration) slideInLeft both
}

.animate-slide-right-same-leave-active {
    animation: var(--animate-duration) slideOutRight both
}

.animate-page-push-enter-active {
    animation: var(--animate-duration) slideInRight both linear
}

.animate-page-push-leave-active {
    position: absolute !important;
    top: 0;
    width: 100%;
    animation: var(--animate-duration) slideOutLeft both linear
}

.animate-page-pop-enter-active {
    animation: var(--animate-duration) slideInLeft both linear
}

.animate-page-pop-leave-active {
    position: absolute !important;
    top: 0;
    width: 100%;
    animation: var(--animate-duration) slideOutRight both linear
}

.animate-page-fade-enter-active {
    animation: var(--animate-duration) fadeIn both
}

.animate-page-fade-leave-active {
    position: absolute !important;
    top: 0;
    width: 100%;
    animation: var(--animate-duration) fadeOut both
}

.animate-flip-list-move,
.animate-flip-list-enter-active,
.animate-flip-list-leave-active {
    transition: opacity var(--animate-duration), transform var(--animate-duration)
}

.animate-flip-list-enter-from,
.animate-flip-list-leave-to {
    opacity: 0 !important
}

.animate-flip-list-leave-active {
    position: absolute !important
}

.drop-down-enter-from,
.drop-down-leave-to {
    opacity: .8;
    transform: scaleY(.8) translateY(-.04rem)
}

.drop-down-enter-to,
.drop-down-leave-from {
    opacity: 1;
    transform: scaleY(.9999) translateY(0)
}

.drop-down-enter-active {
    transition: transform .2s cubic-bezier(.16, .75, .5, 1), opacity .2s cubic-bezier(.16, .75, .5, 1)
}

.drop-down-leave-active {
    transition: transform .2s cubic-bezier(.5, 0, .84, .25), opacity .2s cubic-bezier(.5, 0, .84, .25)
}

.drop-up-enter-from,
.drop-up-leave-to {
    opacity: .8;
    transform: scaleY(.8) translateY(.04rem)
}

.drop-up-enter-to,
.drop-up-leave-from {
    opacity: 1;
    transform: scaleY(.9999) translateY(0)
}

.drop-up-enter-active {
    transition: transform .2s cubic-bezier(.16, .75, .5, 1), opacity .2s cubic-bezier(.16, .75, .5, 1)
}

.drop-up-leave-active {
    transition: transform .2s cubic-bezier(.5, 0, .84, .25), opacity .2s cubic-bezier(.5, 0, .84, .25)
}

@keyframes common_bganimation {
    0% {
        background-position-x: 125%
    }
    to {
        background-position-x: -32%
    }
}

html {
    overflow: hidden;
    touch-action: manipulation;
    -webkit-text-size-adjust: none;
    height: 100%
}

html html[data-isdesktop="0"] {
    scrollbar-color: var(--skin__border) transparent;
    scrollbar-width: none
}

html html[data-isdesktop="0"]>* {
    scrollbar-color: auto
}

html ::-webkit-scrollbar {
    z-index: 11;
    width: 0
}

html ::-webkit-scrollbar-thumb {
    width: 0;
    background: var(--skin__border);
    border-radius: 0
}

html ::-webkit-scrollbar-corner {
    background: transparent
}

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

html ::-webkit-scrollbar-track-piece {
    width: 0;
    background: transparent
}

html ::-webkit-scrollbar:horizontal {
    height: 0
}

html ::-webkit-scrollbar:horizontal-thumb {
    border-radius: 0
}

html #nprogress {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000000;
    width: 100%
}

html[dir=rtl] #nprogress {
    left: auto;
    right: 0
}

html #nprogress .bar {
    height: .03rem;
    background: var(--skin__primary)
}

html #nprogress .bar .peg {
    box-shadow: 0 0 .1rem var(--skin__primary), 0 0 .05rem var(--skin__primary)
}

html #nprogress .spinner .spinner-icon {
    border-top-color: var(--skin__primary);
    border-left-color: var(--skin__primary)
}

html[dir=rtl] #nprogress .spinner .spinner-icon {
    border-left-color: currentcolor;
    border-right-color: var(--skin__primary)
}

html body {
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    color: var(--skin__neutral_1);
    background-color: var(--skin__bg_1);
    font-size: .24rem;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, miui, Hiragino Sans GB, Microsoft Yahei, sans-serif
}

html body #app {
    height: 100%;
    position: relative;
    overflow: hidden
}

div[style="border: 0.5px dotted transparent;"]:not([class]) {
    display: none
}

._live_zthxy_30 {
    position: absolute;
    z-index: 9999
}

._footerBox_12fc1_30 {
    padding: .2rem .2rem .4rem;
    background-color: var(--skin__web_bs_yj_bg)
}

._footerBox_12fc1_30:empty {
    padding: 0
}

._footerBox_12fc1_30 .assembly-box>div:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: .4rem
}

html[data-club="1"][data-skin-layout="42"] ._footerBox_12fc1_30 {
    background-color: transparent
}

._footerBox_12fc1_30._custom_12fc1_46 {
    padding: .2rem .2rem 0
}

._sport-tabs-home_17poe_30 {
    --tab-title-wrap-text-color: var(--skin__neutral_2);
    position: relative
}

._sport-tabs-home_17poe_30 ._sport-game-sticky-content_17poe_34 {
    background-color: var(--skin__home_bg)
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 {
    height: 1.34rem;
    margin: 0 .2rem;
    border-bottom: var(--lobby__px) solid var(--skin__border)
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 .ui-tabs__nav {
    margin-left: -.25rem;
    margin-right: -.25rem
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 {
    flex-direction: column;
    justify-content: space-around;
    height: 1.34rem;
    padding: .04rem .25rem .24rem;
    min-width: 1.28rem
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53 {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53._is-active_17poe_60 ._tab-img_17poe_60 {
    width: .64rem;
    height: .64rem
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53._is-active_17poe_60 ._text_17poe_64 {
    color: var(--skin__primary)
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53 ._tab-img_17poe_60 {
    width: .55rem;
    height: .55rem;
    pointer-events: none
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53 ._text_17poe_64 {
    font-size: .26rem;
    color: var(--tab-title-wrap-text-color);
    line-height: .36rem
}

._sport-tabs-home_17poe_30 ._game-tabs_17poe_37 ._tab-title_17poe_46 ._tab-title-wrap_17poe_53 ._text_17poe_64:lang(vi) {
    font-size: .2rem
}

._main-content_lck1m_30 {
    --content-min-height: 60vh;
    min-height: var(--content-min-height)
}

._club-main-content_lck1m_35 {
    --content-min-height: 40vh;
    margin-bottom: .4rem
}

._tabs-content_lck1m_46 {
    margin-top: .2rem;
    min-height: 1.3rem;
    max-height: 1.9rem;
    background-color: var(--skin__home_bg)
}

._tabs-content_lck1m_46._with-pt-bg_lck1m_52 {
    padding-bottom: .2rem;
    min-height: 1.5rem
}

._content-exhibition_lck1m_57 {
    margin-top: .02rem
}

._content-exhibition_lck1m_57._with-mt_lck1m_60 {
    margin-top: .2rem
}

._content-sport_lck1m_64 {
    min-height: var(--content-min-height)
}

._sport-tabs-home-text_lck1m_68 {
    --tab-title-wrap-text-color: var(--skin__neutral_2)
}

._tabs-content_lck1m_46 {
    margin-bottom: -.02rem
}

._home-pattern_1myq0_30 {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1
}

[data-ui-contain="1"] ._home-pattern_1myq0_30 {
    max-width: var(--lobby__max-width)
}

._sidebar-common-tab-wrapper_1ihj4_30 {
    margin-bottom: .16rem
}

._sidebar-common-tab-item_1ihj4_34 {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 1.46rem;
    height: .96rem;
    padding: .08rem;
    color: var(--skin__leftnav_def);
    word-break: break-all;
    border-radius: .1rem;
    border: solid .01rem #e3e3e3;
    box-shadow: .02rem .06rem .01rem rgba(180, 180, 180, .7);
    background-color: var(--skin__bg_2);
    background-size: 100% 100%
}

[dir=rtl] ._sidebar-common-tab-item_1ihj4_34 {
    box-shadow: -.02rem .06rem .01rem rgba(180, 180, 180, .7)
}

._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-tab-item-icon-box_1ihj4_50 {
    width: .6rem;
    height: .45rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: .36rem;
    z-index: 6;
    margin-bottom: .02rem
}

._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-tab-item-icon-box_1ihj4_50 .tab-icon59,
._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-tab-item-icon-box_1ihj4_50 .tab-icon59 i.lobby-image,
._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-tab-item-icon-box_1ihj4_50 .tab-icon59 img.lobby-image {
    width: 100%;
    height: 100%
}

._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-tab-name_1ihj4_73 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    font-size: .22rem;
    line-height: 1.57;
    z-index: 6
}

._sidebar-common-tab-item_1ihj4_34 ._sidebar-common-active-text-color_1ihj4_83 {
    color: var(--skin__leftnav_active)
}

._is-active_1ihj4_87 {
    background-image: linear-gradient(to bottom, #ffe8c4, #fff)
}

._long-tab-item_1ihj4_91 {
    height: 2.2rem
}

._long-tab-item_1ihj4_91 ._sidebar-common-tab-item-icon-box_1ihj4_50 {
    width: 1.3rem;
    height: .98rem;
    margin-top: .33rem;
    margin-bottom: .1rem
}

._long-tab-item_1ihj4_91 ._sidebar-common-tab-name_1ihj4_73 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: pre-wrap
}

._sidebar-tabs_glc56_30 {
    width: 7.04rem;
    padding-top: .2rem
}

._sidebar-tabs-title_glc56_34 {
    height: 100%;
    display: flex;
    width: 1.49rem;
    flex-direction: column
}

._sidebar-tabs_glc56_30 ._title_glc56_40 {
    justify-content: flex-start
}

._sidebar-tabs_glc56_30 .ui-tabs__nav {
    height: fit-content;
    padding-bottom: 0
}

._sidebar-tabs_glc56_30 .ui-tab-active {
    color: var(--skin__leftnav_active)
}

.ui-tabs__sticky-nav {
    padding-bottom: .16rem
}

._hot-content_1fwti_30 .ui-tabs__nav {
    background-color: transparent;
    border-bottom: thin solid var(--skin__border)
}

._hot-content_1fwti_30 .ui-tabs__nav--line {
    padding: 0
}

._hot-content_1fwti_30 .ui-tabs__line {
    bottom: 0;
    border-radius: 0
}

._hot-content_1fwti_30 .lobby-tab-item-game-list {
    border-top: initial
}

._hot-content_1fwti_30 .ui-placeholder {
    min-height: 3rem
}

._hot-content_1fwti_30 .game-bottomline-box {
    padding-right: .02rem
}

[dir=rtl] ._hot-content_1fwti_30 .game-bottomline-box {
    padding-right: 0;
    padding-left: .02rem
}

._hot-content_1fwti_30 ._game-list-box_1fwti_55 {
    padding-top: .18rem;
    padding-bottom: .2rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

._hot-content_1fwti_30 ._game-list-box_1fwti_55 .ui-empty {
    height: 100%;
    min-height: calc(var(--content-min-height) - 1.1rem);
    margin-top: initial
}

._hot-content_1fwti_30 ._placeholder-box_1fwti_67 {
    min-height: 3.16rem
}

._hot-content_1fwti_30 ._placeholder-box_1fwti_67 .ui-empty__image {
    margin-top: .3rem
}

._hot-content_1fwti_30 ._placeholder-box_1fwti_67 .ui-empty__text {
    margin-bottom: .2rem
}

._hot-content_1fwti_30 ._title_1fwti_78 {
    height: .7rem;
    line-height: .7rem;
    font-size: .24rem;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    color: var(--skin__lead)
}

._hot-content_1fwti_30 ._active_1fwti_88 {
    color: var(--skin__primary)
}

._gameContent_1ohjj_30 {
    padding: 0 .2rem;
    display: flex
}

._gameContent_1ohjj_30 .ui-tabs {
    padding-top: 0
}

._gameContent_1ohjj_30 .ui-tabs .ui-tab--active .lobby-image--use-bg {
    box-shadow: 0 .02rem .04rem 0 var(--skin__web_left_bg_shadow_active)
}

._gameContent_1ohjj_30 .ui-tab__panel {
    height: fit-content
}

._gameContent_1ohjj_30 .ui-sticky--fixed {
    padding-top: .2rem;
    overflow: hidden
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 {
    flex: 1;
    overflow: hidden;
    padding-left: .2rem
}

[dir=rtl] ._gameContent_1ohjj_30 ._gameList_1ohjj_47 {
    padding-left: 0;
    padding-right: .2rem
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 header {
    width: 100%;
    display: flex;
    padding: .2rem 0 .2rem .2rem;
    align-items: center;
    font-size: .3rem;
    color: #fff;
    border-top: var(--lobby__px) solid var(--skin__border)
}

[dir=rtl] ._gameContent_1ohjj_30 ._gameList_1ohjj_47 header {
    padding: .2rem .2rem .2rem 0
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 header img {
    width: .5rem;
    aspect-ratio: auto 25/19;
    margin-right: .1rem
}

[dir=rtl] ._gameContent_1ohjj_30 ._gameList_1ohjj_47 header img {
    margin-right: 0;
    margin-left: .1rem
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 ._games_1ohjj_66 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 5%
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 ._games_1ohjj_66>div {
    margin-bottom: .1rem
}

._gameContent_1ohjj_30 ._gameList_1ohjj_47 ._games_1ohjj_66 img {
    width: 100%;
    border-radius: .2rem
}

._gameContent_1ohjj_30 ._game-list-box_1ohjj_80 {
    padding: .2rem 0;
    border-top: thin solid var(--skin__border)
}

._gameContent_1ohjj_30 ._game-list-box_1ohjj_80._last-exhibit-game-list-box_1ohjj_84 {
    padding-bottom: 0
}

._gameContent_1ohjj_30 ._jackpot_1ohjj_87 {
    width: 5.2rem
}

._gameContent_1ohjj_30 ._jackpot_1ohjj_87+div {
    margin-top: .2rem
}

[data-club="1"] ._gameContent_1ohjj_30 .ui-tab__panel:first-child>div {
    border-top: initial
}

._bothSidesBox_ympb7_30 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1
}

[dir=rtl] ._bothSidesBox_ympb7_30 {
    left: auto;
    right: 0
}

._bothSidesBox_ympb7_30 ._bothSidesBoxLeft_ympb7_39 {
    left: 0;
    position: absolute
}

[dir=rtl] ._bothSidesBox_ympb7_30 ._bothSidesBoxLeft_ympb7_39 {
    left: auto;
    right: 0
}

._bothSidesBox_ympb7_30 ._fullScreenMiddleImg_ympb7_43 {
    position: absolute;
    left: 50%;
    height: 100%;
    transform: translate(-50%)
}

[dir=rtl] ._bothSidesBox_ympb7_30 ._fullScreenMiddleImg_ympb7_43 {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._bothSidesBox_ympb7_30 ._bothSidesBoxRight_ympb7_49 {
    right: 0;
    position: absolute
}

[dir=rtl] ._bothSidesBox_ympb7_30 ._bothSidesBoxRight_ympb7_49 {
    right: auto;
    left: 0
}

._header-nav_1u5kl_30 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

._more-popover_1u5kl_36 {
    overflow: initial
}

._more-popover_1u5kl_36 ._arrow_1u5kl_39 {
    position: absolute;
    top: -.1rem;
    left: .46rem;
    width: .22rem;
    height: .22rem;
    background: var(--skin__bg_2);
    border-color: var(--skin__border);
    border-style: solid;
    border-width: var(--lobby__px) 0 0 var(--lobby__px);
    transform: translate(-50%) rotate(45deg)
}

[dir=rtl] ._more-popover_1u5kl_36 ._arrow_1u5kl_39 {
    left: auto;
    right: .46rem;
    border-width: var(--lobby__px) var(--lobby__px) 0 0;
    transform: translate(50%) rotate(-45deg)
}

._more-popover_1u5kl_36 .ui-popover__content {
    border: thin solid var(--skin__border)
}

._more-popover_1u5kl_36 .ui-popover__content {
    background: transparent;
    box-shadow: none;
    border: 0
}

._more-popover-content_1u5kl_61 {
    display: flex;
    flex-wrap: wrap;
    width: 3.31rem;
    margin-right: .4rem;
    padding: .2rem .1rem .1rem;
    background: var(--skin__bg_2);
    box-shadow: 0 .03rem .07rem var(--skin__web_left_bg_shadow);
    border: thin solid var(--skin__border);
    border-radius: .14rem
}

[dir=rtl] ._more-popover-content_1u5kl_61 {
    margin-right: 0;
    margin-left: .4rem
}

._more-popover-content_1u5kl_61 ._nav-item_1u5kl_72 {
    width: 1rem
}

._more-popover-content_1u5kl_61 ._nav-item_1u5kl_72 {
    --nav-min-height: .54rem;
    --nav-line-height: normal
}

._more-popover-content_1u5kl_61 ._nav-item_1u5kl_72:nth-child(3n) {
    margin-right: 0
}

[dir=rtl] ._more-popover-content_1u5kl_61 ._nav-item_1u5kl_72:nth-child(3n) {
    margin-right: 0;
    margin-left: 0
}

._more-popover-content_1u5kl_61 ._nav-item_1u5kl_72:nth-child(3n) .ui-badge .ui-badge__content {
    max-width: .44rem
}

.lobby-home-header-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    height: .8rem;
    background-color: var(--skin__bs_topnav_bg)
}

.lobby-home-header-container__section--left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    z-index: 2
}

.lobby-home-header-container__section--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    z-index: 2
}

._header_bs8nr_30 {
    background-color: var(--skin__bs_topnav_bg);
    height: .9rem;
    padding: .07rem .2rem;
    border-bottom: thin solid var(--skin__border)
}

._header_bs8nr_30 .lobby-home-header-container__section--left {
    flex: 1;
    justify-content: flex-start
}

._header_bs8nr_30 .header-middle-festival {
    position: absolute;
    left: 2.9rem
}

[dir=rtl] ._header_bs8nr_30 .header-middle-festival {
    left: auto;
    right: 2.9rem
}

._header_bs8nr_30 ._logo-center_bs8nr_44 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

._header_bs8nr_30 ._logo-center_bs8nr_44 ._logo_bs8nr_44 {
    height: .7rem;
    max-width: 4.2rem
}

._header_bs8nr_30 ._logo-center_bs8nr_44 ._logo_bs8nr_44 .img-text-logo {
    --img-text-logo-width: 3.875rem;
    --img-text-logo-img-width: .7rem;
    --img-text-logo-img-height: .7rem;
    --img-text-logo-img-margin-right: .115rem
}

._header_bs8nr_30 ._switch-currency_bs8nr_60 {
    --currency-switch-container-margin-right: 0;
    --currency-switch-container-border-radius: .6rem;
    --currency-switch-right-icon-margin-left: 0;
    --currency-switch-container-padding-right: 0;
    --currency-switch-container-height: .5rem;
    margin-left: .2rem
}

[dir=rtl] ._header_bs8nr_30 ._switch-currency_bs8nr_60 {
    margin-left: 0;
    margin-right: .2rem
}

._header_bs8nr_30 ._switch-currency_bs8nr_60 .langText {
    display: none
}

._header_bs8nr_30 ._switch-currency_bs8nr_60 .currency-item {
    --item-currency-bg-width: .5rem;
    --item-currency-bg-height: .5rem;
    --item-currency-bg-img-width: .5rem;
    --item-currency-bg-img-height: .5rem;
    --item-height: .5rem;
    --item-currency-bg-margin: 0
}

._header_bs8nr_30 ._switch-currency_bs8nr_60 .currency-item img {
    margin-top: 0
}

._header_bs8nr_30 ._right_bs8nr_82 {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

._header_bs8nr_30 ._right_bs8nr_82 ._header-vip_bs8nr_88 {
    width: .57rem
}

._header_bs8nr_30 ._right_bs8nr_82 .ui-badge {
    transform: translate(100%, -70%)
}

[dir=rtl] ._header_bs8nr_30 ._right_bs8nr_82 .ui-badge {
    transform: translate(-100%, -70%)
}

._home-layout_x27ue_30 {
    background-color: var(--skin__home_bg)
}

._home-layout_x27ue_30 ._main_x27ue_33>div {
    margin-top: .2rem
}

._home-layout_x27ue_30 ._main_x27ue_33>div:first-of-type[data-big="1"] {
    margin-top: 0
}

html[data-ui-contain="1"] ._home-layout_x27ue_30 .lobby-scroll--y::-webkit-scrollbar {
    width: 0
}

._videoBox_6oc5f_30 {
    width: 7.1rem;
    height: 2.85rem;
    margin: 0 auto;
    margin-bottom: .2rem;
    background-image: linear-gradient(90deg, var(--skin__border), var(--skin__border), var(--skin__border), var(--skin__bg_2), var(--skin__border), var(--skin__border), var(--skin__border)) !important;
    background-size: 200% 100% !important;
    border-radius: .04rem;
    opacity: .5;
    animation: _common_bganimation_6oc5f_1 .9s linear infinite;
    opacity: 1 !important
}

[dir=rtl] ._videoBox_6oc5f_30 {
    background-image: linear-gradient(-90deg, var(--skin__border), var(--skin__border), var(--skin__border), var(--skin__bg_2), var(--skin__border), var(--skin__border), var(--skin__border)) !important
}

._videoBox_6oc5f_30 img {
    width: 100%;
    height: 100%
}

html[data-skin-id="93"] ._videoBox_6oc5f_30,
html[data-skin-id="95"] ._videoBox_6oc5f_30,
html[data-skin-id="96"] ._videoBox_6oc5f_30 {
    height: 2.84rem
}

._retry_11be0_30 {
    margin-left: .3rem
}

[dir=rtl] ._retry_11be0_30 {
    margin-left: 0;
    margin-right: .3rem
}

._marquee_11be0_34 {
    --marquee-swiper-container-content-font-size: .24rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .24rem 0 .25rem;
    font-size: .24rem;
    box-shadow: 0 .03rem .09rem rgba(0, 0, 0, 0);
    height: .5rem
}

[dir=rtl] ._marquee_11be0_34 {
    padding: 0 .25rem 0 .24rem
}

._marquee_11be0_34 ._retry_11be0_30 {
    display: flex;
    align-items: center;
    width: 100%
}

._marquee_11be0_34 ._left-icon_11be0_49 {
    width: .36rem;
    margin-right: .1rem;
    flex-shrink: 0
}

[dir=rtl] ._marquee_11be0_34 ._left-icon_11be0_49 {
    margin-right: 0;
    margin-left: .1rem
}

._marquee_11be0_34 ._swiper-container_11be0_54 {
    display: inline-block;
    white-space: nowrap;
    height: .35rem;
    max-width: 100%;
    flex: 1
}

._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 {
    line-height: .35rem;
    padding-right: .1rem;
    cursor: pointer;
    min-width: 100%
}

[dir=rtl] ._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 {
    padding-right: 0;
    padding-left: .1rem
}

._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 br {
    display: contents
}

._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 p {
    display: inline-block;
    margin-right: .1rem
}

[dir=rtl] ._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 p {
    margin-right: 0;
    margin-left: .1rem
}

._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 div,
._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 p,
._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 strong,
._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 span {
    font-size: var(--marquee-swiper-container-content-font-size) !important
}

._marquee_11be0_34 ._swiper-container_11be0_54 ._content_11be0_61 img {
    width: auto !important;
    height: var(--marquee-swiper-container-content-font-size) !important
}

._marquee_11be0_34 ._right_11be0_84 {
    width: .6rem;
    flex-shrink: 0
}

._marquee_11be0_34 ._right_11be0_84 ._message-icon_11be0_88 {
    width: .58rem
}

[dir=rtl] ._marquee_11be0_34 ._left-icon_11be0_49 {
    transform: scaleX(-1)
}

._marquee_11be0_34 {
    padding: 0 .14rem;
    height: .35rem
}

._marquee_11be0_34 ._right_11be0_84 {
    width: 1.14rem;
    margin-left: .1rem
}

[dir=rtl] ._marquee_11be0_34 ._right_11be0_84 {
    margin-left: 0;
    margin-right: .1rem
}

._right-message_179w9_30 {
    width: 1.14rem;
    height: .26rem;
    background-size: 100% 100%;
    padding: 0 .07rem 0 .29rem;
    display: flex;
    justify-content: center;
    align-items: center
}

[dir=rtl] ._right-message_179w9_30 {
    padding: 0 .29rem 0 .07rem
}

._right-message_179w9_30 span {
    width: .78rem;
    color: var(--skin__primary);
    font-size: .18rem;
    letter-spacing: -.009rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

._right-message_179w9_30 ._notice-icon-tips_179w9_49 {
    position: absolute;
    display: inline-block;
    top: -.03rem;
    right: -.03rem;
    width: .12rem;
    height: .12rem;
    border-radius: .08rem;
    background-color: var(--skin__accent_2)
}

[dir=rtl] ._right-message_179w9_30 ._notice-icon-tips_179w9_49 {
    right: auto;
    left: -.03rem
}

._nav-right_1e0me_30 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

._more-popover_1e0me_36 {
    overflow: initial
}

._more-popover_1e0me_36 ._arrow_1e0me_39 {
    position: absolute;
    top: -.1rem;
    right: .26rem;
    width: .22rem;
    height: .22rem;
    background: var(--skin__bg_2);
    border-color: var(--skin__border);
    border-style: solid;
    border-width: var(--lobby__px) 0 0 var(--lobby__px);
    transform: translate(-50%) rotate(45deg)
}

[dir=rtl] ._more-popover_1e0me_36 ._arrow_1e0me_39 {
    right: auto;
    left: .26rem;
    border-width: var(--lobby__px) var(--lobby__px) 0 0;
    transform: translate(50%) rotate(-45deg)
}

._more-popover_1e0me_36 .ui-popover__content {
    border: thin solid var(--skin__border)
}

._more-popover-content_1e0me_55 {
    display: flex;
    flex-wrap: wrap;
    width: 5.4rem;
    padding: .2rem .1rem .1rem
}

._more-popover-content_1e0me_55 ._nav-item_1e0me_61 {
    --nav-min-height: .6rem;
    --nav-line-height: normal
}

._vip-badge-box_1cnxd_30 {
    max-width: .38rem;
    min-width: .28rem;
    height: .22rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: .04rem 0
}

[dir=rtl] ._vip-badge-box_1cnxd_30 {
    border-radius: 0 .04rem
}

._vip-badge-box_1cnxd_30 ._img_1cnxd_39 {
    width: .13rem;
    height: .14rem;
    margin-left: .02rem;
    margin-top: .01rem
}

[dir=rtl] ._vip-badge-box_1cnxd_30 ._img_1cnxd_39 {
    margin-left: 0;
    margin-right: .02rem
}

._vip-badge-box_1cnxd_30 ._level_1cnxd_45 {
    margin-left: -.05rem;
    font-size: .28rem;
    font-style: italic;
    background: initial;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: transparent;
    text-shadow: 0 .01rem 0 rgba(0, 0, 0, .4);
    transform: scale(.6)
}

[dir=rtl] ._vip-badge-box_1cnxd_30 ._level_1cnxd_45 {
    margin-left: 0;
    margin-right: -.05rem
}

._vip-badge-box_1cnxd_30 ._level_1cnxd_45:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    text-shadow: none;
    background-image: linear-gradient(to bottom, #f7ea94, #e5b952 51%, #ce9510);
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    content: attr(data-text)
}

[dir=rtl] ._vip-badge-box_1cnxd_30 ._level_1cnxd_45:before {
    left: auto;
    right: 0
}

._vip-badge-box_1cnxd_30 {
    min-width: .3rem;
    height: .23rem
}

._user-info-box_4gr3i_30 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: .79rem;
    justify-content: space-between;
    max-width: 3rem
}

._user-info-box_4gr3i_30 ._user-top_4gr3i_38 {
    display: flex;
    align-items: center;
    height: .32rem;
    font-size: .22rem;
    width: 100%
}

._user-info-box_4gr3i_30 .currency-info-box {
    --currency-info-popover-icon-color: var(--skin__neutral_2);
    --currency-info-popover-icon-size: .2rem;
    --currency-info-box-background-color: var(--skin__bg_2)
}

._box-hide-currency_4gr3i_51 {
    align-items: center
}

._user-info-box_4gr3i_30 ._user-top_4gr3i_38 ._copy-icon_4gr3i_55 {
    font-size: .26rem;
    padding-top: 0;
    display: flex
}

._user-info-box_4gr3i_30 .select-custom-name {
    --select-custom-show-name-font-size: .22rem;
    --select-custom-copy-icon: var(--skin__primary)
}

._user-info-box_4gr3i_30 .currency-info-box {
    height: .45rem;
    margin-top: .1rem;
    --currency-info-currency-count-size: .26rem;
    --currency-info-refresh-icon-color: var(--skin__primary);
    --currency-info-currency-box-width: .38rem;
    --currency-info-currency-box-height: .38rem;
    --currency-info-icon-currency-width: .34rem;
    --currency-info-icon-currency-height: .34rem;
    --currency-info-box-border-radius: .6rem;
    --currency-info-refresh-icon-size: .3rem
}

._nav-container_1j4sm_30 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .1rem
}

._nav-container_1j4sm_30 ._nav-left_1j4sm_37 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 2.9rem;
    height: 100%;
    padding: 0 .05rem
}

._nav-container_1j4sm_30 ._nav-left_1j4sm_37 ._un-login-text_1j4sm_45 {
    font-size: .24rem;
    margin-top: .08rem;
    line-height: 1.1
}

._nav-container_1j4sm_30 ._nav-left_1j4sm_37 ._un-login-text_1j4sm_45 ._action_1j4sm_50 {
    color: var(--skin__primary);
    cursor: pointer
}

._nav-container_1j4sm_30 ._nav-left_1j4sm_37 ._un-login-text_1j4sm_45 ._or_1j4sm_54 {
    color: var(--skin__neutral_1)
}

._nav-container_1j4sm_30 ._switch-currency_1j4sm_57 {
    --currency-switch-right-icon-margin-left: .18rem;
    --currency-switch-container-padding-right: .15rem;
    --currency-switch-container-margin-right: 0;
    --currency-switch-container-border-radius: .6rem;
    --currency-switch-container-background-color: var(--skin__bg_2)
}

._nav-container_1j4sm_30 ._switch-currency_1j4sm_57 .currency-item {
    --item-currency-bg-margin: 0 .08rem 0 .02rem;
    --item-switch-lang-text-size: .3rem
}

._nav-container_1j4sm_30 {
    padding-left: .15rem
}

[dir=rtl] ._nav-container_1j4sm_30 {
    padding-left: 0;
    padding-right: .15rem
}

._nav-container_1j4sm_30 ._nav-left_1j4sm_37 {
    padding-left: 0
}

[dir=rtl] ._nav-container_1j4sm_30 ._nav-left_1j4sm_37 {
    padding-left: 0;
    padding-right: 0
}

._home-nav-container_1j4sm_76 ._un-login-box_1j4sm_76 {
    height: .84rem;
    margin-bottom: .19rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

._home-nav-container_1j4sm_76 ._un-login-btn_1j4sm_83 {
    --btn-login-background: transparent;
    --btn-login-color: var(--skin__alt_primary);
    --btn-register-background: var(--skin__alt_primary);
    --btn-register-color: var(--skin__alt_text_primary);
    --btn-border-color: var(--skin__alt_primary);
    --btn-login-margin: 0 .2rem 0 0;
    --btn-width: 1.2rem;
    --btn-height: .5rem;
    --btn-font-size: .2rem
}

._un-login_jz7t1_30 {
    display: flex;
    align-items: center;
    --btn-login-background: var(--skin__primary);
    --btn-login-color: var(--skin__text_primary);
    --btn-login-margin: 0 .15rem 0 0;
    --btn-register-background: transparent;
    --btn-register-color: var(--skin__primary);
    --btn-width: 1.36rem;
    --btn-height: .52rem;
    --btn-font-size: .22rem;
    --btn-border-color: var(--skin__primary)
}

._un-login_jz7t1_30 ._btn_jz7t1_43 {
    width: var(--btn-width);
    height: var(--btn-height);
    padding: 0 .1rem;
    font-size: var(--btn-font-size);
    white-space: pre-wrap;
    background-color: var(--skin__primary);
    border: thin solid var(--btn-border-color);
    color: var(--skin__text_primary);
    border-radius: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    word-wrap: break-word
}

._un-login_jz7t1_30 ._btn_jz7t1_43:lang(vi),
._un-login_jz7t1_30 ._btn_jz7t1_43:lang(my) {
    font-size: .2rem;
    line-height: 1.3
}

._un-login_jz7t1_30 ._btn_jz7t1_43 span {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.1
}

._un-login_jz7t1_30 ._btn_jz7t1_43 span:lang(vi),
._un-login_jz7t1_30 ._btn_jz7t1_43 span:lang(my) {
    line-height: 1.3
}

._un-login_jz7t1_30 ._btn_jz7t1_43:first-child {
    margin-right: .15rem
}

[dir=rtl] ._un-login_jz7t1_30 ._btn_jz7t1_43:first-child {
    margin-right: 0;
    margin-left: .15rem
}

._un-login_jz7t1_30 ._btn_jz7t1_43:last-child {
    background-color: transparent;
    color: var(--skin__primary)
}

._un-login_jz7t1_30 ._btn_jz7t1_43._login_jz7t1_84 {
    margin: var(--btn-login-margin);
    background-color: var(--btn-login-background);
    color: var(--btn-login-color)
}

._un-login_jz7t1_30 ._btn_jz7t1_43._register_jz7t1_89 {
    background-color: var(--btn-register-background);
    color: var(--btn-register-color)
}

._un-login_jz7t1_30 ._btn_jz7t1_43._isHidden_jz7t1_93 {
    display: none
}

._un-login_jz7t1_30 {
    padding-left: .05rem
}

[dir=rtl] ._un-login_jz7t1_30 {
    padding-left: 0;
    padding-right: .05rem
}

._un-login_jz7t1_30 ._btn_jz7t1_43>span {
    font-size: .16rem
}

._un-login_jz7t1_30 ._btn_jz7t1_43>span:lang(zh),
._un-login_jz7t1_30 ._btn_jz7t1_43>span :lang(zh_hk) {
    font-size: .2rem
}

._un-login_jz7t1_30 ._btn_jz7t1_43>span:lang(vi) {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

._nav-container_1wo4r_30 {
    padding-left: .15rem
}

[dir=rtl] ._nav-container_1wo4r_30 {
    padding-left: 0;
    padding-right: .15rem
}

._nav-container_1wo4r_30 ._nav-left_1wo4r_33 {
    padding-left: 0
}

[dir=rtl] ._nav-container_1wo4r_30 ._nav-left_1wo4r_33 {
    padding-left: 0;
    padding-right: 0
}

._home-nav-container_1wo4r_37 ._un-login-box_1wo4r_37 {
    height: .84rem;
    margin-bottom: .19rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

._home-nav-container_1wo4r_37 ._un-login-btn_1wo4r_44 {
    --btn-login-background: transparent;
    --btn-login-color: var(--skin__alt_primary);
    --btn-register-background: var(--skin__alt_primary);
    --btn-register-color: var(--skin__alt_text_primary);
    --btn-border-color: var(--skin__alt_primary);
    --btn-login-margin: 0 .2rem 0 0;
    --btn-width: 1.2rem;
    --btn-height: .5rem;
    --btn-font-size: .2rem
}

._home-layout_plrpp_30 ._home-main_plrpp_30 ._home-nav-box_plrpp_30,
._home-layout_plrpp_30 ._home-main_plrpp_30 ._home-marqueue-box_plrpp_31,
._home-layout_plrpp_30 ._home-main_plrpp_30 ._game-exhibition-box_plrpp_32 {
    margin-top: .14rem
}

._home-layout_plrpp_30 ._home-main_plrpp_30 ._home-footer_plrpp_35 {
    margin-top: .1rem
}

._home-layout_plrpp_30 .footer-box:empty {
    height: 1.15rem
}

._nationalBg_18qcf_30 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none
}

[dir=rtl] ._nationalBg_18qcf_30 {
    left: auto;
    right: 0
}

._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    position: absolute;
    top: 0;
    left: 0
}

[dir=rtl] ._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    left: auto;
    right: 0
}

._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    position: absolute;
    right: 0;
    bottom: 0
}

[dir=rtl] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    right: auto;
    left: 0
}

[data-holiday-theme="103"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto
}

[dir=rtl] [data-holiday-theme="103"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    right: auto;
    left: 0
}

[data-holiday-theme="105"] ._nationalBg_18qcf_30 ._nationalLeftBottom_18qcf_57 {
    position: absolute;
    bottom: 0;
    left: 0
}

[dir=rtl] [data-holiday-theme="105"] ._nationalBg_18qcf_30 ._nationalLeftBottom_18qcf_57 {
    left: auto;
    right: 0
}

[data-holiday-theme="105"] ._nationalBg_18qcf_30 ._nationalRightTop_18qcf_62 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto
}

[dir=rtl] [data-holiday-theme="105"] ._nationalBg_18qcf_30 ._nationalRightTop_18qcf_62 {
    right: auto;
    left: 0
}

[data-holiday-theme="106"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    position: absolute;
    top: initial;
    right: 0;
    bottom: 0
}

[dir=rtl] [data-holiday-theme="106"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    right: auto;
    left: 0
}

[data-holiday-theme="106"] ._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    position: absolute;
    top: initial;
    right: 0;
    bottom: 0
}

[dir=rtl] [data-holiday-theme="106"] ._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    right: auto;
    left: 0
}

[data-holiday-theme="107"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    position: absolute;
    top: initial;
    right: 0;
    bottom: 0
}

[dir=rtl] [data-holiday-theme="107"] ._nationalBg_18qcf_30 ._nationalRight_18qcf_44 {
    right: auto;
    left: 0
}

[data-holiday-theme="107"] ._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    position: absolute;
    top: initial;
    right: 0;
    bottom: 0
}

[dir=rtl] [data-holiday-theme="107"] ._nationalBg_18qcf_30 ._nationalLeft_18qcf_39 {
    right: auto;
    left: 0
}

[data-holiday-theme="111"] ._nationalBg_18qcf_30 ._nationalLeftBottom_18qcf_57 {
    position: absolute;
    bottom: 0;
    left: 0
}

[dir=rtl] [data-holiday-theme="111"] ._nationalBg_18qcf_30 ._nationalLeftBottom_18qcf_57 {
    left: auto;
    right: 0
}

[data-holiday-theme="111"] ._nationalBg_18qcf_30 ._nationalRightTop_18qcf_62 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto
}

[dir=rtl] [data-holiday-theme="111"] ._nationalBg_18qcf_30 ._nationalRightTop_18qcf_62 {
    right: auto;
    left: 0
}

._normalBg_18qcf_107 ._normalBgLeft_18qcf_107 {
    position: absolute;
    bottom: 0;
    left: 0
}

[dir=rtl] ._normalBg_18qcf_107 ._normalBgLeft_18qcf_107 {
    left: auto;
    right: 0
}

._normalBg_18qcf_107 ._normalBgRight_18qcf_112 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto
}

[dir=rtl] ._normalBg_18qcf_107 ._normalBgRight_18qcf_112 {
    right: auto;
    left: 0
}

._normalBg_18qcf_107 ._longScreenBg_18qcf_118 {
    position: absolute;
    left: 50%;
    transform: translate(-50%)
}

[dir=rtl] ._normalBg_18qcf_107 ._longScreenBg_18qcf_118 {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._loading__box_1d3vu_30 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem
}

._loading__box_1d3vu_30>div {
    zoom: 3.1
}

._loading_1d3vu_30 {
    position: relative;
    width: .32rem;
    height: .32rem;
    border: .03rem solid var(--skin__primary);
    border-top-color: rgba(255, 255, 255, .4);
    border-right-color: rgba(255, 255, 255, .4);
    border-bottom-color: rgba(255, 255, 255, .4);
    border-radius: 100%;
    animation: _circle_1d3vu_1 infinite .75s linear;
    zoom: 1.6
}

[dir=rtl] ._loading_1d3vu_30 {
    border-right-color: currentcolor;
    border-left-color: rgba(255, 255, 255, .4)
}

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

._loading__box_mm74k_30 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem
}

._loading_mm74k_30 {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: .32rem;
    height: .32rem;
    font-size: 0;
    transform: scale(1.6)
}

._loading_mm74k_30>div {
    position: relative;
    display: inline-block;
    float: none;
    box-sizing: border-box
}

._loading_mm74k_30>div:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 60%;
    height: 60%;
    background: var(--skin__primary);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    animation: _ball-atom-shrink_mm74k_1 4.5s infinite linear
}

[dir=rtl] ._loading_mm74k_30>div:nth-child(1) {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%)
}

._loading_mm74k_30>div:not(:nth-child(1)) {
    position: absolute;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: none;
    animation: _ball-atom-zindex_mm74k_1 1.5s 0s infinite steps(2, end)
}

[dir=rtl] ._loading_mm74k_30>div:not(:nth-child(1)) {
    left: auto;
    right: 0
}

._loading_mm74k_30>div:not(:nth-child(1)):before {
    position: absolute;
    top: 0;
    left: 0;
    width: .1rem;
    height: .1rem;
    margin-top: -.05rem;
    margin-left: -.05rem;
    border-radius: 50%;
    opacity: .75;
    animation: _ball-atom-position_mm74k_1 1.5s 0s infinite ease, _ball-atom-size_mm74k_1 1.5s 0s infinite ease;
    content: ""
}

[dir=rtl] ._loading_mm74k_30>div:not(:nth-child(1)):before {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -.05rem
}

._loading_mm74k_30>div:nth-child(2) {
    animation-delay: .75s
}

._loading_mm74k_30>div:nth-child(2):before {
    background-color: var(--skin__accent_2);
    animation-delay: 0s, -1.125s
}

._loading_mm74k_30>div:nth-child(3) {
    transform: rotate(120deg);
    animation-delay: -.25s
}

[dir=rtl] ._loading_mm74k_30>div:nth-child(3) {
    transform: rotate(-120deg)
}

._loading_mm74k_30>div:nth-child(3):before {
    background-color: var(--skin__accent_3);
    animation-delay: -1s, -.75s
}

._loading_mm74k_30>div:nth-child(4) {
    transform: rotate(240deg);
    animation-delay: .25s
}

[dir=rtl] ._loading_mm74k_30>div:nth-child(4) {
    transform: rotate(-240deg)
}

._loading_mm74k_30>div:nth-child(4):before {
    background-color: var(--skin__accent_1);
    animation-delay: -.5s, -.125s
}

@keyframes _ball-atom-position_mm74k_1 {
    50% {
        top: 100%;
        left: 100%
    }
}

._loginRegisterDialog_1c852_30 {
    --other-space: 2rem;
    --left-right-space: .3rem;
    --form-right-space: calc((var(--left-right-space) - .06rem) / 2);
    --container-space: .2rem;
    width: 6.9rem;
    min-height: unset;
    overflow-y: auto
}

._loginRegisterDialog_1c852_30 .ui-dialog__content {
    padding: unset
}

._loginRegisterDialog_1c852_30 .ui-dialog__main {
    background: var(--skin__bg_2);
    overflow: visible
}

._loginRegisterDialog_1c852_30[data-theme="1"] .loginRegisterFragment {
    padding-top: 0
}

._verify_1rkh5_30 ._button_1rkh5_30 {
    margin-top: .4rem
}

._assetSecurity_hs0kv_30 .ui-dialog__header {
    color: var(--skin__lead)
}

._kyc-perfect-profile_1h5pp_30 {
    width: 6.9rem
}

._kyc-perfect-profile_1h5pp_30 .ui-dialog__header {
    position: relative;
    padding: .2rem .3rem 0
}

._kyc-perfect-profile_1h5pp_30 .ui-dialog__content {
    padding-right: .2rem;
    padding-bottom: .3rem
}

[dir=rtl] ._kyc-perfect-profile_1h5pp_30 .ui-dialog__content {
    padding-right: 0;
    padding-left: .2rem
}

._kyc-perfect-profile_1h5pp_30 .default-style {
    color: var(--skin__lead);
    font-size: .22rem
}

._kyc-perfect-profile_1h5pp_30 .default-style a {
    color: var(--skin__primary)
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48 {
    max-height: 73vh;
    overflow-y: auto;
    padding-right: .1rem
}

[dir=rtl] ._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48 {
    padding-right: 0;
    padding-left: .1rem
}

html[data-isdesktop="0"] ._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48 {
    scrollbar-color: var(--skin__border) transparent;
    scrollbar-width: thin
}

html[data-isdesktop="0"] ._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48>* {
    scrollbar-color: auto
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar {
    z-index: 11;
    width: .06rem
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar-thumb {
    width: .06rem;
    background: var(--skin__border);
    border-radius: .06rem
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar-corner {
    background: transparent
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar-track {
    background: transparent
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar-track-piece {
    width: .06rem;
    background: transparent
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar:horizontal {
    height: .06rem
}

._kyc-perfect-profile_1h5pp_30 ._main_1h5pp_48::-webkit-scrollbar:horizontal-thumb {
    border-radius: .06rem
}

._kyc-perfect-profile_1h5pp_30 ._tips-content_1h5pp_86 {
    padding: .3rem 0;
    word-break: break-all
}

._kyc-perfect-profile_1h5pp_30 ._footer_1h5pp_90 {
    display: flex;
    padding-top: .2rem
}

._kyc-perfect-profile_1h5pp_30 ._footer_1h5pp_90 button {
    flex: 1
}

._kyc-perfect-profile_1h5pp_30 ._footer_1h5pp_90 ._back_1h5pp_97 {
    margin-right: .2rem
}

[dir=rtl] ._kyc-perfect-profile_1h5pp_30 ._footer_1h5pp_90 ._back_1h5pp_97 {
    margin-right: 0;
    margin-left: .2rem
}

._ball-box_1i9ql_30 {
    position: fixed;
    top: 45vh;
    z-index: 3000
}

._ball_1i9ql_30 {
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: .9rem;
    min-height: 1.1rem
}

._ball_1i9ql_30:not(:lang(zh)):not(:lang(zh_hk)) {
    min-height: .9rem
}

._ball_1i9ql_30._left_1i9ql_48 ._ball_1i9ql_30 {
    flex-direction: row-reverse;
    border-radius: 0 .5rem .5rem 0
}

._ball_1i9ql_30._left_1i9ql_48 ._ball-icon_1i9ql_52 {
    transform: rotate(180deg)
}

._ball_1i9ql_30._right_1i9ql_55 ._ball_1i9ql_30 {
    border-radius: .5rem 0 0 .5rem
}

._ball_1i9ql_30._right_1i9ql_55 ._ball_1i9ql_30 ._ball-icon_1i9ql_52 {
    font-size: .2rem
}

._ball_1i9ql_30._Red_1i9ql_61 ._ball_1i9ql_30 {
    background-color: rgba(var(--skin__accent_2__toRgbString), .9)
}

._ball_1i9ql_30._Green_1i9ql_64 ._ball_1i9ql_30 {
    background-color: rgba(var(--skin__accent_1__toRgbString), .9)
}

._ball_1i9ql_30 ._ball_1i9ql_30 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    color: #fff;
    font-size: .18rem;
    opacity: .9
}

._ball_1i9ql_30 ._ball-content_1i9ql_76 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

._ball_1i9ql_30 ._ball-count_1i9ql_82 {
    font-size: .3rem
}

._ball_1i9ql_30 ._ball-count_1i9ql_82:not(:lang(zh)):not(:lang(zh_hk)) {
    line-height: .4rem
}

._ball_1i9ql_30 ._ball_1i9ql_30 ._order-text_1i9ql_88 {
    font-size: .22rem;
    text-align: center
}

._ball_1i9ql_30 ._no-icon_1i9ql_92 {
    color: #fff;
    font-size: .48rem;
    height: .3rem
}

._hide_1i9ql_99 {
    display: none !important
}

._iframeBox_1pfb7_30,
._iframe_1pfb7_30 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1997;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000
}

[dir=rtl] ._iframeBox_1pfb7_30,
[dir=rtl] ._iframe_1pfb7_30 {
    left: auto;
    right: 0
}

._iframeBox_1pfb7_30 iframe,
._iframe_1pfb7_30 iframe {
    pointer-events: auto
}

._loading_1pfb7_48 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1998;
    width: 1.8rem;
    height: 1.8rem
}

[dir=rtl] ._loading_1pfb7_48 {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%)
}

._iframeDraggle_12qap_30 iframe {
    pointer-events: none !important
}

._question-detail_1d3da_30 {
    display: flex;
    flex-direction: column;
    height: 100%
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 {
    flex: 1;
    margin: .2rem;
    padding: .2rem;
    overflow-y: auto;
    background-color: var(--skin__bg_2);
    border-radius: .1rem;
    box-shadow: 0 .05rem .18rem rgba(174, 184, 199, .2)
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44 {
    margin-top: .15rem;
    font-size: .22rem
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44 ._wrapper-video_1d3da_48 {
    margin-bottom: .3rem
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44 ._question-answer_1d3da_51 {
    margin-top: .08rem;
    color: var(--skin__neutral_1);
    word-break: break-word
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44 ._question-answer_1d3da_51 ._warpper-content_1d3da_56 {
    flex: 1;
    padding-left: .06rem
}

[dir=rtl] ._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44 ._question-answer_1d3da_51 ._warpper-content_1d3da_56 {
    padding-left: 0;
    padding-right: .06rem
}

._question-detail_1d3da_30 ._wrapper_1d3da_35 ._item_1d3da_44:nth-child(1) {
    margin-top: 0
}

._header_1d3da_64 .lobby-base-header__section--center {
    width: 100%;
    padding: 0 .54rem;
    text-align: center
}

._header_1d3da_64 .lobby-base-header__section--center p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: .26rem
}

[dir=rtl] ._question-detail_1d3da_30 {
    direction: ltr
}

[dir=rtl] [dir=rtl] ._question-detail_1d3da_30 {
    direction: rtl
}

._methodArea_1nlpv_30 {
    padding-top: .3rem
}

._methodArea_1nlpv_30 li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: .26rem;
    padding-bottom: .2rem;
    font-size: .24rem;
    line-height: .26rem;
    color: var(--skin__neutral_2)
}

._methodArea_1nlpv_30 li:last-child {
    padding-bottom: 0
}

._methodArea_1nlpv_30 li>span:last-child {
    color: var(--skin__lead);
    max-width: 5rem;
    word-break: break-all
}

._methodArea_1nlpv_30 li ._label-txt_1nlpv_51 {
    flex-shrink: 0;
    margin-right: .1rem
}

[dir=rtl] ._methodArea_1nlpv_30 li ._label-txt_1nlpv_51 {
    margin-right: 0;
    margin-left: .1rem
}

._methodArea_1nlpv_30 li ._break_1nlpv_55 {
    max-height: 3rem;
    overflow-y: scroll;
    padding: .04rem
}

html[data-isdesktop="0"] ._methodArea_1nlpv_30 li ._break_1nlpv_55 {
    scrollbar-color: var(--skin__border) transparent;
    scrollbar-width: thin
}

html[data-isdesktop="0"] ._methodArea_1nlpv_30 li ._break_1nlpv_55>* {
    scrollbar-color: auto
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar {
    z-index: 11;
    width: .06rem
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar-thumb {
    width: .06rem;
    background: var(--skin__border);
    border-radius: .06rem
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar-corner {
    background: transparent
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar-track {
    background: transparent
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar-track-piece {
    width: .06rem;
    background: transparent
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar:horizontal {
    height: .06rem
}

._methodArea_1nlpv_30 li ._break_1nlpv_55::-webkit-scrollbar:horizontal-thumb {
    border-radius: .06rem
}

._methodArea_1nlpv_30 li ._method_1nlpv_30 {
    display: flex;
    align-items: center
}

._methodArea_1nlpv_30 li ._method_1nlpv_30 ._logo_1nlpv_97 {
    width: .36rem;
    height: .36rem;
    margin-right: .1rem
}

[dir=rtl] ._methodArea_1nlpv_30 li ._method_1nlpv_30 ._logo_1nlpv_97 {
    margin-right: 0;
    margin-left: .1rem
}

._methodArea_1nlpv_30 li ._flex_1nlpv_102,
._methodArea_1nlpv_30 li ._method_1nlpv_30 {
    display: flex;
    align-items: center
}

._methodArea_1nlpv_30 li ._flex_1nlpv_102._flex-start_1nlpv_107,
._methodArea_1nlpv_30 li ._method_1nlpv_30._flex-start_1nlpv_107 {
    align-items: flex-start
}

._methodArea_1nlpv_30 li ._flex_1nlpv_102 ._copy_1nlpv_111,
._methodArea_1nlpv_30 li ._method_1nlpv_30 ._copy_1nlpv_111 {
    margin-left: .1rem;
    color: var(--skin__primary)
}

[dir=rtl] ._methodArea_1nlpv_30 li ._flex_1nlpv_102 ._copy_1nlpv_111,
[dir=rtl] ._methodArea_1nlpv_30 li ._method_1nlpv_30 ._copy_1nlpv_111 {
    margin-left: 0;
    margin-right: .1rem
}

._methodArea_1nlpv_30 li ._flex_1nlpv_102 ._copy_1nlpv_111 i,
._methodArea_1nlpv_30 li ._method_1nlpv_30 ._copy_1nlpv_111 i {
    width: .3rem
}

._placeholder_be2xz_30 {
    height: 100%
}

._orderDetails_be2xz_34 {
    width: auto;
    min-height: 40vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

._orderDetails_be2xz_34 ._main_be2xz_42 {
    min-height: 30vh;
    background-color: var(--skin__bg_2);
    box-shadow: 0 .03rem .09rem rgba(0, 0, 0, .06);
    margin: .2rem;
    padding: .3rem .2rem;
    border-radius: .14rem
}

._orderDetails_be2xz_34 ._NoWalletBtn_be2xz_50 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 .2rem .4rem
}

._orderDetails_be2xz_34 ._NoWalletBtn_be2xz_50 ._text_be2xz_58 {
    width: 100%;
    margin-bottom: .2rem;
    font-size: .18rem;
    text-align: center;
    color: var(--skin__accent_2)
}

._orderDetails_be2xz_34 ._NoWalletBtn_be2xz_50 ._btn_be2xz_65 {
    width: 100%;
    height: .6rem;
    font-size: .2rem;
    border-radius: .1rem
}

._idContainer_30zfg_30 {
    padding: .2rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 {
    background-color: var(--skin__bg_2);
    box-shadow: 0 .03rem .07rem 0 var(--skin__web_left_bg_shadow);
    padding: .2rem;
    margin-bottom: 1.3rem;
    border-radius: .14rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._hintTitle_30zfg_40 {
    color: var(--skin__lead);
    font-size: .24rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 {
    position: relative;
    width: 6.7rem;
    height: 4.04rem;
    margin-top: .2rem;
    background-color: var(--skin__bg_1);
    border-radius: .14rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._bgBorder_30zfg_52 {
    color: var(--skin__primary);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4.6rem;
    height: 3.1rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._bgBorder_30zfg_52 svg {
    width: 100%;
    height: 100%
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._bgCard_30zfg_67 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4.3rem;
    height: 2.7rem
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._uploadFile_30zfg_77 {
    height: initial;
    max-height: 2.7rem;
    object-fit: contain
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._uploadPreview_30zfg_82 {
    height: initial;
    max-height: 2.7rem;
    background-size: contain
}

._idContainer_30zfg_30 ._blockWrap_30zfg_33 ._entry_30zfg_44 ._bgIcon_30zfg_87 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1.2rem;
    height: 1.2rem
}

._shootHint_30zfg_98 {
    margin-top: .2rem;
    color: var(--skin__lead);
    font-size: .26rem;
    line-height: .42rem
}

._shootErrExample_30zfg_105 {
    margin-top: .2rem;
    display: flex;
    flex-grow: row nowrap
}

._shootErrExample_30zfg_105>div {
    margin-left: .2rem;
    position: relative;
    text-align: center;
    width: 1.52rem
}

[dir=rtl] ._shootErrExample_30zfg_105>div {
    margin-left: 0;
    margin-right: .2rem
}

._shootErrExample_30zfg_105>div:first-child {
    margin-left: 0
}

[dir=rtl] ._shootErrExample_30zfg_105>div:first-child {
    margin-left: 0;
    margin-right: 0
}

._shootErrExample_30zfg_105>div:before {
    display: block;
    content: "";
    position: absolute;
    height: .94rem;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: .14rem;
    background-color: var(--skin__bg_1)
}

[dir=rtl] ._shootErrExample_30zfg_105>div:before {
    left: auto;
    right: 0
}

._shootErrExample_30zfg_105 ._card_30zfg_130 {
    width: 1.25rem;
    height: .83rem;
    position: relative;
    z-index: 1
}

._shootErrExample_30zfg_105 ._icon_30zfg_136 {
    z-index: 2;
    position: absolute;
    border-radius: 50%;
    height: .4rem;
    width: .4rem;
    top: .72rem;
    left: 50%;
    transform: translate(-50%)
}

[dir=rtl] ._shootErrExample_30zfg_105 ._icon_30zfg_136 {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._shootErrExample_30zfg_105 ._rightIcon_30zfg_146 {
    background-color: var(--skin__accent_1)
}

._shootErrExample_30zfg_105 ._errorIcon_30zfg_149 {
    background-color: var(--skin__accent_2)
}

._shootErrExample_30zfg_105 span {
    font-size: .22rem;
    color: var(--skin__lead);
    margin-top: .26rem;
    display: inline-block
}

._btnsWrap_30zfg_159 {
    z-index: 2;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 7.5rem;
    height: 1.3rem;
    background: var(--skin__bg_2);
    padding: .2rem .2rem .4rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: .2rem
}

[dir=rtl] ._btnsWrap_30zfg_159 {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._btnsWrap_30zfg_159 ._ghost_30zfg_174 {
    color: var(--skin__primary);
    border: .02rem solid var(--skin__primary);
    background: transparent
}

._btnsWrap_30zfg_159 button {
    flex: 1
}

._style1_1bwd3_30 .contact-us {
    margin-bottom: .4rem
}

._style1_1bwd3_30 .link-list-title {
    margin-bottom: .2rem;
    color: var(--skin__neutral_1);
    font-size: .24rem !important
}

._style1_1bwd3_30 .link-list-item {
    margin-bottom: .2rem;
    color: var(--skin__neutral_2);
    font-size: .24rem !important
}

._style1_1bwd3_30 .vertical-box {
    position: relative;
    margin-bottom: .4rem;
    padding-bottom: .48rem
}

._style1_1bwd3_30 .vertical-box>div {
    padding-right: .2rem
}

[dir=rtl] ._style1_1bwd3_30 .vertical-box>div {
    padding-right: 0;
    padding-left: .2rem
}

._style1_1bwd3_30 .vertical-box:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: .01rem;
    background-color: var(--skin__border);
    transform: translate(-50%);
    content: ""
}

[dir=rtl] ._style1_1bwd3_30 .vertical-box:after {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._style1_1bwd3_30 .fast-share-box {
    margin-bottom: .5rem
}

._style1_1bwd3_30 .company-info {
    position: relative;
    padding-bottom: .4rem
}

._style1_1bwd3_30 .company-info:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: .01rem;
    background-color: var(--skin__border);
    transform: translate(-50%);
    content: ""
}

[dir=rtl] ._style1_1bwd3_30 .company-info:after {
    left: auto;
    right: 50%;
    transform: translate(50%)
}

._style1_1bwd3_30 .copy-right {
    padding: .4rem 0
}

._progress-need_1u4bj_30 {
    margin-bottom: 0;
    padding-top: .2rem;
    font-size: .24rem;
    color: var(--skin__neutral_2);
    text-align: left
}

[dir=rtl] ._progress-need_1u4bj_30 {
    text-align: right
}

._progress-need_1u4bj_30._top_1u4bj_37 {
    color: var(--skin__lead)
}

._progress-need_1u4bj_30 ._prefix_1u4bj_40 {
    margin-bottom: .1rem
}

._progress-need_1u4bj_30 ._prefix_1u4bj_40 ._vip_1u4bj_43 {
    margin: 0 .05rem;
    color: var(--skin__accent_2);
    font-weight: 700
}

._progress-need_1u4bj_30 strong {
    color: var(--skin__lead)
}

._progress-need_1u4bj_30 ._refresh_1u4bj_51 {
    display: inline-block;
    margin-left: .1rem;
    vertical-align: text-bottom
}

[dir=rtl] ._progress-need_1u4bj_30 ._refresh_1u4bj_51 {
    margin-left: 0;
    margin-right: .1rem
}

._progressMain_ou9v2_30 {
    padding: .2rem .2rem 0
}

._progressBox_ou9v2_34 {
    background-color: var(--skin__bg_2);
    box-shadow: 0 .03rem .09rem rgba(0, 0, 0, .06);
    border-radius: .12rem;
    min-height: 1.6rem
}

._progress_ou9v2_30 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: .2rem
}

._progress_ou9v2_30 ._tips_ou9v2_49 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: .33rem;
    line-height: .33rem;
    padding: 0 .1rem;
    color: #fff;
    font-size: .18rem;
    background-color: var(--skin__accent_2);
    border-radius: .16rem 0
}

[dir=rtl] ._progress_ou9v2_30 ._tips_ou9v2_49 {
    left: auto;
    right: 0;
    border-radius: 0 .16rem
}

._progress_ou9v2_30 ._levelBox_ou9v2_65 {
    margin: .2rem .2rem 0 0
}

[dir=rtl] ._progress_ou9v2_30 ._levelBox_ou9v2_65 {
    margin: .2rem 0 0 .2rem
}

._progress_ou9v2_30 ._progressContent_ou9v2_68 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1
}

._tab-item_1uywh_30 ._current-vip_1uywh_30 {
    position: absolute;
    top: 0;
    left: .01rem;
    z-index: 2;
    width: .36rem;
    height: .26rem;
    background-color: var(--skin__accent_1);
    border-bottom-right-radius: .1rem
}

[dir=rtl] ._tab-item_1uywh_30 ._current-vip_1uywh_30 {
    left: auto;
    right: .01rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: .1rem
}

._tab-item_1uywh_30 ._current-vip_1uywh_30 ._hand_1uywh_40 {
    position: absolute;
    top: .02rem;
    left: .04rem;
    z-index: 2;
    width: .28rem;
    height: .21rem;
    color: #fff
}

[dir=rtl] ._tab-item_1uywh_30 ._current-vip_1uywh_30 ._hand_1uywh_40 {
    left: auto;
    right: .04rem
}

[dir=rtl] ._tab-item_1uywh_30 ._current-vip_1uywh_30 ._hand_1uywh_40 {
    transform: rotateY(180deg)
}

[dir=rtl] [dir=rtl] ._tab-item_1uywh_30 ._current-vip_1uywh_30 ._hand_1uywh_40 {
    transform: rotateY(-180deg)
}

._tab-item_1uywh_30 .ui-table__cell-item {
    display: flex;
    justify-content: center
}

._tab-item_1uywh_30 .ui-table__tooltip {
    min-width: .24rem;
    font-size: .18rem
}

._vip-main_bxki4_30 {
    height: 100%;
    display: flex;
    flex-direction: column
}

._vip-main_bxki4_30 ._sub-title_bxki4_35 {
    margin: .5rem .2rem 0;
    color: var(--skin__lead);
    font-size: .3rem;
    text-align: center;
    line-height: 1.6
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 ._vip-nav_bxki4_49 {
    height: .9rem;
    background: transparent
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tabs__nav {
    align-items: end;
    padding: 0
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tabs__nav::-webkit-scrollbar {
    display: none
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tab__panel {
    height: 100%
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tabs__content {
    flex: 1
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tab {
    padding: 0;
    margin: 0 .3rem;
    height: .7rem;
    font-size: .24rem;
    color: var(--skin__lead)
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tab--active {
    color: var(--skin__primary)
}

._vip-main_bxki4_30 ._vip-tabs_bxki4_42 .ui-tabs__line {
    bottom: 0
}

._vip-main_bxki4_30 ._vip-content_bxki4_79 {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-bottom: .2rem
}

._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85 {
    position: absolute;
    top: 62%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: .36rem;
    height: .36rem;
    border-radius: 50%;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    font-size: .16rem;
    cursor: pointer;
    color: #fff
}

._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-prev_bxki4_100 {
    left: .1rem
}

[dir=rtl] ._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-prev_bxki4_100 {
    left: auto;
    right: .1rem
}

[dir=rtl] ._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-prev_bxki4_100 {
    transform: rotate(180deg)
}

[dir=rtl] [dir=rtl] ._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-prev_bxki4_100 {
    transform: rotate(-180deg)
}

._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-next_bxki4_107 {
    right: .1rem;
    transform: rotate(180deg)
}

[dir=rtl] ._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-next_bxki4_107 {
    right: auto;
    left: .1rem;
    transform: rotate(-180deg)
}

[dir=rtl] ._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._vip-navgation-button-next_bxki4_107 {
    transform: rotate(0)
}

._vip-main_bxki4_30 ._vip-navgation-button_bxki4_85._hidden_bxki4_115 {
    display: none
}

._draggleBall_1ymph_30 {
    top: .03rem;
    left: .03rem;
    z-index: 1999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: .95rem;
    height: .95rem;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    border: solid .015rem rgba(255, 255, 255, .65);
    border-radius: 50%;
    box-shadow: 0 .03rem .06rem rgba(0, 0, 0, .16);
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none
}

[dir=rtl] ._draggleBall_1ymph_30 {
    left: auto;
    right: .03rem
}

._draggleBall_1ymph_30._style2_1ymph_49 {
    border-radius: .16rem
}

._draggleBall_1ymph_30>i {
    font-size: .4rem
}

._draggleBall_1ymph_30>span {
    font-size: .2rem
}

html[data-ui-contain="1"] ._draggleBall_1ymph_30 {
    width: 1.1rem;
    height: 1.1rem
}

html[data-ui-contain="1"] ._draggleBall_1ymph_30>i {
    font-size: .44rem
}

html[data-ui-contain="1"] ._draggleBall_1ymph_30>span {
    margin-top: .03rem;
    font-size: .24rem
}

@media screen and (orientation: landscape) {
    html[data-isdesktop="0"] ._draggleBall_1ymph_30 {
        width: 1.6rem;
        height: 1.6rem
    }
    html[data-isdesktop="0"] ._draggleBall_1ymph_30>i {
        font-size: .7rem
    }
    html[data-isdesktop="0"] ._draggleBall_1ymph_30>span {
        margin-top: .03rem;
        font-size: .38rem
    }
}

._collapsedBox_26hc1_30 {
    top: 1.9rem;
    left: 0;
    z-index: 1999
}

[dir=rtl] ._collapsedBox_26hc1_30 {
    left: auto;
    right: 0
}

._collapsedBox_26hc1_30 ._collapsedBtn_26hc1_35 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: .62rem;
    height: 1.1rem;
    box-shadow: 0 .03rem .06rem rgba(0, 0, 0, .16);
    border: solid .015rem #fff;
    background-color: rgba(0, 0, 0, .5);
    border-left-width: 0;
    border-radius: 0 .6rem .6rem 0;
    cursor: pointer
}

[dir=rtl] ._collapsedBox_26hc1_30 ._collapsedBtn_26hc1_35 {
    border-left-width: medium;
    border-right-width: 0;
    border-radius: .6rem 0 0 .6rem
}

._collapsedBox_26hc1_30 ._collapsedBtn_26hc1_35 ._collaseBtn_26hc1_49 {
    font-size: .34rem;
    height: .34rem;
    margin: .24rem 0;
    transform: rotate(180deg)
}

[dir=rtl] ._collapsedBox_26hc1_30 ._collapsedBtn_26hc1_35 ._collaseBtn_26hc1_49 {
    transform: rotate(-180deg)
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    width: .86rem;
    height: 2.5rem;
    gap: .2rem;
    box-shadow: 0 .03rem .06rem rgba(0, 0, 0, .16);
    border: solid .015rem #fff;
    background-color: rgba(0, 0, 0, .5);
    border-left-width: 0;
    border-radius: .48rem;
    cursor: pointer
}

[dir=rtl] ._collapsedBox_26hc1_30 ._openBtn_26hc1_55 {
    border-left-width: medium;
    border-right-width: 0
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71 {
    display: flex;
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, #ffca4d, #ffb300);
    align-items: center;
    justify-content: center;
    cursor: pointer
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71._color1_26hc1_81 {
    background: linear-gradient(to bottom, #3d8fff, #1678ff)
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71._color1_26hc1_81 ._openImg_26hc1_84 {
    width: .38rem;
    font-size: .38rem
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71._color2_26hc1_88 {
    background-image: linear-gradient(to bottom, #b0b0b0, #999)
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71._color2_26hc1_88 ._openImg_26hc1_84 {
    width: .26rem;
    font-size: .26rem
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71 ._openImg_26hc1_84 {
    width: .34rem;
    font-size: .34rem
}

._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71 ._openImg_26hc1_84._collapseImg_26hc1_99 {
    transform: rotate(90deg)
}

[dir=rtl] ._collapsedBox_26hc1_30 ._openBtn_26hc1_55 ._openItem_26hc1_71 ._openImg_26hc1_84._collapseImg_26hc1_99 {
    transform: rotate(-90deg)
}

._collapsedBox_26hc1_30 ._collapse-top_26hc1_102 {
    transform: translateY(calc(-100% + 1.1rem))
}