@charset "utf-8";
/* 贈品列表 */
.giftlist {
	counter-reset: counter;
}
.giftlist__item {
	display: flex;
	margin: 22px 0;
	position: relative;
	padding-left: 30px;
}
.giftlist__item::before {
	content: counter(counter);
	counter-increment: counter;
	color: #fff;
	background: #ccc;
	border-radius: 50%;
	position: absolute;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	top: 0;
	left: 0;
}
.giftlist__imgbox {
	width: 70px;
	flex-shrink: 0;
}
.giftlist__infobox {
	padding-left: 12px;
}
.giftlist__title {
	margin-bottom: 6px;
	font-weight: 400;
}
.giftlist__desc {
	font-size: 14px;
	color: #888;
	line-height: 1.7;
}