* {
    margin: 0;
    padding: 0
}

html {
    font-size: 10px;
    scroll-behavior: smooth
}

body {
    -webkit-text-size-adjust: 100% !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font: 1rem PingFangSC-Medium, 'PingFang SC', 'Microsoft YaHei UI', verdana, tahoma;
    color: #6a82ad;
    scroll-behavior: smooth;
    position: relative;
    display: flex;
    justify-content: center;
    transition: background .4s;
    background: #f4f4f4
}

::-webkit-scrollbar {
    display: none
}

a {
    text-decoration: none
}

input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=text] {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
    appearance: none;
    outline: 0;
    border: 0;
    color: #999;
    background: 0 0;
    font: 1rem PingFangSC-Medium, 'PingFang SC', 'Microsoft YaHei UI', verdana, tahoma
}

input[type=password]::-ms-clear,
input[type=password]::-ms-reveal {
    display: none
}

input::placeholder {
    color: #999
}

input[type=checkbox],
input[type=radio],
label {
    cursor: pointer
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-transition: background-color 43200s ease-in-out 0s;
    transition: background-color 43200s ease-in-out 0s
}

.disabled {
    background: #dedede !important;
    color: #fff !important;
    cursor: unset !important
}

.showPsw {
    background: url(images/eyes_open.png) no-repeat center !important;
    background-size: contain !important
}

.noData {
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #999
}

.noData img {
    height: 15rem;
    display: block;
    margin: 0 0 1rem 0
}

@keyframes flash {
    0% {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }

    50% {
        opacity: .5;
        transform: scale3d(.9, .9, 1)
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rotate360 {
    0% {
        transform: translateZ(0) rotate(0)
    }

    100% {
        transform: translateZ(0) rotate(360deg)
    }
}

.anim-rotate360 {
    animation: rotate360 1s infinite linear
}

@keyframes float {
    0% {
        transform: translate3d(0, 0, 0)
    }

    25% {
        transform: translate3d(0, -1rem, 0)
    }

    75% {
        transform: translate3d(0, 1rem, 0)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

#loading,
#mask,
#toast-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    transition: all .4s;
    background: 0 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center
}

#toast-mask {
    z-index: 10000
}

#loading {
    z-index: 11000;
    background: rgba(255, 255, 255, 0) url(images/loading.svg) no-repeat center/5rem;
    visibility: visible
}

.mask-show {
    visibility: visible !important;
    background: rgba(0, 0, 0, .7) !important
}

.header-select-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.header-select-lang ul {
    position: absolute;
    top: 4rem;
    right: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 1rem;
    color: #000;
    transform: translateZ(0) scaleY(0);
    transform-origin: 0 0;
    transition: transform .4s;
    z-index: 13
}

.header-select-lang .active {
    transform: translateZ(0) scaleY(1)
}

.header-select-lang ul li {
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    filter: brightness(.8);
    transition: filter .4s;
    color: #666
}

.header-select-lang .active li:hover {
    filter: brightness(1);
    color: #000
}

.header-select-lang ul li b {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0 1rem 0 0;
    border-radius: 1rem;
    background-image: url(images/flags.png);
    background-repeat: no-repeat;
    background-size: 100% 700%;
    background-position: 0 0
}

.header-select-lang:after {
    content: '';
    display: block;
    width: 1rem;
    min-width: 1rem;
    height: .5rem;
    background: url(images/arrow-0.png) no-repeat center/contain;
    transition: all .4s;
    filter: brightness(.5)
}

.active:after {
    content: '';
    display: block;
    transform: translateZ(0) rotate(180deg)
}

.header-select-lang div:first-child {
    width: 2.6rem;
    height: 2.6rem;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(images/flags.png);
    background-repeat: no-repeat;
    background-size: 100% 700%;
    background-position: 0 0;
    transition: background-position .4s;
    border: .1rem #efefef solid;
    box-sizing: content-box
}

.header-select-lang div:nth-child(2) {
    margin: 0 1rem;
    overflow: hidden;
    text-align: center
}

.toast {
    max-width: 25rem;
    min-width: 15rem;
    height: 7.2rem;
    margin: 0 auto;
    position: fixed;
    top: -7.2rem;
    z-index: 10001;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    background-color: #f0f9eb;
    border: .1rem #e1f3d8 solid;
    color: #67c23a
}

.toast .toast-contain {
    margin: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
    position: relative;
    max-width: 19rem;
    font-size: 1rem
}

.toast-warn {
    background-color: #f0f9eb;
    border: .1rem #f5ae7b solid;
    color: #f60
}

.toast-error {
    background-color: #f0f9eb;
    border: .1rem red solid;
    color: red
}

.toast-error:before,
.toast-success:before,
.toast-warn:before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 0 0 0 1rem;
    background: url(images/icon-success.svg) no-repeat center/contain
}

