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
| /* pages/myRegisterFlow/index.wxss */
| .main {
| padding: 32rpx 24rpx;
| }
|
| .flex {
| display: flex;
| gap: 24rpx;
| }
|
| .icon {
| width: 36rpx;
| height: 36rpx;
| background: #e8f3ff;
| border-radius: 50%;
| display: flex;
| align-items: center;
| justify-content: center;
| padding: 12rpx;
| }
|
| .icon-image {
| width: 24rpx;
| height: 24rpx;
| }
|
| .line {
| height: 100%;
| border-left: 1px solid #1a6fb8;
| }
|
| .left {
| display: flex;
| flex-direction: column;
| align-items: center;
| gap: 8rpx;
| }
|
| .list-content-flex {
| display: flex;
| align-items: flex-start;
| }
|
| .margin-top {
| margin-top: 8rpx;
| }
|
| .list-content-title {
| width: 140rpx;
| font-size: 28rpx;
| color: rgba(23, 26, 29, 0.60);
| }
|
| .list-content-value {
| font-size: 28rpx;
| flex: 1;
| }
|
| .green {
| color: #00B42A;
| }
|
| .myRegisterFlow_bind {
| padding: 0 24rpx;
| text-align: center;
| display: flex;
| justify-content: center;
| gap: 24rpx;
| }
|
| .text-with-dot {
| position: relative;
| font-size: 16px;
| /* 根据需要调整字体大小 */
| }
|
| .dot {
| position: absolute;
| top: -2px;
| right: -4px;
| width: 6px;
| /* 红点直径 */
| height: 6px;
| /* 红点直径 */
| background: #f53f3f;
| border-radius: 50%;
| /* 红点是圆形 */
| }
|
|