
.game-item-box {
	position: relative;
	margin: 0 auto;
	margin-top: 10px;
	width: 343px;
	height: 120px;
	border: 1px solid #FF99FF;
	border-radius: 4px;
}

.game-item {
	position: absolute;
	width: 343px;
	height: 120px;
	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: 12px;
	top: 10px;
	width: 100px;
	height: 100px;
	background: #FFFFFF;
	box-shadow: 0px 12px 20px 0px rgba(194,194,194,0.3);
	border-radius: 6px;
}

.game-title {
	position: absolute;
	top: 10px;
	left: 122px;
	height: 20px;
	font-size: 14px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: #333333;
	line-height: 20px;
}

.score-star-icon {
	position: absolute;
	top: 10px;
	right: 35px;
	width: 12px;
	height: 11px;
}

.game-score {
	position: absolute;
	top: 8px;
	right: 12px;
	height: 17px;
	font-size: 12px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: #FFA005;
	line-height: 17px;
}

.game-desc {
	position: absolute;
	top: 36px;
	left: 122px;
	width: 209px;
	height: 65px;
	font-size: 10px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 13px;

	word-break: break-all;
  	text-overflow: ellipsis;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 5; /* 超出几行省略 */
  	overflow: hidden;

}