:root{
    font-size: 10px;
}
html,body{
    margin:0;
    padding:0;
    background:#efefef;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
*{
    box-sizing: border-box;
}
*:focus{
    outline:0;
}
*:after{
    content:'';
    visibility: hidden;
    display: block;
    height:0;
    clear:both;
}
.container{
    width:10rem;
    position: relative;
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: none;
}
.container>*{
    width:100%;
}
.head-title{
    width:100%;
    background:#d44834;
    color:#EDCD94;
    padding:.5rem 0 .2rem;
}
.head-title span{
    display: block;
    width:100%;
    text-align: center;
    font-size: .6rem;
    line-height: 1.4;
}
.head-title span:last-child{
    line-height: 1.9;
}
.head-img{
    position:relative;
    height:1.4rem;
}
.head-img .head-bg{
    width:100%;
}
.head-img .head-logo{
    width:2rem;
    height:2rem;
    position:absolute;
    top:0;
    left:52%;
    transform:translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.bonus{
    width:100%;
    text-align: center;
    font-size: .7rem;
    color:#d44834;
    padding-top: .3rem;
}
.bonus em{
    display: inline-block;
    font-size:1.5em;
    color:#393939;
    font-style: normal;
    padding:0 0.1em;
}
.efunds-desc{
    color:#393939;
    padding:1.5em 1em 0 1.8em;
    font-size: .4rem;
}
.efunds-desc p{
    margin:0;
    padding:0;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.efunds-desc p .sub{
    display: inline-block;
    font-size: 0.7em;
    margin-left:0.5em;
    font-weight: normal;
}
.qrcode-container{
    margin-top:.7rem;
    text-align: center;
    height:3.7rem;
    position: relative;
}
.qrcode-container img{
    width:2.8rem;
    height:2.8rem;
    margin:0 auto;
}
.qrcode-container span{
    width:100%;
    display: block;
    color:#d44834;
    font-size: .4rem;
    position:absolute;
    bottom:0.7em;
}
#getBonus{
    width:9rem;
    margin:0 .5rem;
    border-radius: 1rem;
    background:#d44834;
    color:#fff;
    font-size:.48rem;
    border:0;
    line-height: 1.4;
    padding:.18rem 0;
}
#getBonus span{
    display: block;
    font-size: .38rem;
}
.footnote{
    margin-top:2rem;
    padding:0 .5rem .3rem;
    font-size: .2rem;
    color:#888;
}
.footnote span{
    display:block;
}
.footnote p{
    text-align: center;
    margin:1em 0;
}
@-webkit-keyframes square-spin {
    25% {
        -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
        transform: perspective(100px) rotateX(180deg) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
        transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    }
    75% {
        -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
        transform: perspective(100px) rotateX(0) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
        transform: perspective(100px) rotateX(0) rotateY(0);
    }
}

@keyframes square-spin {
    25% {
        -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
        transform: perspective(100px) rotateX(180deg) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
        transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    }
    75% {
        -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
        transform: perspective(100px) rotateX(0) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
        transform: perspective(100px) rotateX(0) rotateY(0);
    }
}

.square-spin > div {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    width: 30px;
    height: 30px;
    background: rgba(60, 60, 60, 0.3);
    border: 0;
    -webkit-animation: square-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
    animation: square-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
}
.loading {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}

.square-spin {
    position: relative;
    left: 50%;
    margin-left: -15px;
    margin-bottom: 5px;
}

.loading p {
    width: 100%;
    text-align: center;
    color: rgba(60, 60, 60, 0.4);
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.mobile-confirm{
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:rgba(0,0,0,0.4);
    display: none;
}
.mobile-confirm.ios{
    position:absolute;
}
.mobile-confirm-modal{
    position:fixed;
    top:40%;
    left:50%;
    width:6.6rem;
    transform:translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
.mobile-confirm.ios .mobile-confirm-modal{
    position:absolute;
    transform:translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
.mobile-confirm-modal .modal-body{
    width:100%;
    background:#fff;
    padding:.6rem .5rem;
    position:relative;
}
.mobile-confirm-modal .modal-close{
    width:.6rem;
    height:.6rem;
    position: absolute;
    top:.1rem;
    right:.3rem;
    color:#888;
    font-size: .7rem;
    text-align: center;
    line-height: 1;
    border:0;
    background:transparent;
}
.mobile-confirm-modal .mobile{
    width:100%;
    border:#d44834 solid 1px;
    text-align: center;
    font-size: .4rem;
    line-height: 2;
}
.mobile-confirm-modal .modal-footer{
    width:100%;
    position:relative;
}
.mobile-confirm-modal .submit{
    width:100%;
    background:#d44834;
    border:1px solid #d44834;
    font-size: .4rem;
    padding:0.6em;
    color:#fff;
    margin:0;
    position:absolute;
    top:0;
}
.mobile-confirm-modal .tips{
    position:absolute;
    bottom:.1rem;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform: translateX(-50%);
    color:#555;
    font-size: .3rem;
    white-space: nowrap;
    display: none;
}