| 123456789101112131415161718192021222324252627282930313233343536373839 | .custom {	display: flex;	flex-wrap: wrap;	margin-bottom: 6rpx;	&-label {		font-size: 28rpx;		font-weight: bold;		color: #333333;		margin-top: 4rpx;	}	&-option {		background-color: #F4F5F7;		padding: 8rpx 20rpx;		border-radius: 8rpx;		overflow: hidden;		margin-right: 12rpx;		margin-bottom: 14rpx;	}	&-option:last-child {		margin-right: 0;	}	.active {		background: #E7EEFF !important;	}	.stepper-box {		display: flex;		align-items: center;	}	.explain {		font-size: 22rpx;		color: #333;	}}
 |