/* 推荐游戏模块样式 */
.typeMark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px 10px;
    margin: 10px 10px 0;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.typeMark .l_img {
    width: 28%;
    height: auto;
}

.typeMark .allgame {
    width: 100px;
}

.typeMark .allgame img {
    width: 100%;
    height: auto;
}

.innerBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 5px 5px;
    margin: 0 10px 10px;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.game_item {
    position: relative;
    display: flex;
    flex-basis: calc(33.333% - 6px);
    background: linear-gradient(135deg, rgb(248, 250, 254) 0%, rgb(230, 237, 255) 100%);
    aspect-ratio: 1;
    padding: 10px 4px 2px;
    margin: 3px;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
}

.game_item .rtop_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: auto;
}

.game_item .app_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.game_item .app_logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.game_item .game_name {
    font-size: 13px;
    font-weight: 600;
    color: #1f285a;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.game_item .gameText {
    font-size: 11px;
    color: #6478b1;
    text-align: center;
    margin: 5px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.game_item .start_img {
    width: 80%;
    height: auto;
    margin-top: auto;
}
