.games-content {
    border: 1px solid #c7c7c7;
    padding-top: 20px;
    margin: 32px auto 0
}

.games-list li {
    float: left;
    width: 372px;
    height: 402px;
    margin: 0 0 21px 21px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.games-list li:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.games-list li img {
    width: 100%;
    height: 100%;
    -webkit-transition: .6s all ease;
    transition: .6s all ease
}

.games-list li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-shadow: 0 4px 10px 0 #999;
    box-shadow: 0 4px 10px 0 #999
}

.games-list li:hover .cover {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.games-list .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0
}

.games-list .game-icon {
    display: block;
    width: 101px;
    height: 101px;
    border-radius: 6px
}

.games-list .game-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 20px 0 44px
}

.games-list .cover a {
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 6px 28px
}

.games-list li.no-game {
    background: rgba(255, 255, 255, .8)
}

.games-list li.no-game:hover {
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent
}

.games-list li.no-game p {
    text-align: center;
    font-size: 24px;
    color: #c3c3c3;
    padding-top: 132px
}

.games-list li.no-game h3 {
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    color: #c3c3c3
}