#banner {
    background-image: url(../images/egame-banner.png);
    background-size: cover;
}
#banner {
    width: 100%;
    position: relative;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}
#content {
    padding-top: 0
}

#content {
    position: relative;
    z-index: 0;
    padding: 10px 0;
    padding-top: 10px;
    background-color: #1F1F1F;

}

.wrapper {
    position: relative;
    width: 1080px;
    margin: 0 auto;
}

#lobby>ul.game-list {
    display: block;
    text-align: left
}

/*ol,ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    list-style: none
}*/

#lobby {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 0
}

#lobby>ul.game-list>li {
    width: 150px;
    height: 50px;
    margin: 5px;
    padding-top: 6px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #FBD85E;
    background-color: #070707;
}

#lobby iframe {
    width: 100%;
    height: 900px;
    background: #fff;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    -webkit-transition: all linear .2s;
    transition: all linear .2s
}

#lobby ul.game-list {
    padding: 5px;
    /* background-color: #17171b; */
}

#lobby ul.game-list>li a {
    display: block;
    height: 100%
}

#lobby ul.game-list>li p {
    display: inline-block;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 37px;
    text-align: left
}

#lobby ul.game-list>li p span {
    display: block;
    color: #444;
    font-size: 12px
}

#lobby ul.game-list>li.active,#lobby ul.game-list>li:hover {
    background: linear-gradient(90deg, #FBD85E 8.85%, #C0830E 99.76%);
    box-shadow: 0px 10px 30px rgb(136 51 255 / 10%);
    border-radius: 10px;
    font-weight: bold;
}

#lobby ul.game-list>li.active:before,#lobby ul.game-list>li:hover:before {
    background-position: center bottom
}

#lobby ul.game-list>li.active p,#lobby ul.game-list>li.active p span,#lobby ul.game-list>li:hover p,#lobby ul.game-list>li:hover p span {
    color: #000
}

#lobby ul.game-list>li[game-box=more],#lobby ul.game-list>li[game-box=more]:hover {
    background-image: url(/images/more.png)
}

#lobby ul.game-list>li[game-box=mobile] {
    padding: 0;
    background-image: url(/images/mobile.jpg)
}

#lobby ul.game-list>li[game-box=mobile]:hover {
    background-image: url(/images/mobile_h.jpg)
}

#lobby ul.game-list>li[game-box=mobile]:before {
    display: none
}

#game-list {
    display: inline-block;
    margin: 30px auto;
    padding: 0 0 20px;
}
#game-list li {
    position: relative;
    display: inline-block;
    margin: 10px;
    top: 0;
    cursor: pointer;
    -webkit-transition: top 0.4s;
    -o-transition: top 0.4s;
    -moz-transition: top 0.4s;
    transition: top 0.4s;
}
#game-list li img{
	width:150px;
	height:150px;	
}
#game-list .game-text {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    margin-top: 10px;
}
#game-list .game-text:hover{
    overflow: auto;
    text-overflow:clip;
    white-space:normal;
}
#game-list li:hover {
    top: -10px;
}
#game-list li .game-logo:hover:before {
    content:"";
    display: inline-block;
    position: absolute;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
}

#game-list li:hover .game-text {
    color: #ff0;
}
#game-list li .game-logo:hover > .game-btn {
    display: block;

}

/** 新增游戏按钮 **/
.game-btn {
    display: none;
    position: absolute;
    z-index: 9999;
    left: 10%;
    width: 80%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #2B2B2B;
    font-size: 12px;
    text-decoration: none;
}
.try-btn:hover {
    color: rgb(238,119,52);
    background: rgb(255,255,255);
    border: 1px solid rgb(255,255,255);
}
.try-btn{
    border: 1px solid rgb(238,119,52);
    background: rgb(238,119,52);
    top: 55%;
    color: #FFFFFF;
}
.notice-row {
    background: linear-gradient(90deg, rgba(12, 12, 12, 0) 0%, #0C0C0C 50%, rgba(12, 12, 12, 0) 100%);
    margin-top: 30px;
}
.noticeBox::before {
    content: '';
    position: absolute;
    top: 8px;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    background: url(../mb34/images/news_icon.svg) no-repeat left center;
}