@import url("../css/common.css");
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.header{
    width:6.94rem;

    position: relative;
    overflow: hidden;
    border-radius: 0.2rem;
    /* &>.bg{
        width:6.94rem;
        height:4.16rem;
        overflow: hidden;
        position: absolute;
        
    }
    .mask{
        width:100%;
        height:100%;
        background-color: rgba(0,0,0,0.7);
        position: absolute;
    } */
    .g-intro{
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        .g-con{
            width:100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding:0 0.36rem;
            .box{
                margin-top:0.3rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .img{
                width:1.84rem;
                height:1.84rem;
                border:0.04rem solid #fff;
                border-radius: 0.2rem;
            }
            .game-star{
                display: flex;
                flex-direction: row;
                align-items: center;
                
                &>span{
                    margin-left:0.4rem;
                    color:#fff;
                    font-size:0.3rem;
                    margin-top:0.2rem;
                }
            }
            .star{
                display: flex;
                margin:0.3rem 0 0;
                .icon-star{
                    width:0.34rem;
                    height:0.34rem;
                    margin-left:0.04rem;
                }
            }
        }
        
        
    }

    .btn-play{
        width:5.04rem;
        height:0.88rem;
        line-height:0.88rem;
        text-align: center;
        margin-top:0.34rem;
        background-color: #fff;
        color:#210F4C;
        font-weight: 700;
        font-size:0.4rem;
        border-radius: 0.2rem;
    }
    
}
.game-title,.tt2{
    color:#fff;
    font-size:0.28rem;

}
.tt2{
    margin-top:0.3rem;
}




.card{
    width:7rem;
    margin:0.3rem auto 0;

    .item-l-4{
        display: flex;
        flex-direction: row;
        .lt{
            border-radius: 0.2rem;
            position: relative;
            border:0.04rem solid #292F52;
            &>a{
                display: block;
                width:3.4rem;
                height:3.4rem;
            }
        }
        .lt img,.rt img{width:100%;height:100%;border-radius:10px;}
        .rt{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            width:3.8rem;
            height:3.4rem;
        }
        .rt>a{
            width:1.62rem;
            height:1.62rem;
            position: relative;
            border-radius: 10px;
            display: block;
            margin-left:0.14rem;
            margin-bottom:0.2rem;
            border:0.04rem solid #292F52;
            &>img{
                width:100%;
                height:100%;
            }
        }
        p{
            position:absolute;
            bottom:0;
            left:0;
            width:100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            &>.txt{
                height:0.36rem;
                line-height: 0.36rem;
                color:#fff;
                font-size:0.2rem;
            }
        }
    }
}




.dialog{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index: 200;
    display: none;
}
.game-tips{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgb(0, 0, 0, 0.7);
    background-image: url(../images/game_tips.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 157.5px 125px;
    display: none;
}
.start-progress{
    display: none;
    width: 90%;
    height: 1.33333rem;
    line-height: 1.33333rem;
    margin: .26667rem auto;
    color: #fff;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}
.loaders {
    display: flex;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 0;
    margin-right: 10px;
}

.ball-pulse>div {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
}

.ball-pulse>div:nth-child(1) {
    -webkit-animation: scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);
    display: inline-block;
}

.ball-pulse>div:nth-child(2) {
    -webkit-animation: scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);
    display: inline-block;
}

.ball-pulse>div:nth-child(3) {
    -webkit-animation: scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);
    display: inline-block;
}

@-webkit-keyframes scale {
    0%, 80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    45% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: .7
    }
}