body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC","Helvetica Neue",STHeiti,"Microsoft Yahei",Tahoma,Simsun,sans-serif;
}
html{font-size:100px;}
main{
    width: 100vw;
    height: 100vh;
    background: url(../img/bg.png) no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}
.game-box{
    width: 5.28rem;
    height: 4.88rem;
    border-radius: 0.3rem;
    background-color: #ffffff;
    /* margin: 0 auto; */
    margin-top: 2rem;
}
.game-icon-bg{
    width: 5.28rem;
    height: 2.08rem;
    border-radius: 0.3rem 0.3rem 0 0;    
    background: url(../img/game-bg.png) no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}
.game-icon{
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 auto;
    margin-top: -0.7rem;
}
.game-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-title{
    font-size: 0.3rem;
    text-align: center;
    color: #323232;
}
.game-explain{
    padding: 0 0.2rem;
    box-sizing: border-box;
    font-size: 0.2rem;
    text-align: center;
    color: #323232;
    margin-top: 0.28rem;
    line-height: 0.38rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.tips{
    font-size: 0.24rem;
    color: #ffffff;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}
.tips .color{
    color: #ffda0d;
}
.btn-entry{
    /* display: block; */
    width: 4.46rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    background-color: #ffda0d;
    font-size: 0.3rem;
    color: #b85110;
    text-align: center;
    /* line-height: 0.8rem; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-entry:hover{
    filter: brightness(1.1);
}

/* å¼¹æ¡† */
.pop{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}
.pop-con{
    width: 5.15rem;
    height: 2rem;
    background-color: #ffffff;
    position: absolute;
    top: 4.08rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    overflow: hidden;
}
.pop-tips{
    width: 100%;
    height: 1.2rem;
    line-height: 1.2rem;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.pop-tab{
    display: flex;
}
.pop-tab span{
    flex: 1;
    line-height: 0.8rem;
    text-align: center;
    border-top: 2px solid #f9f9f9;
    font-size: 14px;
}
.pop-tab span:nth-child(1){
    border-right: 1px solid #f9f9f9;
}
.pop-tab span:nth-child(2){
    border-left: 1px solid #f9f9f9;
}
.pop-tab .pop-tab--curr{
    color: #3a4c85;
}