
.game-list{
    width:1200px;
    margin:0 auto;
    padding:30px;
    border-radius:5px;
    background-color:#fff;
    box-sizing:border-box;
}
.game-list .title{
    font-size:26px;
    font-weight:bold;
}

.game-list .tabs-index{
    margin-top:20px;
    background-color:#F0F0F0;
    padding:20px 10px;
    border-radius:5px;
}
.game-list .tabs-index .item{
    font-size:16px;
    padding:0 12px;
    position:relative;
}

.game-list .tabs-index .item::after{
    position:absolute;
    content:'';
    background-color:transparent;
    height:3px;
    border-radius:3px;
    width:calc(100% - 14px);
    left:50%;
    transform:translateX(-50%);
    bottom:-20px;
}
/* 鼠标移入 */
.game-list .tabs-index .item:hover{
    color:#F44145;
}
.game-list .tabs-index .item:hover::after{
    background-color:#F44145;
}
/* 选中 */
.game-list .tabs-index .item.active{
    color:#F44145;
}
.game-list .tabs-index .item.active::after{
    background-color:#F44145;
}

.game-list .content{
    font-size:16px;
    color:#111;
}
.game-list .content .item{
    width:170px;
    height:172px;
    border:1px solid #F0F0F0;
    box-sizing:border-box;
    padding:15px;
    margin:30px 24px 0 0;
}
.game-list .content .item:nth-of-type(6n){
    margin-right:0;
}
.game-list .content .game-img{
    width:80px;
    height:80px;
    border-radius:25px;
    overflow:hidden;
}
.game-list .content .game-name{
    font-size:16px;
}
.game-list .content .discount{
    width:60px;
    height:22px;
    font-size:12px;
    text-align:center;
    line-height:18px;
    box-sizing:border-box;
    border-radius:11px;
    background-color:#FDD9CD;
    border:1px solid #F44145;
    color:#F44145;
}
.game-list .content .discount:hover{
    border-color:#F44145;
    background-color:#F44145;
    color:#fff;
}

/* 暂无数据 */
.game-list .empty{
    width:200px;
    height:200px;
    margin:110px auto 286px;
    display:none;

}
.game-list .empty.show{
    display:block;
}
.game-list .empty .empty-txt{
    margin-top:10px;
    color:#666;
    font-size:14px;
    text-align:center;
}

/* 加载数据 */
.game-list .load-wrap{
    width:90px;
    height:90px;
    font-size:12px;
    line-height:12px;
    margin:110px auto 286px;
    display:none;
}
.game-list .loading{
    position:relative;
    color:rgba(244, 65, 69, .5);
}

.game-list .loading .load-img{
    position:absolute;
    transform:rotateZ(0deg);
    width:90px;
    height:90px;
    animation:loading 1.8s linear infinite;
}

.game-list .loading .load-dot i{
    margin:0 3px;
    display:inline-block;
    width:3px;
    height:3px;
    border-radius:50%;
    background-color:rgba(244, 65, 69, .5);
}

@keyframes loading {
    from {
        transform:rotateZ(0)
    }
    to{
        transform:rotateZ(360deg)
    }
}