#game-list-container {
    width: 1200px;
    margin: auto;
    overflow: hidden;
    background: white;
    padding: 5px 0 30px;
    box-sizing: border-box;
}

#game-list-container .title-container {
    width: 1160px;
    margin: 12px auto;
}

#game-list-container .game-type-ul,
#game-list-container .sort-container {
    width: 1160px;
    margin: auto;
}

#game-num {
    font-size: 14px;
    position: absolute;
    left: 135px;
    bottom: -6px;
    color: #555555;
}

#game-num span {
    color: #05bcc6;
    padding: 0 12px;
}

.game-type-ul {
    padding: 10px 0 40px;
}

.game-type-li {
    padding: 11px 0 0;
    border-bottom: 1px solid #e3e3e3;
    line-height: 24px;
    font-size: 14px;
    overflow: hidden;
    color: #555555;
}
.game-type-li > p {
    float: left;
    width: 98px;
}

.game-type-li .game-type-container {
    float: left;
    width: 1060px;
    box-sizing: border-box;
    position: relative;
    height: 34px;
    overflow: hidden;
}

.game-type-li .game-type-container.checked {
    height: auto;
}

.game-type-li .game-type-container .game-type {
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    background: transparent;
    border-radius: 3px;
    margin-right: 20px;
    cursor: pointer;
    word-break: keep-all;
    margin-bottom: 10px;
    display: inline-block;
}

.game-type-li .game-type-container .game-type:hover,
.game-type-li .game-type-container .game-type.checked {
    background: #05bcc6;
    color: white;
}

.game-type-container .game-type-more {
    width: 50px;
    height: 24px;
    line-height: 22px;
    overflow: hidden;
    display: block;
    position: absolute;
    bottom: 8px;
    right: 5px;
    text-align: center;
    font-size: 14px;
    color: #05bcc6;
    background: white;
    cursor: pointer;
}

.game-type-container .game-type-more:after {
    background: url(../images/ico.png) no-repeat -54px -75px;
    content: "";
    width: 10px;
    height: 14px;
    float: right;
    margin-top: 4px;
}

.game-type-container .game-type-more.checked:after {
    background-position: -54px -96px;
}

.sort-container {
    height: 24px;
    line-height: 24px;
    color: #555555;
}

.sort-container p {
    float: left;
    width: 98px;
}

.sort-container .sort-ul {
    float: left;

}

.sort-container .sort-ul .sort-li {
    height: 24px;
    line-height: 24px;
    border-radius: 8px;
    margin-right: 20px;
    cursor: pointer;
    word-break: keep-all;
    display: inline-block;

}

.sort-container .sort-ul .sort-li.checked,
.sort-container .sort-ul .sort-li:hover {
    color: #05bcc6;
    font-weight: bold;
}

.game-list-container {
    width: 100%;
    overflow: hidden;
}
.game-list-ul{
    width:1248px;
    padding:20px 0;
}
.game-list-li {
    padding: 20px 20px 12px ;
    float: left;
    margin: 0 48px 10px 0;
}

.game-content {
    width: 120px;
    height: 205px;
}

.game-content p {
    text-align: center;
}

.game-content img {
    width: 120px;
    height: 120px;
    border-radius: 22%;
}

.game-content .game-name {
    height: 36px;
    width: 100%;
    overflow: hidden;
    line-height: 40px;
}

.game-content .game-type-size {
    width: 100%;
    overflow: hidden;
    height: 20px;
    line-height: 20px;
    color: #999999;
    font-size:12px;
}

.game-content .game-score {
    width: 100%;
    overflow: hidden;
    height: 28px;
    line-height: 28px;
    color: #05bcc6;
}

.game-content .game-score.no-score {
    color: #999999;
}

.game-content .game-score span {
    font-weight: bold;
}

.game-content .download-link {
    width: 98px;
    height: 28px;
    background-color: #05bcc6;
    border-radius: 5px;
    color: #ffffff;
    line-height: 28px;
    text-align: center;
    margin: 5px auto 0;
    display: none;
}

.game-list-li:hover {
    background-color: #e8e8e8;
}

.game-list-li:hover .game-info {
    display: none;
}

.game-list-li:hover .download-link {
    display: block;
}

