@zkwq/business 0.0.55 → 0.0.57

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.
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [data-v-86916e3a]:export {
12
+ [data-v-823caec6]:export {
13
13
  primary: #2F3A91;
14
14
  success: #67C23A;
15
15
  warning: #FF791A;
@@ -72,7 +72,7 @@
72
72
 
73
73
 
74
74
 
75
- .aggs_item[data-v-86916e3a] {
75
+ .aggs_item[data-v-823caec6] {
76
76
  width: 100%;
77
77
  height: auto;
78
78
  overflow: hidden;
@@ -81,12 +81,12 @@
81
81
  padding-bottom: 12px;
82
82
  border-bottom: 1px solid #DCDFE6;
83
83
  }
84
- .aggs_item .name[data-v-86916e3a] {
84
+ .aggs_item .name[data-v-823caec6] {
85
85
  width: 100px;
86
86
  color: #8590a6;
87
87
  padding: 2px 8px;
88
88
  }
89
- .aggs_item .item[data-v-86916e3a] {
89
+ .aggs_item .item[data-v-823caec6] {
90
90
  flex: 1;
91
91
  height: auto;
92
92
  overflow: hidden;
@@ -94,23 +94,23 @@
94
94
  flex-direction: row;
95
95
  flex-wrap: wrap;
96
96
  }
97
- .aggs_item .item li[data-v-86916e3a] {
97
+ .aggs_item .item li[data-v-823caec6] {
98
98
  padding: 2px 8px;
99
99
  cursor: pointer;
100
100
  margin: 0px 8px;
101
101
  margin-bottom: 4px;
102
102
  }
103
- .aggs_item .item li[data-v-86916e3a]:hover {
103
+ .aggs_item .item li[data-v-823caec6]:hover {
104
104
  background: #6d75b2;
105
105
  color: white;
106
106
  border-radius: 4px;
107
107
  }
108
- .aggs_item .item .selected[data-v-86916e3a] {
108
+ .aggs_item .item .selected[data-v-823caec6] {
109
109
  background: #6d75b2;
110
110
  color: white;
111
111
  border-radius: 4px;
112
112
  }
113
- .aggs_item .more[data-v-86916e3a] {
113
+ .aggs_item .more[data-v-823caec6] {
114
114
  width: 50px;
115
115
  height: auto;
116
116
  overflow: hidden;
@@ -1 +1 @@
1
- [data-v-86916e3a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-86916e3a]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-86916e3a]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-86916e3a]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-86916e3a]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-86916e3a]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-86916e3a]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-86916e3a]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
1
+ [data-v-823caec6]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-823caec6]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-823caec6]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-823caec6]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-823caec6]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-823caec6]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-823caec6]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-823caec6]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
@@ -1,4 +1,47 @@
1
-
1
+ .AppDialog__wrapper.base-dialog__wrapper {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+ overflow-x: hidden;
6
+ overflow-y: auto;
7
+ }
8
+ .AppDialog {
9
+ max-height: 100vh;
10
+ transition: max-height 0.8s ease, height 0.8s ease;
11
+ }
12
+ .AppDialog.base-dialog {
13
+ margin-top: 0 !important;
14
+ margin-bottom: 0 !important;
15
+ }
16
+ .AppDialog .base-dialog__header {
17
+ padding: 0;
18
+ }
19
+ .AppDialog .base-dialog__body {
20
+ padding: 0;
21
+ }
22
+ .AppDialog--fullPage {
23
+ height: 100vh;
24
+ }
25
+ .AppDialog--fullPage.AppDialog .base-dialog__body {
26
+ height: 100%;
27
+ }
28
+ .AppDialog--fullPage.AppDialog .AppDialog__inner {
29
+ height: 100vh;
30
+ overflow: visible;
31
+ }
32
+ .AppDialog--fullPage.AppDialog .AppDialog__content {
33
+ height: 100%;
34
+ }
35
+ .Modal__closeButton {
36
+ position: absolute;
37
+ top: 8px;
38
+ right: -60px;
39
+ padding: 12px;
40
+ }
41
+ .Modal__closeIcon {
42
+ vertical-align: top;
43
+ fill: #FFF;
44
+ }
2
45
 
3
46
 
4
47
 
@@ -116,47 +159,4 @@
116
159
  .AppDialog__subtitle--left[data-v-47783249] {
117
160
  padding: 0 16px;
118
161
  }
