html {
    font-size: 100px;
    font-weight: 400
}

body,html {
    height: 100%;
    width: 100%
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden
}

* {
    box-sizing: border-box
}

a {
    color: #fff;
    text-decoration: none;
    flex-direction: column;
    display: inline-flex
}

img {
    width: 100%;
    height: 100%;
    position: relative
}

br {
    line-height: .2rem
}
.splide__slide {
    width: 100%;
    height: 48vw
}

@-webkit-keyframes switch {
    0%,20% {
        transform: translateX(0)
    }

    21%,40% {
        transform: translateX(-90vw)
    }

    41%,60% {
        transform: translateX(-180vw)
    }

    61%,80% {
        transform: translateX(-270vw)
    }

    81%,to {
        transform: translateX(-360vw)
    }
}

@keyframes switch {
    0%,20% {
        transform: translateX(0)
    }

    21%,40% {
        transform: translateX(-90vw)
    }

    41%,60% {
        transform: translateX(-180vw)
    }

    61%,80% {
        transform: translateX(-270vw)
    }

    81%,to {
        transform: translateX(-360vw)
    }
}

.container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 101%;
    height: 100%;
    background: url(../images/outBg.jpg)repeat-x 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    overflow-x: hidden;
    overflow-y: scroll;

}

.topbar {
    justify-content: space-between;
    padding: .1rem .2rem
}


.back svg {
    width: .3rem;
    height: .3rem
}

.button-withdraw {
    background-image: url(../images/logo_s.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    font-size: .12rem;
    padding: .1rem .08rem;
    font-weight: 500
}

.below__button-group {
    padding: .3rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .1rem 1fr .1rem 1fr .1rem 1fr;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: .1rem
}

.below__button--active {
    background: #e4940b;
    color: #fff;
    border-radius: 999rem
}

.below__info {
    display: flex;
    font-size: .22rem;
    color: #fff;
    letter-spacing: 1px;
    flex-direction: column;
    justify-content: center;
    padding-left: .3rem;
    padding-right: .3rem
}

.below__info>div {
    justify-content: space-between;
    margin-bottom: .2rem
}

.below__info>div,.below__info>div>div {
    display: flex;
    align-items: center
}

.below__info>div>span {
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 0 0 #000
}

.below__info__icon {
    width: .5rem;
    height: .5rem;
    display: inline-block;
    margin-right: .1rem
}

.grid {
    padding: .3rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .3rem 1fr;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: .3rem;
    grid-row-gap: .3rem
}

@media(min-width: 640px) {
    .grid {
        display:flex;
        flex-wrap: wrap;
        gap: .4rem;
        justify-content: start;
        align-items: center
    }
}

.grid>a {
    position: relative;
    justify-content: center;
    align-items: center
}

.grid .badge,.grid>a>img {
    height: 1rem;
    width: 1rem
}

.grid .badge,.grid .badge>img {
    position: relative
}

.grid .badge>img {
    width: 100%;
    height: 100%
}

.grid .badge>span {
    position: absolute;
    top: -.15rem;
    z-index: 10;
    right: -.15rem;
    border-radius: 100%;
    width: .3rem;
    height: .3rem;
    background-color: #b1202c;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: .14rem
}

.grid__title {
    color: #fff;
    font-size: .2rem;
    text-align: center;
    padding-top: .05rem
}

.alert {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0,0,0,.3);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .1s ease-in
}

.alert.show {
    z-index: 50;
    opacity: 1
}

.alert__content {
    background-image: url(../images/wrapper_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 70vw;
    justify-content: center;
    align-items: center;
    padding: .2rem .3rem;
    border-radius: .2rem;
    overflow: hidden
}

.alert--all .alert__content {
    background-image: url(../images/wrapper_bg.jpg)
}

.alert__text {
    color: #fff;
    font-size: .22rem;
    font-weight: 300;
    padding-top: .2rem;
    padding-bottom: .2rem;
    text-align: center
}

.alert__buttons {
    padding-bottom: .2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .2rem 1fr;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: .2rem;
    grid-row-gap: .2rem
}

.alert__buttons>a {
    width: calc(35vw - .4rem);
    height: calc(35vw - .4rem)
}

.alert.show .alert__content {
    -webkit-animation: slideIn .2s ease-in;
    animation: slideIn .2s ease-in
}


@-webkit-keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(.1rem)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(.1rem)
    }

    to {
        transform: translateY(0)
    }
}

.confirm {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0,0,0,.3);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .1s ease-in
}

