.game-container {
    min-height: 890px;
    background: url(../images/product_bg.png) center top no-repeat;
    padding-top: 440px;
    box-sizing: border-box;
}
.game-list {
    padding-bottom: 50px;
}
.game-list ul li {
    width: 1200px;
    height: 276px;
    background: #fff;
    box-shadow: 0 0 10px 0 #e9e9e9;
    border-radius: 4px;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.game-list ul li .game-img {
    width: 386px;
    height: 217px;
    float: left;
    overflow: hidden;
    position: relative;
}
.game-list ul li .game-img span.icon {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    opacity: 0;
}
.game-list ul li .game-ewm {
    width: 152px;
    height: 152px;
    float: right;
    background: url(../images/ewm_bg2.png) no-repeat;
    margin: 35px 0;
    padding: 12px;
    position: relative;
    box-sizing: border-box;
}
.game-list ul li .game-ewm .down {
    width: 108px;
    height: 30px;
    background: #fff;
    border: 1px solid #caa683;
    border-radius: 15px;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    color: #caa683;
    text-align: center;
    line-height: 30px;
}
.game-list ul li .game-ewm .down i {
    width: 10px;
    height: 14px;
    background: url(../images/down_icon1.png) no-repeat;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
.game-list ul li .game-cont {
    overflow: hidden;
    padding: 0 20px;
}
.game-list ul li .game-cont .name {
    font-size: 24px;
}
.game-list ul li .game-cont .desc {
    height: 112px;
    font-size: 16px;
    color: #666;
    line-height: 28px;
    padding: 20px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    -o-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
}
.game-list ul li .game-cont .btn {
    width: 98px;
    height: 38px;
    border: 1px solid #f08418;
    border-radius: 19px;
    display: inline-block;
    float: left;
    margin-top: 15px;
    font-size: 14px;
    color: #f08418;
    line-height: 38px;
    text-align: center;
}
.game-list ul li .game-img:hover span.icon {
    opacity: 1;
}
.game-list ul li .name a:hover {
    color: #f08418;
}
.game-list ul li .btn:hover {
    background: #f08418;
    color: #fff;
}
.game-list ul li .down:hover {
    color: #f08418;
    border-color: #f08418;
}
.game-list ul li .down:hover i {
    background: url(../images/down_icon2.png) no-repeat;
}
.game-list ul li .game-img:hover:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
