safecheck-client 3.0.33-91 → 3.0.33-93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,571 +1,571 @@
1
- @import "./bootstrap/less/variables.less";
2
-
3
- @form-text-fout-size: @font-size-base;//引用bootstrap的字体大小
4
- @form-text-padding: 10px;//右padding
5
- /**
6
- 文本表单flex布局实现固定label
7
- */
8
- .form-fix-width{
9
- display: -webkit-box;
10
- display: -webkit-flex;
11
- display: -ms-flexbox;
12
- display:flex;
13
- }
14
- .form-fix-width>:first-child{
15
- width: @form-text-padding+@form-text-fout-size*5;
16
- -webkit-box-flex:none;
17
- -webkit-flex:none;
18
- -ms-flexbox-flex:none;
19
- flex:none;
20
- }
21
- .form-fix-width>:last-child{
22
- flex:1;
23
- -webkit-box-flex:1;
24
- -webkit-flex:1;
25
- -ms-flexbox-flex:1;
26
- }
27
- /**
28
- 固定checkbox的一些属性 后续继续扩增
29
- */
30
- .checkbox-fix-width {
31
- width: @form-text-fout-size*4+@form-text-padding+20px;
32
- text-align: left;
33
- margin-left: 0px !important;
34
- }
35
-
36
- #android-app {
37
- font-size: 16px;
38
- }
39
-
40
- /* 解决chrome最小字体为12px问题 */
41
- .chrome_adjust {
42
- font-size: 10px;
43
- -webkit-transform: scale(0.85);
44
- -o-transform: scale(1); //针对能识别-webkit的opera browser设置
45
- }
46
-
47
- /* 表单内输入框 */
48
- .form-input-group-large {
49
- display: -webkit-box;
50
- display: -webkit-flex;
51
- display: -ms-flexbox;
52
- display: flex;
53
- .control-label {
54
- width: 100px;
55
- line-height: @input-height-base;
56
- text-align: right;
57
- + * {
58
- -webkit-box-flex:1;
59
- -webkit-flex:1;
60
- -ms-flexbox-flex:1;
61
- flex: 1;
62
- width: 100px; // 随意给的宽度,将有flex重新计算
63
- box-sizing: border-box;
64
- vertical-align:middle;
65
- }
66
- }
67
- }
68
- .form-input-group {
69
- display: -webkit-box;
70
- display: -webkit-flex;
71
- display: -ms-flexbox;
72
- display: flex;
73
- .control-label {
74
- // 居中对齐
75
- line-height: @input-height-base;
76
- width: 70px;
77
- // padding-top: 6px;
78
- text-align: right;
79
- vertical-align: middle;
80
- + * {
81
- -webkit-box-flex:1;
82
- -webkit-flex:1;
83
- -ms-flexbox-flex:1;
84
- flex: 1;
85
- width: 100px; // 随意给的宽度,将有flex重新计算
86
- box-sizing: border-box;
87
- vertical-align:middle;
88
- }
89
- }
90
- }
91
- .form-input-group-small {
92
- display: -webkit-box;
93
- display: -webkit-flex;
94
- display: -ms-flexbox;
95
- display: flex;
96
- label {
97
- width: 50px;
98
- line-height: @input-height-base;
99
- text-align: right;
100
- + * {
101
- -webkit-box-flex:1;
102
- -webkit-flex:1;
103
- -ms-flexbox-flex:1;
104
- flex: 1;
105
- width: 100px; // 随意给的宽度,将有flex重新计算
106
- box-sizing: border-box;
107
- vertical-align:middle;
108
- }
109
- }
110
- }
111
- .bg-white {
112
- background-color: white;
113
- }
114
- .mgb-5 {
115
- margin-bottom: 5px;
116
- }
117
- .pdl-12 {
118
- padding-left: 12px;
119
- }
120
- // 字体加粗
121
- .fwb {
122
- font-weight: bold;
123
- }
124
- // 浮动右对齐
125
- .fr {
126
- float: right;
127
- }
128
- .pl-12 {
129
- padding-left: 12px;
130
- }
131
- .p-10 {
132
- padding: 10px;
133
- }
134
- .pt-8 {
135
- padding-top: 8px;
136
- }
137
- // 下拉选择框占据剩余全部空间
138
- .select-overspread {
139
- .form-group {
140
- // margin: 0px 5px 10px 0px;
141
- .form-control {
142
- margin-right: 0px;
143
- }
144
- }
145
- .btn-group, .btn-group-vertical {
146
- // width: 100%;
147
- // padding-right: 5px;
148
- button {
149
- width: 100%;
150
- display: flex;
151
- justify-content: space-between;
152
- align-items: center;
153
- }
154
- }
155
- .dropdown-menu {
156
- min-width: 100%
157
- }
158
- }
159
- .app-bg {
160
- background: #F5F5F5;
161
- }
162
- .app-input {
163
- background: #FFF;
164
- border-bottom: 1px solid #ccc;
165
- }
166
- .app-input input, .app-input label {
167
- padding: 8px 10px;
168
- border: none;
169
- outline: none;
170
- margin: 0px;
171
- }
172
- .app-textarea {
173
- display: block;
174
- padding: 10px 15px;
175
- border: 0;
176
- resize: none;
177
- width: 100%;
178
- color: inherit;
179
- font-size: 1em;
180
- line-height: inherit;
181
- outline: 0;
182
- }
183
- .app-cells {
184
- height: auto;
185
- background-color: #FFFFFF;
186
- font-size: 1.2em;
187
- overflow: hidden;
188
- position: relative;
189
- }
190
- .app-cells label {
191
- padding: 10px;
192
- margin: 0px;
193
- color: #999999;
194
- font-weight: normal;
195
- }
196
- .app-cells * + * {
197
- border-top: 1px solid #D5D5D6;
198
- }
199
- .app-btn {
200
- display: flex;
201
- width: 100%;
202
- }
203
- .app-btn button{
204
- flex: 1;
205
- border-radius: 17px;
206
- margin: 10px;
207
- }
208
- .app-btn button:focus, .app-btn button::selection {
209
- outline: none;
210
- }
211
- .app-list {
212
- margin-top: 8px;
213
- background: #FFF;
214
- }
215
- .app-list div {
216
- padding: 6px 10px;
217
- }
218
- .app-list div:first-child{
219
- border-bottom: 1px solid #ccc;
220
- }
221
- .app-input .datepicker-input[readonly] {
222
- border: none;
223
- background: none;
224
- }
225
- div[contenteditable=true]{
226
- height: 80px;
227
- width: 100%;
228
- outline: none;
229
- padding: 8px;
230
- overflow: scroll;
231
- }
232
- //.bg:hover{
233
- // background-color: @table-bg-hover;
234
- // }
235
- .flex-between {
236
- display: flex;
237
- justify-content: space-between;
238
- align-items: center;
239
- }
240
- .flex-between span {
241
- padding-right: 10px;
242
- }
243
- .flex-full {
244
- flex: 1;
245
- }
246
- /* app卡片样式 */
247
- .app-preview {
248
- position: relative;
249
- background-color: #FFF;
250
- height: auto;
251
- }
252
- .app-preview > .head > * {
253
- padding: 0px;
254
- margin: 0px;
255
- }
256
- .app-preview > .head {
257
- display: flex;
258
- justify-content: space-between;
259
- padding: 10px 15px;
260
- line-height: 2.5em;
261
- border-bottom: 1px solid #D5D5D6;
262
- }
263
- .app-preview-btn-default {
264
- color: #999999;
265
- }
266
- .app-preview-btn-success {
267
- color: #3CC51F;
268
- }
269
- .app-preview > .body {
270
- padding: 10px 15px;
271
- border-bottom: 1px solid #D5D5D6;
272
-
273
- }
274
- .app-preview > .body > div > label {
275
- text-align: justify;
276
- text-align-last: justify;
277
- min-width: 70px;
278
- }
279
- .app-preview > .foot {
280
- display: flex;
281
- height: 50px;
282
- }
283
- .app-preview > .foot > * {
284
- flex: 1;
285
- display: block;
286
- flex: 1;
287
-
288
- text-align: center;
289
- }
290
- .app-preview > .foot > * + * {
291
- border-left: 1px solid #D5D5D6;
292
- }
293
- // 为工单列表样式
294
- .compatible {
295
- padding: 8px;
296
- }
297
- .compatible .form-input-group {
298
- margin: 3px 0px;
299
- padding: 0 8px;
300
- }
301
- @media screen and (min-width:992px) {
302
- .hd-disappear{
303
- display: none;
304
- }
305
- }
306
-
307
- #work-history ul {
308
- padding: 0px;
309
- }
310
-
311
- // 从order文件夹拷贝
312
- // 为blockquote写的通用样式
313
- // 大背景
314
- .repair-bg {
315
- background: #DBDBDB;
316
- }
317
- // 头部信息提示
318
- .bq-parent {
319
- height: auto;
320
- background: #FFF;
321
- padding: 10px 15px;
322
- >blockquote {
323
- padding: 0px;
324
- padding-left: 8px;
325
- margin: 0px;
326
- font-size: 18px;
327
- font-weight: bold;
328
- border-left-color: #4C647A;
329
- }
330
- }
331
- // 为移动端提供左侧修饰性边框
332
- .lb-left {
333
- padding-left: 8px;
334
- border: none;
335
- border-left: 5px solid #A2C2EB;
336
- }
337
- // 内容块
338
- .repair-info-content {
339
- margin: 15px;
340
- background: #FFF;
341
- border-radius: 5px;
342
- }
343
- @media screen and (max-width:768px) {
344
- .repair-info-content {
345
- margin: 0px;
346
- padding: 8px;
347
- background: #FFF;
348
- border-radius: 0px;
349
- }
350
- }
351
- // 为a标签:berfor伪元素写的通用样式
352
- .tab-befor-img (@url) {
353
- content: '';
354
- background-image: url("@{url}");
355
- background-size: 30px;
356
- display: inline-block;
357
- margin-right: 8px;
358
- height: 30px;
359
- width: 30px;
360
- vertical-align: -35%;
361
- }
362
- .android-repair-order {
363
- > div {
364
- > ul {
365
- background: #4C647A;
366
- overflow: auto;
367
- li {
368
- display: block;
369
- width: 100%;
370
- }
371
- > .active {
372
- a {
373
- background: #7599C4!important;
374
- color: #FFF!important;
375
- border: none;
376
- display: block;
377
- font-weight: bold;
378
- &::after {
379
- content: "";
380
- width: 0px;
381
- height: 0px;
382
- border-width: 8px 8px 8px 0px;
383
- border-color: transparent #FFF;
384
- border-style: solid;
385
- position: absolute;
386
- right: 0;
387
- top: 50%;
388
- transform: translateY(-50%);
389
- }
390
- &:focus {
391
- color: #FFF;
392
- background: none;
393
- }
394
- }
395
- }
396
- a {
397
- font-size: 18px;
398
- color: #FFF;
399
- padding: 13px 16px;
400
- }
401
- }
402
- }
403
- }
404
-
405
- // 从app中考出
406
- .no-close .nav-tabs a {
407
- padding: 5px 12px;
408
- }
409
- /* checkbox和radio的样式 */
410
- .magic-radio,
411
- .magic-checkbox {
412
- position: absolute;
413
- display: none;
414
- }
415
-
416
- .magic-radio[disabled],
417
- .magic-checkbox[disabled] {
418
- cursor: not-allowed;
419
- }
420
-
421
- .magic-radio + label,
422
- .magic-checkbox + label {
423
- position: relative;
424
- display: block;
425
- padding-left: 30px;
426
- cursor: pointer;
427
- vertical-align: middle;
428
- text-align: left;
429
- }
430
-
431
- .magic-radio + label:hover:before,
432
- .magic-checkbox + label:hover:before {
433
- animation-duration: 0.4s;
434
- animation-fill-mode: both;
435
- animation-name: hover-color;
436
- }
437
-
438
- .magic-radio + label:before,
439
- .magic-checkbox + label:before {
440
- position: absolute;
441
- top: 0;
442
- left: 0;
443
- display: inline-block;
444
- width: 20px;
445
- height: 20px;
446
- content: '';
447
- border: 1px solid #c0c0c0;
448
- }
449
-
450
- .magic-radio + label:after,
451
- .magic-checkbox + label:after {
452
- position: absolute;
453
- display: none;
454
- content: '';
455
- }
456
-
457
- .magic-radio[disabled] + label,
458
- .magic-checkbox[disabled] + label {
459
- cursor: not-allowed;
460
- color: #e4e4e4;
461
- }
462
-
463
- .magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
464
- .magic-checkbox[disabled] + label:hover,
465
- .magic-checkbox[disabled] + label:before,
466
- .magic-checkbox[disabled] + label:after {
467
- cursor: not-allowed;
468
- }
469
-
470
- .magic-radio[disabled] + label:hover:before,
471
- .magic-checkbox[disabled] + label:hover:before {
472
- border: 1px solid #e4e4e4;
473
- animation-name: none;
474
- }
475
-
476
- .magic-radio[disabled] + label:before,
477
- .magic-checkbox[disabled] + label:before {
478
- border-color: #e4e4e4;
479
- }
480
-
481
- .magic-radio:checked + label:before,
482
- .magic-checkbox:checked + label:before {
483
- animation-name: none;
484
- }
485
-
486
- .magic-radio:checked + label:after,
487
- .magic-checkbox:checked + label:after {
488
- display: block;
489
- }
490
-
491
- .magic-radio + label:before {
492
- border-radius: 50%;
493
- }
494
-
495
- .magic-radio + label:after {
496
- top: 4px;
497
- left: 4px;
498
- width: 12px;
499
- height: 12px;
500
- border-radius: 50%;
501
- background: #7697c4;
502
- }
503
-
504
- .magic-radio:checked + label:before {
505
- border: 2px solid #7697c4;
506
- }
507
-
508
- .magic-radio:checked[disabled] + label:before {
509
- border: 2px solid #c9e2f9;
510
- }
511
-
512
- /*.magic-radio:checked[disabled] + label:after {
513
- background: #c9e2f9; }*/
514
-
515
- .magic-checkbox + label:before {
516
- border-radius: 3px;
517
- }
518
-
519
- .magic-checkbox + label:after {
520
- top: 2px;
521
- left: 7px;
522
- box-sizing: border-box;
523
- width: 6px;
524
- height: 12px;
525
- transform: rotate(45deg);
526
- border-width: 2px;
527
- border-style: solid;
528
- border-color: #fff;
529
- border-top: 0;
530
- border-left: 0;
531
- }
532
-
533
- .magic-checkbox:checked + label:before {
534
- border: #7697c4;
535
- background: #7697c4;
536
- }
537
-
538
- .magic-checkbox:checked[disabled] + label:before {
539
- border: #c9e2f9;
540
- background: #c9e2f9;
541
- }
542
- /* 滚动条样式 */
543
- /*---滚动条默认显示样式--*/
544
- ::-webkit-scrollbar-thumb{
545
- // display: none;
546
- background-color:rgba(0,0,0,0.2);
547
- height:50px;
548
- outline-offset:-2px;
549
- /*outline:2px solid #fff;*/
550
- -webkit-border-radius:4px;
551
- /*border: 2px solid #fff;*/
552
- }
553
-
554
- /*---鼠标点击滚动条显示样式--*/
555
- ::-webkit-scrollbar-thumb:hover{
556
- // display: inherit;
557
- background-color:rgba(0,0,0,0.4);
558
- height:50px;
559
- -webkit-border-radius:4px;
560
- }
561
- /*---滚动条大小--*/
562
- ::-webkit-scrollbar{
563
- width:8px;
564
- height:8px;
565
- }
566
- /*---滚动框背景样式--*/
567
- ::-webkit-scrollbar-track-piece{
568
- /* 全透明,不显示 */
569
- background-color:rgba(255,255,255,0);
570
- -webkit-border-radius:0;
571
- }
1
+ @import "./bootstrap/less/variables.less";
2
+
3
+ @form-text-fout-size: @font-size-base;//引用bootstrap的字体大小
4
+ @form-text-padding: 10px;//右padding
5
+ /**
6
+ 文本表单flex布局实现固定label
7
+ */
8
+ .form-fix-width{
9
+ display: -webkit-box;
10
+ display: -webkit-flex;
11
+ display: -ms-flexbox;
12
+ display:flex;
13
+ }
14
+ .form-fix-width>:first-child{
15
+ width: @form-text-padding+@form-text-fout-size*5;
16
+ -webkit-box-flex:none;
17
+ -webkit-flex:none;
18
+ -ms-flexbox-flex:none;
19
+ flex:none;
20
+ }
21
+ .form-fix-width>:last-child{
22
+ flex:1;
23
+ -webkit-box-flex:1;
24
+ -webkit-flex:1;
25
+ -ms-flexbox-flex:1;
26
+ }
27
+ /**
28
+ 固定checkbox的一些属性 后续继续扩增
29
+ */
30
+ .checkbox-fix-width {
31
+ width: @form-text-fout-size*4+@form-text-padding+20px;
32
+ text-align: left;
33
+ margin-left: 0px !important;
34
+ }
35
+
36
+ #android-app {
37
+ font-size: 16px;
38
+ }
39
+
40
+ /* 解决chrome最小字体为12px问题 */
41
+ .chrome_adjust {
42
+ font-size: 10px;
43
+ -webkit-transform: scale(0.85);
44
+ -o-transform: scale(1); //针对能识别-webkit的opera browser设置
45
+ }
46
+
47
+ /* 表单内输入框 */
48
+ .form-input-group-large {
49
+ display: -webkit-box;
50
+ display: -webkit-flex;
51
+ display: -ms-flexbox;
52
+ display: flex;
53
+ .control-label {
54
+ width: 100px;
55
+ line-height: @input-height-base;
56
+ text-align: right;
57
+ + * {
58
+ -webkit-box-flex:1;
59
+ -webkit-flex:1;
60
+ -ms-flexbox-flex:1;
61
+ flex: 1;
62
+ width: 100px; // 随意给的宽度,将有flex重新计算
63
+ box-sizing: border-box;
64
+ vertical-align:middle;
65
+ }
66
+ }
67
+ }
68
+ .form-input-group {
69
+ display: -webkit-box;
70
+ display: -webkit-flex;
71
+ display: -ms-flexbox;
72
+ display: flex;
73
+ .control-label {
74
+ // 居中对齐
75
+ line-height: @input-height-base;
76
+ width: 70px;
77
+ // padding-top: 6px;
78
+ text-align: right;
79
+ vertical-align: middle;
80
+ + * {
81
+ -webkit-box-flex:1;
82
+ -webkit-flex:1;
83
+ -ms-flexbox-flex:1;
84
+ flex: 1;
85
+ width: 100px; // 随意给的宽度,将有flex重新计算
86
+ box-sizing: border-box;
87
+ vertical-align:middle;
88
+ }
89
+ }
90
+ }
91
+ .form-input-group-small {
92
+ display: -webkit-box;
93
+ display: -webkit-flex;
94
+ display: -ms-flexbox;
95
+ display: flex;
96
+ label {
97
+ width: 50px;
98
+ line-height: @input-height-base;
99
+ text-align: right;
100
+ + * {
101
+ -webkit-box-flex:1;
102
+ -webkit-flex:1;
103
+ -ms-flexbox-flex:1;
104
+ flex: 1;
105
+ width: 100px; // 随意给的宽度,将有flex重新计算
106
+ box-sizing: border-box;
107
+ vertical-align:middle;
108
+ }
109
+ }
110
+ }
111
+ .bg-white {
112
+ background-color: white;
113
+ }
114
+ .mgb-5 {
115
+ margin-bottom: 5px;
116
+ }
117
+ .pdl-12 {
118
+ padding-left: 12px;
119
+ }
120
+ // 字体加粗
121
+ .fwb {
122
+ font-weight: bold;
123
+ }
124
+ // 浮动右对齐
125
+ .fr {
126
+ float: right;
127
+ }
128
+ .pl-12 {
129
+ padding-left: 12px;
130
+ }
131
+ .p-10 {
132
+ padding: 10px;
133
+ }
134
+ .pt-8 {
135
+ padding-top: 8px;
136
+ }
137
+ // 下拉选择框占据剩余全部空间
138
+ .select-overspread {
139
+ .form-group {
140
+ // margin: 0px 5px 10px 0px;
141
+ .form-control {
142
+ margin-right: 0px;
143
+ }
144
+ }
145
+ .btn-group, .btn-group-vertical {
146
+ // width: 100%;
147
+ // padding-right: 5px;
148
+ button {
149
+ width: 100%;
150
+ display: flex;
151
+ justify-content: space-between;
152
+ align-items: center;
153
+ }
154
+ }
155
+ .dropdown-menu {
156
+ min-width: 100%
157
+ }
158
+ }
159
+ .app-bg {
160
+ background: #F5F5F5;
161
+ }
162
+ .app-input {
163
+ background: #FFF;
164
+ border-bottom: 1px solid #ccc;
165
+ }
166
+ .app-input input, .app-input label {
167
+ padding: 8px 10px;
168
+ border: none;
169
+ outline: none;
170
+ margin: 0px;
171
+ }
172
+ .app-textarea {
173
+ display: block;
174
+ padding: 10px 15px;
175
+ border: 0;
176
+ resize: none;
177
+ width: 100%;
178
+ color: inherit;
179
+ font-size: 1em;
180
+ line-height: inherit;
181
+ outline: 0;
182
+ }
183
+ .app-cells {
184
+ height: auto;
185
+ background-color: #FFFFFF;
186
+ font-size: 1.2em;
187
+ overflow: hidden;
188
+ position: relative;
189
+ }
190
+ .app-cells label {
191
+ padding: 10px;
192
+ margin: 0px;
193
+ color: #999999;
194
+ font-weight: normal;
195
+ }
196
+ .app-cells * + * {
197
+ border-top: 1px solid #D5D5D6;
198
+ }
199
+ .app-btn {
200
+ display: flex;
201
+ width: 100%;
202
+ }
203
+ .app-btn button{
204
+ flex: 1;
205
+ border-radius: 17px;
206
+ margin: 10px;
207
+ }
208
+ .app-btn button:focus, .app-btn button::selection {
209
+ outline: none;
210
+ }
211
+ .app-list {
212
+ margin-top: 8px;
213
+ background: #FFF;
214
+ }
215
+ .app-list div {
216
+ padding: 6px 10px;
217
+ }
218
+ .app-list div:first-child{
219
+ border-bottom: 1px solid #ccc;
220
+ }
221
+ .app-input .datepicker-input[readonly] {
222
+ border: none;
223
+ background: none;
224
+ }
225
+ div[contenteditable=true]{
226
+ height: 80px;
227
+ width: 100%;
228
+ outline: none;
229
+ padding: 8px;
230
+ overflow: scroll;
231
+ }
232
+ //.bg:hover{
233
+ // background-color: @table-bg-hover;
234
+ // }
235
+ .flex-between {
236
+ display: flex;
237
+ justify-content: space-between;
238
+ align-items: center;
239
+ }
240
+ .flex-between span {
241
+ padding-right: 10px;
242
+ }
243
+ .flex-full {
244
+ flex: 1;
245
+ }
246
+ /* app卡片样式 */
247
+ .app-preview {
248
+ position: relative;
249
+ background-color: #FFF;
250
+ height: auto;
251
+ }
252
+ .app-preview > .head > * {
253
+ padding: 0px;
254
+ margin: 0px;
255
+ }
256
+ .app-preview > .head {
257
+ display: flex;
258
+ justify-content: space-between;
259
+ padding: 10px 15px;
260
+ line-height: 2.5em;
261
+ border-bottom: 1px solid #D5D5D6;
262
+ }
263
+ .app-preview-btn-default {
264
+ color: #999999;
265
+ }
266
+ .app-preview-btn-success {
267
+ color: #3CC51F;
268
+ }
269
+ .app-preview > .body {
270
+ padding: 10px 15px;
271
+ border-bottom: 1px solid #D5D5D6;
272
+
273
+ }
274
+ .app-preview > .body > div > label {
275
+ text-align: justify;
276
+ text-align-last: justify;
277
+ min-width: 70px;
278
+ }
279
+ .app-preview > .foot {
280
+ display: flex;
281
+ height: 50px;
282
+ }
283
+ .app-preview > .foot > * {
284
+ flex: 1;
285
+ display: block;
286
+ flex: 1;
287
+
288
+ text-align: center;
289
+ }
290
+ .app-preview > .foot > * + * {
291
+ border-left: 1px solid #D5D5D6;
292
+ }
293
+ // 为工单列表样式
294
+ .compatible {
295
+ padding: 8px;
296
+ }
297
+ .compatible .form-input-group {
298
+ margin: 3px 0px;
299
+ padding: 0 8px;
300
+ }
301
+ @media screen and (min-width:992px) {
302
+ .hd-disappear{
303
+ display: none;
304
+ }
305
+ }
306
+
307
+ #work-history ul {
308
+ padding: 0px;
309
+ }
310
+
311
+ // 从order文件夹拷贝
312
+ // 为blockquote写的通用样式
313
+ // 大背景
314
+ .repair-bg {
315
+ background: #DBDBDB;
316
+ }
317
+ // 头部信息提示
318
+ .bq-parent {
319
+ height: auto;
320
+ background: #FFF;
321
+ padding: 10px 15px;
322
+ >blockquote {
323
+ padding: 0px;
324
+ padding-left: 8px;
325
+ margin: 0px;
326
+ font-size: 18px;
327
+ font-weight: bold;
328
+ border-left-color: #4C647A;
329
+ }
330
+ }
331
+ // 为移动端提供左侧修饰性边框
332
+ .lb-left {
333
+ padding-left: 8px;
334
+ border: none;
335
+ border-left: 5px solid #A2C2EB;
336
+ }
337
+ // 内容块
338
+ .repair-info-content {
339
+ margin: 15px;
340
+ background: #FFF;
341
+ border-radius: 5px;
342
+ }
343
+ @media screen and (max-width:768px) {
344
+ .repair-info-content {
345
+ margin: 0px;
346
+ padding: 8px;
347
+ background: #FFF;
348
+ border-radius: 0px;
349
+ }
350
+ }
351
+ // 为a标签:berfor伪元素写的通用样式
352
+ .tab-befor-img (@url) {
353
+ content: '';
354
+ background-image: url("@{url}");
355
+ background-size: 30px;
356
+ display: inline-block;
357
+ margin-right: 8px;
358
+ height: 30px;
359
+ width: 30px;
360
+ vertical-align: -35%;
361
+ }
362
+ .android-repair-order {
363
+ > div {
364
+ > ul {
365
+ background: #4C647A;
366
+ overflow: auto;
367
+ li {
368
+ display: block;
369
+ width: 100%;
370
+ }
371
+ > .active {
372
+ a {
373
+ background: #7599C4!important;
374
+ color: #FFF!important;
375
+ border: none;
376
+ display: block;
377
+ font-weight: bold;
378
+ &::after {
379
+ content: "";
380
+ width: 0px;
381
+ height: 0px;
382
+ border-width: 8px 8px 8px 0px;
383
+ border-color: transparent #FFF;
384
+ border-style: solid;
385
+ position: absolute;
386
+ right: 0;
387
+ top: 50%;
388
+ transform: translateY(-50%);
389
+ }
390
+ &:focus {
391
+ color: #FFF;
392
+ background: none;
393
+ }
394
+ }
395
+ }
396
+ a {
397
+ font-size: 18px;
398
+ color: #FFF;
399
+ padding: 13px 16px;
400
+ }
401
+ }
402
+ }
403
+ }
404
+
405
+ // 从app中考出
406
+ .no-close .nav-tabs a {
407
+ padding: 5px 12px;
408
+ }
409
+ /* checkbox和radio的样式 */
410
+ .magic-radio,
411
+ .magic-checkbox {
412
+ position: absolute;
413
+ display: none;
414
+ }
415
+
416
+ .magic-radio[disabled],
417
+ .magic-checkbox[disabled] {
418
+ cursor: not-allowed;
419
+ }
420
+
421
+ .magic-radio + label,
422
+ .magic-checkbox + label {
423
+ position: relative;
424
+ display: block;
425
+ padding-left: 30px;
426
+ cursor: pointer;
427
+ vertical-align: middle;
428
+ text-align: left;
429
+ }
430
+
431
+ .magic-radio + label:hover:before,
432
+ .magic-checkbox + label:hover:before {
433
+ animation-duration: 0.4s;
434
+ animation-fill-mode: both;
435
+ animation-name: hover-color;
436
+ }
437
+
438
+ .magic-radio + label:before,
439
+ .magic-checkbox + label:before {
440
+ position: absolute;
441
+ top: 0;
442
+ left: 0;
443
+ display: inline-block;
444
+ width: 20px;
445
+ height: 20px;
446
+ content: '';
447
+ border: 1px solid #c0c0c0;
448
+ }
449
+
450
+ .magic-radio + label:after,
451
+ .magic-checkbox + label:after {
452
+ position: absolute;
453
+ display: none;
454
+ content: '';
455
+ }
456
+
457
+ .magic-radio[disabled] + label,
458
+ .magic-checkbox[disabled] + label {
459
+ cursor: not-allowed;
460
+ color: #e4e4e4;
461
+ }
462
+
463
+ .magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
464
+ .magic-checkbox[disabled] + label:hover,
465
+ .magic-checkbox[disabled] + label:before,
466
+ .magic-checkbox[disabled] + label:after {
467
+ cursor: not-allowed;
468
+ }
469
+
470
+ .magic-radio[disabled] + label:hover:before,
471
+ .magic-checkbox[disabled] + label:hover:before {
472
+ border: 1px solid #e4e4e4;
473
+ animation-name: none;
474
+ }
475
+
476
+ .magic-radio[disabled] + label:before,
477
+ .magic-checkbox[disabled] + label:before {
478
+ border-color: #e4e4e4;
479
+ }
480
+
481
+ .magic-radio:checked + label:before,
482
+ .magic-checkbox:checked + label:before {
483
+ animation-name: none;
484
+ }
485
+
486
+ .magic-radio:checked + label:after,
487
+ .magic-checkbox:checked + label:after {
488
+ display: block;
489
+ }
490
+
491
+ .magic-radio + label:before {
492
+ border-radius: 50%;
493
+ }
494
+
495
+ .magic-radio + label:after {
496
+ top: 4px;
497
+ left: 4px;
498
+ width: 12px;
499
+ height: 12px;
500
+ border-radius: 50%;
501
+ background: #7697c4;
502
+ }
503
+
504
+ .magic-radio:checked + label:before {
505
+ border: 2px solid #7697c4;
506
+ }
507
+
508
+ .magic-radio:checked[disabled] + label:before {
509
+ border: 2px solid #c9e2f9;
510
+ }
511
+
512
+ /*.magic-radio:checked[disabled] + label:after {
513
+ background: #c9e2f9; }*/
514
+
515
+ .magic-checkbox + label:before {
516
+ border-radius: 3px;
517
+ }
518
+
519
+ .magic-checkbox + label:after {
520
+ top: 2px;
521
+ left: 7px;
522
+ box-sizing: border-box;
523
+ width: 6px;
524
+ height: 12px;
525
+ transform: rotate(45deg);
526
+ border-width: 2px;
527
+ border-style: solid;
528
+ border-color: #fff;
529
+ border-top: 0;
530
+ border-left: 0;
531
+ }
532
+
533
+ .magic-checkbox:checked + label:before {
534
+ border: #7697c4;
535
+ background: #7697c4;
536
+ }
537
+
538
+ .magic-checkbox:checked[disabled] + label:before {
539
+ border: #c9e2f9;
540
+ background: #c9e2f9;
541
+ }
542
+ /* 滚动条样式 */
543
+ /*---滚动条默认显示样式--*/
544
+ ::-webkit-scrollbar-thumb{
545
+ // display: none;
546
+ background-color:rgba(0,0,0,0.2);
547
+ height:50px;
548
+ outline-offset:-2px;
549
+ /*outline:2px solid #fff;*/
550
+ -webkit-border-radius:4px;
551
+ /*border: 2px solid #fff;*/
552
+ }
553
+
554
+ /*---鼠标点击滚动条显示样式--*/
555
+ ::-webkit-scrollbar-thumb:hover{
556
+ // display: inherit;
557
+ background-color:rgba(0,0,0,0.4);
558
+ height:50px;
559
+ -webkit-border-radius:4px;
560
+ }
561
+ /*---滚动条大小--*/
562
+ ::-webkit-scrollbar{
563
+ width:8px;
564
+ height:8px;
565
+ }
566
+ /*---滚动框背景样式--*/
567
+ ::-webkit-scrollbar-track-piece{
568
+ /* 全透明,不显示 */
569
+ background-color:rgba(255,255,255,0);
570
+ -webkit-border-radius:0;
571
+ }