

#morePanel,#morePanel2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

::-webkit-scrollbar {
    width: 2px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

#moreContainer,#moreContainer2 {
    position: absolute;
    /* background: linear-gradient(45deg, #f58c05, #f2f505); */
    background: #7bc8f5;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 10px;
    padding: 10px;
}

#moreContent,#moreContent2 {
    width: 320px;
    height: 380px;
    overflow-y: auto;
}

.list-item {
    display: inline-block;
    margin: 10px 5px;
}

.game-icon {
    width: 64px;
    height: 64px;
    background: #eee;
    border-radius: 5px;
    box-shadow: 1px -1px 3px #666;
}
.game-cover {
    background: #eee;
    border-radius: 5px;
    box-shadow: 1px -1px 3px #666;
    width: 146px;
    height: 86px;
}

#btnClose {
    position: absolute;
    width: 42px;
    bottom: -45px;
    left: 42%;
}