.games-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #242529;
}

/*.games-detail .container {
    width: 100%;
    max-width: 1200px;
}*/

.games-detail .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*.games-detail .item {
    flex: 1 1 100%;
}*/

.games-detail .game-item {
    display: flex;
    height: 256px; /* 固定 item 的高度 */
    /* border-bottom: 1px solid #ccc; /* 添加底部线条 */
    margin-bottom: 32px; /* 添加底部外边距 */
    background-color: #434359;
}

.games-detail .game-image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-detail .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-detail .game-info {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.games-detail .game-info .btn-text {
    /*显示在顶部*/
}

.games-detail .game-info .btn-div {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.games-detail-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    color: #fff;
}
.games-detail-desc {
    font-size: 14px;
    margin: 0 auto;
    padding: 20px 0px 20px 0px;
    color: #9196ab;
}