119
- }.AppDialog__wrapper.base-dialog__wrapper {
120
- display: flex;
121
- flex-direction: column;
122
- justify-content: center;
123
- overflow-x: hidden;
124
- overflow-y: auto;
125
- }
126
- .AppDialog {
127
- max-height: 100vh;
128
- transition: max-height 0.8s ease, height 0.8s ease;
129
- }
130
- .AppDialog.base-dialog {
131
- margin-top: 0 !important;
132
- margin-bottom: 0 !important;
133
- }
134
- .AppDialog .base-dialog__header {
135
- padding: 0;
136
- }
137
- .AppDialog .base-dialog__body {
138
- padding: 0;
139
- }
140
- .AppDialog--fullPage {
141
- height: 100vh;
142
- }
143
- .AppDialog--fullPage.AppDialog .base-dialog__body {
144
- height: 100%;
145
- }
146
- .AppDialog--fullPage.AppDialog .AppDialog__inner {
147
- height: 100vh;
148
- overflow: visible;
149
- }
150
- .AppDialog--fullPage.AppDialog .AppDialog__content {
151
- height: 100%;
152
- }
153
- .Modal__closeButton {
154
- position: absolute;
155
- top: 8px;
156
- right: -60px;
157
- padding: 12px;
158
- }
159
- .Modal__closeIcon {
160
- vertical-align: top;
161
- fill: #FFF;
162
162
  }
@@ -1 +1 @@
1
- [data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}.AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}
1
+ .AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}[data-v-47783249]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-47783249]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-47783249]{padding:10px 20px 50px}.AppDialog__title[data-v-47783249]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-47783249]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-47783249]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-47783249]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-47783249]{padding:0 16px}}
@@ -1,6 +1,4 @@
1
1
 
