.game-item,.game-size {
    display: block;
    width: 109px;
    height: 109px;
    padding: 6px;
    vertical-align: top;
    float: left;
}
.game-list::after {
    display: block;
    content: '';
    clear: both;
}
.game-size {
   position: absolute;
    top: -109px;
    left: -109px;
}
.game-item .wrap-game {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #f1a5fd;
    background: #FFF;
    transition: background ease .3s, border linear .3s;
}

.game-item .game-name {
    opacity: 0;
    position: absolute;
    width: calc(100% - 8px);
    background: rgba(0, 0, 0, 0.73);
    color: #ffffff;
    word-wrap: break-word;
    font-weight: bold;
    right: 4px;
    left: 4px;
    bottom: 4px;
    z-index: 0;
    border-radius: 0 0 8px 8px;
    transition: opacity linear .3s;
    text-align: center;
    padding: 5px 0;
}
.game-item .game-name label {
    cursor: pointer;
}
.game-item img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #FFF url("images/load-game.gif") center no-repeat;
    background-size: 40px 40px;
}

.game-item .wrap-game:hover {
    background: #fdfe03;
    box-shadow: 0 0 12px 7px #b68830;
    border-color: #fdfe03 !important;
    position: relative;
}

.game-item:hover .game-name {
    opacity: 1;
}

.new {
    position: relative;
}

.new .wrap-game:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background: url('images/new.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hot .game-name {
    display: block;
}


.big {
    width: 218px;
    height: 218px;
}
.hot .wrap-game:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background: url('images/hot.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
}
.big.new .wrap-game:before,.big.hot .wrap-game:before {
    width: 80px;
    height: 80px;
}
.button-area {
    text-align: center;
    display: none;
}

.button-area .btn-loadmore {
    background: #fff100;
    border-radius: 15px;
    padding: 6px 25px;
    font-weight: bold;
    color: #333333;
}