.game-box .game-list {
    margin: 0 auto;
    width: 5.88rem;
    font-size: 0; /* 去除inline-block带来的间距问题 */
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap; /* 强制div在同一行显示 */
}

.game-box .game-list::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
    width: 0;
    height: 0;
}

.game-box .game-img-box {
    width: 1.14rem;
    height: 1.14rem;
}

.game-box .game-list .game {
    display: inline-block;
    margin-right: .37rem;
    width: 1.14rem;
    font-size: 0; /* 去除inline-block带来的间距问题 */
    overflow: hidden;
    text-decoration: none;
}

.game-box .game-list .game .game-img {
    vertical-align: unset;
}

.game-box .game-list .game .game-name {
    display: inline-block;
    margin: .26rem auto 0;
    width: 1.14rem;
    height: .4rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-content .title {
    display: inline-block;
    font-weight: 700;
    font-size: .26rem;
    vertical-align: middle;
    color:rgba(38,169,237,1);
}

.main-content .view-all {
    position: absolute;
    right: 0;
    width: .31rem;
    height: .31rem;
    border-radius: 50%;
    vertical-align: middle;
}

.main-content .title-box {
    position: relative;
    margin: .26rem 0;
    font-size: 0;
}

.main-content .title-box a {
    display: block;
}

/* 跳转到大蓝官网弹窗 */
.message-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.message {
    width: 100%;
    text-align: center;
    background-color: #fff;
    border:  1px solid rgba(0, 0, 0, 0.27);
    border-radius: 10px;
}
.message-hide {
    display: none !important;
}
.message img{
    width: 90%;
}
.message-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
.message a{
    text-decoration: none;
    width: 42%;
    height: .8rem;
    line-height: .8rem;
    border-radius: 5px;
    display: block;
    text-align: center;
    background-color: rgba(38,169,237,1);
    color: white;
    font-size: .22rem;
    margin-bottom: 15px;
}
@media (min-width: 1200px) {
    .message-box {
        width: 5.88rem !important;
        left: 50%;
        margin-left: -2.94rem;
    }
}
