.category {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 32px 30px;
	box-sizing: border-box;
}

.category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gwc_img {
	width: 60px;
}
.category-item span {
	display: inline-block;
	padding-top: 8px;
	color: #505050;
	font-family: Source Han Sans CN;
	font-size: 24px;
	line-height: normal;
	font-weight: 400;
}

.series {
	padding-top: 10px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
}

.series-item {
	flex-shrink: 0;
	width: 250px;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #F7F7F7;
	padding: 0px 8px;
	box-sizing: border-box;
	border-top: 1px solid #505050;
	border-left: 1px solid #505050;
}

.series-item-s {
	background-color: #D80C24;
}

.series-item:last-child {
	border-right: 1px solid #505050;
}

.series-item-s span {
	color: #fff !important;
}

.series-item span {
	padding-right: 20px;
	display: inline-block;
	color: #000;
	font-family: Source Han Sans CN;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.series-item-name{
	display: flex;
	align-items: center;
}
.series-item-car {
	width: 92px;
}

.cartList {
	padding-top: 97px;
	width: 100%;
	height: calc(100vh - 500px);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
}

.cartList-item {
	flex-shrink: 0;
	width: 100%;
	height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.cartList-item:last-child {
	padding-bottom: 100px;
}

.cartList-item img {
	width: 492px;
	opacity: 0;
}

.cartList-item span {
	color: #000;
	font-family: -apple-system, Source Han Sans CN;
	font-size: 45px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-top: 20px;
	opacity: 0;
	display: inline-block;
}

@keyframes moveCar {
	from {
		opacity: 0;
		transform: translate(50px,-20px);
	}

	to {
		opacity: 1;
		transform: translate(0px,0px);
	}
}

@keyframes moveSpan {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}