@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,970 @@
|
|
|
1
|
+
.ui-dashboard {
|
|
2
|
+
position: relative;
|
|
3
|
+
margin-top: -20px;
|
|
4
|
+
padding-bottom: 5px;
|
|
5
|
+
}
|
|
6
|
+
.ui-dashboard-summary-wrap {
|
|
7
|
+
height: 190px;
|
|
8
|
+
}
|
|
9
|
+
.ui-dashboard-summary {
|
|
10
|
+
position: fixed;
|
|
11
|
+
top: 100px;
|
|
12
|
+
left: 300px;
|
|
13
|
+
right: 60px;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
background-color: #fceba6;
|
|
16
|
+
border-radius: 16px;
|
|
17
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
18
|
+
z-index: 10;
|
|
19
|
+
transition: all .3s ease-out;
|
|
20
|
+
}
|
|
21
|
+
.nav-hide .ui-dashboard-summary {
|
|
22
|
+
left: 70px;
|
|
23
|
+
}
|
|
24
|
+
.ui-dashboard-summary-head {
|
|
25
|
+
padding: 15px 20px;
|
|
26
|
+
}
|
|
27
|
+
.ui-dashboard-summary-head h2 {
|
|
28
|
+
font-size: 18px;
|
|
29
|
+
}
|
|
30
|
+
.ui-dashboard-summary-list {
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: space-between;
|
|
33
|
+
width: 100%;
|
|
34
|
+
padding: 0 15px 15px;
|
|
35
|
+
transition: padding .3s ease;
|
|
36
|
+
}
|
|
37
|
+
.ui-dashboard-summary-item:first-of-type {
|
|
38
|
+
margin-left: 0;
|
|
39
|
+
}
|
|
40
|
+
.ui-dashboard-summary-item {
|
|
41
|
+
position: relative;
|
|
42
|
+
width: 100%;
|
|
43
|
+
margin-left: 15px;
|
|
44
|
+
padding: 15px;
|
|
45
|
+
background-color: #fff;
|
|
46
|
+
border-radius: 8px;
|
|
47
|
+
}
|
|
48
|
+
.ui-dashboard-summary-item .ds-head h3 {
|
|
49
|
+
display: inline-block;
|
|
50
|
+
position: relative;
|
|
51
|
+
font-size: 14px;
|
|
52
|
+
}
|
|
53
|
+
.ui-dashboard-summary-item.alarm .ds-head h3::after {
|
|
54
|
+
content: '';
|
|
55
|
+
position: absolute;
|
|
56
|
+
top: 0;
|
|
57
|
+
right: -12px;
|
|
58
|
+
width: 6px;
|
|
59
|
+
height: 6px;
|
|
60
|
+
background-color: var(--error-txt-color);
|
|
61
|
+
border-radius: 100%;
|
|
62
|
+
}
|
|
63
|
+
.ui-dashboard-summary-item .ds-cont {
|
|
64
|
+
margin-top: 15px;
|
|
65
|
+
}
|
|
66
|
+
.ui-dashboard-summary.sticky {
|
|
67
|
+
top: 60px;
|
|
68
|
+
left: 250px;
|
|
69
|
+
right: 0;
|
|
70
|
+
padding: 0 30px;
|
|
71
|
+
border-radius: 0;
|
|
72
|
+
}
|
|
73
|
+
.nav-hide .ui-dashboard-summary.sticky {
|
|
74
|
+
left: 20px;
|
|
75
|
+
}
|
|
76
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-head {
|
|
77
|
+
display: none;
|
|
78
|
+
}
|
|
79
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-list {
|
|
80
|
+
padding: 12px 24px;
|
|
81
|
+
}
|
|
82
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item:first-of-type {
|
|
83
|
+
margin-left: 0;
|
|
84
|
+
padding: 0;
|
|
85
|
+
}
|
|
86
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item {
|
|
87
|
+
margin-left: 20px;
|
|
88
|
+
padding: 0 0 0 20px;
|
|
89
|
+
background-color: transparent;
|
|
90
|
+
}
|
|
91
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item:first-of-type::before {
|
|
92
|
+
display: none;
|
|
93
|
+
}
|
|
94
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item::before {
|
|
95
|
+
content: '';
|
|
96
|
+
position: absolute;
|
|
97
|
+
top: 4px;
|
|
98
|
+
left: 0;
|
|
99
|
+
bottom: 4px;
|
|
100
|
+
border-left: 1px solid #dbc982;
|
|
101
|
+
}
|
|
102
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item .ds-cont {
|
|
103
|
+
margin-top: 5px;
|
|
104
|
+
}
|
|
105
|
+
.ui-dashboard-summary.sticky .ui-dashboard-summary-item .ds-head h3 {
|
|
106
|
+
font-size: 12px;
|
|
107
|
+
}
|
|
108
|
+
.ui-dashboard-summary.sticky .ds-cont-item + .ds-cont-item {
|
|
109
|
+
margin-top: 4px;
|
|
110
|
+
}
|
|
111
|
+
.ui-dashboard-summary.sticky .ds-cont-item .value .num-link {
|
|
112
|
+
font-size: 14px;
|
|
113
|
+
}
|
|
114
|
+
.ds-cont-item {
|
|
115
|
+
display: flex;
|
|
116
|
+
justify-content: space-between;
|
|
117
|
+
align-items: center;
|
|
118
|
+
}
|
|
119
|
+
.ds-cont-item + .ds-cont-item {
|
|
120
|
+
margin-top: 8px;
|
|
121
|
+
}
|
|
122
|
+
.ds-cont-item .value {
|
|
123
|
+
font-size: 16px;
|
|
124
|
+
font-weight: bold;
|
|
125
|
+
color: #666;
|
|
126
|
+
}
|
|
127
|
+
.ds-cont-item .value .num-link {
|
|
128
|
+
color: var(--point-txt-color);
|
|
129
|
+
text-decoration: underline;
|
|
130
|
+
}
|
|
131
|
+
.ui-dashboard-list {
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
.ui-dashboard-list .ui-dashboard-pos-set {
|
|
135
|
+
margin-top: 30px;
|
|
136
|
+
text-align: right;
|
|
137
|
+
}
|
|
138
|
+
.ui-dashboard-pos-set .btn-pos {
|
|
139
|
+
display: inline-block;
|
|
140
|
+
position: relative;
|
|
141
|
+
height: 36px;
|
|
142
|
+
line-height: 36px;
|
|
143
|
+
padding: 0 15px 0 36px;
|
|
144
|
+
background-color: #253349;
|
|
145
|
+
border-radius: 36px;
|
|
146
|
+
font-size: 13px;
|
|
147
|
+
font-weight: bold;
|
|
148
|
+
color: #fff;
|
|
149
|
+
}
|
|
150
|
+
.ui-dashboard-pos-set .btn-pos::before {
|
|
151
|
+
content: '';
|
|
152
|
+
position: absolute;
|
|
153
|
+
top: 8px;
|
|
154
|
+
left: 10px;
|
|
155
|
+
width: 20px;
|
|
156
|
+
height: 20px;
|
|
157
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M9.38764 3.21926C9.66501 2.92691 10.335 2.92691 10.6124 3.21926L14.8971 7.73539C15.1827 8.0364 14.8399 8.41935 14.2848 8.41935H5.71523C5.16014 8.41935 4.81728 8.0364 5.10287 7.73539L9.38764 3.21926Z' fill='%23ffffff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.6124 16.7807C10.335 17.0731 9.66501 17.0731 9.38764 16.7807L5.10287 12.2646C4.81728 11.9636 5.16014 11.5806 5.71523 11.5806L14.2848 11.5806C14.8399 11.5806 15.1827 11.9636 14.8971 12.2646L10.6124 16.7807Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
|
158
|
+
}
|
|
159
|
+
.ui-dashboard-item:first-of-type {
|
|
160
|
+
margin-top: 0;
|
|
161
|
+
}
|
|
162
|
+
.ui-dashboard-item {
|
|
163
|
+
margin-top: 30px;
|
|
164
|
+
}
|
|
165
|
+
.ui-dashboard-item-head {
|
|
166
|
+
display: flex;
|
|
167
|
+
align-items: center;
|
|
168
|
+
position: relative;
|
|
169
|
+
width: 100%;
|
|
170
|
+
padding: 0 5px;
|
|
171
|
+
}
|
|
172
|
+
.ui-dashboard-item-head h2 {
|
|
173
|
+
font-size: 18px;
|
|
174
|
+
}
|
|
175
|
+
.ui-dashboard-item-head .btn-direct-link {
|
|
176
|
+
width: 20px;
|
|
177
|
+
height: 20px;
|
|
178
|
+
margin-left: 10px;
|
|
179
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M2 0.000244141C0.895431 0.000244141 0 0.895675 0 2.00024V14.0002C0 15.1048 0.895431 16.0002 2 16.0002H14C15.1046 16.0002 16 15.1048 16 14.0002V2.00024C16 0.895675 15.1046 0.000244141 14 0.000244141H2ZM5.87869 10.8287C5.68343 11.0239 5.36684 11.0239 5.17158 10.8287C4.97632 10.6334 4.97632 10.3168 5.17158 10.1216L9.26778 6.02538L6.50005 6.02538C6.22391 6.02538 6.00005 5.80153 6.00005 5.52538C6.00005 5.24924 6.22391 5.02538 6.50005 5.02538L10.4749 5.02538C10.751 5.02538 10.9749 5.24924 10.9749 5.52538V9.50026C10.9749 9.7764 10.751 10.0003 10.4749 10.0003C10.1987 10.0003 9.97488 9.7764 9.97488 9.50026L9.97488 6.73249L5.87869 10.8287Z' fill='%23464646'/%3E%3C/svg%3E");
|
|
180
|
+
background-size: 20px 20px;
|
|
181
|
+
}
|
|
182
|
+
.ui-dashboard-item-head .s-date {
|
|
183
|
+
position: absolute;
|
|
184
|
+
bottom: 0;
|
|
185
|
+
right: 10px;
|
|
186
|
+
}
|
|
187
|
+
.ui-dashboard-item-cont {
|
|
188
|
+
margin-top: 10px;
|
|
189
|
+
}
|
|
190
|
+
.ui-acc-app-item:first-of-type {
|
|
191
|
+
margin-left: 0;
|
|
192
|
+
}
|
|
193
|
+
.ui-acc-app-item {
|
|
194
|
+
position: relative;
|
|
195
|
+
width: 100%;
|
|
196
|
+
margin-left: 20px;
|
|
197
|
+
padding: 15px;
|
|
198
|
+
border: 1px solid var(--bd2-color);
|
|
199
|
+
background-color: #fff;
|
|
200
|
+
border-radius: 10px;
|
|
201
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
202
|
+
}
|
|
203
|
+
.ui-acc-app-item::after {
|
|
204
|
+
content: '';
|
|
205
|
+
position: absolute;
|
|
206
|
+
top: 20px;
|
|
207
|
+
right: 20px;
|
|
208
|
+
width: 46px;
|
|
209
|
+
height: 46px;
|
|
210
|
+
background-size: 24px 24px;
|
|
211
|
+
background-repeat: no-repeat;
|
|
212
|
+
background-position: 50% 50%;
|
|
213
|
+
border-radius: 100%;
|
|
214
|
+
}
|
|
215
|
+
.ui-acc-app-item.payer::after {
|
|
216
|
+
background-color: #287eff;
|
|
217
|
+
background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 2C7.44772 2 7 2.44771 7 3V45C7 45.5523 7.44772 46 8 46H19.8158V40.6327C19.8158 38.3221 21.6889 36.449 23.9994 36.449C26.31 36.449 28.1831 38.3221 28.1831 40.6327V46H40C40.5523 46 41 45.5523 41 45V3C41 2.44772 40.5523 2 40 2H8ZM12.2852 8H17.3056V13.0204H12.2852V8ZM12.2852 17.2041H17.3056V22.2245H12.2852V17.2041ZM17.3056 26.4082H12.2852V31.4286H17.3056V26.4082ZM21.4892 8H26.5096V13.0204H21.4892V8ZM26.5096 17.2041H21.4892V22.2245H26.5096V17.2041ZM21.4892 26.4082H26.5096V31.4286H21.4892V26.4082ZM35.7137 8H30.6933V13.0204H35.7137V8ZM30.6933 17.2041H35.7137V22.2245H30.6933V17.2041ZM35.7137 26.4082H30.6933V31.4286H35.7137V26.4082Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
|
218
|
+
}
|
|
219
|
+
.ui-acc-app-item.seller::after {
|
|
220
|
+
background-color: #355d9c;
|
|
221
|
+
background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='10.5' r='8.5' fill='%23ffffff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.8447 20.7592C22.5496 20.6642 23.2691 20.6152 24 20.6152C24.7831 20.6152 25.5532 20.6715 26.3062 20.7802V23.1535C26.3062 24.3856 25.3074 25.3843 24.0754 25.3843C22.8434 25.3843 21.8447 24.3856 21.8447 23.1535V20.7592ZM28.3062 21.2014V23.1535C28.3062 24.5077 27.67 25.7133 26.6802 26.4876L28.1395 43.9997L28.3062 45.9997H26.2993H21.8516H19.8447L20.0113 43.9997L21.4707 26.4876C20.4809 25.7133 19.8447 24.5077 19.8447 23.1535V21.1601C13.0227 22.9897 8 29.2159 8 36.6152V45.5021C8 45.777 8.22284 45.9998 8.49774 45.9998H39.5023C39.7772 45.9998 40 45.777 40 45.5021V36.6152C40 29.2706 35.0512 23.0818 28.3062 21.2014ZM23.3772 27.692L22.0183 43.9997H26.1326L24.7736 27.692H23.3772Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
|
222
|
+
}
|
|
223
|
+
.ui-acc-app-item.medical::after {
|
|
224
|
+
background-color: #68dbf2;
|
|
225
|
+
background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24 46C36.1503 46 46 36.1503 46 24C46 11.8497 36.1503 2 24 2C11.8497 2 2 11.8497 2 24C2 36.1503 11.8497 46 24 46ZM19.7699 11.3071H28.2314V19.7679H36.6958V28.2294H28.2314V36.6917H19.7699V28.2294H11.3112V19.7679H19.7699V11.3071Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
|
226
|
+
}
|
|
227
|
+
.ui-acc-app-item.developer::after {
|
|
228
|
+
background-color: #ffcc00;
|
|
229
|
+
background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 8C2.44772 8 2 8.44772 2 9V39C2 39.5523 2.44771 40 3 40H45C45.5523 40 46 39.5523 46 39V9C46 8.44772 45.5523 8 45 8H3ZM27.9023 13.3274C28.6804 13.6117 29.0807 14.473 28.7964 15.2511L22.0272 33.7774C21.7429 34.5555 20.8816 34.9559 20.1035 34.6715C19.3254 34.3872 18.9251 33.526 19.2094 32.7479L25.9786 14.2215C26.2629 13.4434 27.1242 13.0431 27.9023 13.3274ZM17.4438 18.3269C18.031 17.7425 18.0332 16.7927 17.4489 16.2056C16.8645 15.6184 15.9147 15.6161 15.3276 16.2005L8.55832 22.9373C8.27546 23.2188 8.11644 23.6014 8.11644 24.0005C8.11644 24.3996 8.27546 24.7822 8.55832 25.0637L15.3276 31.8006C15.9147 32.3849 16.8645 32.3827 17.4489 31.7955C18.0332 31.2083 18.031 30.2585 17.4438 29.6742L11.7429 24.0005L17.4438 18.3269ZM32.6743 16.2005C32.0872 15.6161 31.1374 15.6184 30.553 16.2056C29.9687 16.7927 29.9709 17.7425 30.5581 18.3269L36.259 24.0005L30.5581 29.6742C29.9709 30.2585 29.9687 31.2083 30.553 31.7955C31.1374 32.3827 32.0872 32.3849 32.6743 31.8006L39.4436 25.0637C39.7264 24.7822 39.8855 24.3996 39.8855 24.0005C39.8855 23.6014 39.7264 23.2188 39.4436 22.9373L32.6743 16.2005Z' fill='%23ffffff'/%3E%3C/svg%3E");
|
|
230
|
+
}
|
|
231
|
+
.aa-head h3 {
|
|
232
|
+
display: inline-block;
|
|
233
|
+
position: relative;
|
|
234
|
+
font-size: 13px;
|
|
235
|
+
font-weight: bold;
|
|
236
|
+
}
|
|
237
|
+
.ui-acc-app-item.alarm .aa-head h3::after {
|
|
238
|
+
content: '';
|
|
239
|
+
position: absolute;
|
|
240
|
+
top: 0;
|
|
241
|
+
right: -12px;
|
|
242
|
+
width: 6px;
|
|
243
|
+
height: 6px;
|
|
244
|
+
background-color: var(--error-txt-color);
|
|
245
|
+
border-radius: 100%;
|
|
246
|
+
}
|
|
247
|
+
.aa-cont {
|
|
248
|
+
display: flex;
|
|
249
|
+
margin-top: 10px;
|
|
250
|
+
}
|
|
251
|
+
.aa-cont-item:first-of-type {
|
|
252
|
+
margin-left: 0;
|
|
253
|
+
}
|
|
254
|
+
.aa-cont-item {
|
|
255
|
+
margin-left: 40px;
|
|
256
|
+
}
|
|
257
|
+
.aa-cont-item .lb, .aa-cont-item .value {
|
|
258
|
+
display: block;
|
|
259
|
+
text-align: center;
|
|
260
|
+
}
|
|
261
|
+
.aa-cont-item .lb {
|
|
262
|
+
font-size: 15px;
|
|
263
|
+
font-weight: bold;
|
|
264
|
+
}
|
|
265
|
+
.aa-cont-item .value {
|
|
266
|
+
margin-top: 10px;
|
|
267
|
+
}
|
|
268
|
+
.aa-cont-item .value .num-link {
|
|
269
|
+
font-size: 18px;
|
|
270
|
+
font-weight: bold;
|
|
271
|
+
color: var(--point-txt-color);
|
|
272
|
+
text-decoration: underline;
|
|
273
|
+
}
|
|
274
|
+
.ui-dashboard-item-box {
|
|
275
|
+
position: relative;
|
|
276
|
+
padding: 20px;
|
|
277
|
+
border: 1px solid var(--bd2-color);
|
|
278
|
+
background-color: #fff;
|
|
279
|
+
border-radius: 10px;
|
|
280
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
281
|
+
}
|
|
282
|
+
.member-chart-item {
|
|
283
|
+
position: relative;
|
|
284
|
+
padding: 20px;
|
|
285
|
+
border: 1px solid var(--bd2-color);
|
|
286
|
+
background-color: #fff;
|
|
287
|
+
border-radius: 8px;
|
|
288
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
289
|
+
}
|
|
290
|
+
.member-chart-item:first-of-type {
|
|
291
|
+
margin-left: 0;
|
|
292
|
+
}
|
|
293
|
+
.member-chart-item.period {
|
|
294
|
+
margin-left: 20px;
|
|
295
|
+
}
|
|
296
|
+
.member-chart-item-head {
|
|
297
|
+
position: relative;
|
|
298
|
+
}
|
|
299
|
+
.member-chart-item-head h3 {
|
|
300
|
+
font-size: 14px;
|
|
301
|
+
}
|
|
302
|
+
.member-chart-item-head .ui-radio-switch {
|
|
303
|
+
position: absolute;
|
|
304
|
+
top: -10px;
|
|
305
|
+
right: 0;
|
|
306
|
+
}
|
|
307
|
+
.member-chart-item-head .abs {
|
|
308
|
+
position: absolute;
|
|
309
|
+
bottom: 0;
|
|
310
|
+
right: 0;
|
|
311
|
+
}
|
|
312
|
+
.member-chart-item-head .num-link {
|
|
313
|
+
color: var(--point-txt-color);
|
|
314
|
+
text-decoration: underline;
|
|
315
|
+
}
|
|
316
|
+
.member-chart-item-cont {
|
|
317
|
+
margin-top: 10px;
|
|
318
|
+
}
|
|
319
|
+
.ui-dashboard-member-count {
|
|
320
|
+
margin-top: 20px;
|
|
321
|
+
}
|
|
322
|
+
.member-count-item:first-of-type {
|
|
323
|
+
margin-left: 0;
|
|
324
|
+
}
|
|
325
|
+
.member-count-item {
|
|
326
|
+
width: 100%;
|
|
327
|
+
margin-left: 20px;
|
|
328
|
+
}
|
|
329
|
+
.member-count-item-head {
|
|
330
|
+
position: relative;
|
|
331
|
+
padding-left: 45px;
|
|
332
|
+
}
|
|
333
|
+
.member-count-item-head::before {
|
|
334
|
+
content: '';
|
|
335
|
+
position: absolute;
|
|
336
|
+
top: -5px;
|
|
337
|
+
left: 5px;
|
|
338
|
+
width: 30px;
|
|
339
|
+
height: 30px;
|
|
340
|
+
background-color: #e4ecf7;
|
|
341
|
+
border-radius: 100%;
|
|
342
|
+
background-size: 16px 16px;
|
|
343
|
+
background-position: 50% 50%;
|
|
344
|
+
background-repeat: no-repeat;
|
|
345
|
+
}
|
|
346
|
+
.member-count-item-head.member::before {
|
|
347
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.25 14C1.25 14 0.25 14 0.25 13C0.25 12 1.25 9 6.25 9C11.25 9 12.25 12 12.25 13C12.25 14 11.25 14 11.25 14H1.25Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.25 8C7.90685 8 9.25 6.65685 9.25 5C9.25 3.34315 7.90685 2 6.25 2C4.59315 2 3.25 3.34315 3.25 5C3.25 6.65685 4.59315 8 6.25 8Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.25 9.5C13.25 9.22386 13.4739 9 13.75 9H15.75C16.0261 9 16.25 9.22386 16.25 9.5C16.25 9.77614 16.0261 10 15.75 10H13.75C13.4739 10 13.25 9.77614 13.25 9.5Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.25 6.5C11.25 6.22386 11.4739 6 11.75 6H15.75C16.0261 6 16.25 6.22386 16.25 6.5C16.25 6.77614 16.0261 7 15.75 7H11.75C11.4739 7 11.25 6.77614 11.25 6.5Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.25 3.5C11.25 3.22386 11.4739 3 11.75 3H15.75C16.0261 3 16.25 3.22386 16.25 3.5C16.25 3.77614 16.0261 4 15.75 4H11.75C11.4739 4 11.25 3.77614 11.25 3.5Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.25 12.5C13.25 12.2239 13.4739 12 13.75 12H15.75C16.0261 12 16.25 12.2239 16.25 12.5C16.25 12.7761 16.0261 13 15.75 13H13.75C13.4739 13 13.25 12.7761 13.25 12.5Z' fill='black'/%3E%3C/svg%3E");
|
|
348
|
+
}
|
|
349
|
+
.member-count-item-head.company::before {
|
|
350
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.0129 0.0746751C15.1603 0.15778 15.25 0.326712 15.25 0.500001V15.5C15.25 15.7761 15.0261 16 14.75 16H11.75C11.4739 16 11.25 15.7761 11.25 15.5V14H10.25V15.5C10.25 15.7761 10.0261 16 9.75 16H0.75C0.473858 16 0.25 15.7761 0.25 15.5V10C0.25 9.78479 0.387715 9.59372 0.591886 9.52566L6.25 7.63962V4.5C6.25 4.31061 6.357 4.13748 6.52639 4.05279L14.5264 0.0527869C14.6814 -0.0247102 14.8655 -0.0164282 15.0129 0.0746751ZM6.25 8.69371L1.25 10.3604V15H6.25V8.69371ZM7.25 15H9.25V13.5C9.25 13.2239 9.47386 13 9.75 13H11.75C12.0261 13 12.25 13.2239 12.25 13.5V15H14.25V1.30902L7.25 4.80902V15Z' fill='black'/%3E%3Cpath d='M2.25 11H3.25V12H2.25V11Z' fill='black'/%3E%3Cpath d='M4.25 11H5.25V12H4.25V11Z' fill='black'/%3E%3Cpath d='M2.25 13H3.25V14H2.25V13Z' fill='black'/%3E%3Cpath d='M4.25 13H5.25V14H4.25V13Z' fill='black'/%3E%3Cpath d='M8.25 9H9.25V10H8.25V9Z' fill='black'/%3E%3Cpath d='M10.25 9H11.25V10H10.25V9Z' fill='black'/%3E%3Cpath d='M8.25 11H9.25V12H8.25V11Z' fill='black'/%3E%3Cpath d='M10.25 11H11.25V12H10.25V11Z' fill='black'/%3E%3Cpath d='M12.25 9H13.25V10H12.25V9Z' fill='black'/%3E%3Cpath d='M12.25 11H13.25V12H12.25V11Z' fill='black'/%3E%3Cpath d='M8.25 7H9.25V8H8.25V7Z' fill='black'/%3E%3Cpath d='M10.25 7H11.25V8H10.25V7Z' fill='black'/%3E%3Cpath d='M12.25 7H13.25V8H12.25V7Z' fill='black'/%3E%3Cpath d='M8.25 5H9.25V6H8.25V5Z' fill='black'/%3E%3Cpath d='M10.25 5H11.25V6H10.25V5Z' fill='black'/%3E%3Cpath d='M12.25 5H13.25V6H12.25V5Z' fill='black'/%3E%3Cpath d='M12.25 3H13.25V4H12.25V3Z' fill='black'/%3E%3C/svg%3E");
|
|
351
|
+
}
|
|
352
|
+
.member-count-item-head.data::before {
|
|
353
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.25 0.000244141H1.25V16.0002H0.25V0.000244141Z' fill='black'/%3E%3Cpath d='M1.25 15.0002H16.25V16.0002H1.25V15.0002Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.25 10.0002L3.25 11.0002L6.25 7.00024L9.25 9.00024L12.25 3.00024L15.25 6.00024V14.0002H2.25V10.0002Z' fill='black'/%3E%3C/svg%3E%0A");
|
|
354
|
+
}
|
|
355
|
+
.member-count-item-head h3 {
|
|
356
|
+
font-size: 14px;
|
|
357
|
+
}
|
|
358
|
+
.member-count-item-cont {
|
|
359
|
+
margin-top: 10px;
|
|
360
|
+
padding: 20px;
|
|
361
|
+
border: 1px solid var(--bd2-color);
|
|
362
|
+
background-color: #fff;
|
|
363
|
+
border-radius: 8px;
|
|
364
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
365
|
+
}
|
|
366
|
+
.member-count-sub-item {
|
|
367
|
+
position: relative;
|
|
368
|
+
width: 100%;
|
|
369
|
+
}
|
|
370
|
+
.member-count-sub-item + .member-count-sub-item {
|
|
371
|
+
margin-left: 30px;
|
|
372
|
+
padding-left: 30px;
|
|
373
|
+
}
|
|
374
|
+
.member-count-sub-item + .member-count-sub-item::before {
|
|
375
|
+
content: '';
|
|
376
|
+
position: absolute;
|
|
377
|
+
top: 0;
|
|
378
|
+
left: 0;
|
|
379
|
+
bottom: 0;
|
|
380
|
+
width: 1px;
|
|
381
|
+
background-color: var(--bd2-color);
|
|
382
|
+
}
|
|
383
|
+
.member-count-sub-item-head h4 {
|
|
384
|
+
display: inline-block;
|
|
385
|
+
height: 30px;
|
|
386
|
+
line-height: 30px;
|
|
387
|
+
padding: 0 20px;
|
|
388
|
+
background-color: #edf2f7;
|
|
389
|
+
border-radius: 30px;
|
|
390
|
+
font-size: 13px;
|
|
391
|
+
}
|
|
392
|
+
.member-count-sub-item-cont {
|
|
393
|
+
margin-top: 10px;
|
|
394
|
+
padding: 0 10px;
|
|
395
|
+
}
|
|
396
|
+
.ms-cont-item:first-of-type {
|
|
397
|
+
margin-top: 0;
|
|
398
|
+
}
|
|
399
|
+
.ms-cont-item {
|
|
400
|
+
margin-top: 8px;
|
|
401
|
+
}
|
|
402
|
+
.ms-cont-item .value {
|
|
403
|
+
color: var(--error-txt-color);
|
|
404
|
+
}
|
|
405
|
+
.ui-sales-con + .ui-sales-con {
|
|
406
|
+
margin-top: 20px;
|
|
407
|
+
}
|
|
408
|
+
.ui-sales-con-item:first-of-type {
|
|
409
|
+
margin-left: 0;
|
|
410
|
+
}
|
|
411
|
+
.ui-sales-con-item {
|
|
412
|
+
width: 100%;
|
|
413
|
+
margin-left: 20px;
|
|
414
|
+
}
|
|
415
|
+
.ui-sales-con-item-head {
|
|
416
|
+
padding: 0 5px;
|
|
417
|
+
}
|
|
418
|
+
.ui-sales-con-item-head h3 {
|
|
419
|
+
font-size: 14px;
|
|
420
|
+
}
|
|
421
|
+
.ui-sales-con-item-cont {
|
|
422
|
+
margin-top: 10px;
|
|
423
|
+
padding: 15px 30px;
|
|
424
|
+
background-color: #edf2f7;
|
|
425
|
+
border-radius: 8px;
|
|
426
|
+
}
|
|
427
|
+
.sales-sum-item .sum-item {
|
|
428
|
+
text-align: right;
|
|
429
|
+
}
|
|
430
|
+
.sales-sum-item .sum-item .lb, .sales-sum-item .sum-item .value {
|
|
431
|
+
display: block;
|
|
432
|
+
}
|
|
433
|
+
.sales-sum-item .sum-item .value {
|
|
434
|
+
margin-top: 5px;
|
|
435
|
+
}
|
|
436
|
+
.sales-sum-item .sum-item .value.total {
|
|
437
|
+
font-size: 15px;
|
|
438
|
+
font-weight: bold;
|
|
439
|
+
color: var(--error-txt-color);
|
|
440
|
+
}
|
|
441
|
+
.sales-sum-item .sum-unit {
|
|
442
|
+
width: 100px;
|
|
443
|
+
height: 24px;
|
|
444
|
+
background-position: 50% 50%;
|
|
445
|
+
background-size: 24px 24px;
|
|
446
|
+
background-repeat: no-repeat;
|
|
447
|
+
}
|
|
448
|
+
.sales-sum-item .sum-unit.minus {
|
|
449
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.25 15C12.116 15 15.25 11.866 15.25 8C15.25 4.13401 12.116 1 8.25 1C4.38401 1 1.25 4.13401 1.25 8C1.25 11.866 4.38401 15 8.25 15ZM8.25 16C12.6683 16 16.25 12.4183 16.25 8C16.25 3.58172 12.6683 0 8.25 0C3.83172 0 0.25 3.58172 0.25 8C0.25 12.4183 3.83172 16 8.25 16Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.25 8C4.25 7.72386 4.47386 7.5 4.75 7.5H11.75C12.0261 7.5 12.25 7.72386 12.25 8C12.25 8.27614 12.0261 8.5 11.75 8.5H4.75C4.47386 8.5 4.25 8.27614 4.25 8Z' fill='black'/%3E%3C/svg%3E");
|
|
450
|
+
}
|
|
451
|
+
.sales-sum-item .sum-unit.eq {
|
|
452
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 9.5C4 9.22386 4.22386 9 4.5 9H11.5C11.7761 9 12 9.22386 12 9.5C12 9.77614 11.7761 10 11.5 10H4.5C4.22386 10 4 9.77614 4 9.5Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 6.5C4 6.22386 4.22386 6 4.5 6H11.5C11.7761 6 12 6.22386 12 6.5C12 6.77614 11.7761 7 11.5 7H4.5C4.22386 7 4 6.77614 4 6.5Z' fill='black'/%3E%3C/svg%3E");
|
|
453
|
+
}
|
|
454
|
+
.is-sales-sum {
|
|
455
|
+
margin-top: 10px;
|
|
456
|
+
padding-top: 10px;
|
|
457
|
+
border-top: 1px solid #ced7e1;
|
|
458
|
+
text-align: right;
|
|
459
|
+
}
|
|
460
|
+
.is-sales-sum .arrow {
|
|
461
|
+
display: inline-block;
|
|
462
|
+
width: 18px;
|
|
463
|
+
height: 18px;
|
|
464
|
+
background-position: 50% 50%;
|
|
465
|
+
background-repeat: no-repeat;
|
|
466
|
+
background-size: 10px 10px;
|
|
467
|
+
}
|
|
468
|
+
.is-sales-sum .arrow.up {
|
|
469
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M7.02158 1.56691C7.46546 0.811681 8.53763 0.811681 8.98151 1.56691L15.8385 13.2336C16.2955 14.0112 15.7468 15.0005 14.8585 15.0005H1.14459C0.256279 15.0005 -0.292407 14.0112 0.14626 13.2336L7.02158 1.56691Z' fill='%23ff3232'/%3E%3C/svg%3E");
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.is-sales-sum .arrow.down {
|
|
473
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M7.02158 1.56691C7.46546 0.811681 8.53763 0.811681 8.98151 1.56691L15.8385 13.2336C16.2955 14.0112 15.7468 15.0005 14.8585 15.0005H1.14459C0.256279 15.0005 -0.292407 14.0112 0.14626 13.2336L7.02158 1.56691Z' fill='%23287eff'/%3E%3C/svg%3E");
|
|
474
|
+
transform: rotate(180deg);
|
|
475
|
+
}
|
|
476
|
+
.ui-sales-con > * + * {
|
|
477
|
+
margin-left: 20px;
|
|
478
|
+
}
|
|
479
|
+
.ui-sales-chart-head {
|
|
480
|
+
display: flex;
|
|
481
|
+
position: relative;
|
|
482
|
+
}
|
|
483
|
+
.ui-sales-chart-head .s-date {
|
|
484
|
+
position: absolute;
|
|
485
|
+
bottom: 0;
|
|
486
|
+
right: 10px;
|
|
487
|
+
}
|
|
488
|
+
.ui-sales-list-head h3, .ui-sales-chart-head h3 {
|
|
489
|
+
padding: 0 5px;
|
|
490
|
+
font-size: 14px;
|
|
491
|
+
}
|
|
492
|
+
.ui-sales-list-cont, .ui-sales-chart-cont {
|
|
493
|
+
position: relative;
|
|
494
|
+
margin-top: 10px;
|
|
495
|
+
padding: 20px;
|
|
496
|
+
border: 1px solid var(--bd2-color);
|
|
497
|
+
background-color: #fff;
|
|
498
|
+
border-radius: 8px;
|
|
499
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
500
|
+
}
|
|
501
|
+
.ui-sales-list-item + .ui-sales-list-item {
|
|
502
|
+
margin-top: 15px;
|
|
503
|
+
}
|
|
504
|
+
.ui-sales-list-item .sl-head h4 {
|
|
505
|
+
display: inline-block;
|
|
506
|
+
height: 30px;
|
|
507
|
+
line-height: 30px;
|
|
508
|
+
padding: 0 20px;
|
|
509
|
+
background-color: #edf2f7;
|
|
510
|
+
border-radius: 30px;
|
|
511
|
+
font-size: 13px;
|
|
512
|
+
}
|
|
513
|
+
.ui-sales-list-item .sl-cont {
|
|
514
|
+
margin-top: 10px;
|
|
515
|
+
padding: 0 10px;
|
|
516
|
+
}
|
|
517
|
+
.ui-sales-list-item .sl-item + .sl-item {
|
|
518
|
+
margin-top: 8px;
|
|
519
|
+
}
|
|
520
|
+
.ui-sales-list-item .sl-item {
|
|
521
|
+
display: flex;
|
|
522
|
+
justify-content: space-between;
|
|
523
|
+
}
|
|
524
|
+
.sl-item .value .plus, .sl-item .value .minus {
|
|
525
|
+
display: inline-block;
|
|
526
|
+
position: relative;
|
|
527
|
+
padding-left: 16px;
|
|
528
|
+
}
|
|
529
|
+
.sl-item .value .plus::before, .sl-item .value .minus::before {
|
|
530
|
+
content: '';
|
|
531
|
+
position: absolute;
|
|
532
|
+
top: 1px;
|
|
533
|
+
left: 0;
|
|
534
|
+
width: 16px;
|
|
535
|
+
height: 16px;
|
|
536
|
+
background-size: 16px 16px;
|
|
537
|
+
}
|
|
538
|
+
.sl-item .value .plus::before {
|
|
539
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.25 4C8.52614 4 8.75 4.22386 8.75 4.5V7.5H11.75C12.0261 7.5 12.25 7.72386 12.25 8C12.25 8.27614 12.0261 8.5 11.75 8.5H8.75V11.5C8.75 11.7761 8.52614 12 8.25 12C7.97386 12 7.75 11.7761 7.75 11.5V8.5H4.75C4.47386 8.5 4.25 8.27614 4.25 8C4.25 7.72386 4.47386 7.5 4.75 7.5H7.75V4.5C7.75 4.22386 7.97386 4 8.25 4Z' fill='%23ff3232'/%3E%3C/svg%3E");
|
|
540
|
+
}
|
|
541
|
+
.sl-item .value .minus::before {
|
|
542
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.25 8C4.25 7.72386 4.47386 7.5 4.75 7.5H11.75C12.0261 7.5 12.25 7.72386 12.25 8C12.25 8.27614 12.0261 8.5 11.75 8.5H4.75C4.47386 8.5 4.25 8.27614 4.25 8Z' fill='%23287eff'/%3E%3C/svg%3E");
|
|
543
|
+
}
|
|
544
|
+
.ui-sales-list-total {
|
|
545
|
+
display: flex;
|
|
546
|
+
justify-content: space-between;
|
|
547
|
+
margin-top: 15px;
|
|
548
|
+
padding: 15px 10px 0;
|
|
549
|
+
border-top: 1px solid var(--bd2-color);
|
|
550
|
+
font-weight: bold;
|
|
551
|
+
}
|
|
552
|
+
.ui-sales-list-total .value {
|
|
553
|
+
color: var(--error-txt-color)
|
|
554
|
+
}
|
|
555
|
+
.ui-sales-chart-cont {
|
|
556
|
+
position: relative;
|
|
557
|
+
height: calc(100% - 31px);
|
|
558
|
+
min-height: 300px;
|
|
559
|
+
}
|
|
560
|
+
.ui-sales-chart-cont .ui-radio-switch {
|
|
561
|
+
position: absolute;
|
|
562
|
+
top: 10px;
|
|
563
|
+
right: 10px;
|
|
564
|
+
}
|
|
565
|
+
.ui-sales-chart-cont .ui-chart {
|
|
566
|
+
position: absolute;
|
|
567
|
+
top: 50px;
|
|
568
|
+
left: 20px;
|
|
569
|
+
right: 20px;
|
|
570
|
+
bottom: 20px;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.ui-dashboard-item .s-date {
|
|
574
|
+
padding-left: 30px;
|
|
575
|
+
}
|
|
576
|
+
.ui-dashboard-item .s-date::before {
|
|
577
|
+
content: '';
|
|
578
|
+
position: absolute;
|
|
579
|
+
top: 1px;
|
|
580
|
+
left: 8px;
|
|
581
|
+
width: 16px;
|
|
582
|
+
height: 16px;
|
|
583
|
+
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 fill-rule='evenodd' clip-rule='evenodd' d='M5.5 3C5.22386 3 5 3.22386 5 3.5V4H4C3.44772 4 3 4.44772 3 5V6V7V12C3 12.5523 3.44772 13 4 13H12C12.5523 13 13 12.5523 13 12V7V6V5C13 4.44772 12.5523 4 12 4H11V3.5C11 3.22386 10.7761 3 10.5 3C10.2239 3 10 3.22386 10 3.5V4H6V3.5C6 3.22386 5.77614 3 5.5 3ZM12 6V5H4V6H12ZM4 7V12H12V7H4Z' fill='%23222222'/%3E%3C/svg%3E");
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.ui-bar-chart {
|
|
587
|
+
display: flex;
|
|
588
|
+
position: relative;
|
|
589
|
+
height: 100%;
|
|
590
|
+
padding-bottom: 20px;
|
|
591
|
+
}
|
|
592
|
+
.ui-bar-chart .ui-bar-x {
|
|
593
|
+
flex: 1;
|
|
594
|
+
border-bottom: 1px solid #d2d2d2;
|
|
595
|
+
}
|
|
596
|
+
.ui-bar-x .unit {
|
|
597
|
+
position: absolute;
|
|
598
|
+
bottom: -4px;
|
|
599
|
+
right: 0;
|
|
600
|
+
font-size: 12px;
|
|
601
|
+
}
|
|
602
|
+
.ui-bar-chart .ui-bar-y {
|
|
603
|
+
border-right: 1px solid #d2d2d2;
|
|
604
|
+
}
|
|
605
|
+
.ui-bar-y .unit {
|
|
606
|
+
position: absolute;
|
|
607
|
+
top: -3px;
|
|
608
|
+
left: 0;
|
|
609
|
+
font-size: 12px;
|
|
610
|
+
}
|
|
611
|
+
.ui-bar-x-unit {
|
|
612
|
+
display: flex;
|
|
613
|
+
height: 100%;
|
|
614
|
+
margin-right: 30px;
|
|
615
|
+
}
|
|
616
|
+
.ui-bar-x-unit li {
|
|
617
|
+
position: relative;
|
|
618
|
+
width: 100%;
|
|
619
|
+
text-align: center;
|
|
620
|
+
}
|
|
621
|
+
.ui-bar-x-unit li .bar {
|
|
622
|
+
position: absolute;
|
|
623
|
+
bottom: 0;
|
|
624
|
+
left: 25%;
|
|
625
|
+
width: 50%;
|
|
626
|
+
background-color: #ffcc00;
|
|
627
|
+
border-radius: 5px 5px 0 0;
|
|
628
|
+
cursor: pointer;
|
|
629
|
+
}
|
|
630
|
+
.ui-bar-x-unit li .bar .bar-tooltip {
|
|
631
|
+
display: none;
|
|
632
|
+
position: absolute;
|
|
633
|
+
top: -70px;
|
|
634
|
+
left: 50%;
|
|
635
|
+
padding: 10px;
|
|
636
|
+
border: 1px solid #d2d2d2;
|
|
637
|
+
background-color: #fff;
|
|
638
|
+
border-radius: 5px;
|
|
639
|
+
font-size: 11px;
|
|
640
|
+
color: #666;
|
|
641
|
+
transform: translateX(-50%);
|
|
642
|
+
z-index: 10;
|
|
643
|
+
}
|
|
644
|
+
.ui-bar-x-unit li .bar .bar-tooltip::after {
|
|
645
|
+
content: '';
|
|
646
|
+
position: absolute;
|
|
647
|
+
bottom: -5px;
|
|
648
|
+
left: 50%;
|
|
649
|
+
width: 8px;
|
|
650
|
+
height: 8px;
|
|
651
|
+
margin-left: -5px;
|
|
652
|
+
border-width: 1px 1px 0 0;
|
|
653
|
+
border-style: solid;
|
|
654
|
+
border-color: #d2d2d2;
|
|
655
|
+
background-color: #fff;
|
|
656
|
+
transform: rotate(135deg);
|
|
657
|
+
}
|
|
658
|
+
.ui-bar-x-unit li .bar:hover .bar-tooltip {
|
|
659
|
+
display: block;
|
|
660
|
+
}
|
|
661
|
+
.ui-bar-x-unit li .bar .bar-tooltip .t-sales-num {
|
|
662
|
+
display: block;
|
|
663
|
+
margin-top: 3px;
|
|
664
|
+
font-size: 12px;
|
|
665
|
+
color: var(--error-txt-color);
|
|
666
|
+
}
|
|
667
|
+
.ui-bar-x-unit li .bar .bar-tooltip .t-count {
|
|
668
|
+
padding-left: 3px;
|
|
669
|
+
font-weight: bold;
|
|
670
|
+
color: var(--point-txt-color);
|
|
671
|
+
}
|
|
672
|
+
.ui-bar-x-unit li .x-value, .ui-bar-x-unit li .x-value {
|
|
673
|
+
position: absolute;
|
|
674
|
+
bottom: -26px;
|
|
675
|
+
left: 0;
|
|
676
|
+
width: 100%;
|
|
677
|
+
text-align: center;
|
|
678
|
+
}
|
|
679
|
+
.ui-bar-y-unit {
|
|
680
|
+
display: flex;
|
|
681
|
+
flex-direction: column;
|
|
682
|
+
align-items: flex-end;
|
|
683
|
+
justify-self: flex-end;
|
|
684
|
+
height: 100%;
|
|
685
|
+
}
|
|
686
|
+
.ui-bar-y-unit li {
|
|
687
|
+
display: flex;
|
|
688
|
+
flex-direction: column-reverse;
|
|
689
|
+
position: relative;
|
|
690
|
+
height: 100%;
|
|
691
|
+
padding-right: 20px;
|
|
692
|
+
line-height: 0;
|
|
693
|
+
}
|
|
694
|
+
.ui-bar-y-unit li::after {
|
|
695
|
+
content: '';
|
|
696
|
+
position: absolute;
|
|
697
|
+
bottom: 0;
|
|
698
|
+
right: 0;
|
|
699
|
+
width: 6px;
|
|
700
|
+
height: 1px;
|
|
701
|
+
background-color: #d2d2d2;
|
|
702
|
+
}
|
|
703
|
+
.ui-bar-y-unit li .bar {
|
|
704
|
+
background-color: #ffcc00;
|
|
705
|
+
border-radius: 0 5px 5px 0;
|
|
706
|
+
}
|
|
707
|
+
.ui-bar-chart.hor {
|
|
708
|
+
display: block;
|
|
709
|
+
}
|
|
710
|
+
.ui-bar-chart.hor .ui-bar-y {
|
|
711
|
+
display: flex;
|
|
712
|
+
height: 100%;
|
|
713
|
+
border: none;
|
|
714
|
+
}
|
|
715
|
+
.ui-bar-chart.hor .ui-bar-y-unit {
|
|
716
|
+
width: 100%;
|
|
717
|
+
}
|
|
718
|
+
.ui-bar-chart.hor .ui-bar-y-unit li {
|
|
719
|
+
flex-direction: unset;
|
|
720
|
+
align-items: center;
|
|
721
|
+
width: 100%;
|
|
722
|
+
line-height: normal;
|
|
723
|
+
padding-right: 0;
|
|
724
|
+
}
|
|
725
|
+
.ui-bar-chart.hor .ui-bar-y-unit li::after {
|
|
726
|
+
display: none;
|
|
727
|
+
}
|
|
728
|
+
.ui-bar-chart.hor .ui-bar-y-unit li .lb {
|
|
729
|
+
display: flex;
|
|
730
|
+
align-items: center;
|
|
731
|
+
justify-content: end;
|
|
732
|
+
position: relative;
|
|
733
|
+
width: 30%;
|
|
734
|
+
height: 100%;
|
|
735
|
+
padding-right: 14px;
|
|
736
|
+
text-align: right;
|
|
737
|
+
border-right: 1px solid #d2d2d2;
|
|
738
|
+
}
|
|
739
|
+
.ui-bar-chart.hor .ui-bar-y-unit li .graph {
|
|
740
|
+
display: block;
|
|
741
|
+
position: relative;
|
|
742
|
+
width: 70%;
|
|
743
|
+
height: 100%;
|
|
744
|
+
}
|
|
745
|
+
.ui-bar-chart.hor .ui-bar-y-unit li .graph .bar {
|
|
746
|
+
position: absolute;
|
|
747
|
+
top: 25%;
|
|
748
|
+
left: 0;
|
|
749
|
+
height: 50%;
|
|
750
|
+
border-radius: 0 5px 5px 0;
|
|
751
|
+
background-color: #ffcc00;
|
|
752
|
+
}
|
|
753
|
+
.ui-bar-chart.hor .ui-bar-x {
|
|
754
|
+
margin-left: 30%;
|
|
755
|
+
}
|
|
756
|
+
.ui-bar-chart.hor .ui-bar-x-unit {
|
|
757
|
+
margin-right: 0;
|
|
758
|
+
}
|
|
759
|
+
.ui-bar-chart.hor .ui-bar-x-unit li::before {
|
|
760
|
+
content: '';
|
|
761
|
+
position: absolute;
|
|
762
|
+
top: -6px;
|
|
763
|
+
left: 50%;
|
|
764
|
+
width: 1px;
|
|
765
|
+
height: 6px;
|
|
766
|
+
background-color: #d2d2d2;
|
|
767
|
+
}
|
|
768
|
+
.ui-dashboard-banners {
|
|
769
|
+
display: flex;
|
|
770
|
+
}
|
|
771
|
+
.dashboard-banner-item {
|
|
772
|
+
position: relative;
|
|
773
|
+
width: 100%;
|
|
774
|
+
height: 100px;
|
|
775
|
+
border-radius: 10px;
|
|
776
|
+
}
|
|
777
|
+
.dashboard-banner-item + .dashboard-banner-item {
|
|
778
|
+
margin-left: 20px;
|
|
779
|
+
}
|
|
780
|
+
.dashboard-banner-item img {
|
|
781
|
+
width: 100%;
|
|
782
|
+
}
|
|
783
|
+
.dashboard-banner-item .swiper-pagination {
|
|
784
|
+
position: absolute;
|
|
785
|
+
bottom: 10px;
|
|
786
|
+
left: 0;
|
|
787
|
+
width: 100%;
|
|
788
|
+
display: flex;
|
|
789
|
+
justify-content: center;
|
|
790
|
+
z-index: 10;
|
|
791
|
+
}
|
|
792
|
+
.dashboard-banner-item .swiper-pagination .swiper-pagination-bullet {
|
|
793
|
+
margin: 0 3px;
|
|
794
|
+
width: 8px;
|
|
795
|
+
height: 8px;
|
|
796
|
+
border-radius: 8px;
|
|
797
|
+
}
|
|
798
|
+
.dashboard-banner-item .swiper-pagination .swiper-pagination-bullet-active {
|
|
799
|
+
width: 20px;
|
|
800
|
+
background-color: #253349;
|
|
801
|
+
}
|
|
802
|
+
.ui-notice-list ul li {
|
|
803
|
+
display: flex;
|
|
804
|
+
}
|
|
805
|
+
.ui-notice-list ul li + li {
|
|
806
|
+
margin-top: 6px;
|
|
807
|
+
padding-top: 6px;
|
|
808
|
+
border-top: 1px solid #eee
|
|
809
|
+
}
|
|
810
|
+
.ui-notice-list ul li > * {
|
|
811
|
+
display: block;
|
|
812
|
+
overflow: hidden;
|
|
813
|
+
white-space: nowrap;
|
|
814
|
+
text-overflow: ellipsis;
|
|
815
|
+
-o-text-overflow: ellipsis;
|
|
816
|
+
-moz-binding: url(ellipsis.xml#ellipsis)
|
|
817
|
+
}
|
|
818
|
+
.ui-notice-list ul li > * + * {
|
|
819
|
+
margin-left: 15px;
|
|
820
|
+
}
|
|
821
|
+
.ui-notice-list ul li .lb {
|
|
822
|
+
width: 100px;
|
|
823
|
+
}
|
|
824
|
+
.ui-notice-list ul li .subject {
|
|
825
|
+
flex: 1;
|
|
826
|
+
color: var(--point-txt-color);
|
|
827
|
+
text-decoration: underline;
|
|
828
|
+
}
|
|
829
|
+
.member-count-item-cont .ui-dashboard-summary-list {
|
|
830
|
+
padding: 0;
|
|
831
|
+
box-shadow: none;
|
|
832
|
+
}
|
|
833
|
+
.member-count-item-cont .ui-dashboard-summary-item + .ui-dashboard-summary-item {
|
|
834
|
+
margin-left: 50px;
|
|
835
|
+
}
|
|
836
|
+
.member-count-item-cont .ui-dashboard-summary-item + .ui-dashboard-summary-item::before {
|
|
837
|
+
content: '';
|
|
838
|
+
position: absolute;
|
|
839
|
+
top: 50%;
|
|
840
|
+
left: -25px;
|
|
841
|
+
width: 1px;
|
|
842
|
+
height: 80%;
|
|
843
|
+
background-color: #eee;
|
|
844
|
+
transform: translateY(-50%);
|
|
845
|
+
}
|
|
846
|
+
.member-count-item-cont .ui-dashboard-summary-item {
|
|
847
|
+
padding: 0;
|
|
848
|
+
}
|
|
849
|
+
.ui-dashboard-item-sub {
|
|
850
|
+
width: 100%;
|
|
851
|
+
}
|
|
852
|
+
.ui-dashboard-item-sub + .ui-dashboard-item-sub {
|
|
853
|
+
margin-left: 20px;
|
|
854
|
+
}
|
|
855
|
+
.dashboard-item-sub-head {
|
|
856
|
+
position: relative;
|
|
857
|
+
}
|
|
858
|
+
.dashboard-item-sub-head h3 {
|
|
859
|
+
padding: 0 5px;
|
|
860
|
+
font-size: 14px;
|
|
861
|
+
}
|
|
862
|
+
.dashboard-item-sub-head .head-list {
|
|
863
|
+
margin-left: 100px;
|
|
864
|
+
}
|
|
865
|
+
.head-list {
|
|
866
|
+
display: flex;
|
|
867
|
+
align-items: center;
|
|
868
|
+
gap: 30px;
|
|
869
|
+
}
|
|
870
|
+
.head-list li {
|
|
871
|
+
display: flex;
|
|
872
|
+
align-items: center;
|
|
873
|
+
gap: 10px;
|
|
874
|
+
}
|
|
875
|
+
.head-list li .value {
|
|
876
|
+
color: var(--error-txt-color);
|
|
877
|
+
font-size: 16px;
|
|
878
|
+
}
|
|
879
|
+
.ui-dashboard-item-sub .dashboard-item-sub-head .abs {
|
|
880
|
+
position: absolute;
|
|
881
|
+
bottom: 0;
|
|
882
|
+
right: 5px;
|
|
883
|
+
}
|
|
884
|
+
.ui-dashboard-item-sub .dashboard-item-sub-head .num-link {
|
|
885
|
+
color: var(--point-txt-color);
|
|
886
|
+
text-decoration: underline;
|
|
887
|
+
}
|
|
888
|
+
.ui-dashboard-item-sub .dashboard-item-sub-cont {
|
|
889
|
+
position: relative;
|
|
890
|
+
height: calc(100% - 30px);
|
|
891
|
+
margin-top: 10px;
|
|
892
|
+
padding: 20px;
|
|
893
|
+
border: 1px solid var(--bd2-color);
|
|
894
|
+
background-color: #fff;
|
|
895
|
+
border-radius: 8px;
|
|
896
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
897
|
+
}
|
|
898
|
+
.ui-dashboard-item-sub .ui-dashboard-summary-item {
|
|
899
|
+
padding: 0;
|
|
900
|
+
}
|
|
901
|
+
.ui-dashboard-item-sub .ui-dashboard-summary-item + .ui-dashboard-summary-item {
|
|
902
|
+
margin-left: 48px;
|
|
903
|
+
}
|
|
904
|
+
.ui-dashboard-item-sub .ui-dashboard-summary-item + .ui-dashboard-summary-item::before {
|
|
905
|
+
content: '';
|
|
906
|
+
position: absolute;
|
|
907
|
+
top: 0;
|
|
908
|
+
left: -24px;
|
|
909
|
+
width: 1px;
|
|
910
|
+
height: 58px;
|
|
911
|
+
background-color: #ddd;
|
|
912
|
+
}
|
|
913
|
+
.dashboard-item-sub-cont .ui-dashboard-summary-list {
|
|
914
|
+
padding: 0;
|
|
915
|
+
}
|
|
916
|
+
.dashboard-item-sub-cont table thead, .dashboard-item-sub-cont table tfoot {
|
|
917
|
+
font-weight: bold;
|
|
918
|
+
}
|
|
919
|
+
.dashboard-item-sub-cont table tbody th {
|
|
920
|
+
font-weight: normal;
|
|
921
|
+
text-align: left;
|
|
922
|
+
}
|
|
923
|
+
.dashboard-item-sub-cont table tbody th, .dashboard-item-sub-cont table tbody td {
|
|
924
|
+
padding: 8px;
|
|
925
|
+
border-bottom: 1px solid #eee;
|
|
926
|
+
}
|
|
927
|
+
.dashboard-item-sub-cont table tfoot td {
|
|
928
|
+
padding-top: 10px;
|
|
929
|
+
}
|
|
930
|
+
.dashboard-item-sub-cont table td .bar {
|
|
931
|
+
display: block;
|
|
932
|
+
width: 0;
|
|
933
|
+
height: 10px;
|
|
934
|
+
background-color: #287eff;
|
|
935
|
+
border-radius: 10px;
|
|
936
|
+
}
|
|
937
|
+
.dashboard-item-sub-cont .ui-chart {
|
|
938
|
+
height: 100%;
|
|
939
|
+
min-height: 300px;
|
|
940
|
+
}
|
|
941
|
+
.ui-dashboard-ticker {
|
|
942
|
+
display: flex;
|
|
943
|
+
align-items: center;
|
|
944
|
+
padding: 20px;
|
|
945
|
+
background-color: #E4EBF5;
|
|
946
|
+
border-radius: 10px;
|
|
947
|
+
}
|
|
948
|
+
.ui-dashboard-ticker > * + * {
|
|
949
|
+
margin-left: 40px;
|
|
950
|
+
}
|
|
951
|
+
.ui-dashboard-ticker h3 {
|
|
952
|
+
display: flex;
|
|
953
|
+
align-items: center;
|
|
954
|
+
}
|
|
955
|
+
.ui-dashboard-ticker h3::before {
|
|
956
|
+
content: '';
|
|
957
|
+
display: block;
|
|
958
|
+
width: 20px;
|
|
959
|
+
height: 20px;
|
|
960
|
+
margin-right: 5px;
|
|
961
|
+
background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 3C5.25 1.34315 6.59315 0 8.25 0C9.90685 0 11.25 1.34315 11.25 3V8C11.25 9.65685 9.90685 11 8.25 11C6.59315 11 5.25 9.65685 5.25 8V3Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.75 6.5C4.02614 6.5 4.25 6.72386 4.25 7V8C4.25 10.2091 6.04086 12 8.25 12C10.4591 12 12.25 10.2091 12.25 8V7C12.25 6.72386 12.4739 6.5 12.75 6.5C13.0261 6.5 13.25 6.72386 13.25 7V8C13.25 10.5927 11.2767 12.7245 8.75 12.9753V15H11.75C12.0261 15 12.25 15.2239 12.25 15.5C12.25 15.7761 12.0261 16 11.75 16H4.75C4.47386 16 4.25 15.7761 4.25 15.5C4.25 15.2239 4.47386 15 4.75 15H7.75V12.9753C5.22334 12.7245 3.25 10.5927 3.25 8V7C3.25 6.72386 3.47386 6.5 3.75 6.5Z' fill='black'/%3E%3C/svg%3E");
|
|
962
|
+
background-size: 20px 20px;
|
|
963
|
+
}
|
|
964
|
+
.ui-dashboard-ticker .ticker-track {
|
|
965
|
+
flex: 1;
|
|
966
|
+
}
|
|
967
|
+
.ui-dashboard-ticker .ticker-track .link {
|
|
968
|
+
color: var(--point-txt-color);
|
|
969
|
+
text-decoration: underline;
|
|
970
|
+
}
|