/* 卡片 */
.card .card_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card .card_title .title {
    color: #000;
}

.card .card_title .button {
    color: #999;
    font-size: 14px;
}


/* 推荐游戏 */
.games_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(100vw / 2 - 20px), 1fr));
    grid-gap: 15px;
    margin-top: 15px;
}

.recommend {
    position: relative;
    width: 100%;
    height: 80px;
    background: #fa692f;
    border-radius: 10px;
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
}

.recommend img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid white;

    position: absolute;
    top: -20px;
    left: 10px;
}

.recommend .play {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ff9c60;
    text-align: right;
}

.recommend .play span {
    color: white;
}

.recommend .title {
    position: absolute;
    bottom: 10px;
    left: 10px;
}


/* 游戏 */
.class_games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(100vw / 3 - 20px), 1fr));
    grid-gap: 12px;
    margin-top: 10px;
}

.class_games .game {
    font-size: 14px;
}

.class_games .game img {
    width: 100%;
    height: 105px;
    border-radius: 10px;
    border: 2px solid white;
}


.class_games .game .play {
    color: #ff9c60;
}

.class_games .game .play span {
    color: #999;
}