ljr-cli 1.0.7 → 1.0.9
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/bin/commands/demo1.js +12 -0
- package/bin/commands/demo2.js +60 -0
- package/bin/commands/init.js +130 -0
- package/bin/commands/sync.js +144 -0
- package/bin/index.js +19 -202
- package/bin/templates/vue2.7.16/README.md +15 -13
- package/bin/templates/vue2.7.16/public/index.html +5 -5
- package/bin/templates/vue3.5.25-2025.12.4/.vscode/settings.json +1 -0
- package/bin/templates/vue3.5.25-2025.12.4/README.md +28 -17
- package/bin/templates/vue3.5.25-2025.12.4/auto-imports.d.ts +229 -0
- package/bin/templates/vue3.5.25-2025.12.4/components.d.ts +49 -0
- package/bin/templates/vue3.5.25-2025.12.4/eslint.config.ts +1 -0
- package/bin/templates/vue3.5.25-2025.12.4/index.html +2 -2
- package/bin/templates/vue3.5.25-2025.12.4/package.json +3 -1
- package/bin/templates/vue3.5.25-2025.12.4/pnpm-lock.yaml +480 -11
- package/bin/templates/vue3.5.25-2025.12.4/src/assets/images/login_bg.jpg +0 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/assets/images/login_bg_black.jpg +0 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/assets/images/sc_login_icon.png +0 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/boot/el-icon.ts +9 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/boot/index.ts +2 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/boot/pinia.ts +8 -3
- package/bin/templates/vue3.5.25-2025.12.4/src/boot/style.ts +2 -1
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/header.ts +97 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/header.vue +37 -13
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/left-right.vue +3 -7
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/menu.ts +19 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/menu.vue +89 -5
- package/bin/templates/vue3.5.25-2025.12.4/src/components/layout/up-down.vue +24 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/components/login/change-password.vue +111 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/components/login/user-login.vue +61 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/css/base.css +204 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/css/global.css +1596 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/css/index.css +3 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/css/theme.css +61 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/device/index.ts +1 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/dialog.vue +66 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/helper.ts +90 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/index.ts +2 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/template.ts +41 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/template.vue +29 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/index.ts +31 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/layout.ts +47 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/layout.vue +51 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/notification.ts +27 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/notification.vue +29 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/permission.ts +22 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/dialogs/user-info/permission.vue +23 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/directive/rememberScrollPosition.ts +1 -1
- package/bin/templates/vue3.5.25-2025.12.4/src/enums/device.ts +42 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/enums/index.ts +2 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/enums/status.ts +23 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/permission/role.ts +40 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/permission/role.vue +39 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/permission/user.vue +10 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/template/base-info.vue +5 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/template/base-info2.vue +5 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/template/list.ts +40 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/template/list.vue +39 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index/template/store.vue +89 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/index.vue +7 -2
- package/bin/templates/vue3.5.25-2025.12.4/src/pages/login.vue +34 -64
- package/bin/templates/vue3.5.25-2025.12.4/src/stores/account(/351/200/211/351/241/271/345/274/217api/345/206/231/346/263/225/347/244/272/344/276/213).ts +49 -0
- package/bin/templates/vue3.5.25-2025.12.4/src/stores/account.ts +46 -28
- package/bin/templates/vue3.5.25-2025.12.4/src/stores/dd.ts +85 -29
- package/bin/templates/vue3.5.25-2025.12.4/src/stores/layout.ts +99 -21
- package/bin/templates/vue3.5.25-2025.12.4/typed-router.d.ts +90 -0
- package/bin/templates/vue3.5.25-2025.12.4/uno.config.ts +53 -0
- package/bin/templates/vue3.5.25-2025.12.4/vite.config.ts +12 -1
- package/package.json +4 -6
- package/bin/demo1.js +0 -39
- package/bin/demo2.js +0 -87
- package/bin/templates/vue3.5.25-2025.12.4/src/stores//347/273/204/345/220/210/345/274/217pinia/345/206/231/346/263/225(/344/273/245account/344/270/272/344/276/213).ts +0 -28
- /package/bin/templates/vue3.5.25-2025.12.4/{public → src/assets}/favicon.svg +0 -0
|
@@ -0,0 +1,1596 @@
|
|
|
1
|
+
html,
|
|
2
|
+
body {
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
/* flex布局 */
|
|
7
|
+
.c-layout {
|
|
8
|
+
display: flex;
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
/* 因为大部分都是列布局,所以这里默认列 */
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
/** 卡片容器 */
|
|
17
|
+
.c-card-layout {
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
gap: 50px;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
.c-flex-row {
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
}
|
|
26
|
+
.c-flex-1 {
|
|
27
|
+
flex: 1;
|
|
28
|
+
}
|
|
29
|
+
/* 左右垂直居中 */
|
|
30
|
+
.c-flex-cc {
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
}
|
|
35
|
+
/* 利用绝对定位宽高拉升原理,中心居中元素 */
|
|
36
|
+
.c-middle {
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 0;
|
|
39
|
+
right: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
left: 0;
|
|
42
|
+
margin: auto;
|
|
43
|
+
}
|
|
44
|
+
/* 利用相对定位于 CSS3 使元素垂直居中 */
|
|
45
|
+
.c-v-middle {
|
|
46
|
+
position: relative;
|
|
47
|
+
top: 50%;
|
|
48
|
+
-webkit-transform: -webkit-translateY(-50%);
|
|
49
|
+
-moz-transform: -moz-translateY(-50%);
|
|
50
|
+
-o-transform: -o-translateY(-50%);
|
|
51
|
+
transform: translateY(-50%);
|
|
52
|
+
}
|
|
53
|
+
/** 阴影 */
|
|
54
|
+
.c-box-shadow {
|
|
55
|
+
box-shadow: 0 0 5px var(--c-shadow-color1, #e5dcdc);
|
|
56
|
+
}
|
|
57
|
+
/** 尺寸 */
|
|
58
|
+
.c-w-full {
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
.c-h-full {
|
|
62
|
+
height: 100%;
|
|
63
|
+
}
|
|
64
|
+
.c-w-1per {
|
|
65
|
+
width: 1%;
|
|
66
|
+
}
|
|
67
|
+
.c-h-1per {
|
|
68
|
+
height: 1%;
|
|
69
|
+
}
|
|
70
|
+
.c-w-2per {
|
|
71
|
+
width: 2%;
|
|
72
|
+
}
|
|
73
|
+
.c-h-2per {
|
|
74
|
+
height: 2%;
|
|
75
|
+
}
|
|
76
|
+
.c-w-3per {
|
|
77
|
+
width: 3%;
|
|
78
|
+
}
|
|
79
|
+
.c-h-3per {
|
|
80
|
+
height: 3%;
|
|
81
|
+
}
|
|
82
|
+
.c-w-4per {
|
|
83
|
+
width: 4%;
|
|
84
|
+
}
|
|
85
|
+
.c-h-4per {
|
|
86
|
+
height: 4%;
|
|
87
|
+
}
|
|
88
|
+
.c-w-5per {
|
|
89
|
+
width: 5%;
|
|
90
|
+
}
|
|
91
|
+
.c-h-5per {
|
|
92
|
+
height: 5%;
|
|
93
|
+
}
|
|
94
|
+
.c-w-6per {
|
|
95
|
+
width: 6%;
|
|
96
|
+
}
|
|
97
|
+
.c-h-6per {
|
|
98
|
+
height: 6%;
|
|
99
|
+
}
|
|
100
|
+
.c-w-7per {
|
|
101
|
+
width: 7%;
|
|
102
|
+
}
|
|
103
|
+
.c-h-7per {
|
|
104
|
+
height: 7%;
|
|
105
|
+
}
|
|
106
|
+
.c-w-8per {
|
|
107
|
+
width: 8%;
|
|
108
|
+
}
|
|
109
|
+
.c-h-8per {
|
|
110
|
+
height: 8%;
|
|
111
|
+
}
|
|
112
|
+
.c-w-9per {
|
|
113
|
+
width: 9%;
|
|
114
|
+
}
|
|
115
|
+
.c-h-9per {
|
|
116
|
+
height: 9%;
|
|
117
|
+
}
|
|
118
|
+
.c-w-10per {
|
|
119
|
+
width: 10%;
|
|
120
|
+
}
|
|
121
|
+
.c-h-10per {
|
|
122
|
+
height: 10%;
|
|
123
|
+
}
|
|
124
|
+
.c-w-11per {
|
|
125
|
+
width: 11%;
|
|
126
|
+
}
|
|
127
|
+
.c-h-11per {
|
|
128
|
+
height: 11%;
|
|
129
|
+
}
|
|
130
|
+
.c-w-12per {
|
|
131
|
+
width: 12%;
|
|
132
|
+
}
|
|
133
|
+
.c-h-12per {
|
|
134
|
+
height: 12%;
|
|
135
|
+
}
|
|
136
|
+
.c-w-13per {
|
|
137
|
+
width: 13%;
|
|
138
|
+
}
|
|
139
|
+
.c-h-13per {
|
|
140
|
+
height: 13%;
|
|
141
|
+
}
|
|
142
|
+
.c-w-14per {
|
|
143
|
+
width: 14%;
|
|
144
|
+
}
|
|
145
|
+
.c-h-14per {
|
|
146
|
+
height: 14%;
|
|
147
|
+
}
|
|
148
|
+
.c-w-15per {
|
|
149
|
+
width: 15%;
|
|
150
|
+
}
|
|
151
|
+
.c-h-15per {
|
|
152
|
+
height: 15%;
|
|
153
|
+
}
|
|
154
|
+
.c-w-16per {
|
|
155
|
+
width: 16%;
|
|
156
|
+
}
|
|
157
|
+
.c-h-16per {
|
|
158
|
+
height: 16%;
|
|
159
|
+
}
|
|
160
|
+
.c-w-17per {
|
|
161
|
+
width: 17%;
|
|
162
|
+
}
|
|
163
|
+
.c-h-17per {
|
|
164
|
+
height: 17%;
|
|
165
|
+
}
|
|
166
|
+
.c-w-18per {
|
|
167
|
+
width: 18%;
|
|
168
|
+
}
|
|
169
|
+
.c-h-18per {
|
|
170
|
+
height: 18%;
|
|
171
|
+
}
|
|
172
|
+
.c-w-19per {
|
|
173
|
+
width: 19%;
|
|
174
|
+
}
|
|
175
|
+
.c-h-19per {
|
|
176
|
+
height: 19%;
|
|
177
|
+
}
|
|
178
|
+
.c-w-20per {
|
|
179
|
+
width: 20%;
|
|
180
|
+
}
|
|
181
|
+
.c-h-20per {
|
|
182
|
+
height: 20%;
|
|
183
|
+
}
|
|
184
|
+
.c-w-21per {
|
|
185
|
+
width: 21%;
|
|
186
|
+
}
|
|
187
|
+
.c-h-21per {
|
|
188
|
+
height: 21%;
|
|
189
|
+
}
|
|
190
|
+
.c-w-22per {
|
|
191
|
+
width: 22%;
|
|
192
|
+
}
|
|
193
|
+
.c-h-22per {
|
|
194
|
+
height: 22%;
|
|
195
|
+
}
|
|
196
|
+
.c-w-23per {
|
|
197
|
+
width: 23%;
|
|
198
|
+
}
|
|
199
|
+
.c-h-23per {
|
|
200
|
+
height: 23%;
|
|
201
|
+
}
|
|
202
|
+
.c-w-24per {
|
|
203
|
+
width: 24%;
|
|
204
|
+
}
|
|
205
|
+
.c-h-24per {
|
|
206
|
+
height: 24%;
|
|
207
|
+
}
|
|
208
|
+
.c-w-25per {
|
|
209
|
+
width: 25%;
|
|
210
|
+
}
|
|
211
|
+
.c-h-25per {
|
|
212
|
+
height: 25%;
|
|
213
|
+
}
|
|
214
|
+
.c-w-26per {
|
|
215
|
+
width: 26%;
|
|
216
|
+
}
|
|
217
|
+
.c-h-26per {
|
|
218
|
+
height: 26%;
|
|
219
|
+
}
|
|
220
|
+
.c-w-27per {
|
|
221
|
+
width: 27%;
|
|
222
|
+
}
|
|
223
|
+
.c-h-27per {
|
|
224
|
+
height: 27%;
|
|
225
|
+
}
|
|
226
|
+
.c-w-28per {
|
|
227
|
+
width: 28%;
|
|
228
|
+
}
|
|
229
|
+
.c-h-28per {
|
|
230
|
+
height: 28%;
|
|
231
|
+
}
|
|
232
|
+
.c-w-29per {
|
|
233
|
+
width: 29%;
|
|
234
|
+
}
|
|
235
|
+
.c-h-29per {
|
|
236
|
+
height: 29%;
|
|
237
|
+
}
|
|
238
|
+
.c-w-30per {
|
|
239
|
+
width: 30%;
|
|
240
|
+
}
|
|
241
|
+
.c-h-30per {
|
|
242
|
+
height: 30%;
|
|
243
|
+
}
|
|
244
|
+
.c-w-31per {
|
|
245
|
+
width: 31%;
|
|
246
|
+
}
|
|
247
|
+
.c-h-31per {
|
|
248
|
+
height: 31%;
|
|
249
|
+
}
|
|
250
|
+
.c-w-32per {
|
|
251
|
+
width: 32%;
|
|
252
|
+
}
|
|
253
|
+
.c-h-32per {
|
|
254
|
+
height: 32%;
|
|
255
|
+
}
|
|
256
|
+
.c-w-33per {
|
|
257
|
+
width: 33%;
|
|
258
|
+
}
|
|
259
|
+
.c-h-33per {
|
|
260
|
+
height: 33%;
|
|
261
|
+
}
|
|
262
|
+
.c-w-34per {
|
|
263
|
+
width: 34%;
|
|
264
|
+
}
|
|
265
|
+
.c-h-34per {
|
|
266
|
+
height: 34%;
|
|
267
|
+
}
|
|
268
|
+
.c-w-35per {
|
|
269
|
+
width: 35%;
|
|
270
|
+
}
|
|
271
|
+
.c-h-35per {
|
|
272
|
+
height: 35%;
|
|
273
|
+
}
|
|
274
|
+
.c-w-36per {
|
|
275
|
+
width: 36%;
|
|
276
|
+
}
|
|
277
|
+
.c-h-36per {
|
|
278
|
+
height: 36%;
|
|
279
|
+
}
|
|
280
|
+
.c-w-37per {
|
|
281
|
+
width: 37%;
|
|
282
|
+
}
|
|
283
|
+
.c-h-37per {
|
|
284
|
+
height: 37%;
|
|
285
|
+
}
|
|
286
|
+
.c-w-38per {
|
|
287
|
+
width: 38%;
|
|
288
|
+
}
|
|
289
|
+
.c-h-38per {
|
|
290
|
+
height: 38%;
|
|
291
|
+
}
|
|
292
|
+
.c-w-39per {
|
|
293
|
+
width: 39%;
|
|
294
|
+
}
|
|
295
|
+
.c-h-39per {
|
|
296
|
+
height: 39%;
|
|
297
|
+
}
|
|
298
|
+
.c-w-40per {
|
|
299
|
+
width: 40%;
|
|
300
|
+
}
|
|
301
|
+
.c-h-40per {
|
|
302
|
+
height: 40%;
|
|
303
|
+
}
|
|
304
|
+
.c-w-41per {
|
|
305
|
+
width: 41%;
|
|
306
|
+
}
|
|
307
|
+
.c-h-41per {
|
|
308
|
+
height: 41%;
|
|
309
|
+
}
|
|
310
|
+
.c-w-42per {
|
|
311
|
+
width: 42%;
|
|
312
|
+
}
|
|
313
|
+
.c-h-42per {
|
|
314
|
+
height: 42%;
|
|
315
|
+
}
|
|
316
|
+
.c-w-43per {
|
|
317
|
+
width: 43%;
|
|
318
|
+
}
|
|
319
|
+
.c-h-43per {
|
|
320
|
+
height: 43%;
|
|
321
|
+
}
|
|
322
|
+
.c-w-44per {
|
|
323
|
+
width: 44%;
|
|
324
|
+
}
|
|
325
|
+
.c-h-44per {
|
|
326
|
+
height: 44%;
|
|
327
|
+
}
|
|
328
|
+
.c-w-45per {
|
|
329
|
+
width: 45%;
|
|
330
|
+
}
|
|
331
|
+
.c-h-45per {
|
|
332
|
+
height: 45%;
|
|
333
|
+
}
|
|
334
|
+
.c-w-46per {
|
|
335
|
+
width: 46%;
|
|
336
|
+
}
|
|
337
|
+
.c-h-46per {
|
|
338
|
+
height: 46%;
|
|
339
|
+
}
|
|
340
|
+
.c-w-47per {
|
|
341
|
+
width: 47%;
|
|
342
|
+
}
|
|
343
|
+
.c-h-47per {
|
|
344
|
+
height: 47%;
|
|
345
|
+
}
|
|
346
|
+
.c-w-48per {
|
|
347
|
+
width: 48%;
|
|
348
|
+
}
|
|
349
|
+
.c-h-48per {
|
|
350
|
+
height: 48%;
|
|
351
|
+
}
|
|
352
|
+
.c-w-49per {
|
|
353
|
+
width: 49%;
|
|
354
|
+
}
|
|
355
|
+
.c-h-49per {
|
|
356
|
+
height: 49%;
|
|
357
|
+
}
|
|
358
|
+
.c-w-50per {
|
|
359
|
+
width: 50%;
|
|
360
|
+
}
|
|
361
|
+
.c-h-50per {
|
|
362
|
+
height: 50%;
|
|
363
|
+
}
|
|
364
|
+
.c-w-51per {
|
|
365
|
+
width: 51%;
|
|
366
|
+
}
|
|
367
|
+
.c-h-51per {
|
|
368
|
+
height: 51%;
|
|
369
|
+
}
|
|
370
|
+
.c-w-52per {
|
|
371
|
+
width: 52%;
|
|
372
|
+
}
|
|
373
|
+
.c-h-52per {
|
|
374
|
+
height: 52%;
|
|
375
|
+
}
|
|
376
|
+
.c-w-53per {
|
|
377
|
+
width: 53%;
|
|
378
|
+
}
|
|
379
|
+
.c-h-53per {
|
|
380
|
+
height: 53%;
|
|
381
|
+
}
|
|
382
|
+
.c-w-54per {
|
|
383
|
+
width: 54%;
|
|
384
|
+
}
|
|
385
|
+
.c-h-54per {
|
|
386
|
+
height: 54%;
|
|
387
|
+
}
|
|
388
|
+
.c-w-55per {
|
|
389
|
+
width: 55%;
|
|
390
|
+
}
|
|
391
|
+
.c-h-55per {
|
|
392
|
+
height: 55%;
|
|
393
|
+
}
|
|
394
|
+
.c-w-56per {
|
|
395
|
+
width: 56%;
|
|
396
|
+
}
|
|
397
|
+
.c-h-56per {
|
|
398
|
+
height: 56%;
|
|
399
|
+
}
|
|
400
|
+
.c-w-57per {
|
|
401
|
+
width: 57%;
|
|
402
|
+
}
|
|
403
|
+
.c-h-57per {
|
|
404
|
+
height: 57%;
|
|
405
|
+
}
|
|
406
|
+
.c-w-58per {
|
|
407
|
+
width: 58%;
|
|
408
|
+
}
|
|
409
|
+
.c-h-58per {
|
|
410
|
+
height: 58%;
|
|
411
|
+
}
|
|
412
|
+
.c-w-59per {
|
|
413
|
+
width: 59%;
|
|
414
|
+
}
|
|
415
|
+
.c-h-59per {
|
|
416
|
+
height: 59%;
|
|
417
|
+
}
|
|
418
|
+
.c-w-60per {
|
|
419
|
+
width: 60%;
|
|
420
|
+
}
|
|
421
|
+
.c-h-60per {
|
|
422
|
+
height: 60%;
|
|
423
|
+
}
|
|
424
|
+
.c-w-61per {
|
|
425
|
+
width: 61%;
|
|
426
|
+
}
|
|
427
|
+
.c-h-61per {
|
|
428
|
+
height: 61%;
|
|
429
|
+
}
|
|
430
|
+
.c-w-62per {
|
|
431
|
+
width: 62%;
|
|
432
|
+
}
|
|
433
|
+
.c-h-62per {
|
|
434
|
+
height: 62%;
|
|
435
|
+
}
|
|
436
|
+
.c-w-63per {
|
|
437
|
+
width: 63%;
|
|
438
|
+
}
|
|
439
|
+
.c-h-63per {
|
|
440
|
+
height: 63%;
|
|
441
|
+
}
|
|
442
|
+
.c-w-64per {
|
|
443
|
+
width: 64%;
|
|
444
|
+
}
|
|
445
|
+
.c-h-64per {
|
|
446
|
+
height: 64%;
|
|
447
|
+
}
|
|
448
|
+
.c-w-65per {
|
|
449
|
+
width: 65%;
|
|
450
|
+
}
|
|
451
|
+
.c-h-65per {
|
|
452
|
+
height: 65%;
|
|
453
|
+
}
|
|
454
|
+
.c-w-66per {
|
|
455
|
+
width: 66%;
|
|
456
|
+
}
|
|
457
|
+
.c-h-66per {
|
|
458
|
+
height: 66%;
|
|
459
|
+
}
|
|
460
|
+
.c-w-67per {
|
|
461
|
+
width: 67%;
|
|
462
|
+
}
|
|
463
|
+
.c-h-67per {
|
|
464
|
+
height: 67%;
|
|
465
|
+
}
|
|
466
|
+
.c-w-68per {
|
|
467
|
+
width: 68%;
|
|
468
|
+
}
|
|
469
|
+
.c-h-68per {
|
|
470
|
+
height: 68%;
|
|
471
|
+
}
|
|
472
|
+
.c-w-69per {
|
|
473
|
+
width: 69%;
|
|
474
|
+
}
|
|
475
|
+
.c-h-69per {
|
|
476
|
+
height: 69%;
|
|
477
|
+
}
|
|
478
|
+
.c-w-70per {
|
|
479
|
+
width: 70%;
|
|
480
|
+
}
|
|
481
|
+
.c-h-70per {
|
|
482
|
+
height: 70%;
|
|
483
|
+
}
|
|
484
|
+
.c-w-71per {
|
|
485
|
+
width: 71%;
|
|
486
|
+
}
|
|
487
|
+
.c-h-71per {
|
|
488
|
+
height: 71%;
|
|
489
|
+
}
|
|
490
|
+
.c-w-72per {
|
|
491
|
+
width: 72%;
|
|
492
|
+
}
|
|
493
|
+
.c-h-72per {
|
|
494
|
+
height: 72%;
|
|
495
|
+
}
|
|
496
|
+
.c-w-73per {
|
|
497
|
+
width: 73%;
|
|
498
|
+
}
|
|
499
|
+
.c-h-73per {
|
|
500
|
+
height: 73%;
|
|
501
|
+
}
|
|
502
|
+
.c-w-74per {
|
|
503
|
+
width: 74%;
|
|
504
|
+
}
|
|
505
|
+
.c-h-74per {
|
|
506
|
+
height: 74%;
|
|
507
|
+
}
|
|
508
|
+
.c-w-75per {
|
|
509
|
+
width: 75%;
|
|
510
|
+
}
|
|
511
|
+
.c-h-75per {
|
|
512
|
+
height: 75%;
|
|
513
|
+
}
|
|
514
|
+
.c-w-76per {
|
|
515
|
+
width: 76%;
|
|
516
|
+
}
|
|
517
|
+
.c-h-76per {
|
|
518
|
+
height: 76%;
|
|
519
|
+
}
|
|
520
|
+
.c-w-77per {
|
|
521
|
+
width: 77%;
|
|
522
|
+
}
|
|
523
|
+
.c-h-77per {
|
|
524
|
+
height: 77%;
|
|
525
|
+
}
|
|
526
|
+
.c-w-78per {
|
|
527
|
+
width: 78%;
|
|
528
|
+
}
|
|
529
|
+
.c-h-78per {
|
|
530
|
+
height: 78%;
|
|
531
|
+
}
|
|
532
|
+
.c-w-79per {
|
|
533
|
+
width: 79%;
|
|
534
|
+
}
|
|
535
|
+
.c-h-79per {
|
|
536
|
+
height: 79%;
|
|
537
|
+
}
|
|
538
|
+
.c-w-80per {
|
|
539
|
+
width: 80%;
|
|
540
|
+
}
|
|
541
|
+
.c-h-80per {
|
|
542
|
+
height: 80%;
|
|
543
|
+
}
|
|
544
|
+
.c-w-81per {
|
|
545
|
+
width: 81%;
|
|
546
|
+
}
|
|
547
|
+
.c-h-81per {
|
|
548
|
+
height: 81%;
|
|
549
|
+
}
|
|
550
|
+
.c-w-82per {
|
|
551
|
+
width: 82%;
|
|
552
|
+
}
|
|
553
|
+
.c-h-82per {
|
|
554
|
+
height: 82%;
|
|
555
|
+
}
|
|
556
|
+
.c-w-83per {
|
|
557
|
+
width: 83%;
|
|
558
|
+
}
|
|
559
|
+
.c-h-83per {
|
|
560
|
+
height: 83%;
|
|
561
|
+
}
|
|
562
|
+
.c-w-84per {
|
|
563
|
+
width: 84%;
|
|
564
|
+
}
|
|
565
|
+
.c-h-84per {
|
|
566
|
+
height: 84%;
|
|
567
|
+
}
|
|
568
|
+
.c-w-85per {
|
|
569
|
+
width: 85%;
|
|
570
|
+
}
|
|
571
|
+
.c-h-85per {
|
|
572
|
+
height: 85%;
|
|
573
|
+
}
|
|
574
|
+
.c-w-86per {
|
|
575
|
+
width: 86%;
|
|
576
|
+
}
|
|
577
|
+
.c-h-86per {
|
|
578
|
+
height: 86%;
|
|
579
|
+
}
|
|
580
|
+
.c-w-87per {
|
|
581
|
+
width: 87%;
|
|
582
|
+
}
|
|
583
|
+
.c-h-87per {
|
|
584
|
+
height: 87%;
|
|
585
|
+
}
|
|
586
|
+
.c-w-88per {
|
|
587
|
+
width: 88%;
|
|
588
|
+
}
|
|
589
|
+
.c-h-88per {
|
|
590
|
+
height: 88%;
|
|
591
|
+
}
|
|
592
|
+
.c-w-89per {
|
|
593
|
+
width: 89%;
|
|
594
|
+
}
|
|
595
|
+
.c-h-89per {
|
|
596
|
+
height: 89%;
|
|
597
|
+
}
|
|
598
|
+
.c-w-90per {
|
|
599
|
+
width: 90%;
|
|
600
|
+
}
|
|
601
|
+
.c-h-90per {
|
|
602
|
+
height: 90%;
|
|
603
|
+
}
|
|
604
|
+
.c-w-91per {
|
|
605
|
+
width: 91%;
|
|
606
|
+
}
|
|
607
|
+
.c-h-91per {
|
|
608
|
+
height: 91%;
|
|
609
|
+
}
|
|
610
|
+
.c-w-92per {
|
|
611
|
+
width: 92%;
|
|
612
|
+
}
|
|
613
|
+
.c-h-92per {
|
|
614
|
+
height: 92%;
|
|
615
|
+
}
|
|
616
|
+
.c-w-93per {
|
|
617
|
+
width: 93%;
|
|
618
|
+
}
|
|
619
|
+
.c-h-93per {
|
|
620
|
+
height: 93%;
|
|
621
|
+
}
|
|
622
|
+
.c-w-94per {
|
|
623
|
+
width: 94%;
|
|
624
|
+
}
|
|
625
|
+
.c-h-94per {
|
|
626
|
+
height: 94%;
|
|
627
|
+
}
|
|
628
|
+
.c-w-95per {
|
|
629
|
+
width: 95%;
|
|
630
|
+
}
|
|
631
|
+
.c-h-95per {
|
|
632
|
+
height: 95%;
|
|
633
|
+
}
|
|
634
|
+
.c-w-96per {
|
|
635
|
+
width: 96%;
|
|
636
|
+
}
|
|
637
|
+
.c-h-96per {
|
|
638
|
+
height: 96%;
|
|
639
|
+
}
|
|
640
|
+
.c-w-97per {
|
|
641
|
+
width: 97%;
|
|
642
|
+
}
|
|
643
|
+
.c-h-97per {
|
|
644
|
+
height: 97%;
|
|
645
|
+
}
|
|
646
|
+
.c-w-98per {
|
|
647
|
+
width: 98%;
|
|
648
|
+
}
|
|
649
|
+
.c-h-98per {
|
|
650
|
+
height: 98%;
|
|
651
|
+
}
|
|
652
|
+
.c-w-99per {
|
|
653
|
+
width: 99%;
|
|
654
|
+
}
|
|
655
|
+
.c-h-99per {
|
|
656
|
+
height: 99%;
|
|
657
|
+
}
|
|
658
|
+
.c-w-100per {
|
|
659
|
+
width: 100%;
|
|
660
|
+
}
|
|
661
|
+
.c-h-100per {
|
|
662
|
+
height: 100%;
|
|
663
|
+
}
|
|
664
|
+
.c-mt-1 {
|
|
665
|
+
margin-top: 1px;
|
|
666
|
+
}
|
|
667
|
+
.c-mb-1 {
|
|
668
|
+
margin-bottom: 1px;
|
|
669
|
+
}
|
|
670
|
+
.c-ml-1 {
|
|
671
|
+
margin-left: 1px;
|
|
672
|
+
}
|
|
673
|
+
.c-mr-1 {
|
|
674
|
+
margin-right: 1px;
|
|
675
|
+
}
|
|
676
|
+
.c-mx-1 {
|
|
677
|
+
margin-left: 1px;
|
|
678
|
+
margin-right: 1px;
|
|
679
|
+
}
|
|
680
|
+
.c-my-1 {
|
|
681
|
+
margin-top: 1px;
|
|
682
|
+
margin-bottom: 1px;
|
|
683
|
+
}
|
|
684
|
+
.c-pt-1 {
|
|
685
|
+
padding-top: 1px;
|
|
686
|
+
}
|
|
687
|
+
.c-pb-1 {
|
|
688
|
+
padding-bottom: 1px;
|
|
689
|
+
}
|
|
690
|
+
.c-pl-1 {
|
|
691
|
+
padding-left: 1px;
|
|
692
|
+
}
|
|
693
|
+
.c-pr-1 {
|
|
694
|
+
padding-right: 1px;
|
|
695
|
+
}
|
|
696
|
+
.c-px-1 {
|
|
697
|
+
padding-left: 1px;
|
|
698
|
+
padding-right: 1px;
|
|
699
|
+
}
|
|
700
|
+
.c-py-1 {
|
|
701
|
+
padding-top: 1px;
|
|
702
|
+
padding-bottom: 1px;
|
|
703
|
+
}
|
|
704
|
+
.c-mt-2 {
|
|
705
|
+
margin-top: 2px;
|
|
706
|
+
}
|
|
707
|
+
.c-mb-2 {
|
|
708
|
+
margin-bottom: 2px;
|
|
709
|
+
}
|
|
710
|
+
.c-ml-2 {
|
|
711
|
+
margin-left: 2px;
|
|
712
|
+
}
|
|
713
|
+
.c-mr-2 {
|
|
714
|
+
margin-right: 2px;
|
|
715
|
+
}
|
|
716
|
+
.c-mx-2 {
|
|
717
|
+
margin-left: 2px;
|
|
718
|
+
margin-right: 2px;
|
|
719
|
+
}
|
|
720
|
+
.c-my-2 {
|
|
721
|
+
margin-top: 2px;
|
|
722
|
+
margin-bottom: 2px;
|
|
723
|
+
}
|
|
724
|
+
.c-pt-2 {
|
|
725
|
+
padding-top: 2px;
|
|
726
|
+
}
|
|
727
|
+
.c-pb-2 {
|
|
728
|
+
padding-bottom: 2px;
|
|
729
|
+
}
|
|
730
|
+
.c-pl-2 {
|
|
731
|
+
padding-left: 2px;
|
|
732
|
+
}
|
|
733
|
+
.c-pr-2 {
|
|
734
|
+
padding-right: 2px;
|
|
735
|
+
}
|
|
736
|
+
.c-px-2 {
|
|
737
|
+
padding-left: 2px;
|
|
738
|
+
padding-right: 2px;
|
|
739
|
+
}
|
|
740
|
+
.c-py-2 {
|
|
741
|
+
padding-top: 2px;
|
|
742
|
+
padding-bottom: 2px;
|
|
743
|
+
}
|
|
744
|
+
.c-mt-3 {
|
|
745
|
+
margin-top: 3px;
|
|
746
|
+
}
|
|
747
|
+
.c-mb-3 {
|
|
748
|
+
margin-bottom: 3px;
|
|
749
|
+
}
|
|
750
|
+
.c-ml-3 {
|
|
751
|
+
margin-left: 3px;
|
|
752
|
+
}
|
|
753
|
+
.c-mr-3 {
|
|
754
|
+
margin-right: 3px;
|
|
755
|
+
}
|
|
756
|
+
.c-mx-3 {
|
|
757
|
+
margin-left: 3px;
|
|
758
|
+
margin-right: 3px;
|
|
759
|
+
}
|
|
760
|
+
.c-my-3 {
|
|
761
|
+
margin-top: 3px;
|
|
762
|
+
margin-bottom: 3px;
|
|
763
|
+
}
|
|
764
|
+
.c-pt-3 {
|
|
765
|
+
padding-top: 3px;
|
|
766
|
+
}
|
|
767
|
+
.c-pb-3 {
|
|
768
|
+
padding-bottom: 3px;
|
|
769
|
+
}
|
|
770
|
+
.c-pl-3 {
|
|
771
|
+
padding-left: 3px;
|
|
772
|
+
}
|
|
773
|
+
.c-pr-3 {
|
|
774
|
+
padding-right: 3px;
|
|
775
|
+
}
|
|
776
|
+
.c-px-3 {
|
|
777
|
+
padding-left: 3px;
|
|
778
|
+
padding-right: 3px;
|
|
779
|
+
}
|
|
780
|
+
.c-py-3 {
|
|
781
|
+
padding-top: 3px;
|
|
782
|
+
padding-bottom: 3px;
|
|
783
|
+
}
|
|
784
|
+
.c-mt-4 {
|
|
785
|
+
margin-top: 4px;
|
|
786
|
+
}
|
|
787
|
+
.c-mb-4 {
|
|
788
|
+
margin-bottom: 4px;
|
|
789
|
+
}
|
|
790
|
+
.c-ml-4 {
|
|
791
|
+
margin-left: 4px;
|
|
792
|
+
}
|
|
793
|
+
.c-mr-4 {
|
|
794
|
+
margin-right: 4px;
|
|
795
|
+
}
|
|
796
|
+
.c-mx-4 {
|
|
797
|
+
margin-left: 4px;
|
|
798
|
+
margin-right: 4px;
|
|
799
|
+
}
|
|
800
|
+
.c-my-4 {
|
|
801
|
+
margin-top: 4px;
|
|
802
|
+
margin-bottom: 4px;
|
|
803
|
+
}
|
|
804
|
+
.c-pt-4 {
|
|
805
|
+
padding-top: 4px;
|
|
806
|
+
}
|
|
807
|
+
.c-pb-4 {
|
|
808
|
+
padding-bottom: 4px;
|
|
809
|
+
}
|
|
810
|
+
.c-pl-4 {
|
|
811
|
+
padding-left: 4px;
|
|
812
|
+
}
|
|
813
|
+
.c-pr-4 {
|
|
814
|
+
padding-right: 4px;
|
|
815
|
+
}
|
|
816
|
+
.c-px-4 {
|
|
817
|
+
padding-left: 4px;
|
|
818
|
+
padding-right: 4px;
|
|
819
|
+
}
|
|
820
|
+
.c-py-4 {
|
|
821
|
+
padding-top: 4px;
|
|
822
|
+
padding-bottom: 4px;
|
|
823
|
+
}
|
|
824
|
+
.c-mt-5 {
|
|
825
|
+
margin-top: 5px;
|
|
826
|
+
}
|
|
827
|
+
.c-mb-5 {
|
|
828
|
+
margin-bottom: 5px;
|
|
829
|
+
}
|
|
830
|
+
.c-ml-5 {
|
|
831
|
+
margin-left: 5px;
|
|
832
|
+
}
|
|
833
|
+
.c-mr-5 {
|
|
834
|
+
margin-right: 5px;
|
|
835
|
+
}
|
|
836
|
+
.c-mx-5 {
|
|
837
|
+
margin-left: 5px;
|
|
838
|
+
margin-right: 5px;
|
|
839
|
+
}
|
|
840
|
+
.c-my-5 {
|
|
841
|
+
margin-top: 5px;
|
|
842
|
+
margin-bottom: 5px;
|
|
843
|
+
}
|
|
844
|
+
.c-pt-5 {
|
|
845
|
+
padding-top: 5px;
|
|
846
|
+
}
|
|
847
|
+
.c-pb-5 {
|
|
848
|
+
padding-bottom: 5px;
|
|
849
|
+
}
|
|
850
|
+
.c-pl-5 {
|
|
851
|
+
padding-left: 5px;
|
|
852
|
+
}
|
|
853
|
+
.c-pr-5 {
|
|
854
|
+
padding-right: 5px;
|
|
855
|
+
}
|
|
856
|
+
.c-px-5 {
|
|
857
|
+
padding-left: 5px;
|
|
858
|
+
padding-right: 5px;
|
|
859
|
+
}
|
|
860
|
+
.c-py-5 {
|
|
861
|
+
padding-top: 5px;
|
|
862
|
+
padding-bottom: 5px;
|
|
863
|
+
}
|
|
864
|
+
.c-mt-6 {
|
|
865
|
+
margin-top: 6px;
|
|
866
|
+
}
|
|
867
|
+
.c-mb-6 {
|
|
868
|
+
margin-bottom: 6px;
|
|
869
|
+
}
|
|
870
|
+
.c-ml-6 {
|
|
871
|
+
margin-left: 6px;
|
|
872
|
+
}
|
|
873
|
+
.c-mr-6 {
|
|
874
|
+
margin-right: 6px;
|
|
875
|
+
}
|
|
876
|
+
.c-mx-6 {
|
|
877
|
+
margin-left: 6px;
|
|
878
|
+
margin-right: 6px;
|
|
879
|
+
}
|
|
880
|
+
.c-my-6 {
|
|
881
|
+
margin-top: 6px;
|
|
882
|
+
margin-bottom: 6px;
|
|
883
|
+
}
|
|
884
|
+
.c-pt-6 {
|
|
885
|
+
padding-top: 6px;
|
|
886
|
+
}
|
|
887
|
+
.c-pb-6 {
|
|
888
|
+
padding-bottom: 6px;
|
|
889
|
+
}
|
|
890
|
+
.c-pl-6 {
|
|
891
|
+
padding-left: 6px;
|
|
892
|
+
}
|
|
893
|
+
.c-pr-6 {
|
|
894
|
+
padding-right: 6px;
|
|
895
|
+
}
|
|
896
|
+
.c-px-6 {
|
|
897
|
+
padding-left: 6px;
|
|
898
|
+
padding-right: 6px;
|
|
899
|
+
}
|
|
900
|
+
.c-py-6 {
|
|
901
|
+
padding-top: 6px;
|
|
902
|
+
padding-bottom: 6px;
|
|
903
|
+
}
|
|
904
|
+
.c-mt-7 {
|
|
905
|
+
margin-top: 7px;
|
|
906
|
+
}
|
|
907
|
+
.c-mb-7 {
|
|
908
|
+
margin-bottom: 7px;
|
|
909
|
+
}
|
|
910
|
+
.c-ml-7 {
|
|
911
|
+
margin-left: 7px;
|
|
912
|
+
}
|
|
913
|
+
.c-mr-7 {
|
|
914
|
+
margin-right: 7px;
|
|
915
|
+
}
|
|
916
|
+
.c-mx-7 {
|
|
917
|
+
margin-left: 7px;
|
|
918
|
+
margin-right: 7px;
|
|
919
|
+
}
|
|
920
|
+
.c-my-7 {
|
|
921
|
+
margin-top: 7px;
|
|
922
|
+
margin-bottom: 7px;
|
|
923
|
+
}
|
|
924
|
+
.c-pt-7 {
|
|
925
|
+
padding-top: 7px;
|
|
926
|
+
}
|
|
927
|
+
.c-pb-7 {
|
|
928
|
+
padding-bottom: 7px;
|
|
929
|
+
}
|
|
930
|
+
.c-pl-7 {
|
|
931
|
+
padding-left: 7px;
|
|
932
|
+
}
|
|
933
|
+
.c-pr-7 {
|
|
934
|
+
padding-right: 7px;
|
|
935
|
+
}
|
|
936
|
+
.c-px-7 {
|
|
937
|
+
padding-left: 7px;
|
|
938
|
+
padding-right: 7px;
|
|
939
|
+
}
|
|
940
|
+
.c-py-7 {
|
|
941
|
+
padding-top: 7px;
|
|
942
|
+
padding-bottom: 7px;
|
|
943
|
+
}
|
|
944
|
+
.c-mt-8 {
|
|
945
|
+
margin-top: 8px;
|
|
946
|
+
}
|
|
947
|
+
.c-mb-8 {
|
|
948
|
+
margin-bottom: 8px;
|
|
949
|
+
}
|
|
950
|
+
.c-ml-8 {
|
|
951
|
+
margin-left: 8px;
|
|
952
|
+
}
|
|
953
|
+
.c-mr-8 {
|
|
954
|
+
margin-right: 8px;
|
|
955
|
+
}
|
|
956
|
+
.c-mx-8 {
|
|
957
|
+
margin-left: 8px;
|
|
958
|
+
margin-right: 8px;
|
|
959
|
+
}
|
|
960
|
+
.c-my-8 {
|
|
961
|
+
margin-top: 8px;
|
|
962
|
+
margin-bottom: 8px;
|
|
963
|
+
}
|
|
964
|
+
.c-pt-8 {
|
|
965
|
+
padding-top: 8px;
|
|
966
|
+
}
|
|
967
|
+
.c-pb-8 {
|
|
968
|
+
padding-bottom: 8px;
|
|
969
|
+
}
|
|
970
|
+
.c-pl-8 {
|
|
971
|
+
padding-left: 8px;
|
|
972
|
+
}
|
|
973
|
+
.c-pr-8 {
|
|
974
|
+
padding-right: 8px;
|
|
975
|
+
}
|
|
976
|
+
.c-px-8 {
|
|
977
|
+
padding-left: 8px;
|
|
978
|
+
padding-right: 8px;
|
|
979
|
+
}
|
|
980
|
+
.c-py-8 {
|
|
981
|
+
padding-top: 8px;
|
|
982
|
+
padding-bottom: 8px;
|
|
983
|
+
}
|
|
984
|
+
.c-mt-9 {
|
|
985
|
+
margin-top: 9px;
|
|
986
|
+
}
|
|
987
|
+
.c-mb-9 {
|
|
988
|
+
margin-bottom: 9px;
|
|
989
|
+
}
|
|
990
|
+
.c-ml-9 {
|
|
991
|
+
margin-left: 9px;
|
|
992
|
+
}
|
|
993
|
+
.c-mr-9 {
|
|
994
|
+
margin-right: 9px;
|
|
995
|
+
}
|
|
996
|
+
.c-mx-9 {
|
|
997
|
+
margin-left: 9px;
|
|
998
|
+
margin-right: 9px;
|
|
999
|
+
}
|
|
1000
|
+
.c-my-9 {
|
|
1001
|
+
margin-top: 9px;
|
|
1002
|
+
margin-bottom: 9px;
|
|
1003
|
+
}
|
|
1004
|
+
.c-pt-9 {
|
|
1005
|
+
padding-top: 9px;
|
|
1006
|
+
}
|
|
1007
|
+
.c-pb-9 {
|
|
1008
|
+
padding-bottom: 9px;
|
|
1009
|
+
}
|
|
1010
|
+
.c-pl-9 {
|
|
1011
|
+
padding-left: 9px;
|
|
1012
|
+
}
|
|
1013
|
+
.c-pr-9 {
|
|
1014
|
+
padding-right: 9px;
|
|
1015
|
+
}
|
|
1016
|
+
.c-px-9 {
|
|
1017
|
+
padding-left: 9px;
|
|
1018
|
+
padding-right: 9px;
|
|
1019
|
+
}
|
|
1020
|
+
.c-py-9 {
|
|
1021
|
+
padding-top: 9px;
|
|
1022
|
+
padding-bottom: 9px;
|
|
1023
|
+
}
|
|
1024
|
+
.c-mt-10 {
|
|
1025
|
+
margin-top: 10px;
|
|
1026
|
+
}
|
|
1027
|
+
.c-mb-10 {
|
|
1028
|
+
margin-bottom: 10px;
|
|
1029
|
+
}
|
|
1030
|
+
.c-ml-10 {
|
|
1031
|
+
margin-left: 10px;
|
|
1032
|
+
}
|
|
1033
|
+
.c-mr-10 {
|
|
1034
|
+
margin-right: 10px;
|
|
1035
|
+
}
|
|
1036
|
+
.c-mx-10 {
|
|
1037
|
+
margin-left: 10px;
|
|
1038
|
+
margin-right: 10px;
|
|
1039
|
+
}
|
|
1040
|
+
.c-my-10 {
|
|
1041
|
+
margin-top: 10px;
|
|
1042
|
+
margin-bottom: 10px;
|
|
1043
|
+
}
|
|
1044
|
+
.c-pt-10 {
|
|
1045
|
+
padding-top: 10px;
|
|
1046
|
+
}
|
|
1047
|
+
.c-pb-10 {
|
|
1048
|
+
padding-bottom: 10px;
|
|
1049
|
+
}
|
|
1050
|
+
.c-pl-10 {
|
|
1051
|
+
padding-left: 10px;
|
|
1052
|
+
}
|
|
1053
|
+
.c-pr-10 {
|
|
1054
|
+
padding-right: 10px;
|
|
1055
|
+
}
|
|
1056
|
+
.c-px-10 {
|
|
1057
|
+
padding-left: 10px;
|
|
1058
|
+
padding-right: 10px;
|
|
1059
|
+
}
|
|
1060
|
+
.c-py-10 {
|
|
1061
|
+
padding-top: 10px;
|
|
1062
|
+
padding-bottom: 10px;
|
|
1063
|
+
}
|
|
1064
|
+
.c-mt-11 {
|
|
1065
|
+
margin-top: 11px;
|
|
1066
|
+
}
|
|
1067
|
+
.c-mb-11 {
|
|
1068
|
+
margin-bottom: 11px;
|
|
1069
|
+
}
|
|
1070
|
+
.c-ml-11 {
|
|
1071
|
+
margin-left: 11px;
|
|
1072
|
+
}
|
|
1073
|
+
.c-mr-11 {
|
|
1074
|
+
margin-right: 11px;
|
|
1075
|
+
}
|
|
1076
|
+
.c-mx-11 {
|
|
1077
|
+
margin-left: 11px;
|
|
1078
|
+
margin-right: 11px;
|
|
1079
|
+
}
|
|
1080
|
+
.c-my-11 {
|
|
1081
|
+
margin-top: 11px;
|
|
1082
|
+
margin-bottom: 11px;
|
|
1083
|
+
}
|
|
1084
|
+
.c-pt-11 {
|
|
1085
|
+
padding-top: 11px;
|
|
1086
|
+
}
|
|
1087
|
+
.c-pb-11 {
|
|
1088
|
+
padding-bottom: 11px;
|
|
1089
|
+
}
|
|
1090
|
+
.c-pl-11 {
|
|
1091
|
+
padding-left: 11px;
|
|
1092
|
+
}
|
|
1093
|
+
.c-pr-11 {
|
|
1094
|
+
padding-right: 11px;
|
|
1095
|
+
}
|
|
1096
|
+
.c-px-11 {
|
|
1097
|
+
padding-left: 11px;
|
|
1098
|
+
padding-right: 11px;
|
|
1099
|
+
}
|
|
1100
|
+
.c-py-11 {
|
|
1101
|
+
padding-top: 11px;
|
|
1102
|
+
padding-bottom: 11px;
|
|
1103
|
+
}
|
|
1104
|
+
.c-mt-12 {
|
|
1105
|
+
margin-top: 12px;
|
|
1106
|
+
}
|
|
1107
|
+
.c-mb-12 {
|
|
1108
|
+
margin-bottom: 12px;
|
|
1109
|
+
}
|
|
1110
|
+
.c-ml-12 {
|
|
1111
|
+
margin-left: 12px;
|
|
1112
|
+
}
|
|
1113
|
+
.c-mr-12 {
|
|
1114
|
+
margin-right: 12px;
|
|
1115
|
+
}
|
|
1116
|
+
.c-mx-12 {
|
|
1117
|
+
margin-left: 12px;
|
|
1118
|
+
margin-right: 12px;
|
|
1119
|
+
}
|
|
1120
|
+
.c-my-12 {
|
|
1121
|
+
margin-top: 12px;
|
|
1122
|
+
margin-bottom: 12px;
|
|
1123
|
+
}
|
|
1124
|
+
.c-pt-12 {
|
|
1125
|
+
padding-top: 12px;
|
|
1126
|
+
}
|
|
1127
|
+
.c-pb-12 {
|
|
1128
|
+
padding-bottom: 12px;
|
|
1129
|
+
}
|
|
1130
|
+
.c-pl-12 {
|
|
1131
|
+
padding-left: 12px;
|
|
1132
|
+
}
|
|
1133
|
+
.c-pr-12 {
|
|
1134
|
+
padding-right: 12px;
|
|
1135
|
+
}
|
|
1136
|
+
.c-px-12 {
|
|
1137
|
+
padding-left: 12px;
|
|
1138
|
+
padding-right: 12px;
|
|
1139
|
+
}
|
|
1140
|
+
.c-py-12 {
|
|
1141
|
+
padding-top: 12px;
|
|
1142
|
+
padding-bottom: 12px;
|
|
1143
|
+
}
|
|
1144
|
+
.c-mt-13 {
|
|
1145
|
+
margin-top: 13px;
|
|
1146
|
+
}
|
|
1147
|
+
.c-mb-13 {
|
|
1148
|
+
margin-bottom: 13px;
|
|
1149
|
+
}
|
|
1150
|
+
.c-ml-13 {
|
|
1151
|
+
margin-left: 13px;
|
|
1152
|
+
}
|
|
1153
|
+
.c-mr-13 {
|
|
1154
|
+
margin-right: 13px;
|
|
1155
|
+
}
|
|
1156
|
+
.c-mx-13 {
|
|
1157
|
+
margin-left: 13px;
|
|
1158
|
+
margin-right: 13px;
|
|
1159
|
+
}
|
|
1160
|
+
.c-my-13 {
|
|
1161
|
+
margin-top: 13px;
|
|
1162
|
+
margin-bottom: 13px;
|
|
1163
|
+
}
|
|
1164
|
+
.c-pt-13 {
|
|
1165
|
+
padding-top: 13px;
|
|
1166
|
+
}
|
|
1167
|
+
.c-pb-13 {
|
|
1168
|
+
padding-bottom: 13px;
|
|
1169
|
+
}
|
|
1170
|
+
.c-pl-13 {
|
|
1171
|
+
padding-left: 13px;
|
|
1172
|
+
}
|
|
1173
|
+
.c-pr-13 {
|
|
1174
|
+
padding-right: 13px;
|
|
1175
|
+
}
|
|
1176
|
+
.c-px-13 {
|
|
1177
|
+
padding-left: 13px;
|
|
1178
|
+
padding-right: 13px;
|
|
1179
|
+
}
|
|
1180
|
+
.c-py-13 {
|
|
1181
|
+
padding-top: 13px;
|
|
1182
|
+
padding-bottom: 13px;
|
|
1183
|
+
}
|
|
1184
|
+
.c-mt-14 {
|
|
1185
|
+
margin-top: 14px;
|
|
1186
|
+
}
|
|
1187
|
+
.c-mb-14 {
|
|
1188
|
+
margin-bottom: 14px;
|
|
1189
|
+
}
|
|
1190
|
+
.c-ml-14 {
|
|
1191
|
+
margin-left: 14px;
|
|
1192
|
+
}
|
|
1193
|
+
.c-mr-14 {
|
|
1194
|
+
margin-right: 14px;
|
|
1195
|
+
}
|
|
1196
|
+
.c-mx-14 {
|
|
1197
|
+
margin-left: 14px;
|
|
1198
|
+
margin-right: 14px;
|
|
1199
|
+
}
|
|
1200
|
+
.c-my-14 {
|
|
1201
|
+
margin-top: 14px;
|
|
1202
|
+
margin-bottom: 14px;
|
|
1203
|
+
}
|
|
1204
|
+
.c-pt-14 {
|
|
1205
|
+
padding-top: 14px;
|
|
1206
|
+
}
|
|
1207
|
+
.c-pb-14 {
|
|
1208
|
+
padding-bottom: 14px;
|
|
1209
|
+
}
|
|
1210
|
+
.c-pl-14 {
|
|
1211
|
+
padding-left: 14px;
|
|
1212
|
+
}
|
|
1213
|
+
.c-pr-14 {
|
|
1214
|
+
padding-right: 14px;
|
|
1215
|
+
}
|
|
1216
|
+
.c-px-14 {
|
|
1217
|
+
padding-left: 14px;
|
|
1218
|
+
padding-right: 14px;
|
|
1219
|
+
}
|
|
1220
|
+
.c-py-14 {
|
|
1221
|
+
padding-top: 14px;
|
|
1222
|
+
padding-bottom: 14px;
|
|
1223
|
+
}
|
|
1224
|
+
.c-mt-15 {
|
|
1225
|
+
margin-top: 15px;
|
|
1226
|
+
}
|
|
1227
|
+
.c-mb-15 {
|
|
1228
|
+
margin-bottom: 15px;
|
|
1229
|
+
}
|
|
1230
|
+
.c-ml-15 {
|
|
1231
|
+
margin-left: 15px;
|
|
1232
|
+
}
|
|
1233
|
+
.c-mr-15 {
|
|
1234
|
+
margin-right: 15px;
|
|
1235
|
+
}
|
|
1236
|
+
.c-mx-15 {
|
|
1237
|
+
margin-left: 15px;
|
|
1238
|
+
margin-right: 15px;
|
|
1239
|
+
}
|
|
1240
|
+
.c-my-15 {
|
|
1241
|
+
margin-top: 15px;
|
|
1242
|
+
margin-bottom: 15px;
|
|
1243
|
+
}
|
|
1244
|
+
.c-pt-15 {
|
|
1245
|
+
padding-top: 15px;
|
|
1246
|
+
}
|
|
1247
|
+
.c-pb-15 {
|
|
1248
|
+
padding-bottom: 15px;
|
|
1249
|
+
}
|
|
1250
|
+
.c-pl-15 {
|
|
1251
|
+
padding-left: 15px;
|
|
1252
|
+
}
|
|
1253
|
+
.c-pr-15 {
|
|
1254
|
+
padding-right: 15px;
|
|
1255
|
+
}
|
|
1256
|
+
.c-px-15 {
|
|
1257
|
+
padding-left: 15px;
|
|
1258
|
+
padding-right: 15px;
|
|
1259
|
+
}
|
|
1260
|
+
.c-py-15 {
|
|
1261
|
+
padding-top: 15px;
|
|
1262
|
+
padding-bottom: 15px;
|
|
1263
|
+
}
|
|
1264
|
+
.c-mt-16 {
|
|
1265
|
+
margin-top: 16px;
|
|
1266
|
+
}
|
|
1267
|
+
.c-mb-16 {
|
|
1268
|
+
margin-bottom: 16px;
|
|
1269
|
+
}
|
|
1270
|
+
.c-ml-16 {
|
|
1271
|
+
margin-left: 16px;
|
|
1272
|
+
}
|
|
1273
|
+
.c-mr-16 {
|
|
1274
|
+
margin-right: 16px;
|
|
1275
|
+
}
|
|
1276
|
+
.c-mx-16 {
|
|
1277
|
+
margin-left: 16px;
|
|
1278
|
+
margin-right: 16px;
|
|
1279
|
+
}
|
|
1280
|
+
.c-my-16 {
|
|
1281
|
+
margin-top: 16px;
|
|
1282
|
+
margin-bottom: 16px;
|
|
1283
|
+
}
|
|
1284
|
+
.c-pt-16 {
|
|
1285
|
+
padding-top: 16px;
|
|
1286
|
+
}
|
|
1287
|
+
.c-pb-16 {
|
|
1288
|
+
padding-bottom: 16px;
|
|
1289
|
+
}
|
|
1290
|
+
.c-pl-16 {
|
|
1291
|
+
padding-left: 16px;
|
|
1292
|
+
}
|
|
1293
|
+
.c-pr-16 {
|
|
1294
|
+
padding-right: 16px;
|
|
1295
|
+
}
|
|
1296
|
+
.c-px-16 {
|
|
1297
|
+
padding-left: 16px;
|
|
1298
|
+
padding-right: 16px;
|
|
1299
|
+
}
|
|
1300
|
+
.c-py-16 {
|
|
1301
|
+
padding-top: 16px;
|
|
1302
|
+
padding-bottom: 16px;
|
|
1303
|
+
}
|
|
1304
|
+
.c-mt-17 {
|
|
1305
|
+
margin-top: 17px;
|
|
1306
|
+
}
|
|
1307
|
+
.c-mb-17 {
|
|
1308
|
+
margin-bottom: 17px;
|
|
1309
|
+
}
|
|
1310
|
+
.c-ml-17 {
|
|
1311
|
+
margin-left: 17px;
|
|
1312
|
+
}
|
|
1313
|
+
.c-mr-17 {
|
|
1314
|
+
margin-right: 17px;
|
|
1315
|
+
}
|
|
1316
|
+
.c-mx-17 {
|
|
1317
|
+
margin-left: 17px;
|
|
1318
|
+
margin-right: 17px;
|
|
1319
|
+
}
|
|
1320
|
+
.c-my-17 {
|
|
1321
|
+
margin-top: 17px;
|
|
1322
|
+
margin-bottom: 17px;
|
|
1323
|
+
}
|
|
1324
|
+
.c-pt-17 {
|
|
1325
|
+
padding-top: 17px;
|
|
1326
|
+
}
|
|
1327
|
+
.c-pb-17 {
|
|
1328
|
+
padding-bottom: 17px;
|
|
1329
|
+
}
|
|
1330
|
+
.c-pl-17 {
|
|
1331
|
+
padding-left: 17px;
|
|
1332
|
+
}
|
|
1333
|
+
.c-pr-17 {
|
|
1334
|
+
padding-right: 17px;
|
|
1335
|
+
}
|
|
1336
|
+
.c-px-17 {
|
|
1337
|
+
padding-left: 17px;
|
|
1338
|
+
padding-right: 17px;
|
|
1339
|
+
}
|
|
1340
|
+
.c-py-17 {
|
|
1341
|
+
padding-top: 17px;
|
|
1342
|
+
padding-bottom: 17px;
|
|
1343
|
+
}
|
|
1344
|
+
.c-mt-18 {
|
|
1345
|
+
margin-top: 18px;
|
|
1346
|
+
}
|
|
1347
|
+
.c-mb-18 {
|
|
1348
|
+
margin-bottom: 18px;
|
|
1349
|
+
}
|
|
1350
|
+
.c-ml-18 {
|
|
1351
|
+
margin-left: 18px;
|
|
1352
|
+
}
|
|
1353
|
+
.c-mr-18 {
|
|
1354
|
+
margin-right: 18px;
|
|
1355
|
+
}
|
|
1356
|
+
.c-mx-18 {
|
|
1357
|
+
margin-left: 18px;
|
|
1358
|
+
margin-right: 18px;
|
|
1359
|
+
}
|
|
1360
|
+
.c-my-18 {
|
|
1361
|
+
margin-top: 18px;
|
|
1362
|
+
margin-bottom: 18px;
|
|
1363
|
+
}
|
|
1364
|
+
.c-pt-18 {
|
|
1365
|
+
padding-top: 18px;
|
|
1366
|
+
}
|
|
1367
|
+
.c-pb-18 {
|
|
1368
|
+
padding-bottom: 18px;
|
|
1369
|
+
}
|
|
1370
|
+
.c-pl-18 {
|
|
1371
|
+
padding-left: 18px;
|
|
1372
|
+
}
|
|
1373
|
+
.c-pr-18 {
|
|
1374
|
+
padding-right: 18px;
|
|
1375
|
+
}
|
|
1376
|
+
.c-px-18 {
|
|
1377
|
+
padding-left: 18px;
|
|
1378
|
+
padding-right: 18px;
|
|
1379
|
+
}
|
|
1380
|
+
.c-py-18 {
|
|
1381
|
+
padding-top: 18px;
|
|
1382
|
+
padding-bottom: 18px;
|
|
1383
|
+
}
|
|
1384
|
+
.c-mt-19 {
|
|
1385
|
+
margin-top: 19px;
|
|
1386
|
+
}
|
|
1387
|
+
.c-mb-19 {
|
|
1388
|
+
margin-bottom: 19px;
|
|
1389
|
+
}
|
|
1390
|
+
.c-ml-19 {
|
|
1391
|
+
margin-left: 19px;
|
|
1392
|
+
}
|
|
1393
|
+
.c-mr-19 {
|
|
1394
|
+
margin-right: 19px;
|
|
1395
|
+
}
|
|
1396
|
+
.c-mx-19 {
|
|
1397
|
+
margin-left: 19px;
|
|
1398
|
+
margin-right: 19px;
|
|
1399
|
+
}
|
|
1400
|
+
.c-my-19 {
|
|
1401
|
+
margin-top: 19px;
|
|
1402
|
+
margin-bottom: 19px;
|
|
1403
|
+
}
|
|
1404
|
+
.c-pt-19 {
|
|
1405
|
+
padding-top: 19px;
|
|
1406
|
+
}
|
|
1407
|
+
.c-pb-19 {
|
|
1408
|
+
padding-bottom: 19px;
|
|
1409
|
+
}
|
|
1410
|
+
.c-pl-19 {
|
|
1411
|
+
padding-left: 19px;
|
|
1412
|
+
}
|
|
1413
|
+
.c-pr-19 {
|
|
1414
|
+
padding-right: 19px;
|
|
1415
|
+
}
|
|
1416
|
+
.c-px-19 {
|
|
1417
|
+
padding-left: 19px;
|
|
1418
|
+
padding-right: 19px;
|
|
1419
|
+
}
|
|
1420
|
+
.c-py-19 {
|
|
1421
|
+
padding-top: 19px;
|
|
1422
|
+
padding-bottom: 19px;
|
|
1423
|
+
}
|
|
1424
|
+
.c-mt-20 {
|
|
1425
|
+
margin-top: 20px;
|
|
1426
|
+
}
|
|
1427
|
+
.c-mb-20 {
|
|
1428
|
+
margin-bottom: 20px;
|
|
1429
|
+
}
|
|
1430
|
+
.c-ml-20 {
|
|
1431
|
+
margin-left: 20px;
|
|
1432
|
+
}
|
|
1433
|
+
.c-mr-20 {
|
|
1434
|
+
margin-right: 20px;
|
|
1435
|
+
}
|
|
1436
|
+
.c-mx-20 {
|
|
1437
|
+
margin-left: 20px;
|
|
1438
|
+
margin-right: 20px;
|
|
1439
|
+
}
|
|
1440
|
+
.c-my-20 {
|
|
1441
|
+
margin-top: 20px;
|
|
1442
|
+
margin-bottom: 20px;
|
|
1443
|
+
}
|
|
1444
|
+
.c-pt-20 {
|
|
1445
|
+
padding-top: 20px;
|
|
1446
|
+
}
|
|
1447
|
+
.c-pb-20 {
|
|
1448
|
+
padding-bottom: 20px;
|
|
1449
|
+
}
|
|
1450
|
+
.c-pl-20 {
|
|
1451
|
+
padding-left: 20px;
|
|
1452
|
+
}
|
|
1453
|
+
.c-pr-20 {
|
|
1454
|
+
padding-right: 20px;
|
|
1455
|
+
}
|
|
1456
|
+
.c-px-20 {
|
|
1457
|
+
padding-left: 20px;
|
|
1458
|
+
padding-right: 20px;
|
|
1459
|
+
}
|
|
1460
|
+
.c-py-20 {
|
|
1461
|
+
padding-top: 20px;
|
|
1462
|
+
padding-bottom: 20px;
|
|
1463
|
+
}
|
|
1464
|
+
/* 定位相关 */
|
|
1465
|
+
.c-absolute {
|
|
1466
|
+
position: absolute;
|
|
1467
|
+
}
|
|
1468
|
+
.c-relative {
|
|
1469
|
+
position: relative;
|
|
1470
|
+
}
|
|
1471
|
+
/*下划线、右划线伪类*/
|
|
1472
|
+
.c-underline,
|
|
1473
|
+
.c-rightLine {
|
|
1474
|
+
position: relative;
|
|
1475
|
+
}
|
|
1476
|
+
.c-underline::after {
|
|
1477
|
+
position: absolute;
|
|
1478
|
+
box-sizing: border-box;
|
|
1479
|
+
content: " ";
|
|
1480
|
+
pointer-events: none;
|
|
1481
|
+
right: 0;
|
|
1482
|
+
bottom: 0;
|
|
1483
|
+
left: 0;
|
|
1484
|
+
border-bottom: 1px solid var(--c-gray-color1, #ebedf0);
|
|
1485
|
+
transform: scaleY(1);
|
|
1486
|
+
}
|
|
1487
|
+
.c-rightLine::after {
|
|
1488
|
+
position: absolute;
|
|
1489
|
+
box-sizing: border-box;
|
|
1490
|
+
content: " ";
|
|
1491
|
+
pointer-events: none;
|
|
1492
|
+
top: 0;
|
|
1493
|
+
right: 0;
|
|
1494
|
+
bottom: 0;
|
|
1495
|
+
border-right: 1px solid var(--c-gray-color1, #ebedf0);
|
|
1496
|
+
transform: scaleY(1);
|
|
1497
|
+
}
|
|
1498
|
+
/* 溢出隐藏,显示... */
|
|
1499
|
+
.c-overflow-auto {
|
|
1500
|
+
overflow: auto;
|
|
1501
|
+
}
|
|
1502
|
+
.c-overflow-hidden {
|
|
1503
|
+
overflow: hidden;
|
|
1504
|
+
}
|
|
1505
|
+
.c-overflow {
|
|
1506
|
+
/* 超出部分隐藏 */
|
|
1507
|
+
overflow: hidden;
|
|
1508
|
+
/* 超出部分文字以...显示 */
|
|
1509
|
+
text-overflow: ellipsis;
|
|
1510
|
+
/* 不换行 */
|
|
1511
|
+
white-space: nowrap;
|
|
1512
|
+
}
|
|
1513
|
+
/* 文本2行显示省略号...,只兼容webkit内核 */
|
|
1514
|
+
.c-overflow2 {
|
|
1515
|
+
/* 超出部分隐藏 */
|
|
1516
|
+
overflow: hidden;
|
|
1517
|
+
/* 超出部分文字以...显示 */
|
|
1518
|
+
text-overflow: ellipsis;
|
|
1519
|
+
line-clamp: 2;
|
|
1520
|
+
-webkit-line-clamp: 2;
|
|
1521
|
+
display: -webkit-box;
|
|
1522
|
+
-webkit-box-orient: vertical;
|
|
1523
|
+
}
|
|
1524
|
+
/* 隐藏 */
|
|
1525
|
+
.c-hide {
|
|
1526
|
+
display: none;
|
|
1527
|
+
}
|
|
1528
|
+
/* 表格样式:c-table带鼠标悬浮,c-table2不带鼠标悬浮 */
|
|
1529
|
+
.c-table,
|
|
1530
|
+
.c-table2 {
|
|
1531
|
+
width: 100%;
|
|
1532
|
+
color: var(--c-text-color2, #666);
|
|
1533
|
+
background-color: var(--c-bg-color1, #fff);
|
|
1534
|
+
border-collapse: collapse;
|
|
1535
|
+
border-spacing: 0;
|
|
1536
|
+
}
|
|
1537
|
+
.c-table thead tr,
|
|
1538
|
+
.c-table2 thead tr,
|
|
1539
|
+
.c-table tbody tr:hover {
|
|
1540
|
+
background-color: var(--c-gray-color1, #ebedf0);
|
|
1541
|
+
}
|
|
1542
|
+
.c-table thead th,
|
|
1543
|
+
.c-table tbody td,
|
|
1544
|
+
.c-table2 thead th,
|
|
1545
|
+
.c-table2 tbody td {
|
|
1546
|
+
position: relative;
|
|
1547
|
+
padding: 5px;
|
|
1548
|
+
font-size: 12px;
|
|
1549
|
+
min-height: 2em;
|
|
1550
|
+
line-height: 2em;
|
|
1551
|
+
border-width: 1px;
|
|
1552
|
+
border-style: solid;
|
|
1553
|
+
border-color: var(--c-gray-color5, #c9c6c6);
|
|
1554
|
+
font-weight: 400;
|
|
1555
|
+
word-break: break-all;
|
|
1556
|
+
text-align: center;
|
|
1557
|
+
}
|
|
1558
|
+
/* 默认是居中的,加上这个可以居左 */
|
|
1559
|
+
.c-table.c-text-left thead th,
|
|
1560
|
+
.c-table.c-text-left tbody td,
|
|
1561
|
+
.c-table2.c-text-left thead th,
|
|
1562
|
+
.c-table2.c-text-left tbody td {
|
|
1563
|
+
text-align: left;
|
|
1564
|
+
}
|
|
1565
|
+
/** 左侧label */
|
|
1566
|
+
.c-table tbody .ctdLabel,
|
|
1567
|
+
.c-table2 tbody .ctdLabel {
|
|
1568
|
+
background: var(--c-gray-color1, #ebedf0);
|
|
1569
|
+
}
|
|
1570
|
+
.c-cursor-pointer {
|
|
1571
|
+
cursor: pointer;
|
|
1572
|
+
}
|
|
1573
|
+
/* 浮动:设置内联, 减少浮动带来的bug */
|
|
1574
|
+
.c-left,
|
|
1575
|
+
.c-right {
|
|
1576
|
+
display: inline;
|
|
1577
|
+
}
|
|
1578
|
+
.c-left {
|
|
1579
|
+
float: left;
|
|
1580
|
+
}
|
|
1581
|
+
.c-right {
|
|
1582
|
+
float: right;
|
|
1583
|
+
}
|
|
1584
|
+
/* 清理浮动 */
|
|
1585
|
+
.c-clear:after {
|
|
1586
|
+
visibility: hidden;
|
|
1587
|
+
display: block;
|
|
1588
|
+
font-size: 0;
|
|
1589
|
+
content: " ";
|
|
1590
|
+
clear: both;
|
|
1591
|
+
height: 0;
|
|
1592
|
+
}
|
|
1593
|
+
.c-clear {
|
|
1594
|
+
zoom: 1;
|
|
1595
|
+
/* for IE6 IE7 */
|
|
1596
|
+
}
|