@dmsej108/design-system 2.2.0
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/components/Badge/Badge.d.ts +13 -0
- package/dist/components/Badge/Badge.d.ts.map +1 -0
- package/dist/components/Badge/index.d.ts +3 -0
- package/dist/components/Badge/index.d.ts.map +1 -0
- package/dist/components/BaseButton/BaseButton.d.ts +14 -0
- package/dist/components/BaseButton/BaseButton.d.ts.map +1 -0
- package/dist/components/BaseButton/index.d.ts +3 -0
- package/dist/components/BaseButton/index.d.ts.map +1 -0
- package/dist/components/Button/Button.d.ts +14 -0
- package/dist/components/Button/Button.d.ts.map +1 -0
- package/dist/components/Button/index.d.ts +3 -0
- package/dist/components/Button/index.d.ts.map +1 -0
- package/dist/components/Card/Card.d.ts +13 -0
- package/dist/components/Card/Card.d.ts.map +1 -0
- package/dist/components/Card/index.d.ts +3 -0
- package/dist/components/Card/index.d.ts.map +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +30 -0
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/dist/components/Checkbox/index.d.ts +3 -0
- package/dist/components/Checkbox/index.d.ts.map +1 -0
- package/dist/components/Chip/Chip.d.ts +17 -0
- package/dist/components/Chip/Chip.d.ts.map +1 -0
- package/dist/components/Chip/index.d.ts +3 -0
- package/dist/components/Chip/index.d.ts.map +1 -0
- package/dist/components/DatePicker/DatePicker.d.ts +18 -0
- package/dist/components/DatePicker/DatePicker.d.ts.map +1 -0
- package/dist/components/DatePicker/index.d.ts +3 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -0
- package/dist/components/FileInput/FileInput.d.ts +19 -0
- package/dist/components/FileInput/FileInput.d.ts.map +1 -0
- package/dist/components/FileInput/index.d.ts +3 -0
- package/dist/components/FileInput/index.d.ts.map +1 -0
- package/dist/components/Icon/Icon.d.ts +17 -0
- package/dist/components/Icon/Icon.d.ts.map +1 -0
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Icon/index.d.ts.map +1 -0
- package/dist/components/Input/Input.d.ts +14 -0
- package/dist/components/Input/Input.d.ts.map +1 -0
- package/dist/components/Input/index.d.ts +3 -0
- package/dist/components/Input/index.d.ts.map +1 -0
- package/dist/components/Modal/Modal.d.ts +18 -0
- package/dist/components/Modal/Modal.d.ts.map +1 -0
- package/dist/components/Modal/index.d.ts +3 -0
- package/dist/components/Modal/index.d.ts.map +1 -0
- package/dist/components/Pagination/Pagination.d.ts +11 -0
- package/dist/components/Pagination/Pagination.d.ts.map +1 -0
- package/dist/components/Pagination/index.d.ts +3 -0
- package/dist/components/Pagination/index.d.ts.map +1 -0
- package/dist/components/Radio/Radio.d.ts +25 -0
- package/dist/components/Radio/Radio.d.ts.map +1 -0
- package/dist/components/Radio/index.d.ts +3 -0
- package/dist/components/Radio/index.d.ts.map +1 -0
- package/dist/components/Select/Select.d.ts +19 -0
- package/dist/components/Select/Select.d.ts.map +1 -0
- package/dist/components/Select/index.d.ts +3 -0
- package/dist/components/Select/index.d.ts.map +1 -0
- package/dist/components/Tab/Tab.d.ts +18 -0
- package/dist/components/Tab/Tab.d.ts.map +1 -0
- package/dist/components/Tab/index.d.ts +3 -0
- package/dist/components/Tab/index.d.ts.map +1 -0
- package/dist/components/Table/Table.d.ts +23 -0
- package/dist/components/Table/Table.d.ts.map +1 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/index.d.ts.map +1 -0
- package/dist/components/Textarea/Textarea.d.ts +15 -0
- package/dist/components/Textarea/Textarea.d.ts.map +1 -0
- package/dist/components/Textarea/index.d.ts +3 -0
- package/dist/components/Textarea/index.d.ts.map +1 -0
- package/dist/components/Toast/Toast.d.ts +32 -0
- package/dist/components/Toast/Toast.d.ts.map +1 -0
- package/dist/components/Toast/index.d.ts +3 -0
- package/dist/components/Toast/index.d.ts.map +1 -0
- package/dist/components/Typography/Typography.d.ts +10 -0
- package/dist/components/Typography/Typography.d.ts.map +1 -0
- package/dist/components/Typography/index.d.ts +3 -0
- package/dist/components/Typography/index.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +39 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1407 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
- package/src/styles/base/common.css +2060 -0
- package/src/styles/base/ellipsis.xml +1 -0
- package/src/styles/base/fonts.css +39 -0
- package/src/styles/base/layout.css +864 -0
- package/src/styles/base/reset.css +241 -0
- package/src/styles/components/breadcrumb.css +39 -0
- package/src/styles/components/button.css +423 -0
- package/src/styles/components/dashboard.css +970 -0
- package/src/styles/components/ellipsis.xml +1 -0
- package/src/styles/components/form.css +744 -0
- package/src/styles/components/loading.css +93 -0
- package/src/styles/components/login.css +405 -0
- package/src/styles/components/modal.css +218 -0
- package/src/styles/components/operate.css +85 -0
- package/src/styles/components/tab.css +80 -0
- package/src/styles/components/table.css +1024 -0
- package/src/styles/components/tree.css +284 -0
- package/src/styles/img/kb_logo.png +0 -0
- package/src/styles/index.css +18 -0
- package/src/styles/swiper.min.css +658 -0
- package/src/tokens/Tokens.stories.tsx +185 -0
- package/src/tokens/index.css +295 -0
|
@@ -0,0 +1,1024 @@
|
|
|
1
|
+
.table {
|
|
2
|
+
margin: 0;
|
|
3
|
+
border-width: 1px 0;
|
|
4
|
+
border-style: solid;
|
|
5
|
+
border-color: var(--base-bd-color);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.table thead th {
|
|
9
|
+
position: relative;
|
|
10
|
+
background-color: #ebebeb;
|
|
11
|
+
border-top: none;
|
|
12
|
+
border-bottom: none;
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
font-size: 12px;
|
|
15
|
+
color: #222;
|
|
16
|
+
vertical-align: middle;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.table tbody th, .table tbody td {
|
|
20
|
+
border-top: none;
|
|
21
|
+
border-top: 1px solid var(--bd2-color);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.table th,
|
|
25
|
+
.table td {
|
|
26
|
+
padding: 10px 0;
|
|
27
|
+
border-bottom: none;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.table td {
|
|
32
|
+
vertical-align: top;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.table-scroller {
|
|
36
|
+
height: 500px;
|
|
37
|
+
overflow-y: auto;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.table-list {
|
|
41
|
+
border-top: 2px solid #355d9c;
|
|
42
|
+
border-bottom: 1px solid #d2d2d2;
|
|
43
|
+
border-radius: 2px 2px 0 0;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.table-list .table.list {
|
|
48
|
+
border-width: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.table.list th {
|
|
52
|
+
padding: 13px 12px 12px;
|
|
53
|
+
background-color: #ebebeb;
|
|
54
|
+
text-align: center;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.table.list th.th-g {
|
|
58
|
+
background-color: #E4EBF5;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.table.list td {
|
|
62
|
+
padding: 13px 12px 12px;
|
|
63
|
+
word-break: break-all;
|
|
64
|
+
text-align: center;
|
|
65
|
+
vertical-align: middle;
|
|
66
|
+
}
|
|
67
|
+
.table.list tfoot {
|
|
68
|
+
border-top: 1px solid var(--bd2-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
td .reply {
|
|
72
|
+
position: relative;
|
|
73
|
+
padding-left: 20px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
td .reply::before {
|
|
77
|
+
content: '';
|
|
78
|
+
position: absolute;
|
|
79
|
+
top: 0;
|
|
80
|
+
left: 0;
|
|
81
|
+
width: 8px;
|
|
82
|
+
height: 8px;
|
|
83
|
+
border-width: 0 0 1px 1px;
|
|
84
|
+
border-style: solid;
|
|
85
|
+
border-color: #bbb;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
td.blind {
|
|
89
|
+
color: #a8a8a8;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.table td .ce-group {
|
|
93
|
+
margin: -4px 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.table td .ce-item {
|
|
97
|
+
display: inline-block;
|
|
98
|
+
margin: 4px 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.table td .ce-item.t1 {
|
|
102
|
+
color: #ff0000;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.table td .ce-item.t2 {
|
|
106
|
+
color: #2f5597;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.table td .ce-item.t3 {
|
|
110
|
+
color: #c55a11;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.table td .ce-item.t4 {
|
|
114
|
+
color: #548235;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.table td .ce-item.t5 {
|
|
118
|
+
color: #bf9000;
|
|
119
|
+
}
|
|
120
|
+
.table td .ce-item + .ce-item {
|
|
121
|
+
margin-left: 8px;
|
|
122
|
+
}
|
|
123
|
+
.table td .lb {
|
|
124
|
+
display: inline-block;
|
|
125
|
+
padding: 0 8px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.table.list td .btn, .table.list td .form-control {
|
|
129
|
+
display: inline-block;
|
|
130
|
+
margin: -6px 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.table.list td .menu-tree {
|
|
134
|
+
position: relative;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.table.list td .menu-tree[class*='dep-'] {
|
|
138
|
+
padding-left: 25px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.table.list td .menu-tree[class*='dep-']::before {
|
|
142
|
+
content: '';
|
|
143
|
+
position: absolute;
|
|
144
|
+
top: 0;
|
|
145
|
+
left: 7px;
|
|
146
|
+
width: 10px;
|
|
147
|
+
height: 10px;
|
|
148
|
+
border-width: 0 0 1px 1px;
|
|
149
|
+
border-style: solid;
|
|
150
|
+
border-color: #d2d2d2;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.table.list td .menu-tree.dep-3 {
|
|
154
|
+
margin-left: 25px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.table.list td .menu-tree.dep-4 {
|
|
158
|
+
margin-left: 50px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.table.reg .table.list th, .table.reg .table.list td {
|
|
162
|
+
height: auto;
|
|
163
|
+
padding: 13px 12px 12px;
|
|
164
|
+
text-align: center;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.table.reg .table-list {
|
|
168
|
+
border: 1px solid #d2d2d2;
|
|
169
|
+
border-radius: 0;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.table.reg .table-list th, .table.reg .table-list td {
|
|
173
|
+
height: auto;
|
|
174
|
+
padding: 11px 10px 10px;
|
|
175
|
+
text-align: center;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.table.reg .table.reg thead th {
|
|
179
|
+
padding: 18px 10px 18px 12px;
|
|
180
|
+
background-color: #ebebeb;
|
|
181
|
+
vertical-align: top;
|
|
182
|
+
font-size: 12px;
|
|
183
|
+
font-weight: bold;
|
|
184
|
+
text-align: left;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.table.reg tbody th {
|
|
188
|
+
padding: 18px 10px 10px 20px;
|
|
189
|
+
background-color: #ebebeb;
|
|
190
|
+
vertical-align: top;
|
|
191
|
+
font-size: 12px;
|
|
192
|
+
font-weight: bold;
|
|
193
|
+
text-align: left;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.table.reg tbody th[rowspan] {
|
|
197
|
+
border-right: 1px solid var(--base-bd-color);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.table.reg thead ~ tbody th {
|
|
201
|
+
border-right: 1px solid #d2d2d2;
|
|
202
|
+
background-color: #fff;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.ess {
|
|
206
|
+
display: inline-block;
|
|
207
|
+
position: relative;
|
|
208
|
+
width: 12px;
|
|
209
|
+
height: 12px;
|
|
210
|
+
margin-left: 5px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.ess::after {
|
|
214
|
+
content: '*';
|
|
215
|
+
font-size: 12px;
|
|
216
|
+
color: #ff3232;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.table.reg td {
|
|
220
|
+
position: relative;
|
|
221
|
+
padding: 18px 10px 18px 12px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.table.reg td .abs {
|
|
225
|
+
position: absolute;
|
|
226
|
+
top: 12px;
|
|
227
|
+
right: 0;
|
|
228
|
+
z-index: 10;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.table.reg td .abs.rgl {
|
|
232
|
+
left: 600px;
|
|
233
|
+
right: initial;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.table.reg td a {
|
|
237
|
+
display: inline-block;
|
|
238
|
+
text-decoration: underline;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.table.reg td img {
|
|
242
|
+
width: 100%;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.table.reg td .reg-item {
|
|
246
|
+
display: flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
position: relative;
|
|
249
|
+
min-height: 32px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.table.reg td .reg-item>*+*:not(.checkbox, .radio) {
|
|
253
|
+
margin-left: 10px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.table.reg td .reg-item .checkbox label,
|
|
257
|
+
.table.reg td .reg-item .radio label {
|
|
258
|
+
line-height: 1.4;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.table.reg td .reg-item .btn-group .radio label {
|
|
262
|
+
height: 32px;
|
|
263
|
+
line-height: 32px;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.table.reg td .reg-item .dp__action_button {
|
|
267
|
+
white-space: pre;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.table.reg th,
|
|
271
|
+
.table.reg td {
|
|
272
|
+
height: 54px;
|
|
273
|
+
border-top: 1px solid var(--base-bd-color);
|
|
274
|
+
font-size: 12px;
|
|
275
|
+
word-break: break-all;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.table.reg td .input-guide {
|
|
279
|
+
margin-top: 12px;
|
|
280
|
+
margin-bottom: -6px;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.table.reg td .input-timer {
|
|
284
|
+
margin-top: 12px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.table.reg td .reg-group {
|
|
288
|
+
margin: -6px 0;
|
|
289
|
+
}
|
|
290
|
+
.table.reg td .reg-group + .reg-group {
|
|
291
|
+
margin-top: 16px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.table.reg td .img-group {
|
|
295
|
+
margin: -10px 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.table.reg td .img-group .img-item {
|
|
299
|
+
display: inline-block;
|
|
300
|
+
height: 150px;
|
|
301
|
+
margin: 4px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.table.reg td .img-group .img-item img {
|
|
305
|
+
height: 100%;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.table.reg td .input-guide.inline {
|
|
309
|
+
margin: 0 0 0 10px;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.tbl-wrap .table-util+.table {
|
|
313
|
+
margin-top: 10px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.ui-grid-top-guide label {
|
|
317
|
+
color: #444;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.ui-grid-top-guide value {
|
|
321
|
+
color: #000;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.colum-filter-wrap {
|
|
325
|
+
margin: 10px 0 0 0;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.colum-filter {
|
|
329
|
+
margin: 0 0 10px 0;
|
|
330
|
+
padding: 10px 20px;
|
|
331
|
+
border: 1px solid #d2d2d2;
|
|
332
|
+
border-radius: 3px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.colum-filter li {
|
|
336
|
+
display: inline-block;
|
|
337
|
+
padding: 5px 0;
|
|
338
|
+
margin-right: 15px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.table-total {
|
|
342
|
+
width: 100%;
|
|
343
|
+
font-size: 12px;
|
|
344
|
+
color: #767676;
|
|
345
|
+
white-space: nowrap;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.table-total strong {
|
|
349
|
+
color: var(--point-txt-color);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.btn-set-m>*+* {
|
|
353
|
+
margin-left: 6px;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.pagination {
|
|
357
|
+
display: flex;
|
|
358
|
+
align-items: center;
|
|
359
|
+
margin-top: 20px;
|
|
360
|
+
justify-content: center;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.page-item+.page-item {
|
|
364
|
+
margin-left: 6px;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.page-item .page-link {
|
|
368
|
+
min-width: 24px;
|
|
369
|
+
height: 24px;
|
|
370
|
+
line-height: 22px;
|
|
371
|
+
padding: 0 8px;
|
|
372
|
+
border: 1px solid var(--base-bd-color);
|
|
373
|
+
border-radius: 3px;
|
|
374
|
+
font-size: 12px;
|
|
375
|
+
color: #767676;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.page-item.active .page-link {
|
|
379
|
+
border-color: #fed700;
|
|
380
|
+
background-color: #fed700;
|
|
381
|
+
font-weight: bold;
|
|
382
|
+
color: #222;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.page-item.first .page-link {
|
|
386
|
+
border: none;
|
|
387
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0002 16.728L13.2722 12L18.0002 7.272L16.7282 6L10.7282 12L16.7282 18L18.0002 16.728Z' fill='%23D2D2D2'/%3E%3Cpath d='M13.0002 16.728L8.27224 12L13.0002 7.272L11.7282 6L5.72825 12L11.7282 18L13.0002 16.728Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.page-item.prev .page-link {
|
|
391
|
+
border: none;
|
|
392
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0001 16.7272L11.2721 11.9992L16.0001 7.27121L14.7281 5.99921L8.72808 11.9992L14.7281 17.9992L16.0001 16.7272Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.page-item.next .page-link {
|
|
396
|
+
border: none;
|
|
397
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00043 7.27278L12.7284 12.0008L8.00043 16.7288L9.27243 18.0008L15.2724 12.0008L9.27243 6.00078L8.00043 7.27278Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.page-item.last .page-link {
|
|
401
|
+
border: none;
|
|
402
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00024 7.272L10.7282 12L6.00024 16.728L7.27224 18L13.2722 12L7.27224 6L6.00024 7.272Z' fill='%23D2D2D2'/%3E%3Cpath d='M11.0002 7.272L15.7282 12L11.0002 16.728L12.2722 18L18.2722 12L12.2722 6L11.0002 7.272Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.tbl-wrap {
|
|
406
|
+
position: relative;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.tbl-wrap .ag-header-group-cell {
|
|
410
|
+
justify-content: center;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.tbl-wrap .ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total),
|
|
414
|
+
.tbl-wrap .ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
|
|
415
|
+
border-top: none;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.centered .ag-header-cell-label {
|
|
419
|
+
justify-content: center !important;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.ag-row .centered {
|
|
423
|
+
justify-content: center !important;
|
|
424
|
+
text-align: center;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.tbl-wrap .table-util {
|
|
428
|
+
margin-bottom: 10px;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/* .tbl-wrap .ag-header-container {
|
|
432
|
+
width: 100% !important;
|
|
433
|
+
} */
|
|
434
|
+
|
|
435
|
+
.tbl-wrap .ag-center-cols-container {
|
|
436
|
+
width: 100% !important;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.tbl-wrap .ag-root-wrapper {
|
|
440
|
+
border: none;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.tbl-wrap .ag-header {
|
|
444
|
+
border-top: 2px solid #355d9c;
|
|
445
|
+
border-bottom: none;
|
|
446
|
+
background-color: #f7f7f7;
|
|
447
|
+
border-radius: 2px 2px 0 0;
|
|
448
|
+
overflow: hidden;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.tbl-wrap .ag-row {
|
|
452
|
+
border-top: 1px solid #ebebeb;
|
|
453
|
+
border-bottom: none;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.tbl-wrap .ag-paging-panel {
|
|
457
|
+
border-top-color: #d2d2d2;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.tbl-wrap .ag-header-cell-text {
|
|
461
|
+
font-size: 12px;
|
|
462
|
+
font-weight: bold;
|
|
463
|
+
color: #222;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.tbl-wrap .ag-body {
|
|
467
|
+
border-bottom: 1px solid #d2d2d2;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.tbl-wrap .ag-cell {
|
|
471
|
+
font-size: 12px;
|
|
472
|
+
color: #444;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.tbl-wrap .ag-cell img {
|
|
476
|
+
width: 100%;
|
|
477
|
+
vertical-align: middle;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.tbl-wrap .ag-cell a {
|
|
481
|
+
display: inline-block;
|
|
482
|
+
text-decoration: underline;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.tbl-wrap .ag-cell .btn {
|
|
486
|
+
display: inline-block;
|
|
487
|
+
margin-top: 6px;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.tbl-wrap .ag-cell .custom-select {
|
|
491
|
+
min-width: 100%;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.tbl-wrap .ag-checkbox-input-wrapper {
|
|
495
|
+
width: 16px;
|
|
496
|
+
height: 16px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.tbl-wrap .ag-checkbox-input-wrapper::after {
|
|
500
|
+
content: '';
|
|
501
|
+
width: 16px;
|
|
502
|
+
height: 16px;
|
|
503
|
+
border: 1px solid #999;
|
|
504
|
+
background-color: #fff;
|
|
505
|
+
border-radius: 3px;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.tbl-wrap .ag-checkbox-input-wrapper.ag-checked::after {
|
|
509
|
+
border-color: #fed700;
|
|
510
|
+
background-color: #fed700;
|
|
511
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7.85455L6.85714 10.4L12 4.8' stroke='%23222222' stroke-width='2'/%3E%3C/svg%3E");
|
|
512
|
+
background-position: 50% 50%;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.tbl-wrap .ag-paging-button {
|
|
516
|
+
width: 24px;
|
|
517
|
+
height: 24px;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.tbl-wrap .ag-paging-button .ag-icon {
|
|
521
|
+
width: 24px;
|
|
522
|
+
height: 24px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.tbl-wrap .ag-paging-button .ag-icon::before {
|
|
526
|
+
content: '';
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.tbl-wrap .ag-paging-button .ag-icon.ag-icon-first {
|
|
530
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0002 16.728L13.2722 12L18.0002 7.272L16.7282 6L10.7282 12L16.7282 18L18.0002 16.728Z' fill='%23D2D2D2'/%3E%3Cpath d='M13.0002 16.728L8.27224 12L13.0002 7.272L11.7282 6L5.72825 12L11.7282 18L13.0002 16.728Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.tbl-wrap .ag-paging-button .ag-icon.ag-icon-previous {
|
|
534
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0001 16.7272L11.2721 11.9992L16.0001 7.27121L14.7281 5.99921L8.72808 11.9992L14.7281 17.9992L16.0001 16.7272Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.tbl-wrap .ag-paging-button .ag-icon.ag-icon-next {
|
|
538
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00043 7.27278L12.7284 12.0008L8.00043 16.7288L9.27243 18.0008L15.2724 12.0008L9.27243 6.00078L8.00043 7.27278Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.tbl-wrap .ag-paging-button .ag-icon.ag-icon-last {
|
|
542
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00024 7.272L10.7282 12L6.00024 16.728L7.27224 18L13.2722 12L7.27224 6L6.00024 7.272Z' fill='%23D2D2D2'/%3E%3Cpath d='M11.0002 7.272L15.7282 12L11.0002 16.728L12.2722 18L18.2722 12L12.2722 6L11.0002 7.272Z' fill='%23D2D2D2'/%3E%3C/svg%3E");
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.tbl-wrap .t-foot {
|
|
546
|
+
padding: 15px;
|
|
547
|
+
border-bottom: 1px solid #d2d2d2;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.tbl-wrap .t-foot .t-total {
|
|
551
|
+
text-align: center;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.tbl-multi-wrap {
|
|
555
|
+
position: relative;
|
|
556
|
+
}
|
|
557
|
+
.tbl-multi-wrap::after {
|
|
558
|
+
content: '';
|
|
559
|
+
display: block;
|
|
560
|
+
clear: both;
|
|
561
|
+
}
|
|
562
|
+
.tbl-multi-wrap .ui-section {
|
|
563
|
+
margin: 0;
|
|
564
|
+
}
|
|
565
|
+
.tbl-multi-wrap .ui-data-move {
|
|
566
|
+
display: flex;
|
|
567
|
+
align-items: center;
|
|
568
|
+
flex-direction: column;
|
|
569
|
+
position: absolute;
|
|
570
|
+
top: 50%;
|
|
571
|
+
left: 50%;
|
|
572
|
+
transform: translate3d(-50%, -50%, 0);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.tbl-multi-wrap .ui-data-move .btn + .btn {
|
|
576
|
+
margin: 6px 0 0 0;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.ui-grid-top-guide {
|
|
580
|
+
position: relative;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.ui-grid-top-guide h3 + p {
|
|
584
|
+
margin-top: 10px;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.ui-grid-top-guide .abs {
|
|
588
|
+
position: absolute;
|
|
589
|
+
bottom: 0;
|
|
590
|
+
right: 0;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.ui-question-tree {
|
|
594
|
+
position: relative;
|
|
595
|
+
padding: 10px 0 10px 50px;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.ui-question-tree::before {
|
|
599
|
+
content: '';
|
|
600
|
+
position: absolute;
|
|
601
|
+
top: 10px;
|
|
602
|
+
left: 10px;
|
|
603
|
+
width: 24px;
|
|
604
|
+
height: 24px;
|
|
605
|
+
border-width: 0 0 3px 3px;
|
|
606
|
+
border-style: dotted;
|
|
607
|
+
border-color: #999;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.ui-question-tree-item {
|
|
611
|
+
position: relative;
|
|
612
|
+
padding: 20px;
|
|
613
|
+
border: 1px solid #d2d2d2;
|
|
614
|
+
border-radius: 5px;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.ui-question-contents {
|
|
618
|
+
margin-top: 10px;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.ui-question-item:first-of-type {
|
|
622
|
+
margin-top: 0;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.ui-question-item {
|
|
626
|
+
margin-top: 30px;
|
|
627
|
+
padding: 20px;
|
|
628
|
+
border: 1px solid #d2d2d2;
|
|
629
|
+
border-radius: 10px;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.ui-question-item > .ui-question-item:first-of-type {
|
|
633
|
+
margin-top: 10px;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.ui-question-item .ui-question-item {
|
|
637
|
+
margin-top: 20px;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.ui-question-item .ui-question {
|
|
641
|
+
display: flex;
|
|
642
|
+
align-items: center;
|
|
643
|
+
padding: 15px;
|
|
644
|
+
background-color: #f5f5f5;
|
|
645
|
+
border-radius: 8px;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.ui-question-item .ui-question .lb {
|
|
649
|
+
display: block;
|
|
650
|
+
width: 90px;
|
|
651
|
+
height: 32px;
|
|
652
|
+
line-height: 32px;
|
|
653
|
+
padding-left: 10px;
|
|
654
|
+
font-size: 16px;
|
|
655
|
+
font-weight: bold;
|
|
656
|
+
color: #222;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.ui-question-input {
|
|
660
|
+
display: flex;
|
|
661
|
+
align-items: center;
|
|
662
|
+
width: 100%;
|
|
663
|
+
margin-left: 10px;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.btn-question-del, .btn-question-toggle {
|
|
667
|
+
display: inline-block;
|
|
668
|
+
width: 40px;
|
|
669
|
+
height: 32px;
|
|
670
|
+
margin-left: 10px;
|
|
671
|
+
border: 1px solid #444;
|
|
672
|
+
background-color: #fff;
|
|
673
|
+
border-radius: 4px;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.btn-question-del {
|
|
677
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 4L4 16.5' stroke='%23444444' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M4 4L16.5 16.5' stroke='%23444444' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
678
|
+
background-position: 50% 50%;
|
|
679
|
+
background-repeat: no-repeat;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.btn-question-toggle {
|
|
683
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3EArtboard-51%3C/title%3E%3Cg id='Down-2' data-name='Down'%3E%3Cpath d='M16.924,9.617A1,1,0,0,0,16,9H8a1,1,0,0,0-.707,1.707l4,4a1,1,0,0,0,1.414,0l4-4A1,1,0,0,0,16.924,9.617Z' style='fill:%23444444'/%3E%3C/g%3E%3C/svg%3E");
|
|
684
|
+
background-position: 50% 50%;
|
|
685
|
+
background-repeat: no-repeat;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.ui-question-input .form-control {
|
|
689
|
+
width: 100%;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.ui-question-form-toggle {
|
|
693
|
+
margin-top: 20px;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.ui-loop-item:first-of-type {
|
|
697
|
+
margin: 0;
|
|
698
|
+
padding: 0;
|
|
699
|
+
border: none;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.ui-loop-item {
|
|
703
|
+
margin-top: 20px;
|
|
704
|
+
padding-top: 20px;
|
|
705
|
+
border-top: 1px dashed #d2d2d2;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
.ui-question-m-choice {
|
|
710
|
+
position: relative;
|
|
711
|
+
margin-top: 20px;
|
|
712
|
+
padding-left: 40px;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.ui-question-m-choice::before {
|
|
716
|
+
content: '';
|
|
717
|
+
position: absolute;
|
|
718
|
+
top: 0;
|
|
719
|
+
left: 0;
|
|
720
|
+
width: 24px;
|
|
721
|
+
height: 24px;
|
|
722
|
+
border-width: 0 0 3px 3px;
|
|
723
|
+
border-style: dotted;
|
|
724
|
+
border-color: #A4C4F8;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.ui-question-m-choice-item {
|
|
728
|
+
position: relative;
|
|
729
|
+
padding: 20px;
|
|
730
|
+
border: 1px solid #A4C4F8;
|
|
731
|
+
background-color: #F8FAFF;
|
|
732
|
+
border-radius: 8px;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.ui-question-sub {
|
|
736
|
+
position: relative;
|
|
737
|
+
margin-top: 20px;
|
|
738
|
+
padding-left: 40px;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.ui-question-sub::before {
|
|
742
|
+
content: '';
|
|
743
|
+
position: absolute;
|
|
744
|
+
top: 0;
|
|
745
|
+
left: 0;
|
|
746
|
+
width: 24px;
|
|
747
|
+
height: 24px;
|
|
748
|
+
border-width: 0 0 3px 3px;
|
|
749
|
+
border-style: dotted;
|
|
750
|
+
border-color: #FFCC00;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.ui-question-sub-item {
|
|
754
|
+
position: relative;
|
|
755
|
+
padding: 20px;
|
|
756
|
+
border: 1px solid #FFCC00;
|
|
757
|
+
background-color: #FFFBED;
|
|
758
|
+
border-radius: 6px;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.ui-question-sub-sub {
|
|
762
|
+
position: relative;
|
|
763
|
+
margin-top: 20px;
|
|
764
|
+
padding-left: 40px;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.ui-question-sub-sub::before {
|
|
768
|
+
content: '';
|
|
769
|
+
position: absolute;
|
|
770
|
+
top: 0;
|
|
771
|
+
left: 0;
|
|
772
|
+
width: 24px;
|
|
773
|
+
height: 24px;
|
|
774
|
+
border-width: 0 0 3px 3px;
|
|
775
|
+
border-style: dotted;
|
|
776
|
+
border-color: #89E393;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.ui-question-sub-sub-item {
|
|
780
|
+
position: relative;
|
|
781
|
+
padding: 20px;
|
|
782
|
+
border: 1px solid #89E393;
|
|
783
|
+
background-color: #F0FCF1;
|
|
784
|
+
border-radius: 4px;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.ui-table-guide {
|
|
788
|
+
margin-top: 10px;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.member-group-list {
|
|
792
|
+
margin-top: 10px;
|
|
793
|
+
padding: 15px;
|
|
794
|
+
border: 1px solid #d2d2d2;
|
|
795
|
+
background-color: #f7f7f7;
|
|
796
|
+
border-radius: 4px;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
[class*='evt-pie-'] {
|
|
801
|
+
display: inline-block;
|
|
802
|
+
width: 40px;
|
|
803
|
+
height: 40px;
|
|
804
|
+
margin: -10px 0;
|
|
805
|
+
border-radius: 100%;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
[class*='evt-pie-6'] {
|
|
809
|
+
background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3175_35734)'%3E%3Crect width='40' height='40' fill='white'/%3E%3Cpath d='M19.8047 20.0051L3.34214 10.5866C7.77437 2.54527 16.164 0.851527 19.8047 1.00982V20.0051Z' fill='%23F4F4F4'/%3E%3Cpath d='M19.8047 19.9949L3.34214 29.4134C7.77437 37.4547 16.164 39.1485 19.8047 38.9902V19.9949Z' fill='%23F4F4F4'/%3E%3Cpath d='M19.8014 20.0052L3.41342 10.4574C-1.33447 18.3165 1.39349 26.429 3.35096 29.5029L19.8014 20.0052Z' fill='%23E1E1E1'/%3E%3Cpath d='M19.8028 20.0052L36.1908 10.4574C40.9387 18.3165 38.2107 26.429 36.2532 29.5029L19.8028 20.0052Z' fill='%23F4F4F4'/%3E%3Cpath d='M19.8034 20.0051L36.266 10.5866C31.8338 2.54527 23.4442 0.851527 19.8034 1.00982V20.0051Z' fill='%23EB5147'/%3E%3Cpath d='M19.8034 19.9949L36.266 29.4134C31.8338 37.4547 23.4442 39.1485 19.8034 38.9902V19.9949Z' fill='%23E1E1E1'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3175_35734'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
|
|
810
|
+
}
|
|
811
|
+
[class*='evt-pie-6-2'] {
|
|
812
|
+
transform: rotate(60deg);
|
|
813
|
+
}
|
|
814
|
+
[class*='evt-pie-6-3'] {
|
|
815
|
+
transform: rotate(120deg);
|
|
816
|
+
}
|
|
817
|
+
[class*='evt-pie-6-4'] {
|
|
818
|
+
transform: rotate(180deg);
|
|
819
|
+
}
|
|
820
|
+
[class*='evt-pie-6-5'] {
|
|
821
|
+
transform: rotate(240deg);
|
|
822
|
+
}
|
|
823
|
+
[class*='evt-pie-6-6'] {
|
|
824
|
+
transform: rotate(300deg);
|
|
825
|
+
}
|
|
826
|
+
[class*='evt-pie-5'] {
|
|
827
|
+
background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' fill='white'/%3E%3Cpath d='M19.9416 1V19.9999L1.90234 14.224C5.10931 3.96857 15.2647 1.12717 19.9416 1Z' fill='%23D9D9D9'/%3E%3Cpath d='M19.9416 1V19.9999L1.90234 14.224C5.10931 3.96857 15.2647 1.12717 19.9416 1Z' fill='%23F4F4F4'/%3E%3Cpath d='M38.1335 14.1478L19.9414 19.9998L31.1013 35.4277C40.1841 28.4463 39.6369 18.2815 38.1335 14.1478Z' fill='%23E1E1E1'/%3E%3Cpath d='M19.9414 1.00676V19.9999L38.1335 14.1559C34.4018 3.26748 24.4506 0.852965 19.9414 1.00676Z' fill='%23EB5147'/%3E%3Cpath d='M1.9033 14.2237L19.9434 19.9997L8.63 35.4276C-0.358339 28.9596 0.441159 18.5713 1.9033 14.2237Z' fill='%23E1E1E1'/%3E%3Cpath d='M8.62891 35.4233L19.9416 20.0001L31.1015 35.4233C21.4305 41.9011 12.0902 38.1224 8.62891 35.4233Z' fill='%23F4F4F4'/%3E%3C/svg%3E");
|
|
828
|
+
}
|
|
829
|
+
[class*='evt-pie-5-2'] {
|
|
830
|
+
transform: rotate(72deg);
|
|
831
|
+
}
|
|
832
|
+
[class*='evt-pie-5-3'] {
|
|
833
|
+
transform: rotate(144deg);
|
|
834
|
+
}
|
|
835
|
+
[class*='evt-pie-5-4'] {
|
|
836
|
+
transform: rotate(216deg);
|
|
837
|
+
}
|
|
838
|
+
[class*='evt-pie-5-5'] {
|
|
839
|
+
transform: rotate(288deg);
|
|
840
|
+
}
|
|
841
|
+
[class*='evt-pie-4'] {
|
|
842
|
+
background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' fill='white'/%3E%3Cpath d='M39 20C39 17.5049 38.5085 15.0342 37.5537 12.729C36.5989 10.4238 35.1993 8.32928 33.435 6.56497C31.6707 4.80066 29.5762 3.40113 27.271 2.44629C24.9658 1.49145 22.4951 1 20 1V20H39Z' fill='%23EB5147'/%3E%3Cpath d='M1 20C1 22.4951 1.49145 24.9658 2.44629 27.271C3.40113 29.5762 4.80066 31.6707 6.56497 33.435C8.32928 35.1993 10.4238 36.5989 12.729 37.5537C15.0342 38.5086 17.5049 39 20 39V20H1Z' fill='%23F4F4F4'/%3E%3Cpath d='M1 20C1 17.5049 1.49145 15.0342 2.44629 12.729C3.40113 10.4238 4.80066 8.32928 6.56497 6.56497C8.32928 4.80066 10.4238 3.40113 12.729 2.44629C15.0342 1.49145 17.5049 1 20 1V20H1Z' fill='%23E1E1E1'/%3E%3Cpath d='M39 20C39 22.4951 38.5085 24.9658 37.5537 27.271C36.5989 29.5762 35.1993 31.6707 33.435 33.435C31.6707 35.1993 29.5762 36.5989 27.271 37.5537C24.9658 38.5086 22.4951 39 20 39V20H39Z' fill='%23E1E1E1'/%3E%3C/svg%3E");
|
|
843
|
+
}
|
|
844
|
+
[class*='evt-pie-4-2'] {
|
|
845
|
+
transform: rotate(90deg);
|
|
846
|
+
}
|
|
847
|
+
[class*='evt-pie-4-3'] {
|
|
848
|
+
transform: rotate(180deg);
|
|
849
|
+
}
|
|
850
|
+
[class*='evt-pie-4-4'] {
|
|
851
|
+
transform: rotate(270deg);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
/* .ui-terms-wrap .terms-item + .terms-item {
|
|
855
|
+
margin-top: 20px;
|
|
856
|
+
}
|
|
857
|
+
.ui-terms-wrap .terms-item h2 {
|
|
858
|
+
font-weight: bold;
|
|
859
|
+
font-size: 16px;
|
|
860
|
+
}
|
|
861
|
+
.terms-table-track {
|
|
862
|
+
overflow-x: auto;
|
|
863
|
+
}
|
|
864
|
+
.terms-table-track .terms-table {
|
|
865
|
+
min-width: 800px;
|
|
866
|
+
margin-top: 10px;
|
|
867
|
+
border-top: 1px solid #666;
|
|
868
|
+
border-bottom: 1px solid #eee;
|
|
869
|
+
font-size: 14px;
|
|
870
|
+
overflow: hidden;
|
|
871
|
+
}
|
|
872
|
+
.terms-table-track .terms-table table {
|
|
873
|
+
width: 100%;
|
|
874
|
+
margin: 0 1px;
|
|
875
|
+
border-spacing: 0;
|
|
876
|
+
border-collapse: collapse;
|
|
877
|
+
table-layout: fixed;
|
|
878
|
+
}
|
|
879
|
+
.terms-table-track .terms-table table caption {
|
|
880
|
+
position: absolute;
|
|
881
|
+
overflow: hidden;
|
|
882
|
+
width: 0;
|
|
883
|
+
height: 0;
|
|
884
|
+
color: transparent;
|
|
885
|
+
clip: rect(0 0 0 0);
|
|
886
|
+
opacity: 0;
|
|
887
|
+
font-size: 0;
|
|
888
|
+
z-index: -1;
|
|
889
|
+
text-indent: -100%;
|
|
890
|
+
}
|
|
891
|
+
.terms-table-track .terms-table table th,
|
|
892
|
+
.terms-table-track .terms-table table td {
|
|
893
|
+
padding: 14px 10px;
|
|
894
|
+
border-width: 0 1px 1px 0;
|
|
895
|
+
border-style: solid;
|
|
896
|
+
border-color: #eee;
|
|
897
|
+
text-align: center;
|
|
898
|
+
}
|
|
899
|
+
.terms-table-track .terms-table table td.t-left {
|
|
900
|
+
text-align: left;
|
|
901
|
+
}
|
|
902
|
+
.terms-table-track .terms-table table th {
|
|
903
|
+
background-color: #f8f8f8;
|
|
904
|
+
font-weight: bold;
|
|
905
|
+
}
|
|
906
|
+
.terms-table-track .terms-table table td .highlight {
|
|
907
|
+
color: #000;
|
|
908
|
+
font-size: 16px;
|
|
909
|
+
text-decoration: underline;
|
|
910
|
+
}
|
|
911
|
+
.terms-table-track .terms-table table td .sub {
|
|
912
|
+
font-size: 13px;
|
|
913
|
+
color: #666;
|
|
914
|
+
}
|
|
915
|
+
.table-caution {
|
|
916
|
+
margin-top: 10px;
|
|
917
|
+
font-size: 13px;
|
|
918
|
+
color: #666;
|
|
919
|
+
display: flex;
|
|
920
|
+
}
|
|
921
|
+
.table-caution::before {
|
|
922
|
+
content: "";
|
|
923
|
+
display: inline-block;
|
|
924
|
+
width: 20px;
|
|
925
|
+
height: 20px;
|
|
926
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9.55078' y='2.5' width='1' height='9' fill='%23666666'/%3E%3Crect x='13.6992' y='4.31641' width='1' height='9' transform='rotate(60 13.6992 4.31641)' fill='%23666666'/%3E%3Crect x='5.90234' y='5.18359' width='1' height='9' transform='rotate(-60 5.90234 5.18359)' fill='%23666666'/%3E%3C/svg%3E");
|
|
927
|
+
background-repeat: no-repeat;
|
|
928
|
+
margin-right: 4px;
|
|
929
|
+
} */
|
|
930
|
+
|
|
931
|
+
.ui-bill-form {
|
|
932
|
+
width: 840px;
|
|
933
|
+
margin: 0 auto;
|
|
934
|
+
border: 1px solid #eee;
|
|
935
|
+
}
|
|
936
|
+
.ui-bill-form-header {
|
|
937
|
+
display: flex;
|
|
938
|
+
align-items: center;
|
|
939
|
+
justify-content: center;
|
|
940
|
+
height: 80px;
|
|
941
|
+
border-bottom: 4px solid #ffd633;
|
|
942
|
+
}
|
|
943
|
+
.ui-bill-form-content {
|
|
944
|
+
padding: 30px;
|
|
945
|
+
}
|
|
946
|
+
.ui-bill-form-title h1 {
|
|
947
|
+
font-weight: bold;
|
|
948
|
+
font-size: 24px;
|
|
949
|
+
}
|
|
950
|
+
.ui-bill-form-title .date {
|
|
951
|
+
display: block;
|
|
952
|
+
margin-top: 4px;
|
|
953
|
+
font-size: 14px;
|
|
954
|
+
}
|
|
955
|
+
.ui-bill-form-item {
|
|
956
|
+
margin-top: 30px;
|
|
957
|
+
}
|
|
958
|
+
.ui-bill-form-item h2 {
|
|
959
|
+
font-weight: bold;
|
|
960
|
+
font-size: 16px;
|
|
961
|
+
}
|
|
962
|
+
.ui-bill-form-item-cont {
|
|
963
|
+
margin-top: 12px;
|
|
964
|
+
}
|
|
965
|
+
.ui-bill-box {
|
|
966
|
+
padding: 20px;
|
|
967
|
+
background-color: #f8f8f8;
|
|
968
|
+
border-radius: 10px;
|
|
969
|
+
}
|
|
970
|
+
.ui-bill-box-item {
|
|
971
|
+
display: flex;
|
|
972
|
+
justify-content: space-between;
|
|
973
|
+
}
|
|
974
|
+
.ui-bill-box-item + .ui-bill-box-item {
|
|
975
|
+
margin-top: 5px;
|
|
976
|
+
}
|
|
977
|
+
.ui-bill-box-item.total {
|
|
978
|
+
margin-top: 10px;
|
|
979
|
+
padding-top: 10px;
|
|
980
|
+
border-top: 1px solid #d2d2d2;
|
|
981
|
+
font-size: 16px;
|
|
982
|
+
font-weight: bold;
|
|
983
|
+
}
|
|
984
|
+
.ui-bill-box-item .amount {
|
|
985
|
+
display: flex;
|
|
986
|
+
justify-content: space-between;
|
|
987
|
+
width: 240px;
|
|
988
|
+
}
|
|
989
|
+
.ui-bill-date {
|
|
990
|
+
margin-top: 50px;
|
|
991
|
+
font-size: 16px;
|
|
992
|
+
text-align: center;
|
|
993
|
+
}
|
|
994
|
+
.ui-bill-form-item .half-list .lb {
|
|
995
|
+
display: inline-block;
|
|
996
|
+
width: 100px;
|
|
997
|
+
margin-right: 10px;
|
|
998
|
+
text-align: right;
|
|
999
|
+
}
|
|
1000
|
+
.ui-bill-end {
|
|
1001
|
+
padding: 40px 0;
|
|
1002
|
+
text-align: center;
|
|
1003
|
+
font-size: 24px;
|
|
1004
|
+
}
|
|
1005
|
+
.ui-bill-end strong {
|
|
1006
|
+
display: inline-block;
|
|
1007
|
+
position: relative;
|
|
1008
|
+
}
|
|
1009
|
+
.ui-bill-end strong img {
|
|
1010
|
+
position: absolute;
|
|
1011
|
+
top: 50%;
|
|
1012
|
+
right: -80px;
|
|
1013
|
+
width: 60px;
|
|
1014
|
+
height: 60px;
|
|
1015
|
+
margin-top: -30px;
|
|
1016
|
+
}
|
|
1017
|
+
.table-bottom-option {
|
|
1018
|
+
padding: 20px 0;
|
|
1019
|
+
border-bottom: 1px solid #d2d2d2;
|
|
1020
|
+
text-align: center;
|
|
1021
|
+
}
|
|
1022
|
+
.table-bottom-option .radio + .radio {
|
|
1023
|
+
margin-left: 10px;
|
|
1024
|
+
}
|