order.scss
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.order_container{
min-height: 100vh;
background-color: #F5F5F7;
padding-bottom: 180rpx;
.order_header{
display: flex;
align-items: center;
justify-content: center;
position: relative;
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;
}
}
}
}
}