|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+.text-center {
|
|
|
2
|
+ text-align: center;
|
|
|
3
|
+}
|
|
|
4
|
+
|
|
|
5
|
+.font-13 {
|
|
|
6
|
+ font-size: 13px;
|
|
|
7
|
+}
|
|
|
8
|
+
|
|
|
9
|
+.font-12 {
|
|
|
10
|
+ font-size: 12px;
|
|
|
11
|
+}
|
|
|
12
|
+
|
|
|
13
|
+.font-11 {
|
|
|
14
|
+ font-size: 11px;
|
|
|
15
|
+}
|
|
|
16
|
+
|
|
|
17
|
+.text-grey1 {
|
|
|
18
|
+ color: #888;
|
|
|
19
|
+}
|
|
|
20
|
+
|
|
|
21
|
+.text-grey2 {
|
|
|
22
|
+ color: #aaa;
|
|
|
23
|
+}
|
|
|
24
|
+
|
|
|
25
|
+.list-cell-arrow::before {
|
|
|
26
|
+ content: ' ';
|
|
|
27
|
+ height: 10px;
|
|
|
28
|
+ width: 10px;
|
|
|
29
|
+ border-width: 2px 2px 0 0;
|
|
|
30
|
+ border-color: #c0c0c0;
|
|
|
31
|
+ border-style: solid;
|
|
|
32
|
+ -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
|
|
|
33
|
+ transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
|
|
|
34
|
+ position: absolute;
|
|
|
35
|
+ top: 50%;
|
|
|
36
|
+ margin-top: -6px;
|
|
|
37
|
+ right: 30rpx;
|
|
|
38
|
+}
|
|
|
39
|
+
|
|
|
40
|
+.list-cell {
|
|
|
41
|
+ position: relative;
|
|
|
42
|
+ width: 100%;
|
|
|
43
|
+ box-sizing: border-box;
|
|
|
44
|
+ background-color: #fff;
|
|
|
45
|
+ color: #333;
|
|
|
46
|
+ padding: 26rpx 30rpx;
|
|
|
47
|
+}
|
|
|
48
|
+
|
|
|
49
|
+.list-cell:first-child {
|
|
|
50
|
+ border-radius: 8rpx 8rpx 0 0;
|
|
|
51
|
+}
|
|
|
52
|
+
|
|
|
53
|
+.list-cell:last-child {
|
|
|
54
|
+ border-radius: 0 0 8rpx 8rpx;
|
|
|
55
|
+}
|
|
|
56
|
+
|
|
|
57
|
+.list-cell::after {
|
|
|
58
|
+ content: '';
|
|
|
59
|
+ position: absolute;
|
|
|
60
|
+ border-bottom: 1px solid #eaeef1;
|
|
|
61
|
+ -webkit-transform: scaleY(0.5) translateZ(0);
|
|
|
62
|
+ transform: scaleY(0.5) translateZ(0);
|
|
|
63
|
+ transform-origin: 0 100%;
|
|
|
64
|
+ bottom: 0;
|
|
|
65
|
+ right: 0;
|
|
|
66
|
+ left: 0;
|
|
|
67
|
+ pointer-events: none;
|
|
|
68
|
+}
|
|
|
69
|
+
|
|
|
70
|
+
|
|
|
71
|
+.menu-list {
|
|
|
72
|
+ margin: 15px 15px;
|
|
|
73
|
+
|
|
|
74
|
+ .menu-item-box {
|
|
|
75
|
+ width: 100%;
|
|
|
76
|
+ display: flex;
|
|
|
77
|
+ align-items: center;
|
|
|
78
|
+
|
|
|
79
|
+ .menu-icon {
|
|
|
80
|
+ color: #007AFF;
|
|
|
81
|
+ font-size: 16px;
|
|
|
82
|
+ margin-right: 5px;
|
|
|
83
|
+ }
|
|
|
84
|
+
|
|
|
85
|
+ .text-right {
|
|
|
86
|
+ margin-left: auto;
|
|
|
87
|
+ margin-right: 34rpx;
|
|
|
88
|
+ color: #999;
|
|
|
89
|
+ }
|
|
|
90
|
+ }
|
|
|
91
|
+}
|
|
|
92
|
+
|
|
|
93
|
+.more-list {
|
|
|
94
|
+ padding: 32rpx;
|
|
|
95
|
+ font-weight: 400;
|
|
|
96
|
+ font-size: 28rpx;
|
|
|
97
|
+ color: #666666;
|
|
|
98
|
+ line-height: 32rpx;
|
|
|
99
|
+ text-align: center;
|
|
|
100
|
+}
|
|
|
101
|
+
|
|
|
102
|
+.list-title {
|
|
|
103
|
+ color: #333333;
|
|
|
104
|
+ font-size: 32rpx;
|
|
|
105
|
+ font-weight: 600;
|
|
|
106
|
+}
|
|
|
107
|
+
|
|
|
108
|
+.list-row {
|
|
|
109
|
+ width: 100%;
|
|
|
110
|
+ display: flex;
|
|
|
111
|
+ align-items: center;
|
|
|
112
|
+
|
|
|
113
|
+ height: 50rpx;
|
|
|
114
|
+ line-height: 50rpx;
|
|
|
115
|
+
|
|
|
116
|
+ .list-label {
|
|
|
117
|
+ font-size: 28rpx;
|
|
|
118
|
+ color: #333333;
|
|
|
119
|
+ margin-right: 16rpx;
|
|
|
120
|
+ flex-shrink: 0;
|
|
|
121
|
+ // 添加折行显示样式
|
|
|
122
|
+ white-space: normal;
|
|
|
123
|
+ word-break: break-word;
|
|
|
124
|
+ // flex: 1;
|
|
|
125
|
+ min-width: 0; // 防止flex item溢出
|
|
|
126
|
+ }
|
|
|
127
|
+
|
|
|
128
|
+ .list-value {
|
|
|
129
|
+ font-size: 28rpx;
|
|
|
130
|
+ color: #999999;
|
|
|
131
|
+ // flex-grow: 1;
|
|
|
132
|
+
|
|
|
133
|
+ }
|
|
|
134
|
+}
|
|
|
135
|
+
|
|
|
136
|
+.list-row-space-between {
|
|
|
137
|
+ width: 100%;
|
|
|
138
|
+ display: flex;
|
|
|
139
|
+ align-items: center;
|
|
|
140
|
+ justify-content: space-between;
|
|
|
141
|
+ margin-bottom: 15rpx;
|
|
|
142
|
+
|
|
|
143
|
+ .list-label {
|
|
|
144
|
+ width: 76%;
|
|
|
145
|
+ font-size: 28rpx;
|
|
|
146
|
+ color: #333333;
|
|
|
147
|
+ margin-right: 16rpx;
|
|
|
148
|
+ flex-shrink: 0;
|
|
|
149
|
+ // 添加折行显示样式
|
|
|
150
|
+ white-space: normal;
|
|
|
151
|
+ word-break: break-word;
|
|
|
152
|
+ // flex: 1;
|
|
|
153
|
+ min-width: 0; // 防止flex item溢出
|
|
|
154
|
+ }
|
|
|
155
|
+
|
|
|
156
|
+ .list-value {
|
|
|
157
|
+ font-size: 28rpx;
|
|
|
158
|
+ color: #999999;
|
|
|
159
|
+ // flex-grow: 1;
|
|
|
160
|
+
|
|
|
161
|
+ }
|
|
|
162
|
+
|
|
|
163
|
+}
|
|
|
164
|
+
|
|
|
165
|
+
|
|
|
166
|
+::v-deep .uni-input-input:disabled {
|
|
|
167
|
+ background-color: #f5f5f5 !important;
|
|
|
168
|
+}
|
|
|
169
|
+
|
|
|
170
|
+.radio-group {
|
|
|
171
|
+ display: flex;
|
|
|
172
|
+ padding: 8px 0;
|
|
|
173
|
+
|
|
|
174
|
+ .radio-item {
|
|
|
175
|
+ display: flex;
|
|
|
176
|
+ align-items: center;
|
|
|
177
|
+ margin-right: 30px;
|
|
|
178
|
+
|
|
|
179
|
+ text {
|
|
|
180
|
+ font-size: 15px;
|
|
|
181
|
+ color: #333;
|
|
|
182
|
+ margin-left: 5px;
|
|
|
183
|
+ }
|
|
|
184
|
+ }
|
|
|
185
|
+
|
|
|
186
|
+ &.disabled-group {
|
|
|
187
|
+ opacity: 0.5;
|
|
|
188
|
+ pointer-events: none;
|
|
|
189
|
+ }
|
|
|
190
|
+}
|
|
|
191
|
+
|
|
|
192
|
+
|
|
|
193
|
+.uni-tabbar,.uni-tabbar__item,.uni-tabbar__bd,.uni-tabbar__label {
|
|
|
194
|
+ padding-bottom: 0px !important;
|
|
|
195
|
+ margin-bottom: 0px !important;
|
|
|
196
|
+}
|