2
- .avatar-uploader .base-upload{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
3
-
4
2
 
5
3
 
6
4
 
@@ -114,4 +112,5 @@
114
112
  .avatar[data-v-086ca00a] {
115
113
  width: 314px;
116
114
  height: 130px;
117
- }
115
+ }
116
+ .avatar-uploader .base-upload{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
@@ -1 +1 @@
1
- .avatar-uploader .base-upload{width:100%;height:100%;display:flex;align-items:center;justify-content:center}[data-v-086ca00a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.avatar-uploader[data-v-086ca00a]{width:314px;height:130px;border:1px dashed #dcdfe6;display:flex;align-items:center;justify-content:center;position:relative}.avatar-uploader .FileMask__actions[data-v-086ca00a]{width:100%;height:100%;position:absolute;left:0;top:0;opacity:0;border-radius:4px;transition:all .2s;background-color:rgba(0,0,0,.5);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px}.avatar-uploader .FileMask__actions i[data-v-086ca00a]{cursor:pointer}.avatar-uploader .FileMask__actions i+i[data-v-086ca00a]{margin-left:16px}.avatar-uploader:hover .FileMask__actions[data-v-086ca00a]{opacity:1}.avatar-uploader-icon[data-v-086ca00a]{font-size:30px}.avatar[data-v-086ca00a]{width:314px;height:130px}
1
+ [data-v-086ca00a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.avatar-uploader[data-v-086ca00a]{width:314px;height:130px;border:1px dashed #dcdfe6;display:flex;align-items:center;justify-content:center;position:relative}.avatar-uploader .FileMask__actions[data-v-086ca00a]{width:100%;height:100%;position:absolute;left:0;top:0;opacity:0;border-radius:4px;transition:all .2s;background-color:rgba(0,0,0,.5);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px}.avatar-uploader .FileMask__actions i[data-v-086ca00a]{cursor:pointer}.avatar-uploader .FileMask__actions i+i[data-v-086ca00a]{margin-left:16px}.avatar-uploader:hover .FileMask__actions[data-v-086ca00a]{opacity:1}.avatar-uploader-icon[data-v-086ca00a]{font-size:30px}.avatar[data-v-086ca00a]{width:314px;height:130px}.avatar-uploader .base-upload{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [data-v-5ec6571a]:export {
12
+ [data-v-d19b0298]:export {
13
13
  primary: #2F3A91;
14
14
  success: #67C23A;
15
15
  warning: #FF791A;
@@ -72,26 +72,26 @@
72
72
 
73
73
 
74
74
 
75
- .UserProfile[data-v-5ec6571a] {
75
+ .UserProfile[data-v-d19b0298] {
76
76
  display: flex;
77
77
  align-items: center;
78
78
  }
79
- .UserProfile__avatar[data-v-5ec6571a] {
79
+ .UserProfile__avatar[data-v-d19b0298] {
80
80
  margin-right: 12px;
81
81
  }
82
- .UserProfile__avatar .Avatar[data-v-5ec6571a], .UserProfile__avatar .UserLink[data-v-5ec6571a] {
82
+ .UserProfile__avatar .Avatar[data-v-d19b0298], .UserProfile__avatar .UserLink[data-v-d19b0298] {
83
83
  display: block;
84
84
  }
85
- .UserProfile__content[data-v-5ec6571a] {
85
+ .UserProfile__content[data-v-d19b0298] {
86
86
  flex: 1;
87
87
  overflow: hidden;
88
88
  }
89
- .UserProfile__affiliation[data-v-5ec6571a], .UserProfile__name[data-v-5ec6571a] {
89
+ .UserProfile__affiliation[data-v-d19b0298], .UserProfile__name[data-v-d19b0298] {
90
90
  overflow: hidden;
91
91
  text-overflow: ellipsis;
92
92
  white-space: nowrap;
93
93
  }
94
- .UserProfile__name[data-v-5ec6571a] {
94
+ .UserProfile__name[data-v-d19b0298] {
95
95
  font-size: 18px;
96
96
  font-weight: 600;
97
97
  font-synthesis: style;
@@ -101,24 +101,26 @@
101
101
  align-items: center;
102
102
  white-space: normal;
103
103
  }
104
- .UserProfile__name .Tags--plain[data-v-5ec6571a] {
104
+ .UserProfile__name .Tags--plain[data-v-d19b0298] {
105
105
  margin-bottom: 0;
106
106
  display: flex;
107
107
  align-items: center;
108
+ gap: 8px;
109
+ margin-left: 12px;
108
110
  }
109
- .UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-5ec6571a] {
111
+ .UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-d19b0298] {
110
112
  margin: 0 0 0 8px;
111
113
  }
112
- .UserProfile__affiliation[data-v-5ec6571a] {
114
+ .UserProfile__affiliation[data-v-d19b0298] {
113
115
  font-size: 14px;
114
116
  margin-top: 4px;
115
117
  }
116
- .UserProfile__affiliation .RichText[data-v-5ec6571a] {
118
+ .UserProfile__affiliation .RichText[data-v-d19b0298] {
117
119
  overflow: hidden;
118
120
  text-overflow: ellipsis;
119
121
  white-space: nowrap;
120
122
  }
121
- .UserProfile__name--light[data-v-5ec6571a] {
123
+ .UserProfile__name--light[data-v-d19b0298] {
122
124
  font-weight: 500;
123
125
  line-height: 26px;
124
126
  }
@@ -1 +1 @@
1
- [data-v-5ec6571a]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.UserProfile[data-v-5ec6571a]{display:flex;align-items:center}.UserProfile__avatar[data-v-5ec6571a]{margin-right:12px}.UserProfile__avatar .Avatar[data-v-5ec6571a],.UserProfile__avatar .UserLink[data-v-5ec6571a]{display:block}.UserProfile__content[data-v-5ec6571a]{flex:1;overflow:hidden}.UserProfile__affiliation[data-v-5ec6571a],.UserProfile__name[data-v-5ec6571a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name[data-v-5ec6571a]{font-size:18px;font-weight:600;font-synthesis:style;line-height:30px;color:#2f3a91;display:flex;align-items:center;white-space:normal}.UserProfile__name .Tags--plain[data-v-5ec6571a]{margin-bottom:0;display:flex;align-items:center}.UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-5ec6571a]{margin:0 0 0 8px}.UserProfile__affiliation[data-v-5ec6571a]{font-size:14px;margin-top:4px}.UserProfile__affiliation .RichText[data-v-5ec6571a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name--light[data-v-5ec6571a]{font-weight:500;line-height:26px}
1
+ [data-v-d19b0298]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.UserProfile[data-v-d19b0298]{display:flex;align-items:center}.UserProfile__avatar[data-v-d19b0298]{margin-right:12px}.UserProfile__avatar .Avatar[data-v-d19b0298],.UserProfile__avatar .UserLink[data-v-d19b0298]{display:block}.UserProfile__content[data-v-d19b0298]{flex:1;overflow:hidden}.UserProfile__affiliation[data-v-d19b0298],.UserProfile__name[data-v-d19b0298]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name[data-v-d19b0298]{font-size:18px;font-weight:600;font-synthesis:style;line-height:30px;color:#2f3a91;display:flex;align-items:center;white-space:normal}.UserProfile__name .Tags--plain[data-v-d19b0298]{margin-bottom:0;display:flex;align-items:center;gap:8px;margin-left:12px}.UserProfile__name .Tags--plain .el-tag.el-tag--info[data-v-d19b0298]{margin:0 0 0 8px}.UserProfile__affiliation[data-v-d19b0298]{font-size:14px;margin-top:4px}.UserProfile__affiliation .RichText[data-v-d19b0298]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.UserProfile__name--light[data-v-d19b0298]{font-weight:500;line-height:26px}
@@ -44268,6 +44268,207 @@
44268
44268
  line-height: 28px;
44269
44269
  }
44270
44270
 
44271
+
44272
+
44273
+
44274
+
44275
+
44276
+
44277
+
44278
+
44279
+
44280
+
44281
+ :export {
44282
+ primary: #2F3A91;
44283
+ success: #67C23A;
44284
+ warning: #FF791A;
44285
+ danger: #F1403C;
44286
+ info: #8590a6;
44287
+ }
44288
+
44289
+
44290
+
44291
+
44292
+
44293
+
44294
+
44295
+
44296
+
44297
+
44298
+
44299
+
44300
+
44301
+
44302
+
44303
+
44304
+
44305
+
44306
+
44307
+
44308
+
44309
+
44310
+
44311
+
44312
+
44313
+
44314
+
44315
+
44316
+
44317
+
44318
+
44319
+
44320
+
44321
+
44322
+
44323
+
44324
+
44325
+
44326
+
44327
+
44328
+
44329
+
44330
+
44331
+
44332
+
44333
+
44334
+
44335
+
44336
+
44337
+
44338
+
44339
+
44340
+
44341
+
44342
+
44343
+
44344
+
44345
+
44346
+
44347
+
44348
+
44349
+
44350
+
44351
+
44352
+
44353
+
44354
+
44355
+
44356
+
44357
+
44358
+
44359
+ :export {
44360
+ primary: #2F3A91;
44361
+ success: #67C23A;
44362
+ warning: #FF791A;
44363
+ danger: #F1403C;
44364
+ info: #8590a6;
44365
+ }
44366
+
44367
+
44368
+
44369
+
44370
+
44371
+
44372
+
44373
+
44374
+
44375
+
44376
+
44377
+
44378
+
44379
+
44380
+
44381
+
44382
+
44383
+
44384
+
44385
+
44386
+
44387
+
44388
+
44389
+
44390
+
44391
+
44392
+
44393
+
44394
+
44395
+
44396
+
44397
+
44398
+
44399
+
44400
+
44401
+
44402
+
44403
+
44404
+
44405
+
44406
+
44407
+
44408
+
44409
+
44410
+
44411
+
44412
+
44413
+
44414
+
44415
+
44416
+
44417
+
44418
+
44419
+
44420
+
44421
+
44422
+ .base-badge {
44423
+ position: relative;
44424
+ vertical-align: middle;
44425
+ display: inline-block;
44426
+ }
44427
+ .base-badge__content {
44428
+ background-color: #F1403C;
44429
+ border-radius: 10px;
44430
+ color: #FFFFFF;
44431
+ display: inline-block;
44432
+ font-size: 12px;
44433
+ height: 18px;
44434
+ line-height: 18px;
44435
+ padding: 0 6px;
44436
+ text-align: center;
44437
+ white-space: nowrap;
44438
+ border: 1px solid #FFFFFF;
44439
+ }
44440
+ .base-badge__content.is-fixed {
44441
+ position: absolute;
44442
+ top: 0;
44443
+ right: 10px;
44444
+ transform: translateY(-50%) translateX(100%);
44445
+ }
44446
+ .base-badge__content.is-fixed.is-dot {
44447
+ right: 5px;
44448
+ }
44449
+ .base-badge__content.is-dot {
44450
+ height: 8px;
44451
+ width: 8px;
44452
+ padding: 0;
44453
+ right: 0;
44454
+ border-radius: 50%;
44455
+ }
44456
+ .base-badge__content--primary {
44457
+ background-color: #2F3A91;
44458
+ }
44459
+ .base-badge__content--success {
44460
+ background-color: #67C23A;
44461
+ }
44462
+ .base-badge__content--warning {
44463
+ background-color: #FF791A;
44464
+ }
44465
+ .base-badge__content--info {
44466
+ background-color: #8590a6;
44467
+ }
44468
+ .base-badge__content--danger {
44469
+ background-color: #F1403C;
44470
+ }
44471
+
44271
44472
  body {
44272
44473
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
44273
44474
  font-size: 14px;