.discount_item {
	width: 46%;
	border-radius: 5px;
	background-color: #d0d0d0;
	padding: 10px;
	margin: 10px 10px;
	float: left;
}

.discount_item .gametitle {
	font-size: 18px;
	font-weight: bold;
	padding: 10px 0;
	height: 25px;
}

.discount_item .gametitle a {
	color: #bf0101;
}

.discount_item .gameinfo {
	display: flex;
}

.discount_item .gameinfo .gamepic {
	width: 50%;
}

.discount_item .gameinfo .gamepic img {
	height: 150px;
	width: 250px;
}

.discount_item .gamecontent {
	margin-left: 15px;
	font-size: 14px;
	color: black;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	height: 150px;
}

.discount_item .gamesales {
	margin: 5px 0 0 0;
	display: flex;
	height: 40px;
}


.discount_item .gamesales .discount_price {
	font-size: 28px;
	color: #ff6521;
	font-weight: bold;
	padding: 0 15px;
}

.discount_item .gamesales .price {
	font-size: 14px;
	color: black;
	text-decoration: line-through;
	line-height: 35px;
	padding-right: 20px;
}

.discount_item .gamesales .endtime {
	font-size: 14px;
	color: black;
	line-height: 35px;
}

.discount_item .gamesales .zhekou {
	width: 41px;
	height: 25px;
	background-color: #4cb77e;
	border-radius: 5px;
	display: inline-block;
	color: white;
	text-align: center;
	line-height: 25px;
	margin: 5px 0 auto;
}

.discount_item .gamesales .shidi {
	width: 50px;
	height: 25px;
	background-color: #4cb77e;
	border-radius: 5px;
	display: inline-block;
	color: white;
	text-align: center;
	line-height: 25px;
	margin: 5px 5px;
}

@media screen and (max-width: 480px) {
	.discount_item {
		width: 95%;
		margin: 5px 0px;
	}

	.discount_item .gameinfo .gamepic img {
		height: 90px;
		width: 150px;
	}

	.discount_item .gamecontent {
		-webkit-line-clamp: 5;
		height: 95px;
	}

	.discount_item .gamesales .discount_price {
		padding: 0 5px;
		font-size: 20px;
		line-height: 35px;
	}

	.discount_item .gamesales .endtime, .discount_item .gamesales .price {
		font-size:12px;
		padding-right: 10px;
	}

	.discount_item .gamesales .shidi {
		width: 35px;
		font-size: 12px;
		overflow: hidden;
	}

	.discount_item .gamesales .zhekou {
		width: 35px;
		font-size: 12px;
	}


}