.confirm.show {
    z-index: 50;
    opacity: 1
}

.toast {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: 0 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .1s ease-in
}

.toast.show {
    z-index: 50;
    opacity: 1
}

.toast__text {
    color: #fff;
    font-size: .18rem;
    background-color: rgba(0,0,0,.8);
    padding: .15rem .2rem;
    border-radius: .08rem;
    box-shadow: 0 0 6px #333
}

.forget__title,.login__title,.register__title {
    text-align: center;
    padding-top: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: .6rem;
    padding-right: .6rem;
    white-space: normal
}

.forget__title,.register__title {
    padding-left: .3rem;
    padding-right: .3rem;
    padding-bottom: .2rem
}

.forget__title,.login__title {
    white-space: nowrap
}

.forget__title h1,.login__title h1,.register__title h1 {
    font-weight: 400;
    font-size: .26rem;
    color: #fff;
    padding: 0 .3rem
}

.forget__title:after,.forget__title:before,.login__title:after,.login__title:before,.register__title:after,.register__title:before {
    content: "";
    display: block;
    width: 20%;
    height: 1px;
    background-color: hsla(0,0%,100%,.5)
}

.form {
    display: flex;
    flex-direction: column;
    padding-top: .2rem;
    margin: 0;
    width: 100%
}

.form__row {
    margin: 0 .2rem .3rem;
    position: relative
}

.form__group {
    background-color: rgba(0,0,0,.5);
    border-radius: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 .2rem
}

.form__group__icon {
    flex: 0 0 .3rem;
    height: .3rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%
}


.form__group__input {
    padding: .12rem .1rem .12rem .2rem;
    color: #fff;
    border: 0;
    width: 100%;
    font-size: .14rem;
    line-height: .3rem;
    background-color: transparent
}

.form__group__input:focus {
    outline: 0
}

.form__group__button {
    white-space: nowrap;
    margin: 0;
    border: 0;
    border-radius: 999rem;
    background-color: #b88a52;
    padding: .05rem .08rem;
    color: #fff;
    cursor: pointer
}

::-moz-placeholder {
    color: #888;
    opacity: 1
}

:-ms-input-placeholder {
    opacity: 1
}

::placeholder {
    color: #888;
    opacity: 1
}

:-ms-input-placeholder {
    color: #888
}

::-ms-input-placeholder {
    color: #888
}

.form__button {
    border-radius: 1rem;
    letter-spacing: 3px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .12rem .1rem;
    color: #fff;
    border: 0;
    font-size: .16rem;
    line-height: .25rem;
    cursor: pointer;
    background: #74aef8;
    background: linear-gradient(90deg,#74aef8,#4a70f1)
}

a.form__button {
    text-decoration: none
}

.links {
    font-size: .16rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    line-height: .25rem;
    margin-top: 1.2rem
}

.links__divider {
    display: block;
    width: 1px;
    height: .3rem;
    background-color: hsla(0,0%,100%,.5);
    margin: 0 .6rem
}

.tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #de0b0b;
    width: 100vw;
    margin-top: .15rem
}

.tabs__nav {
    width: 22vw;
    height: 9.5vw;
    font-size: .12rem;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    line-height: 10vw;
    background-color: hsla(0,0%,100%,.25);
    border-top-left-radius: .15rem;
    border-top-right-radius: .15rem;
    margin: 0 .03rem
}


.tab-content {
    padding-top: .1rem
}

.table-responsive {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden
}

table {
    width: 100%;
    border-collapse: collapse;
    text-indent: 0;
    border-color: inherit
}

thead {
    background-color: rgba(0,0,0,.4)
}

table>thead>tr>th {
    padding: .12rem 0;
    font-weight: 500;
    font-size: .12rem;
    line-height: .18rem;
    color: #b88a52
}

table>tbody>tr>td {
    text-align: center;
    color: #fff;
    padding: .16rem 0;
    border-bottom: 1px solid hsla(0,0%,93.3%,.5);
    font-size: .14rem
}

.footer-icon,.login__service__text {
    background-repeat: no-repeat;
    background-size: contain
}

.footer-icon {
    position: fixed;
    bottom: .3rem;
    width: 100%;
    height: .3rem;
    background-position: 50%;
    background-image: url(../images/logo_s.png);
    opacity: .5
}

@media(max-width: 375px) {
    html {
        font-size:80px;
        font-weight: 400
    }
}

@media(min-width: 768px) {
    html {
        font-size:160px;
        font-weight: 400
    }
}
