order.scss 1.1 KB
.order_container{
	min-height: 100vh;
	background-color: #F5F5F7;
	padding-bottom: 180rpx;
	.order_header{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		margin-top: 128rpx;
		background-color: #24262B;
		.selectOrder{
			position: absolute;
			top: 0;
			left: 30rpx;
			min-width: 240rpx;
			background-color: #fff;
			border-radius: 20rpx;
			padding: 0 20rpx;
			box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
			z-index: 99;
			&::before{
				position: absolute;
				top: -6rpx;
				left: 10rpx;
				background-color: #fff;
				width: 25rpx;
				height: 25rpx;
				transform: rotate(45deg);
				content: '';
				z-index: 99;
			}
			.select_item{
				position: relative;
				display: flex;
				align-items: center;
				justify-content: center;
				height: 82rpx;
				border-bottom: 2rpx solid #eee;
				&.active::before {
					content: '';
					position: absolute;
					top: 50%;
					left: 16rpx;
					width: 12rpx;
					height: 12rpx;
					transform: translateY(-50%);
					background-color: #D31414;
					z-index: 99;
					border-radius: 50%;
				}
				&:last-child{
					border-bottom: 0;
				}
			}
		}
	}
}