
.mobile-game-item {
    width: 30%;
    margin-right: 20px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.08);
}

.mobile-game-item:nth-child(3n) {
    margin-right: 0;
}

.mobile-game-item:hover {
    transform: translateY(-2px);

}

.mobile-game-item .game-icon {
    width: 76px;
    height: 76px;
    margin-right: 10px;
    flex-shrink: 0;
}

.mobile-game-item .game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-game-item .game-info {
    flex-grow: 1;
    overflow: hidden;
}

.mobile-game-item .game-name {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-game-item .game-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-game-item .game-meta .hot-val {
    color: #999999;
    display: flex;
    align-items: center;
    margin-right: 7px;
}

.mobile-game-item .game-meta .split {
    margin: 0 6px;
    color: #eee;
}

.mobile-game-item .game-tag .tag-discount {
    display: block;
    /* background: linear-gradient(90deg, #ff9800, #ffc107); */
    background: url('/static/img/zhekou.png') no-repeat center center;
    background-size: 100% 100%;
    width: 62px;
    height: 19px;
    line-height: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding-left: 7px;
}

@media (max-width: 1200px) {
    .mobile-game-item {
        width: 49%;
        margin-right: 2%;
    }
    .mobile-game-item:nth-child(3n) {
        margin-right: 2%;
    }
    .mobile-game-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .mobile-game-item {
        width: 100%;
        margin-right: 0;
    }
}
