.game_d {
    display: flex;
    flex-direction: row;
    align-items: start;

    padding: 20px;
    box-sizing: border-box;
    background-color: white;
}

.game_d .img {
    width: 128px;
    height: 128px;
    border-radius: 10px;
}

.game_d .detail {
    margin-left: 15px;
    font-size: 14px;
}

.game_d .detail .title {
    color: black;
    font-size: 18px;
}

.game_d .detail .rebiew {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;

    margin: 10px 0px;
}

.game_d .detail .rebiew .stars {
    background-image: url(../img/icon_review_star_bg.png);
    background-size: 23px 23px;
    width: 115px;
    height: 23px;
}

.game_d .detail .rebiew .stars .detail-right-stars-score {
    background-image: url(../img/icon_review_star.png);
    background-size: 23px 23px;
    height: 23px;
    width: 0px;
}

.game_d .detail .rebiew .score {
    margin-left: 8px;
}

.game_d .detail .play {
    color: #ff9c60;
}

.game_d .detail .play span {
    color: #999;
}

/* 按钮 */
.pannel {
    padding: 20px 0px;
    position: relative;
}

.pannel .playbtn {
    width: 269px;
    height: 43px;
    line-height: 43px;
    color: white;
    font-size: 18px;
    background: #5567ff;
    border-radius: 20px;
    margin: auto;
    text-align: center;
    position: relative;
}

.pannel .playbtn .progress_t {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.pannel .playbtn .progress_s {
    height: 100%;
    border-radius: 20px;
    background-color: #d97d32;
}

/* 推荐 */
.recommend {
    font-size: 16px;
    padding: 10px 20px;
}

.recommend .content-left {
    display: flex;
}

.recommend .title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.recommend .games_list {
    padding: 0;
    margin-top: 20px;
}

/* 介绍 */

.introduce .title {
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.introduce .txt {
    font-size: 400;
    font-size: 14px;
    color: #999;
}

.game_cont {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    background-color: #132e48;
    max-width: 600px;
    max-height: 90vh;
    margin: 0 auto;
}

.game_cont #adb_left {
    width: 120px;
    height: 100%;
    display: inline-block;
}

.game_cont #adb_right {
    width: 120px;
    height: 100%;
    display: inline-block;
}

#game-element {
    flex: 6;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
    margin: 0;
    padding: 0;
    display: inline-block;
    border: none
}


/* 提示方向 */
#out_rotateDeviceBG {
    background-color: rgba(0, 0, 0, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 998;
}

#out_rotateDeviceBG .out_phone {
    height: 100px;
    width: 200px;
    border: 4px solid white;
    border-radius: 10px;
    animation: out_rotate 1.5s ease-in-out infinite alternate;
}

#out_rotateDeviceBG .out_message {
    color: white;
    font-size: 1em;
    text-align: center;
}

@keyframes out_rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(-90deg)
    }

    100% {
        transform: rotate(-90deg)
    }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

    .out_phone,
    .out_message {
        display: block;
    }
}