@import url(./common.css);
.game-category{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0;
}
.game-category img{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.games{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.games:last-child{
    margin-bottom: 30px;
}
.game-item{
    width: 25%;
    padding: 0 5px;
    margin: 5px 0;
    aspect-ratio: 1;
}

.game-img{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.game-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #333;
}
.game-img .game-star{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 15px;
    background: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.game-img .game-star img{
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.game-name{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    height: 30px;
    margin-top: 5px;
}

.game_ad{
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}




