/*
 * @Author: hapick 
 * @Date: 2018-04-17 11:27:23 
 * @Last Modified by: hapick
 * @Last Modified time: 2018-04-17 14:12:09
 */

 /* 游戏中心 */

.content {
    margin-top: 50px;
    margin-bottom: 100px;
    line-height: 2;
}

.content .page {
    padding: 20px 0;
}

.content .page .item {
    display: flex;
    padding: 40px 0 100px;
    border-top: 1px solid #333;
}

.content .page .item .img {
    height: 200px;
}

.content .page .item .item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.content .page .item .item-right p {
    flex: 1;
    line-height: 2;
    font-size: 16px;
}

.content .page .item .item-right .btn {
    display: inline-block;
    width: 230px;
    height: 65px;
    position: relative;
    background: rgb(98, 98, 98);
}

.content .page .item .item-right .btn:hover {
    background: rgb(4, 179, 220);
}

.content .page .item .item-right .btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content .page-nums {
    text-align: center;
}

.content .page-nums .page-num {
    display: inline-block;
    padding: 0 10px;
    border-radius: 4px;
    background: rgb(119, 119, 119);
    color: #fff;
}

.content .page-nums .active,
.content .page-nums .page-num:hover {
    background: rgb(4, 179, 220);
}