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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
| /* pages/myRegisterDetail/index.wxss */
| @import '../../styles/public_components.wxss';
|
| .one-list {
| background: #fff;
| padding: 24rpx;
| display: flex;
| position: relative;
| gap: 8px;
| margin-bottom: 12px;
| border-radius: 8px;
| }
|
| .one-list-l {
| height: 96rpx;
| width: 96rpx;
| border-radius: 4px;
| display: flex;
| align-items: center;
| justify-content: center;
| color: #fff;
| font-size: 28rpx;
| text-align: center;
| }
|
| .one-list-r-t {
| display: flex;
| gap: 8px;
| font-size: 28rpx;
| line-height: 44rpx;
| }
|
| .one-list-phone {
| color: rgba(23, 26, 29, 0.60);
| }
|
| .one-list-tag {
| font-size: 24rpx;
| line-height: 40rpx;
| border-radius: 2px;
| background: #e6fffb;
| color: #13C2C2;
| padding: 0 8rpx;
| }
|
| .one-list-tag-orange {
| font-size: 24rpx;
| line-height: 40rpx;
| border-radius: 2px;
| background: #FFF2E6;
| color: #EF6C24;
| padding: 0 8rpx;
| }
|
| .one-list-r-b {
| color: rgba(23, 26, 29, 0.60);
| font-size: 24rpx;
| line-height: 40rpx;
| margin-top: 8rpx;
| }
|
| .three-tag {}
|
| .three-tag .van-tabs__wrap {
| height: 96rpx !important;
| }
|
| .three-tag .van-tabs__nav {
| height: 100%;
| }
|
| .three-tag .van-tabs__scroll--line {
| height: 100%;
| }
|
| .three-tag .van-tab {
| height: 100%;
| line-height: 96rpx !important;
| }
|
| .three-tag2 {
| background-color: #fff;
| margin-top: 16rpx;
| padding: 24rpx 32rpx;
| }
|
| .green {
| background-color: #13C2C2;
| }
|
| .orange {
| background-color: #EF6C24;
| }
|
| .fileList {
| background-color: #fff;
| padding: 24rpx 32rpx;
| display: flex;
| gap: 32rpx;
| align-items: center;
| }
|
| .fileList_border {
| padding-bottom: 24rpx;
| display: flex;
| gap: 32rpx;
| align-items: center;
| border-bottom: 1px solid rgba(126, 134, 142, 0.16);
| }
|
| .fileList_img {
| width: 84rpx;
| height: 96rpx;
| }
|
| .fileList_title {
| color: rgba(23, 26, 29, 0.40);
| font-size: 28rpx;
| }
|
| .fileList_img_del {
| width: 32rpx;
| height: 32rpx;
| }
|
| .flex_1 {
| flex: 1;
| }
|
|