@zscreate/form-component 1.1.595-test.2 → 1.1.596-test.1
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.
- package/dist/form-component.css +187 -187
- package/dist/form-component.umd.js +472 -406
- package/package.json +1 -1
package/dist/form-component.css
CHANGED
|
@@ -1,3 +1,181 @@
|
|
|
1
|
+
.rich-preview {
|
|
2
|
+
border: none;
|
|
3
|
+
height: 100%;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
}
|
|
6
|
+
.rich-preview .w-e-scroll {
|
|
7
|
+
overflow-y: initial !important;
|
|
8
|
+
}
|
|
9
|
+
.rich-preview b,
|
|
10
|
+
.rich-preview strong {
|
|
11
|
+
font-weight: bolder !important;
|
|
12
|
+
}
|
|
13
|
+
.rich-preview em {
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.rich-preview ul li {
|
|
17
|
+
list-style-type: initial;
|
|
18
|
+
}
|
|
19
|
+
.rich-preview ol li {
|
|
20
|
+
list-style-type: decimal;
|
|
21
|
+
}
|
|
22
|
+
.w-e-text-container {
|
|
23
|
+
position: relative;
|
|
24
|
+
height: 100%;
|
|
25
|
+
}
|
|
26
|
+
.w-e-text-container i {
|
|
27
|
+
font-style: italic;
|
|
28
|
+
}
|
|
29
|
+
.w-e-text-container b {
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
.w-e-text-container .w-e-progress {
|
|
33
|
+
position: absolute;
|
|
34
|
+
background-color: #1e88e5;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
height: 1px;
|
|
38
|
+
}
|
|
39
|
+
.w-e-text-container .placeholder {
|
|
40
|
+
color: #D4D4D4;
|
|
41
|
+
position: absolute;
|
|
42
|
+
font-size: 11pt;
|
|
43
|
+
line-height: 22px;
|
|
44
|
+
left: 10px;
|
|
45
|
+
top: 10px;
|
|
46
|
+
-webkit-user-select: none;
|
|
47
|
+
-moz-user-select: none;
|
|
48
|
+
user-select: none;
|
|
49
|
+
z-index: -1;
|
|
50
|
+
}
|
|
51
|
+
.w-e-text {
|
|
52
|
+
padding: 0 10px;
|
|
53
|
+
overflow-y: auto;
|
|
54
|
+
}
|
|
55
|
+
.w-e-text p,
|
|
56
|
+
.w-e-text h1,
|
|
57
|
+
.w-e-text h2,
|
|
58
|
+
.w-e-text h3,
|
|
59
|
+
.w-e-text h4,
|
|
60
|
+
.w-e-text h5,
|
|
61
|
+
.w-e-text table,
|
|
62
|
+
.w-e-text pre {
|
|
63
|
+
margin: 10px 0;
|
|
64
|
+
line-height: 1.5;
|
|
65
|
+
}
|
|
66
|
+
.w-e-text ul,
|
|
67
|
+
.w-e-text ol {
|
|
68
|
+
margin: 10px 0 10px 20px;
|
|
69
|
+
}
|
|
70
|
+
.w-e-text blockquote {
|
|
71
|
+
display: block;
|
|
72
|
+
border-left: 8px solid #d0e5f2;
|
|
73
|
+
padding: 5px 10px;
|
|
74
|
+
margin: 10px 0;
|
|
75
|
+
line-height: 1.4;
|
|
76
|
+
font-size: 100%;
|
|
77
|
+
background-color: #f1f1f1;
|
|
78
|
+
}
|
|
79
|
+
.w-e-text code {
|
|
80
|
+
display: inline-block;
|
|
81
|
+
background-color: #f1f1f1;
|
|
82
|
+
border-radius: 3px;
|
|
83
|
+
padding: 3px 5px;
|
|
84
|
+
margin: 0 3px;
|
|
85
|
+
}
|
|
86
|
+
.w-e-text pre code {
|
|
87
|
+
display: block;
|
|
88
|
+
}
|
|
89
|
+
.w-e-text table {
|
|
90
|
+
border-top: 1px solid #ccc;
|
|
91
|
+
border-left: 1px solid #ccc;
|
|
92
|
+
}
|
|
93
|
+
.w-e-text table td,
|
|
94
|
+
.w-e-text table th {
|
|
95
|
+
border-bottom: 1px solid #ccc;
|
|
96
|
+
border-right: 1px solid #ccc;
|
|
97
|
+
padding: 3px 5px;
|
|
98
|
+
min-height: 30px;
|
|
99
|
+
height: 30px;
|
|
100
|
+
}
|
|
101
|
+
.w-e-text table th {
|
|
102
|
+
border-bottom: 2px solid #ccc;
|
|
103
|
+
text-align: center;
|
|
104
|
+
background-color: #f1f1f1;
|
|
105
|
+
}
|
|
106
|
+
.w-e-text:focus {
|
|
107
|
+
outline: none;
|
|
108
|
+
}
|
|
109
|
+
.w-e-text img {
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
}
|
|
112
|
+
.w-e-text img:hover {
|
|
113
|
+
box-shadow: 0 0 5px #333;
|
|
114
|
+
}
|
|
115
|
+
.w-e-text .w-e-todo {
|
|
116
|
+
margin: 0 0 0 20px;
|
|
117
|
+
}
|
|
118
|
+
.w-e-text ul li {
|
|
119
|
+
list-style-type: initial;
|
|
120
|
+
}
|
|
121
|
+
.w-e-text ol li {
|
|
122
|
+
list-style-type: decimal;
|
|
123
|
+
}
|
|
124
|
+
.w-e-text .w-e-todo li {
|
|
125
|
+
list-style: none;
|
|
126
|
+
font-size: 1em;
|
|
127
|
+
}
|
|
128
|
+
.w-e-text .w-e-todo li span:nth-child(1) {
|
|
129
|
+
position: relative;
|
|
130
|
+
left: -18px;
|
|
131
|
+
}
|
|
132
|
+
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
133
|
+
position: absolute;
|
|
134
|
+
margin-right: 3px;
|
|
135
|
+
}
|
|
136
|
+
.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] {
|
|
137
|
+
top: 50%;
|
|
138
|
+
margin-top: -6px;
|
|
139
|
+
}
|
|
140
|
+
.w-e-tooltip {
|
|
141
|
+
position: absolute;
|
|
142
|
+
display: flex;
|
|
143
|
+
color: #f1f1f1;
|
|
144
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
145
|
+
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
146
|
+
border-radius: 4px;
|
|
147
|
+
padding: 4px 5px 6px;
|
|
148
|
+
justify-content: center;
|
|
149
|
+
align-items: center;
|
|
150
|
+
}
|
|
151
|
+
.w-e-tooltip-up::after {
|
|
152
|
+
content: "";
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 100%;
|
|
155
|
+
left: 50%;
|
|
156
|
+
margin-left: -5px;
|
|
157
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
158
|
+
border-top-color: rgba(0, 0, 0, 0.73);
|
|
159
|
+
}
|
|
160
|
+
.w-e-tooltip-down::after {
|
|
161
|
+
content: "";
|
|
162
|
+
position: absolute;
|
|
163
|
+
bottom: 100%;
|
|
164
|
+
left: 50%;
|
|
165
|
+
margin-left: -5px;
|
|
166
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
167
|
+
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
168
|
+
}
|
|
169
|
+
.w-e-tooltip-item-wrapper {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
margin: 0 5px;
|
|
173
|
+
}
|
|
174
|
+
.w-e-tooltip-item-wrapper:hover {
|
|
175
|
+
color: #ccc;
|
|
176
|
+
text-decoration: underline;
|
|
177
|
+
}
|
|
178
|
+
|
|
1
179
|
.h-model-item[data-v-791fbca8]{height:30px;line-height:30px;padding-left:10px;font-size:16px}.h-model-item[data-v-791fbca8]:hover{background-color:#f5f9fd;color:#1890FF !important}.dropMenu[data-v-791fbca8]{width:100px;padding:0;margin:auto;position:absolute;right:-100px;top:-7px;bottom:0;z-index:100}.dropMenu li[data-v-791fbca8]{width:20px;height:20px;line-height:20px;display:inline-block;text-align:center;cursor:pointer;font-size:16px;color:#999}.dropMenu li[data-v-791fbca8]:hover{color:#66a6e0}.dropMenu li.icon-set[data-v-791fbca8]{font-size:23px}.dropMenuItem[data-v-791fbca8]{width:30px;height:30px;padding:0;color:#ffa500;margin:auto;position:absolute;cursor:pointer;bottom:0;z-index:100;font-size:20px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(1){left:0;right:0;top:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(2){top:0;bottom:0;right:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(3){left:0;right:0;bottom:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(4){top:0;bottom:0;left:-19px}.flow-node-header[data-v-791fbca8]{background-color:#66a6e0;height:25px;cursor:pointer;border-top-left-radius:6px;border-top-right-radius:6px}.flow-node-header a[data-v-791fbca8]{text-decoration:none;line-height:25px;vertical-align:middle}.flow-node-header a img[data-v-791fbca8]{line-height:25px;vertical-align:middle;margin-bottom:5px}.flow-node-body[data-v-791fbca8]{background-color:white;text-align:center;cursor:pointer;height:25px;line-height:25px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.vdr-no-border[data-v-791fbca8]{border:none}.tool .text[data-v-791fbca8]{font-size:14px;padding:4px 6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;/*! autoprefixer: off */-webkit-box-orient:vertical;/*! autoprefixer: on */-webkit-line-clamp:2;height:46px;word-break:break-all}.tool .inner[data-v-791fbca8]{background:orange;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner .icon-user[data-v-791fbca8]{color:#fff;display:flex;align-items:center;justify-content:center}.tool .inner-blue[data-v-791fbca8]{background:blue;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner-blue .icon-user[data-v-791fbca8]{color:#fff;display:flex;align-items:center}.flow-view .start[data-v-791fbca8]{border:2px solid #e0c645}.flow-view .end[data-v-791fbca8]{background-size:cover;border:2px solid #e0c645;position:relative}.flow-view .end[data-v-791fbca8]:before{content:'';width:12px;height:12px;background:#e0c645;display:block;position:absolute;top:calc(50% - 6px);left:calc(50% - 6px)}
|
|
2
180
|
|
|
3
181
|
.flow-tool-menu{background-color:#eeeeee;cursor:pointer;padding-left:5px;height:50px;line-height:50px;border-bottom:1px solid #979797}.flow-tool-submenu{background-color:white;padding-left:20px;cursor:pointer;height:50px;line-height:50px;vertical-align:middle;border-bottom:1px solid #d3d3d3}.g1-tools_1 li.start{width:50px;height:50px;border:1px solid #d8d8d8;border-radius:100%}.draggable-item .inner{display:flex;flex-direction:column;align-items:center;margin-bottom:10px}.draggable-item .inner svg{font-size:30px;color:#858587}.draggable-item .inner svg use{fill:#858587}.draggable-item .inner span{color:#333;margin:5px}
|
|
@@ -3445,14 +3623,14 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3445
3623
|
align-items: center;
|
|
3446
3624
|
}
|
|
3447
3625
|
|
|
3448
|
-
.title[data-v-
|
|
3626
|
+
.title[data-v-588ef43e] {
|
|
3449
3627
|
text-overflow: ellipsis;
|
|
3450
3628
|
white-space: nowrap;
|
|
3451
3629
|
overflow: hidden;
|
|
3452
3630
|
max-width: 620px;
|
|
3453
3631
|
margin-right: 10px;
|
|
3454
3632
|
}
|
|
3455
|
-
.dataTableSet[data-v-
|
|
3633
|
+
.dataTableSet[data-v-588ef43e] .ant-table-placeholder {
|
|
3456
3634
|
border-left: none !important;
|
|
3457
3635
|
border-right: none !important;
|
|
3458
3636
|
border-bottom: none !important;
|
|
@@ -3460,28 +3638,28 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3460
3638
|
padding-top: var(--paddingTop) !important;
|
|
3461
3639
|
width: 99% !important;
|
|
3462
3640
|
}
|
|
3463
|
-
.dataSetFormItem[data-v-
|
|
3641
|
+
.dataSetFormItem[data-v-588ef43e] .ant-form-item-control {
|
|
3464
3642
|
margin: 0 !important;
|
|
3465
3643
|
width: 100% !important;
|
|
3466
3644
|
}
|
|
3467
|
-
.dataSetFormItem[data-v-
|
|
3645
|
+
.dataSetFormItem[data-v-588ef43e] .ant-form-item-control-wrapper {
|
|
3468
3646
|
display: initial !important;
|
|
3469
3647
|
}
|
|
3470
|
-
.dataTableSet[data-v-
|
|
3648
|
+
.dataTableSet[data-v-588ef43e] table {
|
|
3471
3649
|
border-left: none !important;
|
|
3472
3650
|
border-right: none !important;
|
|
3473
3651
|
}
|
|
3474
|
-
.dataSetFormItem[data-v-
|
|
3652
|
+
.dataSetFormItem[data-v-588ef43e] .ant-form-explain {
|
|
3475
3653
|
top: 49px !important;
|
|
3476
3654
|
left: 50% !important;
|
|
3477
3655
|
}
|
|
3478
|
-
.dataSetFormItem[data-v-
|
|
3656
|
+
.dataSetFormItem[data-v-588ef43e] .ant-form-item-control-wrapper {
|
|
3479
3657
|
width: 100% !important;
|
|
3480
3658
|
}
|
|
3481
|
-
.dataTableSet[data-v-
|
|
3659
|
+
.dataTableSet[data-v-588ef43e] .ant-table-tbody tr td:last-child {
|
|
3482
3660
|
border-right: none !important;
|
|
3483
3661
|
}
|
|
3484
|
-
.dataTableSet[data-v-
|
|
3662
|
+
.dataTableSet[data-v-588ef43e] .ant-table-thead tr th:last-child {
|
|
3485
3663
|
border-right: none !important;
|
|
3486
3664
|
}
|
|
3487
3665
|
|
|
@@ -3545,184 +3723,6 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3545
3723
|
min-width: 0 !important;
|
|
3546
3724
|
}
|
|
3547
3725
|
|
|
3548
|
-
.rich-preview {
|
|
3549
|
-
border: none;
|
|
3550
|
-
height: 100%;
|
|
3551
|
-
overflow-y: auto;
|
|
3552
|
-
}
|
|
3553
|
-
.rich-preview .w-e-scroll {
|
|
3554
|
-
overflow-y: initial !important;
|
|
3555
|
-
}
|
|
3556
|
-
.rich-preview b,
|
|
3557
|
-
.rich-preview strong {
|
|
3558
|
-
font-weight: bolder !important;
|
|
3559
|
-
}
|
|
3560
|
-
.rich-preview em {
|
|
3561
|
-
font-style: italic;
|
|
3562
|
-
}
|
|
3563
|
-
.rich-preview ul li {
|
|
3564
|
-
list-style-type: initial;
|
|
3565
|
-
}
|
|
3566
|
-
.rich-preview ol li {
|
|
3567
|
-
list-style-type: decimal;
|
|
3568
|
-
}
|
|
3569
|
-
.w-e-text-container {
|
|
3570
|
-
position: relative;
|
|
3571
|
-
height: 100%;
|
|
3572
|
-
}
|
|
3573
|
-
.w-e-text-container i {
|
|
3574
|
-
font-style: italic;
|
|
3575
|
-
}
|
|
3576
|
-
.w-e-text-container b {
|
|
3577
|
-
font-weight: bold;
|
|
3578
|
-
}
|
|
3579
|
-
.w-e-text-container .w-e-progress {
|
|
3580
|
-
position: absolute;
|
|
3581
|
-
background-color: #1e88e5;
|
|
3582
|
-
top: 0;
|
|
3583
|
-
left: 0;
|
|
3584
|
-
height: 1px;
|
|
3585
|
-
}
|
|
3586
|
-
.w-e-text-container .placeholder {
|
|
3587
|
-
color: #D4D4D4;
|
|
3588
|
-
position: absolute;
|
|
3589
|
-
font-size: 11pt;
|
|
3590
|
-
line-height: 22px;
|
|
3591
|
-
left: 10px;
|
|
3592
|
-
top: 10px;
|
|
3593
|
-
-webkit-user-select: none;
|
|
3594
|
-
-moz-user-select: none;
|
|
3595
|
-
user-select: none;
|
|
3596
|
-
z-index: -1;
|
|
3597
|
-
}
|
|
3598
|
-
.w-e-text {
|
|
3599
|
-
padding: 0 10px;
|
|
3600
|
-
overflow-y: auto;
|
|
3601
|
-
}
|
|
3602
|
-
.w-e-text p,
|
|
3603
|
-
.w-e-text h1,
|
|
3604
|
-
.w-e-text h2,
|
|
3605
|
-
.w-e-text h3,
|
|
3606
|
-
.w-e-text h4,
|
|
3607
|
-
.w-e-text h5,
|
|
3608
|
-
.w-e-text table,
|
|
3609
|
-
.w-e-text pre {
|
|
3610
|
-
margin: 10px 0;
|
|
3611
|
-
line-height: 1.5;
|
|
3612
|
-
}
|
|
3613
|
-
.w-e-text ul,
|
|
3614
|
-
.w-e-text ol {
|
|
3615
|
-
margin: 10px 0 10px 20px;
|
|
3616
|
-
}
|
|
3617
|
-
.w-e-text blockquote {
|
|
3618
|
-
display: block;
|
|
3619
|
-
border-left: 8px solid #d0e5f2;
|
|
3620
|
-
padding: 5px 10px;
|
|
3621
|
-
margin: 10px 0;
|
|
3622
|
-
line-height: 1.4;
|
|
3623
|
-
font-size: 100%;
|
|
3624
|
-
background-color: #f1f1f1;
|
|
3625
|
-
}
|
|
3626
|
-
.w-e-text code {
|
|
3627
|
-
display: inline-block;
|
|
3628
|
-
background-color: #f1f1f1;
|
|
3629
|
-
border-radius: 3px;
|
|
3630
|
-
padding: 3px 5px;
|
|
3631
|
-
margin: 0 3px;
|
|
3632
|
-
}
|
|
3633
|
-
.w-e-text pre code {
|
|
3634
|
-
display: block;
|
|
3635
|
-
}
|
|
3636
|
-
.w-e-text table {
|
|
3637
|
-
border-top: 1px solid #ccc;
|
|
3638
|
-
border-left: 1px solid #ccc;
|
|
3639
|
-
}
|
|
3640
|
-
.w-e-text table td,
|
|
3641
|
-
.w-e-text table th {
|
|
3642
|
-
border-bottom: 1px solid #ccc;
|
|
3643
|
-
border-right: 1px solid #ccc;
|
|
3644
|
-
padding: 3px 5px;
|
|
3645
|
-
min-height: 30px;
|
|
3646
|
-
height: 30px;
|
|
3647
|
-
}
|
|
3648
|
-
.w-e-text table th {
|
|
3649
|
-
border-bottom: 2px solid #ccc;
|
|
3650
|
-
text-align: center;
|
|
3651
|
-
background-color: #f1f1f1;
|
|
3652
|
-
}
|
|
3653
|
-
.w-e-text:focus {
|
|
3654
|
-
outline: none;
|
|
3655
|
-
}
|
|
3656
|
-
.w-e-text img {
|
|
3657
|
-
cursor: pointer;
|
|
3658
|
-
}
|
|
3659
|
-
.w-e-text img:hover {
|
|
3660
|
-
box-shadow: 0 0 5px #333;
|
|
3661
|
-
}
|
|
3662
|
-
.w-e-text .w-e-todo {
|
|
3663
|
-
margin: 0 0 0 20px;
|
|
3664
|
-
}
|
|
3665
|
-
.w-e-text ul li {
|
|
3666
|
-
list-style-type: initial;
|
|
3667
|
-
}
|
|
3668
|
-
.w-e-text ol li {
|
|
3669
|
-
list-style-type: decimal;
|
|
3670
|
-
}
|
|
3671
|
-
.w-e-text .w-e-todo li {
|
|
3672
|
-
list-style: none;
|
|
3673
|
-
font-size: 1em;
|
|
3674
|
-
}
|
|
3675
|
-
.w-e-text .w-e-todo li span:nth-child(1) {
|
|
3676
|
-
position: relative;
|
|
3677
|
-
left: -18px;
|
|
3678
|
-
}
|
|
3679
|
-
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
3680
|
-
position: absolute;
|
|
3681
|
-
margin-right: 3px;
|
|
3682
|
-
}
|
|
3683
|
-
.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] {
|
|
3684
|
-
top: 50%;
|
|
3685
|
-
margin-top: -6px;
|
|
3686
|
-
}
|
|
3687
|
-
.w-e-tooltip {
|
|
3688
|
-
position: absolute;
|
|
3689
|
-
display: flex;
|
|
3690
|
-
color: #f1f1f1;
|
|
3691
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
3692
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
3693
|
-
border-radius: 4px;
|
|
3694
|
-
padding: 4px 5px 6px;
|
|
3695
|
-
justify-content: center;
|
|
3696
|
-
align-items: center;
|
|
3697
|
-
}
|
|
3698
|
-
.w-e-tooltip-up::after {
|
|
3699
|
-
content: "";
|
|
3700
|
-
position: absolute;
|
|
3701
|
-
top: 100%;
|
|
3702
|
-
left: 50%;
|
|
3703
|
-
margin-left: -5px;
|
|
3704
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3705
|
-
border-top-color: rgba(0, 0, 0, 0.73);
|
|
3706
|
-
}
|
|
3707
|
-
.w-e-tooltip-down::after {
|
|
3708
|
-
content: "";
|
|
3709
|
-
position: absolute;
|
|
3710
|
-
bottom: 100%;
|
|
3711
|
-
left: 50%;
|
|
3712
|
-
margin-left: -5px;
|
|
3713
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3714
|
-
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
3715
|
-
}
|
|
3716
|
-
.w-e-tooltip-item-wrapper {
|
|
3717
|
-
cursor: pointer;
|
|
3718
|
-
font-size: 14px;
|
|
3719
|
-
margin: 0 5px;
|
|
3720
|
-
}
|
|
3721
|
-
.w-e-tooltip-item-wrapper:hover {
|
|
3722
|
-
color: #ccc;
|
|
3723
|
-
text-decoration: underline;
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
3726
|
.is_required[data-v-5d95830e]::before {
|
|
3727
3727
|
content: "*";
|
|
3728
3728
|
color: #f56c6c;
|