.toast-warn:before {
    background: url(images/icon-warn.svg) no-repeat center/contain
}

.toast-error:before {
    background: url(images/icon-error.svg) no-repeat center/contain
}

.pageNotFound {
    background: url(images/404.svg) no-repeat center/20rem;
    flex: 1
}

.more {
    height: 4rem;
    display: none;
    margin: 0 0 1rem 0;
    line-height: 4rem;
    text-align: center
}

.loginForm {
    background: #fff;
    border-radius: 1rem 1rem 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35rem;
    display: none;
    box-shadow: 0 0 1rem rgba(255, 255, 255, .3);
    transition: transform .5s
}

.loginForm .close {
    content: '';
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: url(images/close-1.png) no-repeat center/1.5rem
}

.loginForm .logo {
    display: block;
    height: 5rem;
    margin: 3rem auto 2rem auto
}

.loginForm .login-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 25rem;
    height: 4rem;
    padding: 0 0 0 1rem;
    overflow: hidden;
    position: relative;
    border: .1rem solid #e0e4e8;
    border-radius: .5rem .5rem 0 0
}

.loginForm .login-psw {
    border-left: .1rem solid #e0e4e8;
    border-right: .1rem solid #e0e4e8;
    border-bottom: .1rem solid #e0e4e8;
    border-top: 0;
    border-radius: 0 0 .5rem .5rem
}

.loginForm .login-item input {
    display: block;
    overflow: hidden;
    height: 100%;
    flex: 1
}

.loginForm .login-item input::placeholder {
    color: #ccc
}

.loginForm .login-item:before {
    content: '';
    display: block;
    height: 1.8rem;
    width: 1.8rem;
    min-width: 1.8rem;
    margin: 0 1rem 0 0;
    background: url(images/icon-user.png) no-repeat center/cover
}

.loginForm .login-psw:before {
    background: url(images/icon-psw.png) no-repeat center/cover
}

.loginForm .login-psw b {
    display: block;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0 1rem;
    transition: background .4s;
    background: url(images/icon-eyes-close.png) no-repeat center right/contain
}

.loginForm .login-btn {
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    background: #289fff;
    width: 27rem;
    margin: 2rem auto;
    border-radius: 2.5rem;
    text-transform: capitalize
}

.loginForm .memberPsw {
    width: 25rem;
    margin: 2rem auto;
    display: flex;
    align-items: center
}

.loginForm .memberPsw label {
    flex: 1;
    font-weight: 400;
    margin: 0 0 0 1rem;
    text-transform: capitalize
}

.loginForm .other-item {
    display: flex;
    width: 25rem;
    margin: 2rem auto 0 auto;
    justify-content: center;
    align-items: center
}

.loginForm .other-item b {
    flex: 1;
    font-weight: 400;
    text-align: center;
    color: #0091ff;
    text-transform: capitalize
}

.loginForm .other-item b:first-child {
    border-right: .1rem #ccc solid
}

.register-step {
    display: none
}

.register-step ul {
    background: #fff;
    margin: 1rem 0 0 0;
    list-style-type: none;
    padding: 2rem 3rem;
    font-size: 1.4rem
}

.register-step ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: .1rem #eee solid;
    overflow: hidden
}

.register-step ul li:last-child {
    border: 0
}

.register-step ul li i {
    display: block;
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    background: url(images/_icon-Asterisk.svg) no-repeat center/contain;
    filter: invert(16%) sepia(85%) saturate(7498%) hue-rotate(2deg) brightness(109%) contrast(118%)
}

.register-step ul li label,
.register-step ul li u {
    text-decoration: none;
    min-width: 10rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #000;
    font-weight: 700;
    flex-basis: 100%;
    margin: 0 0 1rem 0;
    text-transform: capitalize
}

.register-step ul li p {
    display: flex;
    flex: 1;
    align-items: center
}

.register-step p input {
    flex: 1;
    width: 20rem;
    display: block;
    padding: .5rem 0;
    border-radius: .5rem
}

