
body {
	margin-bottom: 100px;
}

.search-box {
	position: relative;
	margin: 0 auto;
	margin-top: 16px;
	width: 90%;
	height: 32px;
	background: #FFFFFF;
	border-radius: 6px;
	border: 1px solid #00BFFF;
	overflow: hidden;
}

.search-input {
	float: left;
	width: 291px;
	height: 32px;
	padding-left: 10px;
	padding-right: 10px;

	font-size: 12px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 32px;
	border: 0;
	outline: none;
}

.search-icon-box {
	position: absolute;
	right: 0px;
	width: 32px;
	height: 32px;
	background: #00BFFF;
}

.search-icon {
	margin: 6px;
	width: 20px;
	height: 20px;
}

#content {
	min-height: 500px;
	overflow: hidden;
}

.game-item-box {
	position: relative;
	margin: 0 auto;
	margin-top: 15px;
	width: 90%;
	height: 200px;
	border-radius: 4px;
	box-shadow: 0 0.02667rem 0.16rem rgba(0, 0, 0, .117647), 0 0.02667rem 0.10667rem rgba(0, 0, 0, .117647);

}

.game-item {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
/*	box-shadow: 0px 12px 20px 0px rgba(194,194,194,0.3);
*/	border-radius: 6px;
}

.game-icon {
	position: absolute;
	z-index: 3;
	left: 36%;
	top: 10px;
	width: 100px;
	height: 100px;
	background: #FFFFFF;
	box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.2), 0px 0px 2px 1px #FFFFFF;
	border-radius: 6px;
}

.game-title {
	position: absolute;
	text-align: center;
	top: 120px;
	width: 100%;
	height: 30px;
	font-size: 20px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: #333333;
	line-height: 30px;
}

.score-star-icon {
	position: absolute;
	width: 10px;
	height: 10px;
	top: 10px;
	right: 5px;
}

.game-score {
	position: absolute;
	top: 10px;
	right: 20px;
	height: 10px;
	font-size: 10px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: #FFA005;
	line-height: 10px;
}

.game-desc {
	position: absolute;
	top: 160px;
	left: 10%;
	text-align: center;
	width: 80%;
	height: 40px;
	font-size: 12px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #666666;
	line-height: 13px;

	word-break: break-all;
  	text-overflow: ellipsis;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 5; /* 超出几行省略 */
  	overflow: hidden;
}

.game-play-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 30px;
}