|
@@ -0,0 +1,742 @@
|
|
1
|
+.body {
|
|
2
|
+ // background: $base-color;
|
|
3
|
+}
|
|
4
|
+
|
|
5
|
+#app {
|
|
6
|
+ width: 100%;
|
|
7
|
+ height: 100%;
|
|
8
|
+}
|
|
9
|
+
|
|
10
|
+.iconfont {
|
|
11
|
+ color: #a8b3ba;
|
|
12
|
+}
|
|
13
|
+
|
|
14
|
+.mainBox {
|
|
15
|
+ font-size: 0.3rem;
|
|
16
|
+}
|
|
17
|
+
|
|
18
|
+.plateTitle {
|
|
19
|
+ border-bottom: 1px solid rgba(193, 193, 193, 0.4);
|
|
20
|
+ line-height: 1rem;
|
|
21
|
+ @include text-align;
|
|
22
|
+ font-size: 0.36rem;
|
|
23
|
+ color: $main-color;
|
|
24
|
+ font-weight: 600;
|
|
25
|
+ position: relative;
|
|
26
|
+ @include display-flex;
|
|
27
|
+ @include align-items-center;
|
|
28
|
+ width: 100%;
|
|
29
|
+ @include justify-content-center;
|
|
30
|
+ .line {
|
|
31
|
+ width: 0.2rem;
|
|
32
|
+ height: 0.04rem;
|
|
33
|
+ background: $main-color;
|
|
34
|
+ z-index: 99;
|
|
35
|
+ display: inline-block;
|
|
36
|
+ margin: 0 0.2rem;
|
|
37
|
+ }
|
|
38
|
+}
|
|
39
|
+
|
|
40
|
+.blueBorder {
|
|
41
|
+ height: 0.2rem;
|
|
42
|
+ line-height: 0.2rem;
|
|
43
|
+ background: #f6f8f9;
|
|
44
|
+}
|
|
45
|
+
|
|
46
|
+// 数据详情
|
|
47
|
+.plate-box {
|
|
48
|
+ background: $text-color;
|
|
49
|
+ padding: 0 0 0.3rem 0;
|
|
50
|
+ margin: 0 0.2rem;
|
|
51
|
+ .title {
|
|
52
|
+ border-bottom: 1px $border-color solid;
|
|
53
|
+ line-height: 1rem;
|
|
54
|
+ @include text-align;
|
|
55
|
+ font-size: 0.36rem;
|
|
56
|
+ color: $main-color;
|
|
57
|
+ font-weight: 600;
|
|
58
|
+ position: relative;
|
|
59
|
+ @include display-flex;
|
|
60
|
+ @include align-items-center;
|
|
61
|
+ width: 100%;
|
|
62
|
+ @include justify-content-center;
|
|
63
|
+ }
|
|
64
|
+ .line {
|
|
65
|
+ width: 0.2rem;
|
|
66
|
+ height: 0.04rem;
|
|
67
|
+ background: $main-color;
|
|
68
|
+ z-index: 99;
|
|
69
|
+ display: inline-block;
|
|
70
|
+ margin: 0 0.2rem;
|
|
71
|
+ }
|
|
72
|
+ .plate {
|
|
73
|
+ margin: 0.25rem 1rem;
|
|
74
|
+ padding-bottom: 0.28rem;
|
|
75
|
+ @include box-sizing;
|
|
76
|
+ @include display-flex;
|
|
77
|
+ @include align-items-start;
|
|
78
|
+ @include justify-content-between;
|
|
79
|
+ border-bottom: 1px #e6e6e6 dashed;
|
|
80
|
+ ul {
|
|
81
|
+ @include flex;
|
|
82
|
+ li {
|
|
83
|
+ font-size: 0.34rem;
|
|
84
|
+ line-height: 0.62rem;
|
|
85
|
+ .content {
|
|
86
|
+ color: $main-color;
|
|
87
|
+ }
|
|
88
|
+ .unit {
|
|
89
|
+ color: $font-color;
|
|
90
|
+ }
|
|
91
|
+ }
|
|
92
|
+ }
|
|
93
|
+ }
|
|
94
|
+ .note {
|
|
95
|
+ font-size: 0.34rem;
|
|
96
|
+ color: $pgh-color;
|
|
97
|
+ width: 100%;
|
|
98
|
+ padding: 0 1rem;
|
|
99
|
+ line-height: 0.5rem;
|
|
100
|
+ span {
|
|
101
|
+ color: $main-color;
|
|
102
|
+ }
|
|
103
|
+ }
|
|
104
|
+ .border {
|
|
105
|
+ border: none;
|
|
106
|
+ }
|
|
107
|
+}
|
|
108
|
+
|
|
109
|
+// 今日弹出层
|
|
110
|
+.popup-content {
|
|
111
|
+ @include box-sizing; // @include display-flex;
|
|
112
|
+ // @include flex;
|
|
113
|
+ background: $text-color;
|
|
114
|
+ border-radius: 6px;
|
|
115
|
+ font-size: 0.28rem;
|
|
116
|
+ width: 13.2rem;
|
|
117
|
+ .title {
|
|
118
|
+ border-bottom: 1px $border-color solid;
|
|
119
|
+ height: 0.88rem;
|
|
120
|
+ line-height: 0.88rem;
|
|
121
|
+ @include text-align;
|
|
122
|
+ font-size: 0.3rem;
|
|
123
|
+ color: $main-color;
|
|
124
|
+ font-weight: 700;
|
|
125
|
+ position: relative;
|
|
126
|
+ @include display-flex;
|
|
127
|
+ @include align-items-center;
|
|
128
|
+ width: 100%;
|
|
129
|
+ @include justify-content-center;
|
|
130
|
+ .line {
|
|
131
|
+ width: 0.1rem;
|
|
132
|
+ height: 0.04rem;
|
|
133
|
+ background: $main-color;
|
|
134
|
+ z-index: 99;
|
|
135
|
+ display: inline-block;
|
|
136
|
+ margin: 0 0.14rem;
|
|
137
|
+ }
|
|
138
|
+ }
|
|
139
|
+ .content {
|
|
140
|
+ padding: 0 0.36rem;
|
|
141
|
+ .cell {
|
|
142
|
+ float: left;
|
|
143
|
+ width: 3.22rem;
|
|
144
|
+ margin: 0.35rem 0.4rem 0 0.4rem;
|
|
145
|
+ label {
|
|
146
|
+ display: block;
|
|
147
|
+ height: 0.55rem;
|
|
148
|
+ line-height: 0.55rem;
|
|
149
|
+ color: $pgh-color;
|
|
150
|
+ }
|
|
151
|
+ select {
|
|
152
|
+ width: 100%;
|
|
153
|
+ padding: 0.2rem 0;
|
|
154
|
+ border: 1px $border-color solid;
|
|
155
|
+ border-radius: 2px;
|
|
156
|
+ padding-left: 5px;
|
|
157
|
+ }
|
|
158
|
+ .inputBox {
|
|
159
|
+ border: 1px $border-color solid;
|
|
160
|
+ border-radius: 2px;
|
|
161
|
+ padding: 0.18rem 0;
|
|
162
|
+ padding-left: 5px;
|
|
163
|
+ }
|
|
164
|
+ .textarea {
|
|
165
|
+ width: 100%;
|
|
166
|
+ height: 1.22rem;
|
|
167
|
+ border: 1px $border-color solid;
|
|
168
|
+ border-radius: 2px;
|
|
169
|
+ padding-left: 5px;
|
|
170
|
+ }
|
|
171
|
+ }
|
|
172
|
+ .width {
|
|
173
|
+ width: 90%;
|
|
174
|
+ label {
|
|
175
|
+ display: inline-block;
|
|
176
|
+ }
|
|
177
|
+ button {
|
|
178
|
+ background: $main-color;
|
|
179
|
+ color: #fff;
|
|
180
|
+ border-radius: 6px;
|
|
181
|
+ width: 3.1rem;
|
|
182
|
+ height: 0.9rem;
|
|
183
|
+ line-height: 0.9rem;
|
|
184
|
+ text-align: center;
|
|
185
|
+ margin: 0 0 0.9rem 0;
|
|
186
|
+ }
|
|
187
|
+ }
|
|
188
|
+ .center {
|
|
189
|
+ text-align: center;
|
|
190
|
+ }
|
|
191
|
+ }
|
|
192
|
+}
|
|
193
|
+
|
|
194
|
+.yzNav {
|
|
195
|
+ width: 60%;
|
|
196
|
+ margin: 0 auto;
|
|
197
|
+ @include display-flex;
|
|
198
|
+ @include text-align;
|
|
199
|
+ @include align-items-center;
|
|
200
|
+ @include justify-content-around;
|
|
201
|
+ background: #fff;
|
|
202
|
+ span {
|
|
203
|
+ height: 0.60rem;
|
|
204
|
+ line-height: 0.60rem;
|
|
205
|
+ background: #fff;
|
|
206
|
+ border-radius: 50px;
|
|
207
|
+ border: 1px $border-color solid;
|
|
208
|
+ display: inline-block;
|
|
209
|
+ @include text-align;
|
|
210
|
+ margin: 0.25rem 0;
|
|
211
|
+ color: #34495e;
|
|
212
|
+ font-size: 0.34rem;
|
|
213
|
+ padding: 0 0.3rem;
|
|
214
|
+ }
|
|
215
|
+ .forbid {
|
|
216
|
+ color: $forbid-color;
|
|
217
|
+ }
|
|
218
|
+}
|
|
219
|
+
|
|
220
|
+// 监控搜索
|
|
221
|
+.search-content {
|
|
222
|
+ background: #ebf1f7;
|
|
223
|
+ padding: 0.2rem 0.28rem;
|
|
224
|
+ .search {
|
|
225
|
+ background: $white-bg;
|
|
226
|
+ height: 0.7rem;
|
|
227
|
+ line-height: 0.7rem;
|
|
228
|
+ border-radius: 0.5rem;
|
|
229
|
+ @include flex;
|
|
230
|
+ @include display-flex;
|
|
231
|
+ @include align-items-center;
|
|
232
|
+ margin: 0 0.3rem;
|
|
233
|
+ padding: 0 0 0 0.3rem;
|
|
234
|
+ .iconfont {
|
|
235
|
+ color: #a8b3ba;
|
|
236
|
+ font-size: 0.4rem;
|
|
237
|
+ margin: 0 0.1rem 0 0;
|
|
238
|
+ }
|
|
239
|
+ .searchInput {
|
|
240
|
+ width: 87%;
|
|
241
|
+ height: 0.6rem;
|
|
242
|
+ line-height: 0.6rem;
|
|
243
|
+ border: none;
|
|
244
|
+ outline: none;
|
|
245
|
+ color: $pgh-color;
|
|
246
|
+ font-size: 0.28rem;
|
|
247
|
+ }
|
|
248
|
+ }
|
|
249
|
+}
|
|
250
|
+
|
|
251
|
+// 监控表单
|
|
252
|
+.MonitoringForm {
|
|
253
|
+ width: 100%;
|
|
254
|
+ overflow: hidden;
|
|
255
|
+ font-size: 0.3rem;
|
|
256
|
+ border: $border-color;
|
|
257
|
+ background: $text-color;
|
|
258
|
+ padding: 0 0 0.28rem 0;
|
|
259
|
+ tr {
|
|
260
|
+ padding: 0;
|
|
261
|
+ margin: 0;
|
|
262
|
+ padding: 0.1rem 0;
|
|
263
|
+ th {
|
|
264
|
+ background: $main-color;
|
|
265
|
+ border: none;
|
|
266
|
+ color: #fff;
|
|
267
|
+ padding: 0;
|
|
268
|
+ margin: 0;
|
|
269
|
+ height: 0.88rem;
|
|
270
|
+ line-height: 0.88rem;
|
|
271
|
+ font-weight: normal;
|
|
272
|
+ }
|
|
273
|
+ td {
|
|
274
|
+ background: #f0f5fa;
|
|
275
|
+ border: none;
|
|
276
|
+ padding: 0.3rem 0;
|
|
277
|
+ text-align: center;
|
|
278
|
+ button {
|
|
279
|
+ background: $pink;
|
|
280
|
+ color: #fff;
|
|
281
|
+ display: inline-block;
|
|
282
|
+ width: 40%;
|
|
283
|
+ margin: 0 2%;
|
|
284
|
+ height: 0.6rem;
|
|
285
|
+ line-height: 0.6rem;
|
|
286
|
+ border-radius: 4px;
|
|
287
|
+ }
|
|
288
|
+ }
|
|
289
|
+ }
|
|
290
|
+}
|
|
291
|
+
|
|
292
|
+.vux-popover {
|
|
293
|
+ box-shadow: 0 0 15px #eee;
|
|
294
|
+ .popover-demo-content {
|
|
295
|
+ ul {
|
|
296
|
+ width: 6.4rem;
|
|
297
|
+ padding: 0.28rem;
|
|
298
|
+ li {
|
|
299
|
+ font-size: 0.32rem;
|
|
300
|
+ color: $title-color;
|
|
301
|
+ line-height: 0.7rem;
|
|
302
|
+ height: 0.7rem;
|
|
303
|
+ .iconfont {
|
|
304
|
+ float: right;
|
|
305
|
+ color: #409eff;
|
|
306
|
+ font-size: 0.5rem;
|
|
307
|
+ display: inline-block;
|
|
308
|
+ }
|
|
309
|
+ }
|
|
310
|
+ }
|
|
311
|
+ }
|
|
312
|
+}
|
|
313
|
+
|
|
314
|
+// el
|
|
315
|
+.popover-demo-content {
|
|
316
|
+ ul {
|
|
317
|
+ li {
|
|
318
|
+ font-size: 0.32rem;
|
|
319
|
+ color: $title-color;
|
|
320
|
+ line-height: 0.7rem;
|
|
321
|
+ height: 0.7rem;
|
|
322
|
+ .iconfont {
|
|
323
|
+ float: right;
|
|
324
|
+ color: #409eff;
|
|
325
|
+ font-size: 0.5rem;
|
|
326
|
+ display: inline-block;
|
|
327
|
+ }
|
|
328
|
+ }
|
|
329
|
+ }
|
|
330
|
+}
|
|
331
|
+
|
|
332
|
+.tick {
|
|
333
|
+ position: relative;
|
|
334
|
+ color: $main-color !important;
|
|
335
|
+ font-weight: 600;
|
|
336
|
+}
|
|
337
|
+
|
|
338
|
+.mainBox {
|
|
339
|
+ .mainContent {
|
|
340
|
+ margin: 0 0 0 1.58rem;
|
|
341
|
+ }
|
|
342
|
+}
|
|
343
|
+
|
|
344
|
+.van-popup {
|
|
345
|
+ top: 5% !important;
|
|
346
|
+ transform: translate3d(-50%, 0, 0) !important;
|
|
347
|
+}
|
|
348
|
+
|
|
349
|
+// 弹窗滚动条
|
|
350
|
+::-webkit-scrollbar {
|
|
351
|
+ width: 0.25rem;
|
|
352
|
+ height: 0.25rem;
|
|
353
|
+ background-color: #fff;
|
|
354
|
+}
|
|
355
|
+
|
|
356
|
+::-webkit-scrollbar-track {
|
|
357
|
+ -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
|
|
358
|
+ background-color: #fff;
|
|
359
|
+}
|
|
360
|
+
|
|
361
|
+::-webkit-scrollbar-thumb {
|
|
362
|
+ -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
|
|
363
|
+ background-color: #e5e5e5;
|
|
364
|
+}
|
|
365
|
+
|
|
366
|
+// 弹窗样式
|
|
367
|
+.van-popup {
|
|
368
|
+ // max-height:8.6rem !important;
|
|
369
|
+}
|
|
370
|
+
|
|
371
|
+.van-popup {
|
|
372
|
+ border-radius: 20px !important;
|
|
373
|
+ .Dialog {
|
|
374
|
+ font-size: 0.36rem;
|
|
375
|
+ width: 16.8rem;
|
|
376
|
+ background: #ebf1f7;
|
|
377
|
+ position: relative;
|
|
378
|
+ .DialogTit {
|
|
379
|
+ @include box-sizing;
|
|
380
|
+ @include display-flex;
|
|
381
|
+ @include align-items-center;
|
|
382
|
+ @include text-align;
|
|
383
|
+ @include justify-content-between;
|
|
384
|
+ padding: 0.2rem 0.36rem;
|
|
385
|
+ z-index: 999;
|
|
386
|
+ background: #fff;
|
|
387
|
+ box-shadow: 3px 3px 3px #d7dce2;
|
|
388
|
+ margin-bottom: 0.24rem;
|
|
389
|
+ .iconfont {
|
|
390
|
+ font-size: 0.5rem;
|
|
391
|
+ color: $main-color;
|
|
392
|
+ font-weight: bold;
|
|
393
|
+ }
|
|
394
|
+ .back {
|
|
395
|
+ font-size: 0.36rem;
|
|
396
|
+ color: $main-color;
|
|
397
|
+ @include display-flex;
|
|
398
|
+ @include align-items-center;
|
|
399
|
+ font-weight: 600;
|
|
400
|
+ .iconfont {
|
|
401
|
+ font-size: 0.5rem;
|
|
402
|
+ font-weight: 700;
|
|
403
|
+ color: $main-color;
|
|
404
|
+ }
|
|
405
|
+ }
|
|
406
|
+ .name {
|
|
407
|
+ font-size: 0.36rem;
|
|
408
|
+ color: $main-color;
|
|
409
|
+ font-weight: 600;
|
|
410
|
+ }
|
|
411
|
+ .success {
|
|
412
|
+ font-size: 0.36rem;
|
|
413
|
+ font-weight: 600;
|
|
414
|
+ color: $title-color;
|
|
415
|
+ }
|
|
416
|
+ }
|
|
417
|
+ .line {
|
|
418
|
+ height: 0.24rem;
|
|
419
|
+ background: #ebf1f7;
|
|
420
|
+ }
|
|
421
|
+ .gradient {
|
|
422
|
+ height: 0.24rem;
|
|
423
|
+ background: -webkit-linear-gradient(#dfe4ea, #ebf1f7);
|
|
424
|
+ }
|
|
425
|
+ .DialogContent {
|
|
426
|
+ height: 6.8rem;
|
|
427
|
+ overflow-y: scroll;
|
|
428
|
+ background: #fff;
|
|
429
|
+ .item {
|
|
430
|
+ padding: 0 0.32rem;
|
|
431
|
+ border-bottom: 1px #e5e5e5 solid;
|
|
432
|
+ @include box-sizing;
|
|
433
|
+ @include display-flex;
|
|
434
|
+ @include align-items-center;
|
|
435
|
+ @include text-align;
|
|
436
|
+ @include justify-content-between;
|
|
437
|
+ color: $title-color;
|
|
438
|
+ .name {
|
|
439
|
+ font-size: 0.34rem;
|
|
440
|
+ height: 1.1rem;
|
|
441
|
+ line-height: 1.1rem;
|
|
442
|
+ color: $title-color;
|
|
443
|
+ }
|
|
444
|
+ .content {
|
|
445
|
+ @include flex;
|
|
446
|
+ text-align: right;
|
|
447
|
+ margin-left: 0.2rem;
|
|
448
|
+ .iconfont {
|
|
449
|
+ font-size: 0.5rem;
|
|
450
|
+ }
|
|
451
|
+ input {
|
|
452
|
+ height: 1rem;
|
|
453
|
+ line-height: 1rem;
|
|
454
|
+ border: none;
|
|
455
|
+ font-size: 0.3rem;
|
|
456
|
+ @include flex;
|
|
457
|
+ text-align: right;
|
|
458
|
+ width: 100%;
|
|
459
|
+ }
|
|
460
|
+ .text {
|
|
461
|
+ height: 1rem;
|
|
462
|
+ line-height: 0.5rem;
|
|
463
|
+ font-size: 0.34rem;
|
|
464
|
+ }
|
|
465
|
+ }
|
|
466
|
+ }
|
|
467
|
+ }
|
|
468
|
+ .footer {
|
|
469
|
+ height: 1rem;
|
|
470
|
+ line-height: 1rem;
|
|
471
|
+ padding-left: 0.36rem;
|
|
472
|
+ }
|
|
473
|
+ .PrescSubmit {
|
|
474
|
+ width: 100%;
|
|
475
|
+ padding: 0.2rem 0;
|
|
476
|
+ background: #fff;
|
|
477
|
+ text-align: center;
|
|
478
|
+ button {
|
|
479
|
+ padding: 0 0.32rem;
|
|
480
|
+ border: $main-color;
|
|
481
|
+ font-size: 0.28rem;
|
|
482
|
+ text-align: center;
|
|
483
|
+ height: 0.7rem;
|
|
484
|
+ line-height: 0.7rem;
|
|
485
|
+ background: #fff;
|
|
486
|
+ border: 1px $main-color solid;
|
|
487
|
+ border-radius: 0.06rem;
|
|
488
|
+ color: $main-color;
|
|
489
|
+ margin: 0 0.11rem;
|
|
490
|
+ &.tjcq {
|
|
491
|
+ background: $main-color;
|
|
492
|
+ color: #fff;
|
|
493
|
+ }
|
|
494
|
+ }
|
|
495
|
+ }
|
|
496
|
+ }
|
|
497
|
+}
|
|
498
|
+
|
|
499
|
+// 表单样式
|
|
500
|
+.table {
|
|
501
|
+ width: 2000px;
|
|
502
|
+ overflow: auto;
|
|
503
|
+ font-size: 0.34rem;
|
|
504
|
+ text-align: center;
|
|
505
|
+ border: $border-color;
|
|
506
|
+ padding-bottom: 0.02rem;
|
|
507
|
+ border: none;
|
|
508
|
+ tr {
|
|
509
|
+ padding: 0;
|
|
510
|
+ margin: 0;
|
|
511
|
+ padding: 0.14rem 0;
|
|
512
|
+ th {
|
|
513
|
+ background: $main-color;
|
|
514
|
+ border: none;
|
|
515
|
+ color: #fff;
|
|
516
|
+ padding: 0;
|
|
517
|
+ margin: 0;
|
|
518
|
+ height: 0.88rem;
|
|
519
|
+ font-weight: normal;
|
|
520
|
+ }
|
|
521
|
+ td {
|
|
522
|
+ background: #ecf5ff;
|
|
523
|
+ border: none;
|
|
524
|
+ padding: 0.18rem 0;
|
|
525
|
+
|
|
526
|
+ .xg {
|
|
527
|
+ color: $main-color;
|
|
528
|
+ font-size: 0.28rem;
|
|
529
|
+ margin-right: 0.2rem;
|
|
530
|
+ cursor: pointer;
|
|
531
|
+ .iconfont {
|
|
532
|
+ margin-right: 0.1rem;
|
|
533
|
+ color: $main-color;
|
|
534
|
+ font-size: 0.3rem;
|
|
535
|
+ }
|
|
536
|
+ }
|
|
537
|
+ .sc {
|
|
538
|
+ color: #ff7979;
|
|
539
|
+ margin-right: 0.2rem;
|
|
540
|
+ cursor: pointer;
|
|
541
|
+ .iconfont {
|
|
542
|
+ color: #ff7979;
|
|
543
|
+ }
|
|
544
|
+ }
|
|
545
|
+ }
|
|
546
|
+ }
|
|
547
|
+}
|
|
548
|
+
|
|
549
|
+.van-checkbox__icon--checked .van-icon {
|
|
550
|
+ color: #fff;
|
|
551
|
+ border-color: $main-color !important;
|
|
552
|
+ background-color: $main-color !important;
|
|
553
|
+}
|
|
554
|
+
|
|
555
|
+.CheckBox .van-checkbox__label {
|
|
556
|
+ width: 94%;
|
|
557
|
+ font-size: 0.34rem;
|
|
558
|
+}
|
|
559
|
+
|
|
560
|
+.mint-datetime-action {
|
|
561
|
+ font-size: 0.36rem;
|
|
562
|
+}
|
|
563
|
+
|
|
564
|
+.picker-item {
|
|
565
|
+ font-size: 0.34rem;
|
|
566
|
+}
|
|
567
|
+
|
|
568
|
+.NoData {
|
|
569
|
+ width: 100%;
|
|
570
|
+ text-align: center;
|
|
571
|
+ background: #fff;
|
|
572
|
+ padding:0.3rem 0;
|
|
573
|
+ display:flex;
|
|
574
|
+ align-items: center;
|
|
575
|
+ justify-content: center;
|
|
576
|
+ text-align: center;
|
|
577
|
+ img {
|
|
578
|
+ width: 180px;
|
|
579
|
+ }
|
|
580
|
+}
|
|
581
|
+.el-popper{
|
|
582
|
+ margin-top: 0!important;
|
|
583
|
+}
|
|
584
|
+
|
|
585
|
+.CheckBox,
|
|
586
|
+.DialogContent,
|
|
587
|
+.optionsBox,
|
|
588
|
+.el-collapse-item__content {
|
|
589
|
+ /* 针对缺省样式 (必须的) */
|
|
590
|
+ &::-webkit-scrollbar {
|
|
591
|
+ width: 6px;
|
|
592
|
+ height: 10px;
|
|
593
|
+ }
|
|
594
|
+ /* 滚动条的滑轨背景颜色 */
|
|
595
|
+ &::-webkit-scrollbar-track {
|
|
596
|
+ background-color: #fff;
|
|
597
|
+ border-radius: 3px;
|
|
598
|
+ -moz-border-radius: 3px;
|
|
599
|
+ -webkit-border-radius: 3px;
|
|
600
|
+ }
|
|
601
|
+ /* 滑块颜色 */
|
|
602
|
+ &::-webkit-scrollbar-thumb {
|
|
603
|
+ background: #d7dce2;
|
|
604
|
+ border-radius: 3px;
|
|
605
|
+ -moz-border-radius: 3px;
|
|
606
|
+ -webkit-border-radius: 3px;
|
|
607
|
+ }
|
|
608
|
+ /*内层轨道的颜色*/
|
|
609
|
+ &::-webkit-scrollbar-track-piece {
|
|
610
|
+ background-color: #fff;
|
|
611
|
+ border-radius: 3px;
|
|
612
|
+ -moz-border-radius: 3px;
|
|
613
|
+ -webkit-border-radius: 3px;
|
|
614
|
+ }
|
|
615
|
+ /* 滑轨两头的监听按钮颜色 */
|
|
616
|
+ &::-webkit-scrollbar-button {
|
|
617
|
+ background-color: #eee;
|
|
618
|
+ width: 0;
|
|
619
|
+ height: 0;
|
|
620
|
+ }
|
|
621
|
+ /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
|
|
622
|
+ &::-webkit-scrollbar-corner {
|
|
623
|
+ background-color: #eee;
|
|
624
|
+ }
|
|
625
|
+}
|
|
626
|
+
|
|
627
|
+.el-form-item__label {
|
|
628
|
+ font-size: 0.34rem !important; // width: 90px !important;
|
|
629
|
+}
|
|
630
|
+
|
|
631
|
+.el-radio__label {
|
|
632
|
+ font-size: 0.32rem !important;
|
|
633
|
+}
|
|
634
|
+
|
|
635
|
+.el-radio+.el-radio {
|
|
636
|
+ margin-left: 15px !important;
|
|
637
|
+}
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+.el-button--mini{
|
|
641
|
+ font-size: 0.32rem !important;
|
|
642
|
+}
|
|
643
|
+.el-form-item__label,.el-radio,.van-checkbox__label {
|
|
644
|
+ color: $title-color!important;
|
|
645
|
+}
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+.el-collapse-item__header{
|
|
649
|
+ font-size: 0.35rem!important;
|
|
650
|
+ color: $pgh-color!important;
|
|
651
|
+ height: 64px!important;
|
|
652
|
+ line-height: 64px!important;
|
|
653
|
+}
|
|
654
|
+.el-collapse-item__arrow{
|
|
655
|
+ color: #a8b3ba!important;
|
|
656
|
+ line-height: 64px!important;
|
|
657
|
+}
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+// 搜索全局
|
|
661
|
+.search {
|
|
662
|
+ color: #a8b3ba;
|
|
663
|
+ width: 4.2rem;
|
|
664
|
+ float: right;
|
|
665
|
+ font-size: 0.34rem;
|
|
666
|
+ .iconfont {
|
|
667
|
+ color: #a8b3ba;
|
|
668
|
+ font-size: 0.42rem;
|
|
669
|
+ }
|
|
670
|
+ .field {
|
|
671
|
+ background-color: #ebf1f7;
|
|
672
|
+ padding: 0 0 0 10px;
|
|
673
|
+ border-radius: 30px;
|
|
674
|
+ display: flex;
|
|
675
|
+ align-items: center;
|
|
676
|
+ height: 0.64rem!important;
|
|
677
|
+ line-height: 0.64rem!important;
|
|
678
|
+
|
|
679
|
+ }
|
|
680
|
+}
|
|
681
|
+
|
|
682
|
+// 返回
|
|
683
|
+.goBack {
|
|
684
|
+ cursor: pointer;
|
|
685
|
+ @include display-flex;
|
|
686
|
+ @include align-items-center;
|
|
687
|
+ @include text-align;
|
|
688
|
+ font-size: 0.36rem;
|
|
689
|
+ .back {
|
|
690
|
+ color: $main-color;
|
|
691
|
+ margin-right: 0.87rem;
|
|
692
|
+ .iconfont {
|
|
693
|
+ color: $main-color;
|
|
694
|
+ font-size: 0.42rem;
|
|
695
|
+ }
|
|
696
|
+ }
|
|
697
|
+ .name {
|
|
698
|
+ .iconfont {
|
|
699
|
+ margin-left: 0.1rem;
|
|
700
|
+ }
|
|
701
|
+ }
|
|
702
|
+}
|
|
703
|
+
|
|
704
|
+.van-button--small{
|
|
705
|
+ font-size: 0.28rem!important;
|
|
706
|
+}
|
|
707
|
+
|
|
708
|
+.el-input{
|
|
709
|
+ color: #1b2631!important;
|
|
710
|
+ font-size: 0.36rem!important;
|
|
711
|
+}
|
|
712
|
+
|
|
713
|
+.el-collapse-item__content{
|
|
714
|
+ height: 7.4rem!important;
|
|
715
|
+ overflow-y: auto!important;
|
|
716
|
+}
|
|
717
|
+
|
|
718
|
+// 顶部导航固定
|
|
719
|
+.top,
|
|
720
|
+.top_row{
|
|
721
|
+ position: fixed!important;
|
|
722
|
+ top: 0;
|
|
723
|
+ left: 1.58rem;
|
|
724
|
+ right: 0;
|
|
725
|
+ z-index: 1000;
|
|
726
|
+ background: #fff;
|
|
727
|
+}
|
|
728
|
+// .choice,
|
|
729
|
+// .screening{
|
|
730
|
+// position: fixed;
|
|
731
|
+// top: 63px;
|
|
732
|
+// right: 0;
|
|
733
|
+// z-index: 66;
|
|
734
|
+// left: 1.58rem;
|
|
735
|
+// background: #fff;
|
|
736
|
+// }
|
|
737
|
+.stateBox{
|
|
738
|
+ padding-top:115px;
|
|
739
|
+ background: #fff;
|
|
740
|
+ min-height: calc(100vh - 2px);
|
|
741
|
+ padding-left: 0.45rem;
|
|
742
|
+}
|