.register-step p b {
    display: block;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0 1rem;
    transition: background .4s;
    background: url(images/icon-eyes-close.png) no-repeat center right/contain
}

.register-step #sendCode {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #29a0ff
}

.register-step #sendCode i {
    font-style: normal;
    margin: 0 .5rem
}

.register-step .btn {
    flex: 1;
    background: #fc1855;
    height: 4rem;
    margin: 1.5rem 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 30%)
}

.register-step .prev {
    background: #2a87f1
}

.forget-step {
    display: block
}

.forget-step ul {
    background: #fff;
    margin: 1rem 0 0 0;
    list-style-type: none;
    padding: 1rem 2rem;
    font-size: 1.4rem
}

.forget-step ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: .1rem #eee solid;
    overflow: hidden
}

.forget-step ul li:last-child {
    border: 0
}

.forget-step ul li label,
.forget-step ul li u {
    text-decoration: none;
    min-width: 10rem;
    max-width: 10rem;
    text-transform: capitalize;
    margin: 0 1rem 0 0
}

.forget-step ul li p {
    display: flex;
    flex: 1;
    align-items: center
}

.forget-step p input {
    flex: 1;
    width: 20rem;
    display: block;
    padding: .5rem 0;
    border-radius: .5rem;
    text-align: right
}

.forget-step p b {
    display: block;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0 1rem;
    transition: background .4s;
    background: url(images/icon-eyes-close.png) no-repeat center right/contain
}

.forget-step .btn {
    flex: 1;
    background: #fc1855;
    height: 4rem;
    margin: 1.5rem 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 30%)
}

.popUp {
    position: fixed;
    z-index: 10000;
    left: 10%;
    right: 10%;
    max-height: 80%;
    transform: translateZ(0) scale(0);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.popUp-in {
    transform: translateZ(0) scale(1)
}

.popUp .popUp-close {
    width: 4rem;
    height: 4rem;
    min-height: 4rem;
    margin: 2rem 0 0 0;
    display: block;
    cursor: pointer;
    filter: invert(1);
    border-radius: 50%;
    border: .2rem #000 solid;
    padding: .5rem
}

.popUp h1 {
    text-align: center;
    margin: .5rem 1rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.popUp .popUp-container {
    flex: 1;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.popUp .popUp-container .popUp-navigator-bar {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
    min-height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.popUp .popUp-container .popUp-content {
    flex: 1;
    display: block;
    margin: 2rem;
    text-align: justify;
    overflow-x: hidden
}

.popUp .popUp-container .popUp-content .popUp-html {
    display: block;
    line-height: 2rem
}

.popUp .popUp-container .popUp-content .popUp-activity p,
.popUp .popUp-container .popUp-content .popUp-html p {
    margin: 1rem 0
}

.popUp .popUp-container .popUp-content img {
    display: block;
    width: 100%;
    cursor: pointer
}

.popUp .popUp-container .popUp-content .pop-outerlink p {
    display: block;
    text-align: center
}

.popUp .popUp-container .popUp-content .pop-outerlink-service img {
    display: block;
    width: 5rem;
    margin: 2rem auto
}

.popUp .popUp-container .popUp-content .pop-outerlink-gameIcon img {
    display: block;
    width: 20rem;
    margin: 2rem auto;
    border-radius: 4rem;
    overflow: hidden;
    background: #eee;
    cursor: default;
    filter: drop-shadow(.2rem .4rem .6rem rgba(0, 0, 0, .2));
    object-fit: contain;
    aspect-ratio: 1/1
}

.popUp .popUp-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    line-height: 4rem;
    font-size: 1.6rem;
    text-align: center;
    padding: 2rem
}

.popUp .popUp-btns .btn {
    background: #fc1855;
    height: 4rem;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    flex: 1;
    cursor: pointer;
    transition: all .4s
}

.popUp .popUp-btns .btn:hover {
    background: #cc0a22
}

.popUp .popUp-btns .forget {
    background: #fcfcfc;
    color: #2a87f1;
    border: .1rem #eee solid;
    box-sizing: border-box
}

.popUp .popUp-btns .btn:nth-child(2) {
    background: #999
}

.popUp .popUp-btns .btn:nth-child(2):hover {
    background: #666 !important
}

.popUp .uploadingPics {
    display: grid;
    grid-gap: .2rem;
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 3 - .4rem), 1fr))
}

