fmui-base 2.0.33 → 2.0.35

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.
@@ -0,0 +1,1005 @@
1
+ .react-grid {
2
+
3
+ .t-tab-bar {
4
+ padding-left: 6px;
5
+ }
6
+
7
+ .t-tab-bar .t-tab-tab {
8
+ font-size: 16px;
9
+ color: #888;
10
+ flex: initial;
11
+ padding: 0 10px;
12
+ min-width: 95px;
13
+ height: 33px;
14
+ line-height: 20px;
15
+ display: block;
16
+ white-space: nowrap;
17
+ overflow: hidden;
18
+ text-overflow: ellipsis;
19
+ -webkit-line-clamp: 1;
20
+ -webkit-box-orient: vertical;
21
+ background-color: transparent;
22
+ }
23
+
24
+ .t-tab-bar .t-tab-tab-active {
25
+ color: #333 !important;
26
+ font-size: 18px;
27
+ }
28
+
29
+ .t-tab-ink-bar {
30
+ // background-color: @theme-color !important;
31
+ margin-left: -33px;
32
+ border-radius: 4px;
33
+ height: 4px;
34
+ width: 25px !important;
35
+ background-color: #713938;
36
+ }
37
+
38
+ .t-tab-ink-bar:after {
39
+ content: "";
40
+ display: block;
41
+ width: 40px;
42
+ height: 4px;
43
+ border-radius: 4px;
44
+ background: #713938;
45
+ opacity: 0.3;
46
+ position: absolute;
47
+ left: 30px;
48
+ }
49
+
50
+ .t-tab-nav-wrap .t-tab-ink-bar {
51
+ margin-left: -28px;
52
+ }
53
+
54
+ .react-grid-item.cssTransforms {
55
+ // width: 100% !important;
56
+ // margin: 0 10px;
57
+ overflow: auto;
58
+ // background-color: #fff;
59
+ }
60
+
61
+ .react-grid-component {
62
+ .react-grid-banner {
63
+ color: #fff;
64
+ width: 100%;
65
+ height: 100%;
66
+ padding: 0;
67
+
68
+ .banner {
69
+ position: absolute;
70
+ top: 0;
71
+ bottom: 0;
72
+ z-index: -1;
73
+ width: 100%;
74
+
75
+ .bannerimg {
76
+ z-index: 0;
77
+ width: 100%;
78
+ height: 100%;
79
+ }
80
+ }
81
+
82
+ .global-search {
83
+ display: flex;
84
+ align-items: center;
85
+ padding: 16px;
86
+ padding-bottom: 38px;
87
+
88
+ .t-filter-wrapper {
89
+ height: 30px;
90
+ padding: 5px 0;
91
+ background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
92
+ border-radius: 4px 0 0 4px;
93
+ }
94
+
95
+ .t-filter-bar-wrapper {
96
+ width: 70px;
97
+ background: none;
98
+ border-right: 1px solid #ddd;
99
+ }
100
+
101
+ .t-filter-bar-wrapper .item {
102
+ height: 20px;
103
+ line-height: 20px;
104
+ font-size: 14px;
105
+ }
106
+
107
+ .t-filter-bar-wrapper .item .item-wrapper {
108
+ padding: 0 0 0 10px;
109
+ }
110
+
111
+ .t-filter-bar-wrapper .item .icon {
112
+ height: 20px;
113
+ width: 20px;
114
+ }
115
+
116
+ .t-filter-bar-wrapper .item .title-wrapper {
117
+ color: #fff;
118
+ }
119
+
120
+ .t-filter-bar-wrapper .item .t-svg div {
121
+ display: none !important;
122
+ }
123
+
124
+ .t-filter-bar-wrapper .item .t-svg {
125
+ font-family: "iconfont-ywtb" !important;
126
+ font-size: 12px;
127
+ font-style: normal;
128
+ -webkit-font-smoothing: antialiased;
129
+ color: #fff;
130
+ line-height: 18px !important;
131
+ }
132
+
133
+ .t-filter-bar-wrapper .item .t-svg:before {
134
+ content: "\e65b";
135
+ }
136
+
137
+ .t-filter-list-item.active .icon svg {
138
+ display: none;
139
+ }
140
+
141
+ .t-filter-panel-wrapper {
142
+ width: 70px;
143
+ overflow-y: auto;
144
+ box-shadow: 0 2px 5px #ddd;
145
+ margin-top: 5px;
146
+ }
147
+
148
+ .t-field {
149
+ flex: 1;
150
+ }
151
+
152
+ .t-field-box {
153
+ min-height: 30px;
154
+ }
155
+
156
+ .t-text-field-content {
157
+ background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.60) 100%);
158
+ height: 30px;
159
+ border-radius: 0 4px 4px 0;
160
+ padding-left: 10px;
161
+
162
+ .t-text-field-right-addon {
163
+ color: #fff;
164
+ padding: 5px 0 2px 0;
165
+ }
166
+ }
167
+
168
+ .t-text-field-placeholder {
169
+ color: #fff;
170
+ font-size: 14px;
171
+ }
172
+
173
+ .t-text-field-input {
174
+ color: #fff;
175
+ }
176
+
177
+ input.t-text-field-input:focus,
178
+ textarea.t-textarea-field-content:focus {
179
+ border: none;
180
+ box-shadow: none;
181
+ }
182
+ }
183
+
184
+ .t-grid {
185
+ margin: 8px;
186
+ border: none;
187
+
188
+ .t-grid-row {
189
+ width: 100%;
190
+ padding: 10px 0;
191
+ border-bottom: none;
192
+ text-align: center;
193
+ }
194
+
195
+ .t-grid-item+.t-grid-item {
196
+ border-left: none;
197
+ }
198
+ }
199
+
200
+ .react-grid-banner-item {
201
+ .t-badge {
202
+ width: 40px;
203
+ height: 40px;
204
+ background: #fff;
205
+ border-radius: 50%;
206
+ line-height: 40px;
207
+ }
208
+
209
+ i {
210
+ font-size: 20px;
211
+ }
212
+ }
213
+
214
+ .menu-title {
215
+ margin: 4px 0;
216
+ color: #fff;
217
+ }
218
+
219
+ .t-badge .badge-inner {
220
+ line-height: 1.3;
221
+ height: auto;
222
+ font-weight: 400;
223
+ padding: 0 5px;
224
+ top: 9px;
225
+ right: -2px;
226
+ border: 2px solid #fff;
227
+ }
228
+ }
229
+
230
+ }
231
+
232
+ .systemItem {
233
+ display: inline-block;
234
+ text-align: center;
235
+ // width: 25%;
236
+ vertical-align: top;
237
+ padding-top: 25px;
238
+
239
+ .iconblock {
240
+ width: 40px;
241
+ height: 40px;
242
+ line-height: 40px;
243
+ margin: 0 auto;
244
+ border-radius: 3px;
245
+ color: #fff;
246
+ }
247
+
248
+ .iconblock.t-iconBCred {
249
+ background-image: linear-gradient(180deg, #BF6052 7%, #AB5548 100%);
250
+ ;
251
+ }
252
+
253
+ .iconblock.t-iconBCblue {
254
+ background-image: linear-gradient(180deg, #1E65BB 0%, #1054A7 100%);
255
+ ;
256
+ }
257
+
258
+ .iconblock.t-iconBCgreen {
259
+ background-image: linear-gradient(180deg, #2CCDB7 0%, #15B49E 100%);
260
+ }
261
+
262
+ .iconblock.t-iconBCorange {
263
+ background-image: linear-gradient(180deg, #ECCCA1 0%, #E4C294 100%);
264
+ }
265
+ .iconblock.t-iconBCpurple{
266
+ background-image: linear-gradient(180deg, #abacff, #7ca6ff);
267
+ }
268
+
269
+ .iconblock.t-iconBCgray {
270
+ background-image: linear-gradient(180deg, #c1d1d7, #97b0bd);
271
+ }
272
+
273
+ .iconfont {
274
+ font-size: 20px;
275
+ }
276
+
277
+ .text {
278
+ color: #000;
279
+ text-align: center;
280
+ font-size: 14px;
281
+ }
282
+ }
283
+
284
+ .react-app-collect {
285
+ position: relative;
286
+ height: 100%;
287
+
288
+ .t-grid .t-grid-item + .t-grid-item {
289
+ border-left: none;
290
+ }
291
+
292
+ .t-grid .t-grid-row {
293
+ border-bottom: none;
294
+ }
295
+
296
+ .t-grid.t-has-line {
297
+ border-top: none;
298
+ }
299
+
300
+ }
301
+
302
+ // 办事事项
303
+ // .component-bssx .t-tab-tabpane{
304
+ // overflow: hidden; //莫名其妙多出滚动条问题,浏览器正常,手机有滚动条
305
+ // }
306
+ .component-bssx {
307
+ position: relative;
308
+ .rightMore {
309
+ position: absolute;
310
+ right: 10px;
311
+ color: #999;
312
+ z-index: 999;
313
+ padding: 2px;
314
+ font-size: 14px;
315
+ }
316
+ }
317
+ .banshi-list {
318
+ display: flex;
319
+ flex-wrap: wrap;
320
+ justify-content: space-between;
321
+ padding: 16px;
322
+ padding-bottom: 0;
323
+
324
+ .banshi-item {
325
+ width: calc(50% - 8px);
326
+ background: #FEF8E8;
327
+ border-radius: 8px;
328
+ margin: 6px 0;
329
+ padding: 10px;
330
+ padding-right: 60px;
331
+ position: relative;
332
+ height: 60px;
333
+
334
+ .title {
335
+ font-size: 14px;
336
+ }
337
+
338
+ .describe {
339
+ font-size: 12px;
340
+ color: #9A968D;
341
+ }
342
+
343
+ .iconfont-ywtb.ic {
344
+ position: absolute;
345
+ right: 16px;
346
+ top: 0;
347
+ line-height: 60px;
348
+ font-size: 30px;
349
+ background-clip: text;
350
+ -webkit-background-clip: text;
351
+ -webkit-text-fill-color: transparent;
352
+ }
353
+
354
+ .iconfont-ywtb.bg {
355
+ position: absolute;
356
+ right: 0;
357
+ top: -15px;
358
+ bottom: 0;
359
+ font-size: 60px;
360
+ opacity: 0.16;
361
+ background-clip: text;
362
+ -webkit-background-clip: text;
363
+ -webkit-text-fill-color: transparent;
364
+ }
365
+ }
366
+
367
+ .banshi-item:nth-child(1) {
368
+ background: #FEF8E8;
369
+
370
+ .iconfont-ywtb.ic,
371
+ .iconfont-ywtb.bg {
372
+ background-image: linear-gradient(to bottom, #FFA92B 20%, #FFD253 80%); // 背景线性渐变
373
+ color: #FFA92B; // 兜底颜色,防止文字裁剪不生效
374
+ }
375
+ }
376
+
377
+ .banshi-item:nth-child(2) {
378
+ background: #FFF1F2;
379
+
380
+ .iconfont-ywtb.ic,
381
+ .iconfont-ywtb.bg {
382
+ background-image: linear-gradient(to bottom, #FF766D 20%, #FDAD78 80%); // 背景线性渐变
383
+ color: #FF766D; // 兜底颜色,防止文字裁剪不生效
384
+ }
385
+ }
386
+
387
+ .banshi-item:nth-child(3) {
388
+ background: #DFF0FF;
389
+
390
+ .iconfont-ywtb.ic,
391
+ .iconfont-ywtb.bg {
392
+ background-image: linear-gradient(106deg, #1990F0 20%, #73D2FF 80%); // 背景线性渐变
393
+ color: #1990F0; // 兜底颜色,防止文字裁剪不生效
394
+ }
395
+ }
396
+
397
+ .banshi-item:nth-child(4) {
398
+ background: #DEF8F7;
399
+
400
+ .iconfont-ywtb.ic,
401
+ .iconfont-ywtb.bg {
402
+ background-image: linear-gradient(to bottom, #00C1CE 20%, #65DBD8 80%); // 背景线性渐变
403
+ color: #00C1CE; // 兜底颜色,防止文字裁剪不生效
404
+ }
405
+ }
406
+
407
+ .banshi-item:nth-child(5) {
408
+ background: #FEF5F3;
409
+
410
+ .iconfont-ywtb.ic,
411
+ .iconfont-ywtb.bg {
412
+ background-image: linear-gradient(to bottom, #FF7661 20%, #FBA772 80%); // 背景线性渐变
413
+ color: #FF7661; // 兜底颜色,防止文字裁剪不生效
414
+ }
415
+ }
416
+
417
+ .banshi-item:nth-child(6) {
418
+ background: #EFF5FF;
419
+
420
+ .iconfont-ywtb.ic,
421
+ .iconfont-ywtb.bg {
422
+ background-image: linear-gradient(to bottom, #686BC9 20%, #A2A8FA 80%); // 背景线性渐变
423
+ color: #686BC9; // 兜底颜色,防止文字裁剪不生效
424
+ }
425
+ }
426
+ }
427
+
428
+ // 通知部件
429
+ .carousel-notice.t-slide {
430
+ margin: 16px;
431
+ border-radius: 5px;
432
+
433
+ .t-slide-item {
434
+ padding: 16px;
435
+ // background-color: @theme-color-4;
436
+ background-image: url(/mobile/fmui/images/notice-card-bg.png);
437
+ background-size: 100% 100%;
438
+ }
439
+
440
+ .t-slide-item img {
441
+ display: none
442
+ }
443
+
444
+ .notice-card-head {
445
+ display: flex;
446
+ justify-content: space-between;
447
+ align-items: center;
448
+ margin-bottom: 16px;
449
+
450
+ span {
451
+ font-size: 20px;
452
+ font-weight: 700;
453
+ }
454
+
455
+ .t-button {
456
+ // color: @theme-color;
457
+ // background-color: @theme-color-10;
458
+ height: 26px;
459
+ line-height: 26px;
460
+ font-size: 14px;
461
+ padding: 0 16px;
462
+ margin: 0;
463
+ background-color: rgba(113, 57, 56,0.1);
464
+ color: #713938;
465
+ }
466
+ }
467
+ }
468
+
469
+ .jxzt-content {
470
+ .t-image-slide-item {
471
+ margin: 16px;
472
+ height: 91px !important;
473
+ background-image: url(/mobile/fmui/images/notice-card-bg.png);
474
+ background-size: 100% 100%;
475
+ border-radius: 10px;
476
+ }
477
+
478
+ .t-slide-view {
479
+ height: 91px;
480
+ }
481
+ }
482
+
483
+ //
484
+ .infoList {
485
+ margin: 0 16px;
486
+ padding: 10px 0;
487
+ border-bottom: 1px solid #e9e9e9;
488
+
489
+ .infoContent {
490
+ display: flex;
491
+ justify-content: space-between;
492
+
493
+ .rightContent {
494
+ flex: 1;
495
+ }
496
+
497
+ p:first-child {
498
+ overflow: hidden;
499
+ -webkit-box-orient: vertical;
500
+ -webkit-line-clamp: 2;
501
+ display: -webkit-box;
502
+ font-size: 16px;
503
+ text-align: left;
504
+ color: #000000;
505
+ line-height: 22.5px;
506
+ margin-bottom: 5px;
507
+ word-break: break-all;
508
+ }
509
+
510
+ p:last-child {
511
+ display: flex;
512
+ align-items: center;
513
+
514
+ img {
515
+ margin: 0 .1667rem 0 0;
516
+ width: .3467rem;
517
+ height: .2933rem;
518
+ }
519
+
520
+ span {
521
+ margin: 0 10px 0 0;
522
+ // // font-family: Microsoft YaHei, Microsoft YaHei-Regular;
523
+ text-align: left;
524
+ // letter-spacing: .0267rem;
525
+ color: #00000066;
526
+ line-height: 1.3;
527
+ word-break: break-all;
528
+ }
529
+ }
530
+
531
+ .imgContent {
532
+ img {
533
+ margin: auto;
534
+ width: 2.96rem;
535
+ height: 1.9333rem;
536
+ border-radius: .1067rem;
537
+ }
538
+ }
539
+ }
540
+
541
+ }
542
+
543
+ .infoList:last-of-type {
544
+ border-bottom: none;
545
+ }
546
+
547
+ .infoList3 {
548
+ background-color: #fff;
549
+ padding-top: .2667rem;
550
+ padding-left: .2667rem;
551
+ padding-right: .2667rem;
552
+
553
+ .infoContent {
554
+ border-bottom: .0267rem solid #dcdcdc;
555
+ padding-bottom: .2667rem;
556
+
557
+ p:first-child {
558
+ overflow: hidden;
559
+ -webkit-box-orient: vertical;
560
+ -webkit-line-clamp: 2;
561
+ display: -webkit-box;
562
+ font-size: 16px;
563
+ // // font-family: Microsoft YaHei-Regular;
564
+ font-weight: 400;
565
+ text-align: left;
566
+ color: #000000;
567
+ line-height: 22.5px;
568
+ margin-bottom: .2667rem;
569
+ }
570
+
571
+ p:last-child {
572
+ display: flex;
573
+ align-items: center;
574
+
575
+ img {
576
+ margin: 0 .1667rem 0 0;
577
+ width: .3467rem;
578
+ height: .2933rem;
579
+ }
580
+
581
+ span {
582
+ margin: 0 10px 0 0;
583
+ font-size: 12px;
584
+ font-weight: 400;
585
+ text-align: left;
586
+ // letter-spacing: .0267rem;
587
+ color: #00000066;
588
+ line-height: 1.3;
589
+ word-break: break-all;
590
+ }
591
+ }
592
+
593
+ .infoPics {
594
+ margin-bottom: .2667rem;
595
+ display: flex;
596
+ justify-content: space-between;
597
+
598
+ img {
599
+ width: 2.8667rem;
600
+ height: 1.9333rem;
601
+ border-radius: .1067rem;
602
+ }
603
+ }
604
+ }
605
+ }
606
+
607
+ .info-more-btn {
608
+ color: #999;
609
+ padding: 10px 16px;
610
+ margin: 0 auto;
611
+ width: 100px;
612
+ }
613
+
614
+ // 日历、日程
615
+ .calendar-title,
616
+ .show-all-content {
617
+ display: none;
618
+ }
619
+
620
+ .calendar-container {
621
+ background: #fff;
622
+ }
623
+
624
+ .calendar-week {
625
+ height: 20px;
626
+
627
+ div {
628
+ height: 20px;
629
+ line-height: 20px;
630
+ }
631
+ }
632
+
633
+ .calendar-wrap {
634
+ border-bottom: none;
635
+ margin-bottom: 10px;
636
+ }
637
+
638
+ .calendar-content .canChoose-active span {
639
+ color:#713938 !important;
640
+ // background: #F6F6F6 !important;
641
+ background: transparent !important;
642
+ }
643
+
644
+ .calendar-content span.hasEvent:before {
645
+ color: #FAB88D;
646
+ }
647
+
648
+ .rc-list {
649
+ .rc-item {
650
+ padding: 5px 16px 5px 10px;
651
+ }
652
+
653
+ .rc-item-time {
654
+ width: 40px;
655
+ color: #999;
656
+ font-size: 14px;
657
+ text-align: center;
658
+ }
659
+
660
+ .rc-item-time-line {
661
+ position: absolute;
662
+ top: 36px;
663
+ left: 22px;
664
+ color: #999;
665
+ }
666
+
667
+ .rc-item-title {
668
+ padding: 0 16px;
669
+ background: #FFF6F5;
670
+ border-radius: 4px;
671
+ line-height: 36px;
672
+ height: 36px;
673
+ margin-left: 10px;
674
+ }
675
+ }
676
+
677
+ .rc-item.rc-completed {
678
+ .rc-item-title {
679
+ color: #ccc;
680
+ background: #F9F9FA;
681
+ }
682
+ }
683
+
684
+ .rc-item:last-of-type {
685
+ .rc-item-time-line {
686
+ display: none;
687
+ }
688
+ }
689
+
690
+ //
691
+ .meetingCard {
692
+ width: 100%;
693
+ background: transparent;
694
+ padding: 8px;
695
+ position: relative;
696
+
697
+ .lineTop {
698
+ position: absolute;
699
+ top: 0;
700
+ left: 10px;
701
+ width: calc(100% - 20px);
702
+ height: 16px;
703
+ background: #713938;
704
+ border-radius: 8px;
705
+ }
706
+
707
+ .meetingBg {
708
+ padding: 15px;
709
+ margin: 0 15px;
710
+ width: calc(100% - 30px);
711
+ background: #fff;
712
+ position: relative;
713
+ border-radius: 0 0 8px 8px;
714
+ box-shadow: 0 2px 6px 0 #eee;
715
+ }
716
+
717
+ .meetingContent {
718
+ .meetingTitle {
719
+ padding-bottom: 10px;
720
+ border-bottom: 1px dashed #dcdcdc;
721
+
722
+ p {
723
+ font-size: 16px;
724
+ font-weight: 400;
725
+ text-align: left;
726
+ color: #000000;
727
+ word-break: break-all;
728
+ }
729
+ }
730
+
731
+ }
732
+
733
+ .meetingTime {
734
+ // border: 1px solid red;
735
+ // height: 4rem;
736
+ height: 70%;
737
+ padding-top: .2667rem;
738
+
739
+ .meetingDate {
740
+ color: #737373;
741
+ font-size: 14px;
742
+ display: flex;
743
+ align-items: center;
744
+
745
+ .iconfont {
746
+ color: #BCC2C6;
747
+ }
748
+ }
749
+
750
+ .timeTitle {
751
+ display: flex;
752
+ justify-content: space-between;
753
+ font-size: 12px;
754
+ color: #B8B8B8;
755
+ margin: 20px 20px 10px 20px;
756
+ }
757
+
758
+ .time {
759
+ display: flex;
760
+ align-items: center;
761
+ width: 100%;
762
+ margin-top: 0;
763
+ padding: 0 16px;
764
+
765
+ li {
766
+ list-style-type: none;
767
+ // border: 1px solid red;
768
+ }
769
+
770
+ li:first-child {
771
+ width: 30%;
772
+ font-size: 25px;
773
+ // font-family: Microsoft YaHei, Microsoft YaHei-Bold;
774
+ font-weight: 700;
775
+ text-align: left;
776
+ color: #000000;
777
+ }
778
+
779
+ li:nth-child(2) {
780
+ width: 40%;
781
+ position: relative;
782
+
783
+ p {
784
+ background: #713938;
785
+ border-radius: 11px;
786
+ color: #fff;
787
+ text-align: center;
788
+ height: 22px;
789
+ width: 90px;
790
+ line-height: 22px;
791
+ margin: auto;
792
+ }
793
+ }
794
+
795
+ li:nth-child(2)::before,
796
+ li:nth-child(2)::after {
797
+ content: "";
798
+ display: block;
799
+ width: calc((100% - 90px) / 2);
800
+ height: 1px;
801
+ background-color: #713938;
802
+ position: absolute;
803
+ }
804
+
805
+ li:nth-child(2)::before {
806
+ top: 10px;
807
+ left: 0;
808
+ }
809
+
810
+ li:nth-child(2)::after {
811
+ top: 10px;
812
+ right: 0;
813
+ }
814
+
815
+ li:last-child {
816
+ width: 30%;
817
+ font-size: 25px;
818
+ font-weight: 700;
819
+ text-align: right;
820
+ color: #000000;
821
+ }
822
+ }
823
+
824
+ .location {
825
+ margin-top: .5333rem;
826
+ color: #737373;
827
+ font-size: 14px;
828
+ font-weight: 400;
829
+ text-align: left;
830
+
831
+ .iconfont {
832
+ color: #BCC2C6;
833
+ }
834
+ }
835
+ }
836
+
837
+ .startIcon {
838
+ position: absolute;
839
+ top: 20px;
840
+ right: 20px;
841
+ width: 2rem;
842
+ }
843
+ }
844
+ .emailListItem {
845
+ height: 1.8rem;
846
+ border-bottom: .0267rem solid #dcdcdc;
847
+ display: flex;
848
+ position: relative;
849
+ justify-content: space-between;
850
+ align-items: center;
851
+ background-color: #fff;
852
+
853
+ .leftPic {
854
+ width: 20%;
855
+ height: 80%;
856
+ // height: 100%;
857
+ display: flex;
858
+ // align-items: center;
859
+ text-align: center;
860
+ position: relative;
861
+
862
+ // border: 1px solid red;
863
+ .emailIcon {
864
+ margin: auto;
865
+ width: 1.0667rem;
866
+ height: 1.0667rem;
867
+ }
868
+
869
+ .badge {
870
+ width: .4rem;
871
+ height: .4rem;
872
+ position: absolute;
873
+ top: .2667rem;
874
+ right: .3467rem;
875
+ }
876
+ }
877
+
878
+ .rightContent {
879
+ width: 80%;
880
+
881
+ .sendUserName {
882
+ font-size: 16px;
883
+ font-weight: 700;
884
+ color: #000;
885
+ }
886
+
887
+ .content {
888
+ font-size: 14px;
889
+ font-weight: 400;
890
+ text-align: left;
891
+ color: #000000B3;
892
+ overflow: hidden;
893
+ text-overflow: ellipsis;
894
+ white-space: nowrap;
895
+ }
896
+ }
897
+
898
+ .emailTime {
899
+ position: absolute;
900
+ top: .2667rem;
901
+ right: .2667rem;
902
+ font-size: 12px;
903
+ // font-family: Microsoft YaHei, Microsoft YaHei-Regular;
904
+ font-weight: 400;
905
+ color: #00000066;
906
+ }
907
+ }
908
+
909
+ .approveList {
910
+ margin: 0 auto 10px auto;
911
+ width: 9.1467rem;
912
+ background-color: #fff;
913
+ overflow: hidden;
914
+ border-radius: 6px;
915
+
916
+ .t-FBH {
917
+ justify-content: space-between;
918
+ }
919
+
920
+ .time-tag {
921
+ background: #fce68f;
922
+ padding: 8px 16px;
923
+ border-radius: 0 0 16px 0;
924
+ color: #806207;
925
+ }
926
+
927
+ .urgency-tag {
928
+ text-align: center;
929
+ height: 22px;
930
+ line-height: 22px;
931
+ font-size: 12px;
932
+ color: #fff;
933
+ margin-top: 6px;
934
+ padding: 0 16px;
935
+ border-radius: 12px 0 0 12px;
936
+ }
937
+ }
938
+
939
+ .documentList {
940
+ margin: 0 auto 10px auto;
941
+ width: 9.1467rem;
942
+ background-color: #fff;
943
+ overflow: hidden;
944
+ border-radius: 6px;
945
+
946
+ .t-tag-red {
947
+ line-height: 16px;
948
+ border: 1px solid #d6403b;
949
+ }
950
+ }
951
+
952
+ .personal-tab {
953
+ color: red;
954
+ }
955
+
956
+ .department-tab {
957
+ color: blue;
958
+ }
959
+
960
+ .list-RT-label .list-item .item-title::before {
961
+ background:#713938;
962
+ }
963
+
964
+ .rightMore {
965
+ position: absolute;
966
+ right: 10px;
967
+ color: #999;
968
+ z-index: 999;
969
+ padding: 2px;
970
+ font-size: 14px;
971
+ }
972
+
973
+ .sxbl_buttons {
974
+ display: flex;
975
+ align-items: center;
976
+ justify-content: space-between;
977
+ padding: 0 10px;
978
+ button {
979
+ width: 45.4%;
980
+ height: 35px;
981
+ // line-height: 29px;
982
+ background: rgba(112,58,58,0.12);
983
+ border: 2px solid rgba(112,58,58,1);
984
+ border-radius: 4px;
985
+ font-size: 16px;
986
+ color: #703A3A;
987
+ }
988
+ }
989
+
990
+ .wdsx-list {
991
+ .list-item {
992
+ display: flex;
993
+ align-items: center;
994
+ justify-content:space-between;
995
+ }
996
+ .list-item .item-content {
997
+ display: flex;
998
+ flex-direction: column;
999
+ align-items: flex-start;
1000
+ justify-content: initial;
1001
+ }
1002
+ }
1003
+
1004
+ }
1005
+