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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
picker-view {
background: rgb(255, 255, 255);
display: flex;
}
picker-view .column {
font-size: 34rpx;
color: #191F25;
}
.pick-column {
border-left: 100vw solid transparent;
}
.column-1 {
flex: 1;
}
.column-2 {
flex: 2;
}
.tab {
margin-top: 72rpx;
display: flex;
padding-left: 24rpx;
}
.tab>view {
flex: 1;
display: flex;
flex-direction: column;
padding: 16rpx 34rpx;
background: rgba(10, 10, 10, 0.06);
border-radius: 8rpx;
margin-right: 24rpx;
box-sizing: border-box;
border: 2rpx solid transparent;
}
.tab>view>text {
color: rgba(10, 10, 10, 0.4);
font-size: 28rpx;
}
.tab>view>text:nth-of-type(2) {
color: rgba(10, 10, 10, 0.56);
font-size: 34rpx;
font-weight: bold;
line-height: 48rpx;
}
.tab .active {
background: #fff;
border: 2rpx solid rgb(10, 10, 10);
}
.tab .active>text {
color: rgba(10, 10, 10, 0.8);
}
.tab>.active>text:nth-of-type(2) {
color: rgb(10, 10, 10);
}
.coustom-end {
height: 144rpx;
position: relative;
border-bottom: 2rpx solid rgba(239, 242, 245, 1);
}
.coustom-end>text {
color: rgb(10, 10, 10);
position: absolute;
font-size: 24rpx;
right: 32rpx;
top: 22rpx;
}
.coustom-end .error {
left: 32rpx;
right: auto;
color: red;
}