.popUp .uploadingPics .uploadingItem {
    border-radius: 5%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center
}

.popUp .uploadingPics .uploadingItem u {
    color: #fff;
    text-shadow: .1rem .1rem #000;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    left: .5rem;
    text-decoration: unset;
    font-size: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .2rem;
    line-height: 1.5rem
}

.popUp .uploadingPics .uploading u:before {
    content: '';
    width: 1rem;
    height: 1rem;
    display: block;
    background: url(images/loading.svg) no-repeat center/contain
}

.popUp .uploadingPics .uploadError u:before,
.popUp .uploadingPics .uploaded u:before {
    content: '';
    width: 1rem;
    height: 1rem;
    display: none;
    background: unset
}

.popUp .uploadingPics .uploadingItem i {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #0009;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .3s
}

.popUp .uploadingPics .uploadError i {
    background: #f009
}

.popUp .uploadingPics .uploadingItem img {
    object-fit: cover;
    height: 100%
}

.popUp .uploadingPics .uploadingItem p {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    word-break: break-word;
    padding: 1rem
}

.notify-swiper {
    width: 100%;
    height: 30rem;
    min-height: 30rem;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center
}

.notify-swiper .swiper-container {
    width: 100%;
    height: 30rem;
    min-height: 30rem;
    display: flex;
    flex-wrap: nowrap;
    position: relative
}

.notify-swiper .swiper-container .swiper-item {
    width: 100%;
    position: relative;
    min-width: 100%;
    height: auto;
    overflow-x: hidden
}

.notify-swiper .swiper-container .swiper-item img {
    width: 100%;
    display: block;
    position: relative
}

.notify-swiper .swiper-container .swiper-item .date {
    margin: 1rem auto;
    text-align: center
}

.notify-swiper .swiper-container .swiper-item .title {
    display: none
}

.notify-swiper .swiper-dots {
    position: absolute;
    bottom: 1rem;
    height: .4rem;
    width: auto;
    display: flex
}

.notify-swiper .swiper-dots .dot {
    width: .8rem;
    height: .8rem;
    border-radius: .4rem;
    display: block;
    background: rgba(255, 255, 255, .39);
    transition: all .3s;
    margin: 0 .5rem;
    box-shadow: 0 0 .3rem rgba(0, 0, 0, .3);
    font-style: normal
}

.notify-swiper .swiper-dots .current {
    width: 3rem;
    background: #fff
}

#app {
    width: 100%;
    min-width: 100%;
    position: relative
}

section {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background .4s
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    height: 6rem;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #6c7b9d;
    background: #fff;
    font-size: 1.2rem;
    border-radius: .5rem .5rem 0 0;
    box-shadow: 0 0 2rem rgba(0, 0, 0, .1)
}

footer .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%
}

footer .nav-item-active {
    background: #eee
}

footer .nav-item .icon {
    width: 3rem;
    height: 3rem;
    display: block;
    transition: all .4s
}

footer .nav-item h3 {
    font-style: normal;
    min-height: 2rem;
    line-height: 1.4rem;
    font-size: 1.2rem;
    display: block;
    font-weight: 400;
    transition: all .4s;
    text-align: center
}

footer .nav-item-active h3 {
    color: #4b99fe
}

.winnerInfo {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5rem;
    background: rgba(255, 203, 70, .9);
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    margin: 0;
    transform: translateZ(0) translateY(5rem);
    transition: all 1s
}

.winnerInfo-show {
    transform: translateZ(0) translateY(0)
}

.winnerInfo:before {
    content: '';
    display: block;
    width: 4rem;
    height: 4rem;
    background: url(images/menu-hot-on.png) no-repeat center/contain;
    filter: drop-shadow(.2rem .4rem .6rem black);
    margin: 0 0 0 .5rem;
    transition: all 3s
}

.winnerInfo-show:before {
    transform: translateZ(0) rotateY(1080deg)
}

.winnerInfo dt {
    display: block;
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    background: url(images/close-1.png) no-repeat center/1.5rem;
    filter: brightness(2)
}

.winnerInfo dd {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 1rem
}

.winnerInfo dd b {
    color: #fc4e65
}

.winnerInfo dd i {
    font-style: normal;
    font-weight: 700;
    color: gold;
    text-shadow: .1rem .1rem .2rem #000;
    font-size: 1.4rem
}