@sugarat/theme 0.5.10 → 0.5.12-beta.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/node.d.ts +2 -4
- package/node.js +206 -156
- package/node.mjs +205 -154
- package/package.json +10 -14
- package/src/components/Alert.vue +308 -0
- package/src/components/Avatar.vue +66 -0
- package/src/components/BlogAlert.vue +4 -4
- package/src/components/BlogApp.vue +4 -0
- package/src/components/BlogArticleAnalyze.vue +70 -32
- package/src/components/BlogButtonAfterArticle.vue +4 -4
- package/src/components/BlogFriendLink.vue +54 -27
- package/src/components/BlogHomeInfo.vue +1 -3
- package/src/components/BlogHomeTags.vue +8 -14
- package/src/components/BlogHotArticle.vue +3 -3
- package/src/components/BlogImagePreview.vue +3 -3
- package/src/components/BlogList.vue +7 -8
- package/src/components/BlogRecommendArticle.vue +3 -3
- package/src/components/Button.vue +165 -0
- package/src/components/Carousel.vue +254 -0
- package/src/components/CarouselItem.vue +154 -0
- package/src/components/Image.vue +34 -0
- package/src/components/ImageViewer.vue +406 -0
- package/src/components/Pagination.vue +397 -0
- package/src/components/Tag.vue +163 -0
- package/src/components/UserWorks.vue +19 -22
- package/src/composables/config/blog.ts +6 -1
- package/src/composables/config/index.ts +2 -2
- package/src/index.ts +10 -17
- package/src/node.ts +0 -3
- package/src/styles/el-base.css +340 -0
- package/src/utils/client/index.ts +17 -0
- package/src/utils/node/mdPlugins.ts +1 -1
- package/src/utils/node/theme.ts +5 -2
- package/src/utils/node/vitePlugins.ts +51 -18
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
import { computed, onMounted, onUnmounted, reactive, ref, watch } from 'vue'
|
|
3
|
+
import { useScrollLock } from '@vueuse/core'
|
|
4
|
+
|
|
5
|
+
const props = defineProps({
|
|
6
|
+
urlList: {
|
|
7
|
+
type: Array as () => string[],
|
|
8
|
+
default: () => [],
|
|
9
|
+
},
|
|
10
|
+
initialIndex: {
|
|
11
|
+
type: Number,
|
|
12
|
+
default: 0,
|
|
13
|
+
},
|
|
14
|
+
infinite: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true,
|
|
17
|
+
},
|
|
18
|
+
hideOnClickModal: {
|
|
19
|
+
type: Boolean,
|
|
20
|
+
default: false,
|
|
21
|
+
},
|
|
22
|
+
teleported: {
|
|
23
|
+
type: Boolean,
|
|
24
|
+
default: false,
|
|
25
|
+
},
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
const emit = defineEmits(['close', 'switch'])
|
|
29
|
+
|
|
30
|
+
const index = ref(props.initialIndex)
|
|
31
|
+
const isLocked = useScrollLock(document.body)
|
|
32
|
+
|
|
33
|
+
const currentImg = computed(() => props.urlList[index.value])
|
|
34
|
+
const isSingle = computed(() => props.urlList.length <= 1)
|
|
35
|
+
const isFirst = computed(() => index.value === 0)
|
|
36
|
+
const isLast = computed(() => index.value === props.urlList.length - 1)
|
|
37
|
+
|
|
38
|
+
const transform = reactive({
|
|
39
|
+
scale: 1,
|
|
40
|
+
deg: 0,
|
|
41
|
+
offsetX: 0,
|
|
42
|
+
offsetY: 0,
|
|
43
|
+
enableTransition: false,
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
const imgStyle = computed(() => ({
|
|
47
|
+
transform: `translate3d(${transform.offsetX}px, ${transform.offsetY}px, 0) scale(${transform.scale}) rotate(${transform.deg}deg)`,
|
|
48
|
+
transition: transform.enableTransition ? 'transform .3s' : '',
|
|
49
|
+
}))
|
|
50
|
+
|
|
51
|
+
function reset() {
|
|
52
|
+
transform.scale = 1
|
|
53
|
+
transform.deg = 0
|
|
54
|
+
transform.offsetX = 0
|
|
55
|
+
transform.offsetY = 0
|
|
56
|
+
transform.enableTransition = false
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
watch(index, () => {
|
|
60
|
+
reset()
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
function hide() {
|
|
64
|
+
isLocked.value = false
|
|
65
|
+
emit('close')
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function prev() {
|
|
69
|
+
if (isFirst.value && !props.infinite)
|
|
70
|
+
return
|
|
71
|
+
const len = props.urlList.length
|
|
72
|
+
index.value = (index.value - 1 + len) % len
|
|
73
|
+
emit('switch', index.value)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function next() {
|
|
77
|
+
if (isLast.value && !props.infinite)
|
|
78
|
+
return
|
|
79
|
+
const len = props.urlList.length
|
|
80
|
+
index.value = (index.value + 1) % len
|
|
81
|
+
emit('switch', index.value)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
function handleMaskClick() {
|
|
85
|
+
if (props.hideOnClickModal) {
|
|
86
|
+
hide()
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Actions
|
|
91
|
+
function handleActions(action: string) {
|
|
92
|
+
transform.enableTransition = true
|
|
93
|
+
switch (action) {
|
|
94
|
+
case 'zoomOut':
|
|
95
|
+
if (transform.scale > 0.2) {
|
|
96
|
+
transform.scale = parseFloat((transform.scale - 0.2).toFixed(3))
|
|
97
|
+
}
|
|
98
|
+
break
|
|
99
|
+
case 'zoomIn':
|
|
100
|
+
transform.scale = parseFloat((transform.scale + 0.2).toFixed(3))
|
|
101
|
+
break
|
|
102
|
+
case 'clockwise':
|
|
103
|
+
transform.deg += 90
|
|
104
|
+
break
|
|
105
|
+
case 'anticlockwise':
|
|
106
|
+
transform.deg -= 90
|
|
107
|
+
break
|
|
108
|
+
case 'original': // 1:1
|
|
109
|
+
reset()
|
|
110
|
+
break
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
function handleDownload() {
|
|
115
|
+
const a = document.createElement('a')
|
|
116
|
+
a.href = currentImg.value
|
|
117
|
+
a.target = '_blank'
|
|
118
|
+
a.download = ''
|
|
119
|
+
document.body.appendChild(a)
|
|
120
|
+
a.click()
|
|
121
|
+
document.body.removeChild(a)
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// Drag Logic
|
|
125
|
+
const isDragging = ref(false)
|
|
126
|
+
let startX = 0
|
|
127
|
+
let startY = 0
|
|
128
|
+
let startOffsetX = 0
|
|
129
|
+
let startOffsetY = 0
|
|
130
|
+
|
|
131
|
+
function handleMouseDown(e: MouseEvent) {
|
|
132
|
+
if (e.button !== 0)
|
|
133
|
+
return
|
|
134
|
+
transform.enableTransition = false
|
|
135
|
+
isDragging.value = true
|
|
136
|
+
startX = e.clientX
|
|
137
|
+
startY = e.clientY
|
|
138
|
+
startOffsetX = transform.offsetX
|
|
139
|
+
startOffsetY = transform.offsetY
|
|
140
|
+
e.preventDefault()
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
function handleMouseMove(e: MouseEvent) {
|
|
144
|
+
if (!isDragging.value)
|
|
145
|
+
return
|
|
146
|
+
const deltaX = e.clientX - startX
|
|
147
|
+
const deltaY = e.clientY - startY
|
|
148
|
+
transform.offsetX = startOffsetX + deltaX
|
|
149
|
+
transform.offsetY = startOffsetY + deltaY
|
|
150
|
+
e.preventDefault()
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
function handleMouseUp() {
|
|
154
|
+
isDragging.value = false
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// Wheel Zoom
|
|
158
|
+
function handleWheel(e: WheelEvent) {
|
|
159
|
+
const zoomRate = 0.1
|
|
160
|
+
const delta = e.deltaY < 0 ? 1 : -1
|
|
161
|
+
const newScale = parseFloat((transform.scale + delta * zoomRate).toFixed(3))
|
|
162
|
+
if (newScale >= 0.2) {
|
|
163
|
+
transform.scale = newScale
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
onMounted(() => {
|
|
168
|
+
isLocked.value = true
|
|
169
|
+
window.addEventListener('keydown', handleKeydown)
|
|
170
|
+
window.addEventListener('mouseup', handleMouseUp)
|
|
171
|
+
window.addEventListener('mousemove', handleMouseMove)
|
|
172
|
+
})
|
|
173
|
+
|
|
174
|
+
onUnmounted(() => {
|
|
175
|
+
isLocked.value = false
|
|
176
|
+
window.removeEventListener('keydown', handleKeydown)
|
|
177
|
+
window.removeEventListener('mouseup', handleMouseUp)
|
|
178
|
+
window.removeEventListener('mousemove', handleMouseMove)
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
function handleKeydown(e: KeyboardEvent) {
|
|
182
|
+
if (e.key === 'Escape') {
|
|
183
|
+
hide()
|
|
184
|
+
}
|
|
185
|
+
else if (e.key === 'ArrowLeft') {
|
|
186
|
+
prev()
|
|
187
|
+
}
|
|
188
|
+
else if (e.key === 'ArrowRight') {
|
|
189
|
+
next()
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
</script>
|
|
193
|
+
|
|
194
|
+
<template>
|
|
195
|
+
<Teleport to="body" :disabled="!teleported">
|
|
196
|
+
<transition name="viewer-fade">
|
|
197
|
+
<div class="sugar-image-viewer__wrapper" tabindex="-1" @wheel.prevent="handleWheel">
|
|
198
|
+
<div class="sugar-image-viewer__mask" @click="handleMaskClick" />
|
|
199
|
+
|
|
200
|
+
<!-- Close -->
|
|
201
|
+
<span class="sugar-image-viewer__btn sugar-image-viewer__close" @click="hide">
|
|
202
|
+
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill="currentColor" d="M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z" /></svg>
|
|
203
|
+
</span>
|
|
204
|
+
|
|
205
|
+
<!-- Arrows -->
|
|
206
|
+
<template v-if="!isSingle">
|
|
207
|
+
<span
|
|
208
|
+
class="sugar-image-viewer__btn sugar-image-viewer__prev"
|
|
209
|
+
:class="{ 'is-disabled': !infinite && isFirst }"
|
|
210
|
+
@click="prev"
|
|
211
|
+
>
|
|
212
|
+
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill="currentColor" d="M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z" /></svg>
|
|
213
|
+
</span>
|
|
214
|
+
<span
|
|
215
|
+
class="sugar-image-viewer__btn sugar-image-viewer__next"
|
|
216
|
+
:class="{ 'is-disabled': !infinite && isLast }"
|
|
217
|
+
@click="next"
|
|
218
|
+
>
|
|
219
|
+
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z" /></svg>
|
|
220
|
+
</span>
|
|
221
|
+
</template>
|
|
222
|
+
|
|
223
|
+
<!-- Actions Toolbar -->
|
|
224
|
+
<div class="sugar-image-viewer__actions">
|
|
225
|
+
<div class="sugar-image-viewer__actions__inner">
|
|
226
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleActions('zoomOut')"><path fill="currentColor" d="m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64" /></svg>
|
|
227
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleActions('zoomIn')"><path fill="currentColor" d="m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z" /></svg>
|
|
228
|
+
<i class="sugar-image-viewer__actions__divider" />
|
|
229
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleActions('original')"><path fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88" /></svg>
|
|
230
|
+
<i class="sugar-image-viewer__actions__divider" />
|
|
231
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleActions('anticlockwise')"><path fill="currentColor" d="M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z" /></svg>
|
|
232
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleActions('clockwise')"><path fill="currentColor" d="M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z" /></svg>
|
|
233
|
+
<i class="sugar-image-viewer__actions__divider" />
|
|
234
|
+
<svg width="1em" height="1em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" @click="handleDownload"><path fill="currentColor" d="M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z" /></svg>
|
|
235
|
+
</div>
|
|
236
|
+
</div>
|
|
237
|
+
|
|
238
|
+
<!-- Canvas -->
|
|
239
|
+
<div class="sugar-image-viewer__canvas">
|
|
240
|
+
<img
|
|
241
|
+
:src="currentImg"
|
|
242
|
+
:style="imgStyle"
|
|
243
|
+
class="sugar-image-viewer__img"
|
|
244
|
+
@mousedown="handleMouseDown"
|
|
245
|
+
>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</transition>
|
|
249
|
+
</Teleport>
|
|
250
|
+
</template>
|
|
251
|
+
|
|
252
|
+
<style lang="scss" scoped>
|
|
253
|
+
.sugar-image-viewer__wrapper {
|
|
254
|
+
position: fixed;
|
|
255
|
+
top: 0;
|
|
256
|
+
right: 0;
|
|
257
|
+
bottom: 0;
|
|
258
|
+
left: 0;
|
|
259
|
+
z-index: 2000;
|
|
260
|
+
display: flex;
|
|
261
|
+
align-items: center;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.sugar-image-viewer__mask {
|
|
266
|
+
position: absolute;
|
|
267
|
+
width: 100%;
|
|
268
|
+
height: 100%;
|
|
269
|
+
top: 0;
|
|
270
|
+
left: 0;
|
|
271
|
+
opacity: .5;
|
|
272
|
+
background: #000;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.sugar-image-viewer__btn {
|
|
276
|
+
position: absolute;
|
|
277
|
+
z-index: 1;
|
|
278
|
+
display: flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
justify-content: center;
|
|
281
|
+
border-radius: 50%;
|
|
282
|
+
opacity: .8;
|
|
283
|
+
cursor: pointer;
|
|
284
|
+
box-sizing: border-box;
|
|
285
|
+
user-select: none;
|
|
286
|
+
background-color: #606266;
|
|
287
|
+
color: #fff;
|
|
288
|
+
width: 44px;
|
|
289
|
+
height: 44px;
|
|
290
|
+
font-size: 24px;
|
|
291
|
+
|
|
292
|
+
&:hover {
|
|
293
|
+
border-color: #fff;
|
|
294
|
+
background-color: #909399;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
&.is-disabled {
|
|
298
|
+
cursor: not-allowed;
|
|
299
|
+
opacity: .3;
|
|
300
|
+
background-color: #606266;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.sugar-image-viewer__close {
|
|
305
|
+
top: 40px;
|
|
306
|
+
right: 40px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.sugar-image-viewer__prev {
|
|
310
|
+
top: 50%;
|
|
311
|
+
transform: translateY(-50%);
|
|
312
|
+
left: 40px;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.sugar-image-viewer__next {
|
|
316
|
+
top: 50%;
|
|
317
|
+
transform: translateY(-50%);
|
|
318
|
+
right: 40px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.sugar-image-viewer__actions {
|
|
322
|
+
left: 50%;
|
|
323
|
+
bottom: 30px;
|
|
324
|
+
transform: translateX(-50%);
|
|
325
|
+
min-width: 282px;
|
|
326
|
+
height: 44px;
|
|
327
|
+
padding: 0 23px;
|
|
328
|
+
background-color: #606266;
|
|
329
|
+
border-color: #fff;
|
|
330
|
+
border-radius: 22px;
|
|
331
|
+
position: absolute;
|
|
332
|
+
z-index: 1;
|
|
333
|
+
display: flex;
|
|
334
|
+
align-items: center;
|
|
335
|
+
justify-content: center;
|
|
336
|
+
opacity: .8;
|
|
337
|
+
box-sizing: border-box;
|
|
338
|
+
user-select: none;
|
|
339
|
+
|
|
340
|
+
&__inner {
|
|
341
|
+
width: 100%;
|
|
342
|
+
height: 100%;
|
|
343
|
+
text-align: justify;
|
|
344
|
+
cursor: default;
|
|
345
|
+
font-size: 23px;
|
|
346
|
+
color: #fff;
|
|
347
|
+
display: flex;
|
|
348
|
+
align-items: center;
|
|
349
|
+
justify-content: space-around;
|
|
350
|
+
gap: 12px;
|
|
351
|
+
|
|
352
|
+
svg {
|
|
353
|
+
cursor: pointer;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
&__divider {
|
|
358
|
+
display: inline-block;
|
|
359
|
+
width: 1px;
|
|
360
|
+
height: 18px;
|
|
361
|
+
margin: 0 10px;
|
|
362
|
+
background: hsla(0,0%,100%,.5);
|
|
363
|
+
vertical-align: middle;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.sugar-image-viewer__canvas {
|
|
368
|
+
width: 100%;
|
|
369
|
+
height: 100%;
|
|
370
|
+
display: flex;
|
|
371
|
+
justify-content: center;
|
|
372
|
+
align-items: center;
|
|
373
|
+
z-index: 0;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.sugar-image-viewer__img {
|
|
377
|
+
max-width: 100%;
|
|
378
|
+
max-height: 100%;
|
|
379
|
+
user-select: none;
|
|
380
|
+
pointer-events: auto;
|
|
381
|
+
cursor: grab;
|
|
382
|
+
transition: transform .3s;
|
|
383
|
+
|
|
384
|
+
&:active {
|
|
385
|
+
cursor: grabbing;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.viewer-fade-enter-active {
|
|
390
|
+
animation: viewer-fade-in .3s;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.viewer-fade-leave-active {
|
|
394
|
+
animation: viewer-fade-out .3s;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
@keyframes viewer-fade-in {
|
|
398
|
+
0% { opacity: 0; }
|
|
399
|
+
100% { opacity: 1; }
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
@keyframes viewer-fade-out {
|
|
403
|
+
0% { opacity: 1; }
|
|
404
|
+
100% { opacity: 0; }
|
|
405
|
+
}
|
|
406
|
+
</style>
|