.game-item,.game-size {
    display: block;
    width: 89px;
    height: 89px;
    padding: 6px;
    vertical-align: top;
    float: left;
}
.game-list::after {
    display: block;
    content: '';
    clear: both;
}
.game-size {
   position: absolute;
    top: -80px;
    left: -80px;
}
.game-item .wrap-game {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #f3a5ff;
    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: -6px;
    z-index: 0;
    border-radius: 0 0 8px 8px;
    transition: opacity linear .3s;
    text-align: center;
    padding: 3px 0;
    font-size: 13px;
}
.game-item .game-name label {
    cursor: pointer;
}
.game-item img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #0457A7 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: 178px;
    height: 178px;
}
.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: 89px;
    height: 89px;
}
.button-area {
    text-align: center;
    display: none;
}

.button-area .btn-loadmore {
    background: #fff100;
    border-radius: 15px;
    padding: 6px 25px;
    font-weight: bold;
    color: #333333;
}
@media (max-width:767px) {
	
	.game-item,.game-size {
    display: block;
    width: 70px;
    height: 70px;
	padding: 2px;
   
}
.big {
    width: 140px;
    height: 140px;
}
}