')
373 | .append(i.clone())
374 | .remove()
375 | .html()
376 | .replace(/type="password"/i, 'type="text"')
377 | .replace(/type=password/i, 'type=text')
378 | );
379 |
380 | if (i.attr('id') != '')
381 | x.attr('id', i.attr('id') + '-polyfill-field');
382 |
383 | if (i.attr('name') != '')
384 | x.attr('name', i.attr('name') + '-polyfill-field');
385 |
386 | x.addClass('polyfill-placeholder')
387 | .val(x.attr('placeholder')).insertAfter(i);
388 |
389 | if (i.val() == '')
390 | i.hide();
391 | else
392 | x.hide();
393 |
394 | i
395 | .on('blur', function(event) {
396 |
397 | event.preventDefault();
398 |
399 | var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
400 |
401 | if (i.val() == '') {
402 |
403 | i.hide();
404 | x.show();
405 |
406 | }
407 |
408 | });
409 |
410 | x
411 | .on('focus', function(event) {
412 |
413 | event.preventDefault();
414 |
415 | var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
416 |
417 | x.hide();
418 |
419 | i
420 | .show()
421 | .focus();
422 |
423 | })
424 | .on('keypress', function(event) {
425 |
426 | event.preventDefault();
427 | x.val('');
428 |
429 | });
430 |
431 | });
432 |
433 | // Events.
434 | $this
435 | .on('submit', function() {
436 |
437 | $this.find('input[type=text],input[type=password],textarea')
438 | .each(function(event) {
439 |
440 | var i = $(this);
441 |
442 | if (i.attr('name').match(/-polyfill-field$/))
443 | i.attr('name', '');
444 |
445 | if (i.val() == i.attr('placeholder')) {
446 |
447 | i.removeClass('polyfill-placeholder');
448 | i.val('');
449 |
450 | }
451 |
452 | });
453 |
454 | })
455 | .on('reset', function(event) {
456 |
457 | event.preventDefault();
458 |
459 | $this.find('select')
460 | .val($('option:first').val());
461 |
462 | $this.find('input,textarea')
463 | .each(function() {
464 |
465 | var i = $(this),
466 | x;
467 |
468 | i.removeClass('polyfill-placeholder');
469 |
470 | switch (this.type) {
471 |
472 | case 'submit':
473 | case 'reset':
474 | break;
475 |
476 | case 'password':
477 | i.val(i.attr('defaultValue'));
478 |
479 | x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
480 |
481 | if (i.val() == '') {
482 | i.hide();
483 | x.show();
484 | }
485 | else {
486 | i.show();
487 | x.hide();
488 | }
489 |
490 | break;
491 |
492 | case 'checkbox':
493 | case 'radio':
494 | i.attr('checked', i.attr('defaultValue'));
495 | break;
496 |
497 | case 'text':
498 | case 'textarea':
499 | i.val(i.attr('defaultValue'));
500 |
501 | if (i.val() == '') {
502 | i.addClass('polyfill-placeholder');
503 | i.val(i.attr('placeholder'));
504 | }
505 |
506 | break;
507 |
508 | default:
509 | i.val(i.attr('defaultValue'));
510 | break;
511 |
512 | }
513 | });
514 |
515 | });
516 |
517 | return $this;
518 |
519 | };
520 |
521 | /**
522 | * Moves elements to/from the first positions of their respective parents.
523 | * @param {jQuery} $elements Elements (or selector) to move.
524 | * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
525 | */
526 | $.prioritize = function($elements, condition) {
527 |
528 | var key = '__prioritize';
529 |
530 | // Expand $elements if it's not already a jQuery object.
531 | if (typeof $elements != 'jQuery')
532 | $elements = $($elements);
533 |
534 | // Step through elements.
535 | $elements.each(function() {
536 |
537 | var $e = $(this), $p,
538 | $parent = $e.parent();
539 |
540 | // No parent? Bail.
541 | if ($parent.length == 0)
542 | return;
543 |
544 | // Not moved? Move it.
545 | if (!$e.data(key)) {
546 |
547 | // Condition is false? Bail.
548 | if (!condition)
549 | return;
550 |
551 | // Get placeholder (which will serve as our point of reference for when this element needs to move back).
552 | $p = $e.prev();
553 |
554 | // Couldn't find anything? Means this element's already at the top, so bail.
555 | if ($p.length == 0)
556 | return;
557 |
558 | // Move element to top of parent.
559 | $e.prependTo($parent);
560 |
561 | // Mark element as moved.
562 | $e.data(key, $p);
563 |
564 | }
565 |
566 | // Moved already?
567 | else {
568 |
569 | // Condition is true? Bail.
570 | if (condition)
571 | return;
572 |
573 | $p = $e.data(key);
574 |
575 | // Move element back to its original location (using our placeholder).
576 | $e.insertAfter($p);
577 |
578 | // Unmark element as moved.
579 | $e.removeData(key);
580 |
581 | }
582 |
583 | });
584 |
585 | };
586 |
587 | })(jQuery);
588 |
589 | document.write("
");
--------------------------------------------------------------------------------
/templates/assets/iconfont/iconfont.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "3736806",
3 | "name": "hao",
4 | "font_family": "iconfont",
5 | "css_prefix_text": "icon-",
6 | "description": "",
7 | "glyphs": [
8 | {
9 | "icon_id": "5633818",
10 | "name": "arrows-alt-h",
11 | "font_class": "arrows-alt-h",
12 | "unicode": "ef28",
13 | "unicode_decimal": 61224
14 | },
15 | {
16 | "icon_id": "5634298",
17 | "name": "plus-circle",
18 | "font_class": "plus-circle",
19 | "unicode": "f082",
20 | "unicode_decimal": 61570
21 | },
22 | {
23 | "icon_id": "3506983",
24 | "name": "csdn",
25 | "font_class": "csdn1",
26 | "unicode": "e608",
27 | "unicode_decimal": 58888
28 | },
29 | {
30 | "icon_id": "2041684",
31 | "name": "CN_cnblogs",
32 | "font_class": "CN_cnblogs",
33 | "unicode": "e64d",
34 | "unicode_decimal": 58957
35 | },
36 | {
37 | "icon_id": "15378535",
38 | "name": "leetcode",
39 | "font_class": "leetcode",
40 | "unicode": "ebf2",
41 | "unicode_decimal": 60402
42 | },
43 | {
44 | "icon_id": "18422914",
45 | "name": "juejin",
46 | "font_class": "juejin",
47 | "unicode": "e606",
48 | "unicode_decimal": 58886
49 | },
50 | {
51 | "icon_id": "18458782",
52 | "name": "infoQ",
53 | "font_class": "weibiaoti-1",
54 | "unicode": "e607",
55 | "unicode_decimal": 58887
56 | },
57 | {
58 | "icon_id": "829865",
59 | "name": "csdn",
60 | "font_class": "csdn",
61 | "unicode": "e60a",
62 | "unicode_decimal": 58890
63 | },
64 | {
65 | "icon_id": "833511",
66 | "name": "博客园",
67 | "font_class": "bokeyuan",
68 | "unicode": "e623",
69 | "unicode_decimal": 58915
70 | },
71 | {
72 | "icon_id": "4936975",
73 | "name": "yuque",
74 | "font_class": "yuque",
75 | "unicode": "e880",
76 | "unicode_decimal": 59520
77 | },
78 | {
79 | "icon_id": "13743995",
80 | "name": "jinritoutiao",
81 | "font_class": "jinritoutiao",
82 | "unicode": "e68d",
83 | "unicode_decimal": 59021
84 | },
85 | {
86 | "icon_id": "28650243",
87 | "name": "微信公众号",
88 | "font_class": "weixingongzhonghao",
89 | "unicode": "e605",
90 | "unicode_decimal": 58885
91 | },
92 | {
93 | "icon_id": "20818171",
94 | "name": "steam-line",
95 | "font_class": "steam-line",
96 | "unicode": "e75f",
97 | "unicode_decimal": 59231
98 | },
99 | {
100 | "icon_id": "20818172",
101 | "name": "steam-fill",
102 | "font_class": "steam-fill",
103 | "unicode": "e763",
104 | "unicode_decimal": 59235
105 | },
106 | {
107 | "icon_id": "20818156",
108 | "name": "slack-line",
109 | "font_class": "slack-line",
110 | "unicode": "e75c",
111 | "unicode_decimal": 59228
112 | },
113 | {
114 | "icon_id": "20818112",
115 | "name": "linkedin-box-line",
116 | "font_class": "linkedin-box-line",
117 | "unicode": "e750",
118 | "unicode_decimal": 59216
119 | },
120 | {
121 | "icon_id": "20818178",
122 | "name": "telegram-line",
123 | "font_class": "telegram-line",
124 | "unicode": "e761",
125 | "unicode_decimal": 59233
126 | },
127 | {
128 | "icon_id": "22273028",
129 | "name": "douyin",
130 | "font_class": "douyin",
131 | "unicode": "e673",
132 | "unicode_decimal": 58995
133 | },
134 | {
135 | "icon_id": "14629289",
136 | "name": "wechat2",
137 | "font_class": "wechat2",
138 | "unicode": "e632",
139 | "unicode_decimal": 58930
140 | },
141 | {
142 | "icon_id": "20817466",
143 | "name": "phone-line",
144 | "font_class": "phone-line",
145 | "unicode": "e6ac",
146 | "unicode_decimal": 59052
147 | },
148 | {
149 | "icon_id": "20818029",
150 | "name": "alipay-line",
151 | "font_class": "alipay-line",
152 | "unicode": "e73c",
153 | "unicode_decimal": 59196
154 | },
155 | {
156 | "icon_id": "20818039",
157 | "name": "app-store-line",
158 | "font_class": "app-store-line",
159 | "unicode": "e73e",
160 | "unicode_decimal": 59198
161 | },
162 | {
163 | "icon_id": "20818044",
164 | "name": "baidu-line",
165 | "font_class": "baidu-line",
166 | "unicode": "e73f",
167 | "unicode_decimal": 59199
168 | },
169 | {
170 | "icon_id": "20818045",
171 | "name": "bilibili-line",
172 | "font_class": "bilibili-line",
173 | "unicode": "e740",
174 | "unicode_decimal": 59200
175 | },
176 | {
177 | "icon_id": "20818057",
178 | "name": "dingding-line",
179 | "font_class": "dingding-line",
180 | "unicode": "e743",
181 | "unicode_decimal": 59203
182 | },
183 | {
184 | "icon_id": "20818060",
185 | "name": "douban-line",
186 | "font_class": "douban-line",
187 | "unicode": "e744",
188 | "unicode_decimal": 59204
189 | },
190 | {
191 | "icon_id": "20818061",
192 | "name": "disqus-line",
193 | "font_class": "disqus-line",
194 | "unicode": "e745",
195 | "unicode_decimal": 59205
196 | },
197 | {
198 | "icon_id": "20818062",
199 | "name": "discord-line",
200 | "font_class": "discord-line",
201 | "unicode": "e746",
202 | "unicode_decimal": 59206
203 | },
204 | {
205 | "icon_id": "20818064",
206 | "name": "dribbble-line",
207 | "font_class": "dribbble-line",
208 | "unicode": "e747",
209 | "unicode_decimal": 59207
210 | },
211 | {
212 | "icon_id": "20818065",
213 | "name": "drive-line",
214 | "font_class": "drive-line",
215 | "unicode": "e748",
216 | "unicode_decimal": 59208
217 | },
218 | {
219 | "icon_id": "20818068",
220 | "name": "facebook-box-line",
221 | "font_class": "facebook-box-line",
222 | "unicode": "e749",
223 | "unicode_decimal": 59209
224 | },
225 | {
226 | "icon_id": "20818074",
227 | "name": "dropbox-line",
228 | "font_class": "dropbox-line",
229 | "unicode": "e74a",
230 | "unicode_decimal": 59210
231 | },
232 | {
233 | "icon_id": "20818085",
234 | "name": "evernote-line",
235 | "font_class": "evernote-line",
236 | "unicode": "e74b",
237 | "unicode_decimal": 59211
238 | },
239 | {
240 | "icon_id": "20818088",
241 | "name": "gitlab-line",
242 | "font_class": "gitlab-line",
243 | "unicode": "e74d",
244 | "unicode_decimal": 59213
245 | },
246 | {
247 | "icon_id": "20818092",
248 | "name": "google-line",
249 | "font_class": "google-line",
250 | "unicode": "e74e",
251 | "unicode_decimal": 59214
252 | },
253 | {
254 | "icon_id": "20818094",
255 | "name": "google-play-line",
256 | "font_class": "google-play-line",
257 | "unicode": "e74f",
258 | "unicode_decimal": 59215
259 | },
260 | {
261 | "icon_id": "20818106",
262 | "name": "instagram-line",
263 | "font_class": "instagram-line",
264 | "unicode": "e751",
265 | "unicode_decimal": 59217
266 | },
267 | {
268 | "icon_id": "20818121",
269 | "name": "line-fill",
270 | "font_class": "line-fill",
271 | "unicode": "e752",
272 | "unicode_decimal": 59218
273 | },
274 | {
275 | "icon_id": "20818138",
276 | "name": "paypal-line",
277 | "font_class": "paypal-line",
278 | "unicode": "e757",
279 | "unicode_decimal": 59223
280 | },
281 | {
282 | "icon_id": "20818146",
283 | "name": "qq-line",
284 | "font_class": "qq-line",
285 | "unicode": "e759",
286 | "unicode_decimal": 59225
287 | },
288 | {
289 | "icon_id": "20818153",
290 | "name": "reddit-line",
291 | "font_class": "reddit-line",
292 | "unicode": "e75a",
293 | "unicode_decimal": 59226
294 | },
295 | {
296 | "icon_id": "20818162",
297 | "name": "spotify-line",
298 | "font_class": "spotify-line",
299 | "unicode": "e75d",
300 | "unicode_decimal": 59229
301 | },
302 | {
303 | "icon_id": "20818166",
304 | "name": "stack-overflow-line",
305 | "font_class": "stack-overflow-line",
306 | "unicode": "e75e",
307 | "unicode_decimal": 59230
308 | },
309 | {
310 | "icon_id": "20818168",
311 | "name": "snapchat-line",
312 | "font_class": "snapchat-line",
313 | "unicode": "e75b",
314 | "unicode_decimal": 59227
315 | },
316 | {
317 | "icon_id": "20818175",
318 | "name": "taobao-line",
319 | "font_class": "taobao-line",
320 | "unicode": "e760",
321 | "unicode_decimal": 59232
322 | },
323 | {
324 | "icon_id": "20818181",
325 | "name": "twitter-line",
326 | "font_class": "twitter-line",
327 | "unicode": "e762",
328 | "unicode_decimal": 59234
329 | },
330 | {
331 | "icon_id": "20818193",
332 | "name": "wechat-2-line",
333 | "font_class": "wechat-2-line",
334 | "unicode": "e766",
335 | "unicode_decimal": 59238
336 | },
337 | {
338 | "icon_id": "20818195",
339 | "name": "wechat-fill",
340 | "font_class": "wechat-fill",
341 | "unicode": "e768",
342 | "unicode_decimal": 59240
343 | },
344 | {
345 | "icon_id": "20818198",
346 | "name": "wechat-line",
347 | "font_class": "wechat-line",
348 | "unicode": "e769",
349 | "unicode_decimal": 59241
350 | },
351 | {
352 | "icon_id": "20818200",
353 | "name": "weibo-line",
354 | "font_class": "weibo-line",
355 | "unicode": "e76a",
356 | "unicode_decimal": 59242
357 | },
358 | {
359 | "icon_id": "20818206",
360 | "name": "whatsapp-line",
361 | "font_class": "whatsapp-line",
362 | "unicode": "e76b",
363 | "unicode_decimal": 59243
364 | },
365 | {
366 | "icon_id": "20818213",
367 | "name": "youtube-line",
368 | "font_class": "youtube-line",
369 | "unicode": "e76c",
370 | "unicode_decimal": 59244
371 | },
372 | {
373 | "icon_id": "20818220",
374 | "name": "zhihu-line",
375 | "font_class": "zhihu-line",
376 | "unicode": "e76d",
377 | "unicode_decimal": 59245
378 | },
379 | {
380 | "icon_id": "20818226",
381 | "name": "wechat-2-fill",
382 | "font_class": "wechat-2-fill",
383 | "unicode": "e76e",
384 | "unicode_decimal": 59246
385 | },
386 | {
387 | "icon_id": "12095053",
388 | "name": "by",
389 | "font_class": "by",
390 | "unicode": "e601",
391 | "unicode_decimal": 58881
392 | },
393 | {
394 | "icon_id": "12095056",
395 | "name": "cc",
396 | "font_class": "cc",
397 | "unicode": "e602",
398 | "unicode_decimal": 58882
399 | },
400 | {
401 | "icon_id": "12095063",
402 | "name": "nc",
403 | "font_class": "nc",
404 | "unicode": "e603",
405 | "unicode_decimal": 58883
406 | },
407 | {
408 | "icon_id": "12095066",
409 | "name": "nd",
410 | "font_class": "nd",
411 | "unicode": "e604",
412 | "unicode_decimal": 58884
413 | },
414 | {
415 | "icon_id": "32816778",
416 | "name": "HAO",
417 | "font_class": "HAO",
418 | "unicode": "e60e",
419 | "unicode_decimal": 58894
420 | },
421 | {
422 | "icon_id": "32796142",
423 | "name": "logo-hao-copy",
424 | "font_class": "logo-hao-pro",
425 | "unicode": "f290",
426 | "unicode_decimal": 62096
427 | },
428 | {
429 | "icon_id": "32787589",
430 | "name": "logo-hao",
431 | "font_class": "logo-hao",
432 | "unicode": "e609",
433 | "unicode_decimal": 58889
434 | },
435 | {
436 | "icon_id": "16440935",
437 | "name": "logo-moment",
438 | "font_class": "logo-moment",
439 | "unicode": "e6af",
440 | "unicode_decimal": 59055
441 | },
442 | {
443 | "icon_id": "5634161",
444 | "name": "indent",
445 | "font_class": "indent",
446 | "unicode": "f027",
447 | "unicode_decimal": 61479
448 | },
449 | {
450 | "icon_id": "5633834",
451 | "name": "bars",
452 | "font_class": "bars",
453 | "unicode": "ef34",
454 | "unicode_decimal": 61236
455 | },
456 | {
457 | "icon_id": "20817029",
458 | "name": "mail-line",
459 | "font_class": "mail-line",
460 | "unicode": "e668",
461 | "unicode_decimal": 58984
462 | },
463 | {
464 | "icon_id": "20818096",
465 | "name": "github-line",
466 | "font_class": "github-line",
467 | "unicode": "e74c",
468 | "unicode_decimal": 59212
469 | },
470 | {
471 | "icon_id": "5634247",
472 | "name": "moon",
473 | "font_class": "moon",
474 | "unicode": "f057",
475 | "unicode_decimal": 61527
476 | },
477 | {
478 | "icon_id": "5633944",
479 | "name": "closed-captioning",
480 | "font_class": "closed-captioning",
481 | "unicode": "ef76",
482 | "unicode_decimal": 61302
483 | },
484 | {
485 | "icon_id": "5634114",
486 | "name": "hand-holding",
487 | "font_class": "hand-holding",
488 | "unicode": "f000",
489 | "unicode_decimal": 61440
490 | },
491 | {
492 | "icon_id": "5633983",
493 | "name": "dice",
494 | "font_class": "dice",
495 | "unicode": "ef94",
496 | "unicode_decimal": 61332
497 | },
498 | {
499 | "icon_id": "5634194",
500 | "name": "list-ul",
501 | "font_class": "list-ul",
502 | "unicode": "f039",
503 | "unicode_decimal": 61497
504 | },
505 | {
506 | "icon_id": "386278",
507 | "name": "baidu",
508 | "font_class": "baidu",
509 | "unicode": "e6b6",
510 | "unicode_decimal": 59062
511 | },
512 | {
513 | "icon_id": "5634346",
514 | "name": "search",
515 | "font_class": "search",
516 | "unicode": "f0a8",
517 | "unicode_decimal": 61608
518 | },
519 | {
520 | "icon_id": "5634003",
521 | "name": "download",
522 | "font_class": "download",
523 | "unicode": "efa5",
524 | "unicode_decimal": 61349
525 | },
526 | {
527 | "icon_id": "5634158",
528 | "name": "image",
529 | "font_class": "image",
530 | "unicode": "f024",
531 | "unicode_decimal": 61476
532 | },
533 | {
534 | "icon_id": "5634542",
535 | "name": "window-restore",
536 | "font_class": "window-restore",
537 | "unicode": "f159",
538 | "unicode_decimal": 61785
539 | },
540 | {
541 | "icon_id": "5634960",
542 | "name": "comment-dots",
543 | "font_class": "comment-dots1",
544 | "unicode": "f288",
545 | "unicode_decimal": 62088
546 | },
547 | {
548 | "icon_id": "5633967",
549 | "name": "copy",
550 | "font_class": "copy",
551 | "unicode": "ef86",
552 | "unicode_decimal": 61318
553 | },
554 | {
555 | "icon_id": "5633878",
556 | "name": "bus",
557 | "font_class": "bus",
558 | "unicode": "ef58",
559 | "unicode_decimal": 61272
560 | },
561 | {
562 | "icon_id": "5634718",
563 | "name": "hotjar",
564 | "font_class": "hotjar",
565 | "unicode": "f1cf",
566 | "unicode_decimal": 61903
567 | },
568 | {
569 | "icon_id": "5634903",
570 | "name": "weibo",
571 | "font_class": "weibo",
572 | "unicode": "f261",
573 | "unicode_decimal": 62049
574 | },
575 | {
576 | "icon_id": "5634330",
577 | "name": "robot",
578 | "font_class": "robot",
579 | "unicode": "f09a",
580 | "unicode_decimal": 61594
581 | },
582 | {
583 | "icon_id": "5634271",
584 | "name": "paste",
585 | "font_class": "paste",
586 | "unicode": "f068",
587 | "unicode_decimal": 61544
588 | },
589 | {
590 | "icon_id": "5634192",
591 | "name": "link",
592 | "font_class": "link",
593 | "unicode": "f037",
594 | "unicode_decimal": 61495
595 | },
596 | {
597 | "icon_id": "5634313",
598 | "name": "qrcode",
599 | "font_class": "qrcode",
600 | "unicode": "f08d",
601 | "unicode_decimal": 61581
602 | },
603 | {
604 | "icon_id": "5633882",
605 | "name": "calendar-alt",
606 | "font_class": "calendar-alt",
607 | "unicode": "ef5a",
608 | "unicode_decimal": 61274
609 | },
610 | {
611 | "icon_id": "5633943",
612 | "name": "clock",
613 | "font_class": "clock",
614 | "unicode": "ef75",
615 | "unicode_decimal": 61301
616 | },
617 | {
618 | "icon_id": "5634058",
619 | "name": "file-word",
620 | "font_class": "file-word",
621 | "unicode": "efd1",
622 | "unicode_decimal": 61393
623 | },
624 | {
625 | "icon_id": "5633931",
626 | "name": "chevron-down",
627 | "font_class": "chevron-down",
628 | "unicode": "ef6d",
629 | "unicode_decimal": 61293
630 | },
631 | {
632 | "icon_id": "5634458",
633 | "name": "times-circle",
634 | "font_class": "times-circle",
635 | "unicode": "f10a",
636 | "unicode_decimal": 61706
637 | },
638 | {
639 | "icon_id": "5634113",
640 | "name": "grip-vertical",
641 | "font_class": "grip-vertical",
642 | "unicode": "efff",
643 | "unicode_decimal": 61439
644 | },
645 | {
646 | "icon_id": "5633858",
647 | "name": "book",
648 | "font_class": "book",
649 | "unicode": "ef46",
650 | "unicode_decimal": 61254
651 | },
652 | {
653 | "icon_id": "5633877",
654 | "name": "burn",
655 | "font_class": "burn",
656 | "unicode": "ef57",
657 | "unicode_decimal": 61271
658 | },
659 | {
660 | "icon_id": "5634002",
661 | "name": "dove",
662 | "font_class": "dove",
663 | "unicode": "efa4",
664 | "unicode_decimal": 61348
665 | },
666 | {
667 | "icon_id": "5633812",
668 | "name": "arrow-circle-right",
669 | "font_class": "arrow-circle-right",
670 | "unicode": "ef23",
671 | "unicode_decimal": 61219
672 | },
673 | {
674 | "icon_id": "5633958",
675 | "name": "comment-dots",
676 | "font_class": "comment-dots",
677 | "unicode": "ef7e",
678 | "unicode_decimal": 61310
679 | },
680 | {
681 | "icon_id": "5634073",
682 | "name": "folder-open",
683 | "font_class": "folder-open",
684 | "unicode": "efdc",
685 | "unicode_decimal": 61404
686 | },
687 | {
688 | "icon_id": "5634038",
689 | "name": "file-alt",
690 | "font_class": "file-alt",
691 | "unicode": "efc1",
692 | "unicode_decimal": 61377
693 | },
694 | {
695 | "icon_id": "5633876",
696 | "name": "bullseye",
697 | "font_class": "bullseye",
698 | "unicode": "ef56",
699 | "unicode_decimal": 61270
700 | },
701 | {
702 | "icon_id": "5634373",
703 | "name": "sliders-h",
704 | "font_class": "sliders",
705 | "unicode": "f0bf",
706 | "unicode_decimal": 61631
707 | },
708 | {
709 | "icon_id": "5634433",
710 | "name": "tags",
711 | "font_class": "tags",
712 | "unicode": "f0f3",
713 | "unicode_decimal": 61683
714 | },
715 | {
716 | "icon_id": "5634959",
717 | "name": "comment-alt",
718 | "font_class": "comment-alt",
719 | "unicode": "f287",
720 | "unicode_decimal": 62087
721 | },
722 | {
723 | "icon_id": "5634971",
724 | "name": "eye",
725 | "font_class": "eye",
726 | "unicode": "f28f",
727 | "unicode_decimal": 62095
728 | },
729 | {
730 | "icon_id": "5633815",
731 | "name": "arrow-left",
732 | "font_class": "arrow-left",
733 | "unicode": "ef26",
734 | "unicode_decimal": 61222
735 | },
736 | {
737 | "icon_id": "5633816",
738 | "name": "arrow-right",
739 | "font_class": "arrow-right",
740 | "unicode": "ef27",
741 | "unicode_decimal": 61223
742 | },
743 | {
744 | "icon_id": "5633820",
745 | "name": "arrow-up",
746 | "font_class": "arrow-up",
747 | "unicode": "ef2a",
748 | "unicode_decimal": 61226
749 | },
750 | {
751 | "icon_id": "5633932",
752 | "name": "chevron-left",
753 | "font_class": "chevron-left",
754 | "unicode": "ef6e",
755 | "unicode_decimal": 61294
756 | },
757 | {
758 | "icon_id": "5633933",
759 | "name": "chevron-right",
760 | "font_class": "chevron-right",
761 | "unicode": "ef6f",
762 | "unicode_decimal": 61295
763 | },
764 | {
765 | "icon_id": "5634323",
766 | "name": "redo-alt",
767 | "font_class": "redo-alt",
768 | "unicode": "f094",
769 | "unicode_decimal": 61588
770 | },
771 | {
772 | "icon_id": "836718",
773 | "name": "list-ol",
774 | "font_class": "listol",
775 | "unicode": "e767",
776 | "unicode_decimal": 59239
777 | },
778 | {
779 | "icon_id": "433860",
780 | "name": "arrow-up",
781 | "font_class": "arrowup",
782 | "unicode": "e64c",
783 | "unicode_decimal": 58956
784 | },
785 | {
786 | "icon_id": "5652805",
787 | "name": "icon-side bar-scxmtj",
788 | "font_class": "icon-sidebar-scxmtj",
789 | "unicode": "e643",
790 | "unicode_decimal": 58947
791 | },
792 | {
793 | "icon_id": "21169476",
794 | "name": "train-public-transport",
795 | "font_class": "train-public-transport",
796 | "unicode": "e600",
797 | "unicode_decimal": 58880
798 | },
799 | {
800 | "icon_id": "24342573",
801 | "name": "the console-fill",
802 | "font_class": "a-theconsole-fill",
803 | "unicode": "ea32",
804 | "unicode_decimal": 59954
805 | },
806 | {
807 | "icon_id": "1251292",
808 | "name": "shuffle",
809 | "font_class": "shuffle",
810 | "unicode": "e67e",
811 | "unicode_decimal": 59006
812 | },
813 | {
814 | "icon_id": "11102802",
815 | "name": "md-train",
816 | "font_class": "md-train",
817 | "unicode": "e77d",
818 | "unicode_decimal": 59261
819 | }
820 | ]
821 | }
822 |
--------------------------------------------------------------------------------
/templates/assets/js/jquery.poptrox.min.js:
--------------------------------------------------------------------------------
1 | /* jquery.poptrox.js v2.5.2-dev | (c) @ajlkn | github.com/ajlkn/jquery.poptrox | MIT licensed */
2 | !function(e) {
3 | e.fn.poptrox_disableSelection = function() {
4 | return e(this).css("user-select", "none").css("-khtml-user-select", "none").css("-moz-user-select", "none").css("-o-user-select", "none").css("-webkit-user-select", "none")
5 | }
6 | ,
7 | e.fn.poptrox = function(o) {
8 | if (0 == this.length)
9 | return e(this);
10 | if (this.length > 1) {
11 | for (var t = 0; t < this.length; t++)
12 | e(this[t]).poptrox(o);
13 | return e(this)
14 | }
15 | var p, i, s = e.extend({
16 | preload: !1,
17 | baseZIndex: 1e3,
18 | fadeSpeed: 300,
19 | overlayColor: "#000000",
20 | overlayOpacity: .6,
21 | overlayClass: "poptrox-overlay",
22 | windowMargin: 50,
23 | windowHeightPad: 0,
24 | selector: "a",
25 | caption: null,
26 | parent: "body",
27 | popupSpeed: 300,
28 | popupWidth: 200,
29 | popupHeight: 100,
30 | popupIsFixed: !1,
31 | useBodyOverflow: !1,
32 | usePopupEasyClose: !0,
33 | usePopupForceClose: !1,
34 | usePopupLoader: !0,
35 | usePopupCloser: !0,
36 | usePopupCaption: !1,
37 | usePopupNav: !1,
38 | usePopupDefaultStyling: !0,
39 | popupBackgroundColor: "#FFFFFF",
40 | popupTextColor: "#000000",
41 | popupLoaderTextSize: "2em",
42 | popupCloserBackgroundColor: "#000000",
43 | popupCloserTextColor: "#FFFFFF",
44 | popupCloserTextSize: "20px",
45 | popupPadding: 10,
46 | popupCaptionHeight: 60,
47 | popupCaptionTextSize: null,
48 | popupBlankCaptionText: "(untitled)",
49 | popupCloserText: "×",
50 | popupLoaderText: "••••",
51 | popupClass: "poptrox-popup",
52 | popupSelector: null,
53 | popupLoaderSelector: ".loader",
54 | popupCloserSelector: ".closer",
55 | popupCaptionSelector: ".caption",
56 | popupNavPreviousSelector: ".nav-previous",
57 | popupNavNextSelector: ".nav-next",
58 | onPopupClose: null,
59 | onPopupOpen: null
60 | }, o), r = e(this), n = e("body"), a = e('
'), l = e(window), u = [], d = 0, h = !1, g = new Array, f = function() {
61 | p = l.width(),
62 | i = l.height() + s.windowHeightPad;
63 | var e = Math.abs(x.width() - x.outerWidth())
64 | , o = Math.abs(x.height() - x.outerHeight())
65 | , t = p - 2 * s.windowMargin - e
66 | , r = i - 2 * s.windowMargin - o;
67 | x.css("min-width", s.popupWidth).css("min-height", s.popupHeight),
68 | v.children().css("max-width", t).css("max-height", r)
69 | };
70 | s.usePopupLoader || (s.popupLoaderSelector = null),
71 | s.usePopupCloser || (s.popupCloserSelector = null),
72 | s.usePopupCaption || (s.popupCaptionSelector = null),
73 | s.usePopupNav || (s.popupNavPreviousSelector = null,
74 | s.popupNavNextSelector = null);
75 | var x;
76 | x = e(s.popupSelector ? s.popupSelector : '");
77 | var v = x.find(".pic")
78 | , w = e()
79 | , b = x.find(s.popupLoaderSelector)
80 | , m = x.find(s.popupCaptionSelector)
81 | , C = x.find(s.popupCloserSelector)
82 | , y = x.find(s.popupNavNextSelector)
83 | , S = x.find(s.popupNavPreviousSelector)
84 | , P = y.add(S);
85 | if (s.usePopupDefaultStyling && (x.css("background", s.popupBackgroundColor).css("color", s.popupTextColor).css("padding", s.popupPadding + "px"),
86 | m.length > 0 && (x.css("padding-bottom", s.popupCaptionHeight + "px"),
87 | m.css("position", "absolute").css("left", "0").css("bottom", "0").css("width", "100%").css("text-align", "center").css("height", s.popupCaptionHeight + "px").css("line-height", s.popupCaptionHeight + "px"),
88 | s.popupCaptionTextSize && m.css("font-size", popupCaptionTextSize)),
89 | C.length > 0 && C.html(s.popupCloserText).css("font-size", s.popupCloserTextSize).css("background", s.popupCloserBackgroundColor).css("color", s.popupCloserTextColor).css("display", "block").css("width", "40px").css("height", "40px").css("line-height", "40px").css("text-align", "center").css("position", "absolute").css("text-decoration", "none").css("outline", "0").css("top", "0").css("right", "-40px"),
90 | b.length > 0 && b.html("").css("position", "relative").css("font-size", s.popupLoaderTextSize).on("startSpinning", function(o) {
91 | var t = e("
" + s.popupLoaderText + "
");
92 | t.css("height", Math.floor(s.popupHeight / 2) + "px").css("overflow", "hidden").css("line-height", Math.floor(s.popupHeight / 2) + "px").css("text-align", "center").css("margin-top", Math.floor((x.height() - t.height() + (m.length > 0 ? m.height() : 0)) / 2)).css("color", s.popupTextColor ? s.popupTextColor : "").on("xfin", function() {
93 | t.fadeTo(300, .5, function() {
94 | t.trigger("xfout")
95 | })
96 | }).on("xfout", function() {
97 | t.fadeTo(300, .05, function() {
98 | t.trigger("xfin")
99 | })
100 | }).trigger("xfin"),
101 | b.append(t)
102 | }).on("stopSpinning", function(e) {
103 | var o = b.find("div");
104 | o.remove()
105 | }),
106 | 2 == P.length)) {
107 | P.css("font-size", "75px").css("text-align", "center").css("color", "#fff").css("text-shadow", "none").css("height", "100%").css("position", "absolute").css("top", "0").css("opacity", "0.35").css("cursor", "pointer").css("box-shadow", "inset 0px 0px 10px 0px rgba(0,0,0,0)").poptrox_disableSelection();
108 | var k, T;
109 | s.usePopupEasyClose ? (k = "100px",
110 | T = "100px") : (k = "75%",
111 | T = "25%"),
112 | y.css("right", "0").css("width", k).html('
>
'),
113 | S.css("left", "0").css("width", T).html('
<
')
114 | }
115 | return l.on("resize orientationchange", function() {
116 | f()
117 | }),
118 | m.on("update", function(e, o) {
119 | o && 0 != o.length || (o = s.popupBlankCaptionText),
120 | m.html(o)
121 | }),
122 | C.css("cursor", "pointer").on("click", function(e) {
123 | return e.preventDefault(),
124 | e.stopPropagation(),
125 | x.trigger("poptrox_close"),
126 | !0
127 | }),
128 | y.on("click", function(e) {
129 | e.stopPropagation(),
130 | e.preventDefault(),
131 | x.trigger("poptrox_next")
132 | }),
133 | S.on("click", function(e) {
134 | e.stopPropagation(),
135 | e.preventDefault(),
136 | x.trigger("poptrox_previous")
137 | }),
138 | a.css("position", "fixed").css("left", 0).css("top", 0).css("z-index", s.baseZIndex).css("width", "100%").css("height", "100%").css("text-align", "center").css("cursor", "pointer").appendTo(s.parent).prepend('
').append('
').hide().on("touchmove", function(e) {
139 | return !1
140 | }).on("click", function(e) {
141 | e.preventDefault(),
142 | e.stopPropagation(),
143 | x.trigger("poptrox_close")
144 | }),
145 | x.css("display", "inline-block").css("vertical-align", "middle").css("position", "relative").css("z-index", 1).css("cursor", "auto").appendTo(a).hide().on("poptrox_next", function() {
146 | var e = d + 1;
147 | e >= u.length && (e = 0),
148 | x.trigger("poptrox_switch", [e])
149 | }).on("poptrox_previous", function() {
150 | var e = d - 1;
151 | e < 0 && (e = u.length - 1),
152 | x.trigger("poptrox_switch", [e])
153 | }).on("poptrox_reset", function() {
154 | f(),
155 | x.data("width", s.popupWidth).data("height", s.popupHeight),
156 | b.hide().trigger("stopSpinning"),
157 | m.hide(),
158 | C.hide(),
159 | P.hide(),
160 | v.hide(),
161 | w.attr("src", "").detach()
162 | }).on("poptrox_open", function(e, o) {
163 | return !!h || (h = !0,
164 | s.useBodyOverflow && n.css("overflow", "hidden"),
165 | s.onPopupOpen && s.onPopupOpen(),
166 | x.addClass("loading"),
167 | void a.fadeTo(s.fadeSpeed, 1, function() {
168 | x.trigger("poptrox_switch", [o, !0])
169 | }))
170 | }).on("poptrox_switch", function(o, t, p) {
171 | var i;
172 | if (!p && h)
173 | return !0;
174 | if (h = !0,
175 | x.addClass("loading").css("width", x.data("width")).css("height", x.data("height")),
176 | m.hide(),
177 | w.attr("src") && w.attr("src", ""),
178 | w.detach(),
179 | i = u[t],
180 | w = i.object,
181 | w.off("load"),
182 | v.css("text-indent", "-9999px").show().append(w),
183 | "ajax" == i.type ? e.get(i.src, function(e) {
184 | w.html(e),
185 | w.trigger("load")
186 | }) : w.attr("src", i.src),
187 | "image" != i.type) {
188 | var r, n;
189 | r = i.width,
190 | n = i.height,
191 | "%" == r.slice(-1) && (r = parseInt(r.substring(0, r.length - 1)) / 100 * l.width()),
192 | "%" == n.slice(-1) && (n = parseInt(n.substring(0, n.length - 1)) / 100 * l.height()),
193 | w.css("position", "relative").css("outline", "0").css("z-index", s.baseZIndex + 100).width(r).height(n)
194 | }
195 | b.trigger("startSpinning").fadeIn(300),
196 | x.show(),
197 | s.popupIsFixed ? (x.removeClass("loading").width(s.popupWidth).height(s.popupHeight),
198 | w.on("load", function() {
199 | w.off("load"),
200 | b.hide().trigger("stopSpinning"),
201 | m.trigger("update", [i.captionText]).fadeIn(s.fadeSpeed),
202 | C.fadeIn(s.fadeSpeed),
203 | v.css("text-indent", 0).hide().fadeIn(s.fadeSpeed, function() {
204 | h = !1
205 | }),
206 | d = t,
207 | P.fadeIn(s.fadeSpeed)
208 | })) : w.on("load", function() {
209 | f(),
210 | w.off("load"),
211 | b.hide().trigger("stopSpinning");
212 | var e = w.width()
213 | , o = w.height()
214 | , p = function() {
215 | m.trigger("update", [i.captionText]).fadeIn(s.fadeSpeed),
216 | C.fadeIn(s.fadeSpeed),
217 | v.css("text-indent", 0).hide().fadeIn(s.fadeSpeed, function() {
218 | h = !1
219 | }),
220 | d = t,
221 | P.fadeIn(s.fadeSpeed),
222 | x.removeClass("loading").data("width", e).data("height", o).css("width", "auto").css("height", "auto")
223 | };
224 | e == x.data("width") && o == x.data("height") ? p() : x.animate({
225 | width: e,
226 | height: o
227 | }, s.popupSpeed, "swing", p)
228 | }),
229 | "image" != i.type && w.trigger("load")
230 | }).on("poptrox_close", function() {
231 | return !(!h || s.usePopupForceClose) || (h = !0,
232 | x.hide().trigger("poptrox_reset"),
233 | s.onPopupClose && s.onPopupClose(),
234 | void a.fadeOut(s.fadeSpeed, function() {
235 | s.useBodyOverflow && n.css("overflow", "auto"),
236 | h = !1
237 | }))
238 | }).trigger("poptrox_reset"),
239 | s.usePopupEasyClose ? (m.on("click", "a", function(e) {
240 | e.stopPropagation()
241 | }),
242 | x.css("cursor", "pointer").on("click", function(e) {
243 | e.stopPropagation(),
244 | e.preventDefault(),
245 | x.trigger("poptrox_close")
246 | })) : x.on("click", function(e) {
247 | e.stopPropagation()
248 | }),
249 | l.keydown(function(e) {
250 | if (x.is(":visible"))
251 | switch (e.keyCode) {
252 | case 37:
253 | case 32:
254 | if (s.usePopupNav)
255 | return x.trigger("poptrox_previous"),
256 | !1;
257 | break;
258 | case 39:
259 | if (s.usePopupNav)
260 | return x.trigger("poptrox_next"),
261 | !1;
262 | break;
263 | case 27:
264 | return x.trigger("poptrox_close"),
265 | !1
266 | }
267 | }),
268 | r.find(s.selector).each(function(o) {
269 | var t, p, i = e(this), r = i.find("img"), n = i.data("poptrox");
270 | if ("ignore" != n && i.attr("href")) {
271 | if (t = {
272 | src: i.attr("href"),
273 | captionText: r.attr("title"),
274 | width: null,
275 | height: null,
276 | type: null,
277 | object: null,
278 | options: null
279 | },
280 | s.caption) {
281 | if ("function" == typeof s.caption)
282 | c = s.caption(i);
283 | else if ("selector"in s.caption) {
284 | var a;
285 | a = i.find(s.caption.selector),
286 | "attribute"in s.caption ? c = a.attr(s.caption.attribute) : (c = a.html(),
287 | s.caption.remove === !0 && a.remove())
288 | }
289 | } else
290 | c = r.attr("title");
291 | if (t.captionText = c,
292 | n) {
293 | var l = n.split(",");
294 | 0 in l && (t.type = l[0]),
295 | 1 in l && (p = l[1].match(/([0-9%]+)x([0-9%]+)/),
296 | p && 3 == p.length && (t.width = p[1],
297 | t.height = p[2])),
298 | 2 in l && (t.options = l[2])
299 | }
300 | if (!t.type)
301 | switch (p = t.src.match(/\/\/([a-z0-9\.]+)\/.*/),
302 | (!p || p.length < 2) && (p = [!1]),
303 | p[1]) {
304 | case "api.soundcloud.com":
305 | t.type = "soundcloud";
306 | break;
307 | case "youtu.be":
308 | t.type = "youtube";
309 | break;
310 | case "vimeo.com":
311 | t.type = "vimeo";
312 | break;
313 | case "wistia.net":
314 | t.type = "wistia";
315 | break;
316 | case "bcove.me":
317 | t.type = "bcove";
318 | break;
319 | default:
320 | t.type = "image"
321 | }
322 | switch (p = t.src.match(/\/\/[a-z0-9\.]+\/(.*)/),
323 | t.type) {
324 | case "iframe":
325 | t.object = e('
'),
326 | t.object.on("click", function(e) {
327 | e.stopPropagation()
328 | }).css("cursor", "auto"),
329 | t.width && t.height || (t.width = "600",
330 | t.height = "400");
331 | break;
332 | case "ajax":
333 | t.object = e('
'),
334 | t.object.on("click", function(e) {
335 | e.stopPropagation()
336 | }).css("cursor", "auto").css("overflow", "auto"),
337 | t.width && t.height || (t.width = "600",
338 | t.height = "400");
339 | break;
340 | case "soundcloud":
341 | t.object = e('
'),
342 | t.src = "//w.soundcloud.com/player/?url=" + escape(t.src) + (t.options ? "&" + t.options : ""),
343 | t.width = "600",
344 | t.height = "166";
345 | break;
346 | case "youtube":
347 | t.object = e('
'),
348 | t.src = "//www.youtube.com/embed/" + p[1] + (t.options ? "?" + t.options : ""),
349 | t.width && t.height || (t.width = "800",
350 | t.height = "480");
351 | break;
352 | case "vimeo":
353 | t.object = e('
'),
354 | t.src = "//player.vimeo.com/video/" + p[1] + (t.options ? "?" + t.options : ""),
355 | t.width && t.height || (t.width = "800",
356 | t.height = "480");
357 | break;
358 | case "wistia":
359 | t.object = e('
'),
360 | t.src = "//fast.wistia.net/" + p[1] + (t.options ? "?" + t.options : ""),
361 | t.width && t.height || (t.width = "800",
362 | t.height = "480");
363 | break;
364 | case "bcove":
365 | t.object = e('
'),
366 | t.src = "//bcove.me/" + p[1] + (t.options ? "?" + t.options : ""),
367 | t.width && t.height || (t.width = "640",
368 | t.height = "360");
369 | break;
370 | default:
371 | if (t.object = e('
![]()
'),
372 | s.preload) {
373 | var p = document.createElement("img");
374 | p.src = t.src,
375 | g.push(p)
376 | }
377 | t.width = i.attr("width"),
378 | t.height = i.attr("height")
379 | }
380 | "file:" == window.location.protocol && t.src.match(/^\/\//) && (t.src = "http:" + t.src),
381 | u.push(t),
382 | r.removeAttr("title"),
383 | i.removeAttr("href").css("cursor", "pointer").css("outline", 0).on("click", function(e) {
384 | e.preventDefault(),
385 | e.stopPropagation(),
386 | x.trigger("poptrox_open", [o])
387 | })
388 | }
389 | }),
390 | r.prop("_poptrox", s),
391 | r
392 | }
393 | }(jQuery);
394 |
--------------------------------------------------------------------------------
/templates/assets/css/main.min.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic);:root{--heo-white:#fff;--heo-white-op:rgba(255, 255, 255, 0.2);--heo-black:#000;--heo-black-op:rgba(0, 0, 0, 0.2);--heo-none:#00000000;--heo-gray:#999999;--heo-gray-op:#9999992b;--heo-vip:#e5a80d;--heo-main:var(--heo-theme);--heo-main-op:var(--heo-theme-op);--heo-main-none:var(--heo-theme-none);--heo-shadow-theme:0 8px 12px -3px var(--heo-theme-op);--heo-shadow-blackdeep:0 2px 16px -3px rgba(0, 0, 0, .15);--heo-shadow-main:0 8px 12px -3px var(--heo-main-op);--heo-shadow-blue:0 8px 12px -3px rgba(40, 109, 234, .20);--heo-shadow-white:0 8px 12px -3px rgba(255, 255, 255, .20);--heo-shadow-black:0 0 12px 4px rgba(0, 0, 0, .05);--heo-shadow-yellow:0px 38px 77px -26px rgba(255, 201, 62, .12);--heo-shadow-red:0 8px 12px -3px #ee7d7936;--heo-shadow-green:0 8px 12px -3px #87ee7936;--heo-logo-color:linear-gradient(215deg, #4584ff 0%, #cf0db9 100%);--heo-snackbar-time:5s;--style-border:1px solid var(--heo-card-border);--style-border-always:1px solid var(--heo-card-border);--style-border-hover:1px solid var(--heo-main);--style-border-hover-always:1px solid var(--heo-main);--style-border-dashed:1px dashed var(--heo-theme-op)}::selection{background:var(--heo-fontcolor);color:var(--heo-background)}:root{--heo-theme:#0084FF;--heo-theme-op:#0084FF23;--heo-theme-op-deep:#0084ffdd;--heo-theme-none:#0084FF00;--heo-blue:#0084FF;--heo-red:#FF3842;--heo-pink:#FF7C7C;--heo-green:#57bd6a;--heo-yellow:#ffc93e;--heo-yellow-op:#ffc93e30;--heo-orange:#ff953e;--heo-fontcolor:#F7F7FA;--heo-background:#18171d;--heo-reverse:#fff;--heo-maskbg:rgba(0, 0, 0, 0.6);--heo-maskbgdeep:rgba(0, 0, 0, 0.85);--heo-hovertext:#0A84FF;--heo-ahoverbg:#fff;--heo-lighttext:#f2b94b;--heo-secondtext:#a1a2b8;--heo-scrollbar:rgba(200, 200, 223, 0.4);--heo-card-btn-bg:#30343f;--heo-post-blockquote-bg:#000;--heo-post-tabs-bg:#121212;--heo-secondbg:#30343f;--heo-shadow-nav:0 5px 20px 0px rgba(28, 28, 28, 0.4);--heo-card-bg:#1d1e22;--heo-card-bg-op:var(--heo-white-op);--heo-card-bg-none:#1d1b2600;--heo-shadow-lightblack:0 5px 12px -5px rgba(102, 68, 68, 0.0);--heo-shadow-light2black:0 5px 12px -5px rgba(102, 68, 68, 0.0);--heo-card-border:#282829;--heo-shadow-border:0 8px 16px -4px #00000050;--style-border-forever:2px solid var(--heo-lighttext)}::-webkit-scrollbar{width:5px}::-webkit-scrollbar-thumb{background-color:#ececec}::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.2);background:#1f2224}li{list-style-type:none}.icon-zmki{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.zmki_px{border:0;height:100%;left:0;position:absolute;top:0;width:100%;object-fit:cover;cursor:pointer;outline:0}@media screen and (max-width:1221px){.zmki_wap{display:none}#fullscreen{display:none!important;padding:0!important}}.nav-item-name::before{display:none!important}@media (max-width:768px){.zmki_px{background-image:url(../img/20200212-6dafa53ecf4e3.gif);background-size:100% 100%}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.zmki_px{background-image:url(../img/20200212-38ce26bb0bd0d.gif);background-size:100% 100%}}@media only screen and (device-width:375px) and (device-height:667px){.zmki_px{background-image:url(../img/20200212-e056a5f2914d6.gif);background-size:100% 100%}}.zm{background-color:red}@-moz-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinner{0%{-moz-transform:rotate(0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}100%{-moz-transform:rotate(359deg);-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input,select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}@-ms-viewport{width:device-width}body{-ms-overflow-style:scrollbar}@media screen and (max-width:480px){body,html{min-width:320px}}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{background:#242629}body.is-preload *,body.is-preload :after,body.is-preload :before{-moz-animation:none!important;-webkit-animation:none!important;-ms-animation:none!important;animation:none!important;-moz-transition:none!important;-webkit-transition:none!important;-ms-transition:none!important;transition:none!important}body.is-resizing *,body.is-resizing :after,body.is-resizing :before{-moz-animation:none!important;-webkit-animation:none!important;-ms-animation:none!important;animation:none!important;-moz-transition:none!important;-webkit-transition:none!important;-ms-transition:none!important;transition:none!important}body,input,select,textarea{color:#a0a0a1;font-family:"Source Sans Pro",Helvetica,sans-serif;font-size:15pt;font-weight:300;letter-spacing:.025em;line-height:1.65}@media screen and (max-width:1680px){body,input,select,textarea{font-size:11pt}}a{-moz-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;transition:color .2s ease-in-out,border-bottom-color .2s ease-in-out;color:#b5b5b5;text-decoration:none}a:hover{border-bottom-color:transparent;color:var(--heo-theme)}b,strong{color:#fff;font-weight:300}em,i{font-style:italic}p{margin:0 0 2em 0}h1,h2,h3,h4,h5,h6{color:#fff;font-weight:700;line-height:0;margin:0 0 16px 0}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1{font-size:2em}h2{font-size:2.25em;line-height:1}h3{font-size:1.1em}h4{font-size:1em}h5{font-size:.9em}h6{font-size:.7em}@media screen and (max-width:736px){h2{font-size:1em}h3{font-size:.9em}h4{font-size:.8em}h5{font-size:.7em}h6{font-size:.7em}}sub{font-size:.8em;position:relative;top:.5em}sup{font-size:.8em;position:relative;top:-.5em}blockquote{border-left:4px #36383c;font-style:italic;margin:0 0 2em 0;padding:.5em 0 .5em 2em}code{background:#34363b;border:solid 1px #36383c;font-family:"Courier New",monospace;font-size:.9em;margin:0 .25em;padding:.25em .65em}pre{-webkit-overflow-scrolling:touch;font-family:"Courier New",monospace;font-size:.9em;margin:0 0 2em 0}pre code{display:block;line-height:1.75;padding:1em 1.5em;overflow-x:auto}hr{border:0;border-bottom:solid 1px #36383c;margin:2em 0}hr.major{margin:3em 0}.align-left{text-align:left}.align-center{text-align:center}.align-right{text-align:right}.button,button,input[type=button],input[type=reset],input[type=submit]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;background-color:transparent;border:0;border-radius:0;box-shadow:inset 0 0 0 2px #36383c;color:#fff!important;cursor:pointer;display:inline-block;font-size:.9em;font-weight:300;height:3.05556em;letter-spacing:.1em;line-height:3.05556em;padding:0 2.5em;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.button:hover,button:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{box-shadow:inset 0 0 0 2px #34a58e;color:#34a58e!important}.button:hover:active,button:hover:active,input[type=button]:hover:active,input[type=reset]:hover:active,input[type=submit]:hover:active{background-color:rgba(52,165,142,.15);color:#34a58e!important}.button.icon,button.icon,input[type=button].icon,input[type=reset].icon,input[type=submit].icon{padding-left:1.35em}.button.icon:before,button.icon:before,input[type=button].icon:before,input[type=reset].icon:before,input[type=submit].icon:before{margin-right:.5em}.button.fit,button.fit,input[type=button].fit,input[type=reset].fit,input[type=submit].fit{width:100%}.button.small,button.small,input[type=button].small,input[type=reset].small,input[type=submit].small{font-size:.8em}.button.large,button.large,input[type=button].large,input[type=reset].large,input[type=submit].large{font-size:1.35em}.button.primary,button.primary,input[type=button].primary,input[type=reset].primary,input[type=submit].primary{background-color:#34a58e;box-shadow:none}.button.primary:hover,button.primary:hover,input[type=button].primary:hover,input[type=reset].primary:hover,input[type=submit].primary:hover{background-color:#47c5ab;color:#fff!important}.button.primary:hover:active,button.primary:hover:active,input[type=button].primary:hover:active,input[type=reset].primary:hover:active,input[type=submit].primary:hover:active{background-color:#287e6d}.button.disabled,.button:disabled,button.disabled,button:disabled,input[type=button].disabled,input[type=button]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=submit].disabled,input[type=submit]:disabled{pointer-events:none;opacity:.35}form{margin:0 0 2em 0}form>:last-child{margin-bottom:0}form>.fields{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 3em);margin:-1.5em 0 2em -1.5em}form>.fields>.field{-moz-flex-grow:0;-webkit-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-moz-flex-shrink:0;-webkit-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding:1.5em 0 0 1.5em;width:calc(100% - 1.5em)}form>.fields>.field.half{width:calc(50% - .75em)}form>.fields>.field.third{width:calc(100%/3 - .5em)}form>.fields>.field.quarter{width:calc(25% - .375em)}@media screen and (max-width:736px){form>.fields{width:calc(100% + 3em);margin:-1.5em 0 2em -1.5em}form>.fields>.field{padding:1.5em 0 0 1.5em;width:calc(100% - 1.5em)}form>.fields>.field.half{width:calc(100% - 1.5em)}form>.fields>.field.third{width:calc(100% - 1.5em)}form>.fields>.field.quarter{width:calc(100% - 1.5em)}}label{color:#fff;display:block;font-size:.9em;font-weight:300;margin:0 0 1em 0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;background:#34363b;border:0;border-radius:0;color:#a0a0a1;display:block;outline:0;padding:0 1em;text-decoration:none;width:100%}input[type=email]:invalid,input[type=password]:invalid,input[type=search]:invalid,input[type=tel]:invalid,input[type=text]:invalid,input[type=url]:invalid,select:invalid,textarea:invalid{box-shadow:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{box-shadow:inset 0 0 0 2px #34a58e}select{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%2336383c' /%3E%3C/svg%3E");background-size:1.25rem;background-repeat:no-repeat;background-position:calc(100% - 1rem) center;height:2.75em;padding-right:2.75em;text-overflow:ellipsis}select option{color:#fff;background:#242629}select:focus::-ms-value{background-color:transparent}select::-ms-expand{display:none}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select{height:2.75em}textarea{padding:.75em 1em}input[type=checkbox],input[type=radio]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;display:block;float:left;margin-right:-2em;opacity:0;width:1em;z-index:-1}input[type=checkbox]+label,input[type=radio]+label{text-decoration:none;color:#a0a0a1;cursor:pointer;display:inline-block;font-size:1em;font-weight:300;padding-left:2.4em;padding-right:.75em;position:relative}input[type=checkbox]+label:before,input[type=radio]+label:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none!important;font-family:'Font Awesome 5 Free';font-weight:900}input[type=checkbox]+label:before,input[type=radio]+label:before{background:#34363b;content:'';display:inline-block;font-size:.8em;height:2.0625em;left:0;line-height:2.0625em;position:absolute;text-align:center;top:0;width:2.0625em}input[type=checkbox]:checked+label:before,input[type=radio]:checked+label:before{background:#34a58e;border-color:#34a58e;color:#fff;content:'\f00c'}input[type=checkbox]:focus+label:before,input[type=radio]:focus+label:before{box-shadow:0 0 0 2px #34a58e}input[type=radio]+label:before{border-radius:100%}::-webkit-input-placeholder{color:#707071!important;opacity:1}:-moz-placeholder{color:#707071!important;opacity:1}::-moz-placeholder{color:#707071!important;opacity:1}:-ms-input-placeholder{color:#707071!important;opacity:1}.iconfont{text-decoration:none;border-bottom:none;position:relative}.iconfont>.label{display:none}.iconfont:before{line-height:inherit}ol{list-style:decimal;margin:0 0 2em 0;padding-left:1.25em}ol li{padding-left:.25em}ul{list-style:disc;margin:0 0 2em 0;padding-left:1em}ul.alt{list-style:none;padding-left:0}ul.alt li{border-top:solid 1px #36383c;padding:.5em 0}ul.alt li:first-child{border-top:0;padding-top:0}dl{margin:0 0 2em 0}dl dt{display:block;font-weight:300;margin:0 0 1em 0}dl dd{margin-left:2em}ul.actions{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;cursor:default;list-style:none;margin-left:-1em;padding-left:0}ul.actions li{padding:0 0 0 1em;vertical-align:middle}ul.actions.special{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}ul.actions.special li:first-child{padding-left:0}ul.actions.stacked{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0}ul.actions.stacked li{padding:1.3em 0 0 0}ul.actions.stacked li:first-child{padding-top:0}ul.actions.fit{width:calc(100% + 1em)}ul.actions.fit li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;width:100%}ul.actions.fit li>*{width:100%}ul.actions.fit.stacked{width:100%}@media screen and (max-width:480px){ul.actions:not(.fixed){-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0;width:100%!important}ul.actions:not(.fixed) li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;padding:1em 0 0 0;text-align:center;width:100%}ul.actions:not(.fixed) li>*{width:100%}ul.actions:not(.fixed) li:first-child{padding-top:0}ul.actions:not(.fixed) li .button,ul.actions:not(.fixed) li button,ul.actions:not(.fixed) li input[type=button],ul.actions:not(.fixed) li input[type=reset],ul.actions:not(.fixed) li input[type=submit]{width:100%}ul.actions:not(.fixed) li .button.icon:before,ul.actions:not(.fixed) li button.icon:before,ul.actions:not(.fixed) li input[type=button].icon:before,ul.actions:not(.fixed) li input[type=reset].icon:before,ul.actions:not(.fixed) li input[type=submit].icon:before{margin-left:-.5rem}}ul.icons{cursor:default;list-style:none;padding-left:0;display:flex}ul.icons li{margin-right:.5rem}ul.icons li:last-child{padding-right:0}ul.icons li .iconfont:before{font-size:28px;height:28px;margin:auto;display:contents}ul.icons li .iconfont{color:var(--heo-card-bg);width:40px;height:40px;border-radius:40px;background:var(--heo-fontcolor);display:flex;align-items:center;justify-content:center;transition:.3s}ul.icons li:hover .iconfont{color:var(--heo-fontcolor);background:var(--heo-theme)}.table-wrapper{-webkit-overflow-scrolling:touch;overflow-x:auto}table{margin:0 0 2em 0;width:100%}table tbody tr{border:solid 1px #36383c;border-left:0;border-right:0}table tbody tr:nth-child(2n+1){background-color:#34363b}table td{padding:.75em .75em}table th{color:#fff;font-size:.9em;font-weight:300;padding:0 .75em .75em .75em;text-align:left}table thead{border-bottom:solid 2px #36383c}table tfoot{border-top:solid 2px #36383c}table.alt{border-collapse:separate}table.alt tbody tr td{border:solid 1px #36383c;border-left-width:0;border-top-width:0}table.alt tbody tr td:first-child{border-left-width:1px}table.alt tbody tr:first-child td{border-top-width:1px}table.alt thead{border-bottom:0}table.alt tfoot{border-top:0}.panel{padding:4em 4em 2em 4em;-moz-transform:translateY(100vh);-webkit-transform:translateY(100vh);-ms-transform:translateY(100vh);transform:translateY(100vh);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;-webkit-overflow-scrolling:touch;background:rgba(36,38,41,.975);bottom:80px;left:0;max-height:calc(80vh - 4em);overflow-y:auto;position:fixed;width:100%;z-index:10001}.panel.active{-moz-transform:translateY(1px);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.panel>.inner{margin:0 auto;max-width:100%;width:75em}.panel>.inner.split{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex}.panel>.inner.split>div{margin-left:4em;width:50%}.panel>.inner.split>:first-child{margin-left:0}.panel>.closer{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;background-image:url(images/close.svg);background-position:center;background-repeat:no-repeat;background-size:3em;cursor:pointer;height:5em;opacity:.25;position:absolute;right:0;top:0;width:5em;z-index:2}.panel>.closer:hover{opacity:1}@media screen and (max-width:1280px){.panel{padding:3em 3em 1em 3em}.panel>.inner.split>div{margin-left:3em}.panel>.closer{background-size:2.5em;background-position:75% 25%}}@media screen and (max-width:980px){.panel>.inner.split{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.panel>.inner.split>div{margin-left:0;width:100%}}@media screen and (max-width:736px){.panel{-moz-transform:translateY(-100vh);-webkit-transform:translateY(-100vh);-ms-transform:translateY(-100vh);transform:translateY(-100vh);padding:4em 2em 2em 2em;bottom:auto;top:calc(4em - 1px)}.panel.active{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.poptrox-overlay{-webkit-tap-highlight-color:rgba(255,255,255,0);backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:blur(20px);background:var(--heo-maskbgdeep)}.poptrox-popup{background:rgba(31,34,36,.925);box-shadow:0 1em 3em .5em rgba(0,0,0,.25);cursor:default;border-radius:12px;overflow:hidden}.poptrox-popup:before{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;background-image:-moz-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-moz-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:-webkit-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-webkit-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:-ms-linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),-ms-linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));background-image:linear-gradient(to left,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0)),linear-gradient(to right,rgba(31,34,36,.35),rgba(31,34,36,0) 10em,rgba(31,34,36,0));content:'';display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1;opacity:1}.poptrox-popup .closer{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;background-image:url(images/close.svg);background-position:center;background-repeat:no-repeat;background-size:3em;height:5em;opacity:0;position:absolute;right:0;top:0;width:5em;z-index:2}.poptrox-popup .nav-next,.poptrox-popup .nav-previous{-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;background-image:url(images/arrow.svg);background-position:center;background-repeat:no-repeat;background-size:5em;cursor:pointer;height:8em;margin-top:-4em;opacity:0;position:absolute;top:50%;width:6em;z-index:2}.poptrox-popup .nav-previous{-moz-transform:scaleX(-1);-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1);left:0}.poptrox-popup .nav-next{right:0}.poptrox-popup .caption{padding:2em 2em .1em 2em;background-image:-moz-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:-webkit-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:-ms-linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);background-image:linear-gradient(to top,rgba(16,16,16,.45) 25%,rgba(16,16,16,0) 100%);bottom:0;cursor:default;left:0;position:absolute;text-align:left;width:100%;z-index:2;padding-bottom:2rem;display:flex;flex-direction:column}.poptrox-popup .caption h2,.poptrox-popup .caption h3,.poptrox-popup .caption h4,.poptrox-popup .caption h5,.poptrox-popup .caption h6{margin:0;font-weight:700}.poptrox-popup .caption p{color:#fff;font-size:15px;margin:4px 0!important}.poptrox-popup .loader{-moz-animation:spinner 1s infinite linear!important;-webkit-animation:spinner 1s infinite linear!important;-ms-animation:spinner 1s infinite linear!important;animation:spinner 1s infinite linear!important;background-image:url(images/spinner.svg);background-position:center;background-repeat:no-repeat;background-size:contain;display:block;font-size:2em;height:2em;left:50%;line-height:2em;margin:-1em 0 0 -1em;opacity:.25;position:absolute;text-align:center;top:50%;width:2em}.poptrox-popup:hover .closer,.poptrox-popup:hover .nav-next,.poptrox-popup:hover .nav-previous{opacity:.5}.poptrox-popup:hover .closer:hover,.poptrox-popup:hover .nav-next:hover,.poptrox-popup:hover .nav-previous:hover{opacity:1}.poptrox-popup.loading:before{opacity:0}body.touch .poptrox-popup .closer,body.touch .poptrox-popup .nav-next,body.touch .poptrox-popup .nav-previous{opacity:1!important}.tag-categorys{display:flex}.tag-categorys a{padding:4px 6px;border-radius:8px;background:var(--heo-black-op);font-size:12px;color:var(--heo-fontcolor);transition:.3s;z-index:1;margin:12px 0 0 12px}.tag-categorys a:hover{background:var(--heo-theme);color:var(--heo-white)}.poptrox-popup .tag-categorys a{margin:0}@media screen and (max-width:980px){.poptrox-popup .closer{background-size:3em}.poptrox-popup .nav-next,.poptrox-popup .nav-previous{background-size:4em}}@media screen and (max-width:736px){.poptrox-popup:before{display:none}.poptrox-popup .caption{display:none!important}.poptrox-popup .closer,.poptrox-popup .nav-next,.poptrox-popup .nav-previous{display:none!important}.nav-item .nav-item-child{top:30px}}#wrapper{-moz-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-moz-filter .5s ease;-webkit-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-webkit-filter .5s ease;-ms-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-ms-filter .5s ease;transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,filter .5s ease;position:relative}#wrapper:after{pointer-events:none;-moz-transition:opacity .5s ease,visibility .5s;-webkit-transition:opacity .5s ease,visibility .5s;-ms-transition:opacity .5s ease,visibility .5s;transition:opacity .5s ease,visibility .5s;background:rgba(36,38,41,.5);content:'';display:block;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}body.ie #wrapper:after{background:rgba(36,38,41,.8)}body.modal-active #wrapper:after{pointer-events:auto;opacity:0;visibility:visible;z-index:10003}#wrapper:before{-moz-animation:spinner 1s infinite linear!important;-webkit-animation:spinner 1s infinite linear!important;-ms-animation:spinner 1s infinite linear!important;animation:spinner 1s infinite linear!important;pointer-events:none;-moz-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;-webkit-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;-ms-transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;transition:top .75s ease-in-out,opacity .35s ease-out,visibility .35s;background-image:url(images/spinner.svg);background-position:center;background-repeat:no-repeat;background-size:contain;content:'';display:block;font-size:2em;height:2em;left:50%;line-height:2em;margin:-1em 0 0 -1em;opacity:0;position:fixed;text-align:center;top:75%;visibility:hidden;width:2em}body.is-preload #wrapper:before{-moz-transition:opacity 1s ease-out!important;-webkit-transition:opacity 1s ease-out!important;-ms-transition:opacity 1s ease-out!important;transition:opacity 1s ease-out!important;-moz-transition-delay:.5s!important;-webkit-transition-delay:.5s!important;-ms-transition-delay:.5s!important;transition-delay:.5s!important;opacity:.25;top:50%;visibility:visible}body{padding:0 0 4em 0}#header{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-moz-transition:-moz-transform 1s ease;-webkit-transition:-webkit-transform 1s ease;-ms-transition:-ms-transform 1s ease;transition:transform 1s ease;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background:rgba(18,18,18,.8);backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:blur(20px);top:calc(100vh - 80px);height:80px;left:0;line-height:1;padding:0 1.5em;position:fixed;user-select:none;width:100%;z-index:10002;display:flex;align-items:center}body.is-preload #header{-moz-transform:translateY(4em);-webkit-transform:translateY(4em);-ms-transform:translateY(4em);transform:translateY(4em)}#header h1{color:#a0a0a1;display:flex;font-size:1em;line-height:4.5em;height:4em;margin:0;vertical-align:middle;align-items:center}#header h1 a{border:0;color:inherit;line-height:1}#header h1 a:hover{color:inherit!important}#header nav{margin-left:auto}#header nav>ul{list-style:none;margin:0;padding:0;display:flex}#header nav>ul>li{display:flex;padding:0;position:relative;list-style-type:none;justify-content:center}#header .discription{margin-left:8px}.nav-item .nav-item-child{position:absolute;bottom:30px;flex-direction:column;margin-bottom:0;padding:8px;align-items:center;background:var(--heo-maskbg);border-radius:8px;display:flex;height:fit-content;transition:.3s;opacity:0;pointer-events:none;backdrop-filter:blur(10px)}.nav-item .category-parent{border-radius:6px;transition:.3s;font-size:14px}.nav-item .category-parent:hover{background:var(--heo-theme)}.nav-item:hover .nav-item-child{display:flex;opacity:1;pointer-events:all}#header nav>ul>li a{-moz-transition:background-color .5s ease;-webkit-transition:background-color .5s ease;-ms-transition:background-color .5s ease;transition:background-color .5s ease;border:0;color:#fff;display:inline-block;letter-spacing:.1em;padding:0 1.65em;text-transform:uppercase;padding:8px 16px;border-radius:8px;white-space:nowrap}#header nav>ul>li a.icon:before{color:#505051;float:right;margin-left:.75em}#header nav>ul>li a:hover{color:#fff!important}#header nav>ul>li a.active{background-color:var(--heo-secondbg)}.site-logo{width:30px;height:30px;border-radius:20px;margin-right:1rem}@media screen and (max-width:736px){body{padding:4em 0 0 0}#header{-moz-transform:translateY(0);-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);bottom:auto;height:60px;padding:0 1em;top:0}body.is-preload #header{-moz-transform:translateY(-3.4em);-webkit-transform:translateY(-3.4em);-ms-transform:translateY(-3.4em);transform:translateY(-3.4em)}#header h1{font-size:.9em}#header nav>ul>li a{font-size:.9em;padding:8px 16px;border-radius:8px}#header .discription{display:none}}.alt{background-color:red;border-radius:10px;font-size:15px}#main{-moz-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-moz-filter .5s ease;-webkit-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-webkit-filter .5s ease;-ms-transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,-ms-filter .5s ease;transition:-moz-filter .5s ease,-webkit-filter .5s ease,-ms-filter .5s ease,filter .5s ease;display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-tap-highlight-color:rgba(255,255,255,0)}#main .thumb{-moz-transition:opacity 1.25s ease-in-out;-webkit-transition:opacity 1.25s ease-in-out;-ms-transition:opacity 1.25s ease-in-out;transition:opacity 1.25s ease-in-out;pointer-events:auto;-webkit-tap-highlight-color:rgba(255,255,255,0);opacity:1;overflow:hidden;position:relative}#main .thumb:after{background-image:-moz-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:-webkit-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:-ms-linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);background-image:linear-gradient(to top,rgba(10,17,25,.35) 5%,rgba(10,17,25,0) 35%);pointer-events:none;background-size:cover;content:'';display:block;height:100%;left:0;position:absolute;top:0;width:100%}#main .thumb>.image{-webkit-tap-highlight-color:rgba(255,255,255,0);background-position:center;background-repeat:no-repeat;background-size:cover;border:0;height:100%;left:0;position:absolute;top:0;width:100%}#main .thumb>h2{pointer-events:none;bottom:1.875em;font-size:.8em;left:16px;margin:0;position:absolute;z-index:1}#main .thumb>p{display:none}#main:after{pointer-events:none;-moz-transition:opacity .5s ease,visibility .5s;-webkit-transition:opacity .5s ease,visibility .5s;-ms-transition:opacity .5s ease,visibility .5s;transition:opacity .5s ease,visibility .5s;background:rgba(36,38,41,.25);content:'';display:block;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}body.ie #main:after{background:rgba(36,38,41,.55)}body.content-active #main:after{pointer-events:auto;opacity:1;visibility:visible;backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:blur(20px);background:var(--heo-maskbgdeep)}body.is-preload #main .thumb{pointer-events:none;opacity:0}#main .thumb{-moz-transition-delay:2.525s;-webkit-transition-delay:2.525s;-ms-transition-delay:2.525s;transition-delay:2.525s;height:calc(40vh - 2em);min-height:20em;width:25%}#main .thumb:nth-child(1){-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2){-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3){-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4){-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5){-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6){-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7){-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8){-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9){-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}#main .thumb:nth-child(10){-moz-transition-delay:2s;-webkit-transition-delay:2s;-ms-transition-delay:2s;transition-delay:2s}#main .thumb:nth-child(11){-moz-transition-delay:2.15s;-webkit-transition-delay:2.15s;-ms-transition-delay:2.15s;transition-delay:2.15s}#main .thumb:nth-child(12){-moz-transition-delay:2.3s;-webkit-transition-delay:2.3s;-ms-transition-delay:2.3s;transition-delay:2.3s}@media screen and (max-width:1680px){#main .thumb{-moz-transition-delay:2.075s;-webkit-transition-delay:2.075s;-ms-transition-delay:2.075s;transition-delay:2.075s;height:calc(40vh - 2em);min-height:20em;width:33.33333%}#main .thumb:nth-child(1){-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2){-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3){-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4){-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5){-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6){-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7){-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8){-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9){-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}}@media screen and (max-width:1280px){#main .thumb{-moz-transition-delay:1.625s;-webkit-transition-delay:1.625s;-ms-transition-delay:1.625s;transition-delay:1.625s;height:calc(40vh - 2em);min-height:20em;width:50%}#main .thumb:nth-child(1){-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2){-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3){-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4){-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5){-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6){-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}}@media screen and (max-width:980px){#main .thumb{-moz-transition-delay:2.075s;-webkit-transition-delay:2.075s;-ms-transition-delay:2.075s;transition-delay:2.075s;height:calc(28.57143vh - 1.33333em);min-height:18em;width:50%}#main .thumb:nth-child(1){-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2){-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3){-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}#main .thumb:nth-child(4){-moz-transition-delay:1.1s;-webkit-transition-delay:1.1s;-ms-transition-delay:1.1s;transition-delay:1.1s}#main .thumb:nth-child(5){-moz-transition-delay:1.25s;-webkit-transition-delay:1.25s;-ms-transition-delay:1.25s;transition-delay:1.25s}#main .thumb:nth-child(6){-moz-transition-delay:1.4s;-webkit-transition-delay:1.4s;-ms-transition-delay:1.4s;transition-delay:1.4s}#main .thumb:nth-child(7){-moz-transition-delay:1.55s;-webkit-transition-delay:1.55s;-ms-transition-delay:1.55s;transition-delay:1.55s}#main .thumb:nth-child(8){-moz-transition-delay:1.7s;-webkit-transition-delay:1.7s;-ms-transition-delay:1.7s;transition-delay:1.7s}#main .thumb:nth-child(9){-moz-transition-delay:1.85s;-webkit-transition-delay:1.85s;-ms-transition-delay:1.85s;transition-delay:1.85s}}@media screen and (max-width:480px){#main .thumb{-moz-transition-delay:1.175s;-webkit-transition-delay:1.175s;-ms-transition-delay:1.175s;transition-delay:1.175s;height:calc(40vh - 2em);min-height:18em;width:100%}#main .thumb:nth-child(1){-moz-transition-delay:.65s;-webkit-transition-delay:.65s;-ms-transition-delay:.65s;transition-delay:.65s}#main .thumb:nth-child(2){-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;transition-delay:.8s}#main .thumb:nth-child(3){-moz-transition-delay:.95s;-webkit-transition-delay:.95s;-ms-transition-delay:.95s;transition-delay:.95s}}#footer .copyright{color:#b5b5b5;font-size:15px}#footer .copyright a{color:inherit}
--------------------------------------------------------------------------------