jekyll-theme-h2o-ac 1.2.1 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/_config.yml +15 -17
  4. data/_data/collections.yml +11 -0
  5. data/_data/locales/en.yml +6 -0
  6. data/_data/locales/ja.yml +6 -0
  7. data/_data/locales/zh-Hans.yml +6 -0
  8. data/_data/locales/zh-Hant.yml +6 -0
  9. data/_includes/{footer.html → layouts/footer.html} +61 -35
  10. data/_includes/{post-head.html → layouts/head.html} +35 -29
  11. data/_includes/{header.html → layouts/header.html} +19 -1
  12. data/_includes/layouts/metainfo.html +40 -0
  13. data/_includes/{paginate-article.html → layouts/paginate-article.html} +9 -2
  14. data/_includes/{paginate.html → layouts/paginate.html} +5 -5
  15. data/_includes/{sidebar.html → layouts/sidebar.html} +21 -4
  16. data/_includes/layouts/submenu.html +30 -0
  17. data/_includes/plugins/analytics/analytics.html +3 -0
  18. data/_includes/{analytics.html → plugins/analytics/google.html} +1 -2
  19. data/_includes/plugins/comments/comments_block.html +67 -0
  20. data/_includes/plugins/comments/comments_js.html +24 -0
  21. data/_includes/plugins/comments/disqus.html +19 -0
  22. data/_includes/plugins/comments/waline_css.html +3 -0
  23. data/_includes/plugins/comments/waline_js.html +14 -0
  24. data/_includes/plugins/i18n.html +32 -0
  25. data/_includes/plugins/markdown/fancybox_css.html +1 -0
  26. data/_includes/plugins/markdown/fancybox_js.html +24 -0
  27. data/_includes/plugins/markdown/hotkeys.html +31 -0
  28. data/_includes/plugins/markdown/markdown.html +7 -0
  29. data/_includes/{mathjax.html → plugins/markdown/mathjax.html} +4 -9
  30. data/_includes/plugins/markdown/mermaid_block.html +10 -0
  31. data/_includes/plugins/markdown/mermaid_js.html +12 -0
  32. data/_includes/plugins/markdown/prism_css.html +16 -0
  33. data/_includes/plugins/markdown/prism_js.html +3 -0
  34. data/_includes/plugins/others/calendar_block.html +31 -0
  35. data/_includes/plugins/others/calendar_css.html +3 -0
  36. data/_includes/plugins/others/calendar_js.html +8 -0
  37. data/_includes/plugins/others/social_block.html +5 -0
  38. data/_includes/plugins/others/social_css.html +1 -0
  39. data/_includes/plugins/others/social_js.html +15 -0
  40. data/_layouts/404.html +17 -0
  41. data/_layouts/archives.html +89 -59
  42. data/_layouts/blog.html +4 -10
  43. data/_layouts/categories.html +3 -1
  44. data/_layouts/default.html +62 -45
  45. data/_layouts/links.html +14 -4
  46. data/_layouts/page.html +17 -87
  47. data/_layouts/post.html +146 -483
  48. data/_layouts/stats.html +52 -0
  49. data/_layouts/tags.html +2 -2
  50. data/assets/css/app.min.css +1 -2591
  51. data/assets/css/app.min.css.map +1 -1
  52. data/assets/css/cv.min.css +1 -279
  53. data/assets/css/cv.min.css.map +1 -1
  54. data/assets/js/app.min.js +1 -686
  55. data/assets/js/app.min.js.LICENSE.txt +15 -0
  56. data/assets/js/app.min.js.map +1 -1
  57. metadata +43 -20
  58. data/_includes/comments.html +0 -53
  59. data/_includes/head.html +0 -47
  60. data/_includes/mermaid.html +0 -12
  61. data/_includes/waline.html +0 -3
  62. /data/_includes/{pageNav.html → layouts/pageNav.html} +0 -0
  63. /data/_includes/{toc.html → layouts/toc.html} +0 -0
  64. /data/_includes/{busuanzi.html → plugins/analytics/busuanzi.html} +0 -0
  65. /data/_includes/{umami.html → plugins/analytics/umami.html} +0 -0
  66. /data/_includes/{pwa.html → plugins/others/pwa.html} +0 -0
  67. /data/_includes/{webpusher.html → plugins/others/webpusher.html} +0 -0
@@ -1,2593 +1,3 @@
1
- /*!************************************************************************************************************!*\
2
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./dev/sass/app.scss ***!
3
- \************************************************************************************************************/
4
- @charset "UTF-8";
5
- /**
6
- * Jekyll Theme Style
7
- * - author: liaokeyu (liaokeyu.com)
8
- */
9
- /*** Parameters ***/
10
- .color-f-white {
11
- color: #fff;
12
- }
13
-
14
- .color-f-gray {
15
- color: #666 !important;
16
- }
17
-
18
- /*** Mixins ***/
19
- /*** Base ***/
20
- html, body {
21
- height: 100%;
22
- }
23
-
24
- html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, textarea,
25
- form, label, legend, table, caption, menu, nav, section, summary,
26
- time, mark, audio, video, iframe, main, header, footer {
27
- padding: 0;
28
- margin: 0;
29
- border: 0;
30
- outline: 0 none;
31
- }
32
-
33
- body {
34
- font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
35
- color: #656565;
36
- -webkit-font-smoothing: antialiased;
37
- background-color: #F7F8FA;
38
- overflow: visible;
39
- }
40
-
41
- ul {
42
- list-style-type: none;
43
- }
44
-
45
- a {
46
- color: #4E4E4E;
47
- text-decoration: none;
48
- cursor: pointer;
49
- transition: 0.2s;
50
- }
51
-
52
- ::selection {
53
- background-color: rgba(0, 147, 254, 0.2);
54
- }
55
-
56
- ::-moz-selection {
57
- background-color: rgba(0, 147, 254, 0.2);
58
- }
59
-
60
- ::-webkit-selection {
61
- background-color: rgba(0, 147, 254, 0.2);
62
- }
63
-
64
- .gray {
65
- filter: grayscale(100%);
66
- -webkit-filter: grayscale(100%);
67
- -moz-filter: grayscale(100%);
68
- -ms-filter: grayscale(100%);
69
- -o-filter: grayscale(100%);
70
- }
71
-
72
- :root {
73
- --waline-theme-color: #81bbff!important;
74
- --waline-active-color: #1B7EFF!important;
75
- }
76
-
77
- /*** Main style ***/
78
- .g-header {
79
- position: fixed;
80
- top: 0;
81
- left: 0;
82
- width: 100%;
83
- height: 50px;
84
- padding: 16px 0;
85
- background-color: transparent;
86
- transition: all 0.6s;
87
- z-index: 1000;
88
- }
89
- .g-header .g-logo {
90
- float: left;
91
- margin-left: 2%;
92
- width: 50px;
93
- height: 50px;
94
- opacity: 0.8;
95
- transition: all 0.2s;
96
- }
97
- .g-header .g-logo:hover {
98
- opacity: 1;
99
- }
100
- .g-header .g-logo a {
101
- display: block;
102
- width: 100%;
103
- height: 100%;
104
- }
105
- .g-header #mode-toggle {
106
- width: 40px;
107
- height: 40px;
108
- position: absolute;
109
- top: 35px;
110
- right: 57px;
111
- display: none;
112
- }
113
- .g-header #mode-toggle .icon-day, .g-header #mode-toggle .icon-night {
114
- width: 30px;
115
- height: 30px;
116
- padding: 5px;
117
- display: none;
118
- }
119
- .g-header #mode-toggle .icon-day.active, .g-header #mode-toggle .icon-night.active {
120
- display: block;
121
- }
122
- .g-header #mode-toggle .icon-day:hover, .g-header #mode-toggle .icon-night:hover {
123
- background-color: #81bbff;
124
- border-radius: 50%;
125
- }
126
- .g-header .icon-menu {
127
- display: none;
128
- position: absolute;
129
- top: 32px;
130
- right: 0;
131
- padding: 8px;
132
- font-size: 28px;
133
- color: #fff;
134
- opacity: 0.8;
135
- border-radius: 3px;
136
- }
137
- .g-header .icon-menu:active {
138
- background-color: rgba(255, 255, 255, 0.2);
139
- }
140
- .g-header .g-nav {
141
- float: right;
142
- margin-right: 2%;
143
- }
144
- .g-header .g-nav > ul > li {
145
- float: left;
146
- height: 50px;
147
- line-height: 50px;
148
- text-transform: uppercase;
149
- margin-right: 18px;
150
- }
151
- .g-header .g-nav > ul > li:last-child {
152
- margin-right: 0;
153
- }
154
- .g-header .g-nav > ul > li > a {
155
- display: inline-block;
156
- font-size: 16px;
157
- font-weight: bold;
158
- letter-spacing: 1px;
159
- color: #fff;
160
- padding: 0 12px;
161
- opacity: 1;
162
- }
163
- .g-header .g-nav > ul > li > a:hover {
164
- opacity: 0.7;
165
- }
166
- .g-header .g-nav > ul > li.mode {
167
- width: 40px;
168
- height: 40px;
169
- margin: 5px 0;
170
- cursor: pointer;
171
- }
172
- .g-header .g-nav > ul > li.mode .icon {
173
- width: 30px;
174
- height: 30px;
175
- padding: 5px;
176
- display: none;
177
- }
178
- .g-header .g-nav > ul > li.mode .icon.active {
179
- display: block;
180
- }
181
- .g-header .g-nav .dropdown-toggle {
182
- white-space: nowrap;
183
- }
184
- .g-header .g-nav .dropdown-toggle::after {
185
- content: "";
186
- display: inline-block;
187
- vertical-align: 0.306em;
188
- width: 0.36em;
189
- height: 0.36em;
190
- border-bottom: 2px solid;
191
- border-left: 2px solid;
192
- margin-right: 0.1em;
193
- margin-left: 0.4em;
194
- transform: rotate(-45deg);
195
- }
196
- .g-header .g-nav .dropdown-toggle.show::after {
197
- vertical-align: 0.1em;
198
- transform: rotate(135deg);
199
- }
200
- .g-header .g-nav ul.dropdown-menu {
201
- background-color: #fff;
202
- box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
203
- border-radius: 3px;
204
- display: none;
205
- float: left;
206
- position: absolute;
207
- min-width: 140px;
208
- padding: 5px 0;
209
- margin-left: 12px;
210
- }
211
- .g-header .g-nav ul.dropdown-menu.show {
212
- display: block;
213
- }
214
- .g-header .g-nav ul.dropdown-menu li {
215
- padding: 0rem 0.75rem;
216
- line-height: 2.5rem;
217
- }
218
- .g-header .g-nav ul.dropdown-menu li:hover {
219
- background-color: rgba(98, 105, 118, 0.04);
220
- }
221
- .g-header .g-nav ul.dropdown-menu li a {
222
- color: #4E4E4E;
223
- display: block;
224
- text-align: center;
225
- }
226
-
227
- .headerUp {
228
- top: -82px;
229
- }
230
-
231
- .headerDown {
232
- top: 0;
233
- }
234
-
235
- .g-banner {
236
- height: 460px;
237
- background-color: #2F3139;
238
- color: #fff;
239
- padding: 0 60px;
240
- }
241
- .g-banner .meta-item {
242
- margin-top: 20px;
243
- }
244
- .g-banner .meta-item svg {
245
- width: 20px;
246
- height: 20px;
247
- margin-bottom: -5px;
248
- }
249
- .g-banner .meta-item a {
250
- text-decoration: underline;
251
- color: #fff;
252
- }
253
-
254
- .home-banner {
255
- position: relative;
256
- text-align: center;
257
- overflow: hidden;
258
- box-shadow: 0 4px 20px rgba(0, 38, 55, 0.16);
259
- }
260
- .home-banner h2, .home-banner h3 {
261
- position: relative;
262
- z-index: 1;
263
- text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
264
- }
265
- .home-banner h2 {
266
- padding-top: 190px;
267
- line-height: 38px;
268
- font-size: 42px;
269
- font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
270
- font-weight: bold;
271
- line-height: 52px;
272
- }
273
- .home-banner h3 {
274
- font-size: 20px;
275
- font-weight: 400;
276
- margin-top: 8px;
277
- }
278
-
279
- .banner-theme-default {
280
- background: -webkit-linear-gradient(0deg, #3CD5FF, #a8b8c9);
281
- background: -o-linear-gradient(0deg, #3CD5FF, #a8b8c9);
282
- background: -moz-linear-gradient(0deg, #3CD5FF, #a8b8c9);
283
- background: linear-gradient(100deg, #3CD5FF, #a8b8c9);
284
- }
285
-
286
- .banner-theme-pink {
287
- background: -webkit-linear-gradient(0deg, #FFCE69, #fcc6d7);
288
- background: -o-linear-gradient(0deg, #FFCE69, #fcc6d7);
289
- background: -moz-linear-gradient(0deg, #FFCE69, #fcc6d7);
290
- background: linear-gradient(100deg, #FFCE69, #fcc6d7);
291
- }
292
-
293
- .themeColor-default {
294
- background-color: rgb(27, 126, 255);
295
- }
296
-
297
- .themeColor-pink {
298
- background-color: rgb(252, 103, 148);
299
- }
300
-
301
- .markdown-body {
302
- font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
303
- width: 100%;
304
- box-sizing: border-box;
305
- padding: 0 0 32px;
306
- }
307
- .markdown-body .highlight {
308
- margin: 0 0 16px;
309
- /** overflow: scroll; 修复代码高亮 显示两个 scroll的问题 **/
310
- }
311
- .markdown-body img {
312
- transition: 0.3s;
313
- max-width: 100%;
314
- max-height: 100%;
315
- margin-top: 16px;
316
- margin-bottom: 5px;
317
- }
318
- .markdown-body .caption {
319
- display: block;
320
- text-align: center;
321
- color: #222222;
322
- font-size: 13.5px;
323
- }
324
- .markdown-body ul li p, .markdown-body ol li p {
325
- margin: 0;
326
- }
327
- .markdown-body ul li p:first-child, .markdown-body ol li p:first-child {
328
- margin-bottom: 0;
329
- }
330
- .markdown-body mjx-math {
331
- overflow-x: auto;
332
- overflow-y: unset;
333
- width: 100%;
334
- }
335
- .markdown-body .copy-container {
336
- position: relative;
337
- background-color: #e2e2e2;
338
- height: 28px;
339
- }
340
- .markdown-body .copy-container .lang {
341
- line-height: 28px;
342
- padding-left: 10px;
343
- font-weight: bold;
344
- }
345
- .markdown-body .copy-container .btn {
346
- position: absolute;
347
- top: 0px;
348
- right: 0px;
349
- padding: 2px 2px;
350
- border: none;
351
- cursor: pointer;
352
- height: 28px;
353
- background-color: #ebedf0;
354
- z-index: 100;
355
- }
356
- .markdown-body .copy-container .btn .icon {
357
- width: 24px;
358
- height: 24px;
359
- }
360
- .markdown-body .copy-container .btn .tooltip {
361
- font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
362
- font-size: 14px;
363
- float: right;
364
- position: absolute;
365
- margin-left: -38px;
366
- background-color: #dadde1;
367
- padding: 3px 7px;
368
- border-radius: 3px;
369
- margin-top: -35px;
370
- display: none;
371
- }
372
- .markdown-body .copy-container .btn .tooltip.finish {
373
- margin-left: -43px;
374
- }
375
- .markdown-body .copy-container .btn .tooltip:after {
376
- content: "";
377
- position: absolute;
378
- top: calc(100% - 6px);
379
- left: calc(50% - 6px);
380
- width: 10px;
381
- height: 10px;
382
- background-color: #dadde1;
383
- border-width: 1px;
384
- border-style: solid;
385
- border-color: transparent #dadde1 #dadde1 transparent;
386
- transform: rotate(45deg);
387
- clip-path: polygon(145% -50%, 150% 150%, -50% 145%);
388
- }
389
- .markdown-body .copy-container .btn .tooltip.active {
390
- display: inline-block;
391
- }
392
- .markdown-body p {
393
- font-size: 16px;
394
- line-height: 1.8;
395
- text-align: justify;
396
- }
397
- .markdown-body h1, .markdown-body h2 {
398
- border-bottom: none;
399
- }
400
- .markdown-body ul {
401
- list-style: revert;
402
- }
403
- .markdown-body > ol {
404
- padding-left: 0;
405
- }
406
- .markdown-body ol {
407
- list-style: none !important;
408
- }
409
- .markdown-body ol li {
410
- counter-increment: a 1;
411
- }
412
- .markdown-body ol li:before {
413
- content: counter(a);
414
- font-weight: bold;
415
- color: #fff;
416
- text-align: center;
417
- padding: 0 5px;
418
- margin-right: 10px;
419
- border-radius: 50%;
420
- }
421
- .markdown-body ol li::marker {
422
- content: "";
423
- }
424
- .markdown-body ol li li {
425
- counter-increment: b 1;
426
- }
427
- .markdown-body ol li li:before {
428
- content: counter(a) "." counter(b);
429
- border-radius: 0;
430
- }
431
- .markdown-body ol li li li {
432
- counter-increment: c 1;
433
- }
434
- .markdown-body ol li li li:before {
435
- content: counter(a) "." counter(b) "." counter(c);
436
- }
437
- .markdown-body ol li li li li {
438
- counter-increment: d 1;
439
- }
440
- .markdown-body ol li li li li:before {
441
- content: counter(a) "." counter(b) "." counter(c) "." counter(d);
442
- }
443
- .markdown-body summary.render-expand {
444
- padding: 3px 12px;
445
- font-size: 12px;
446
- line-height: 20px;
447
- float: right;
448
- list-style: none;
449
- font-weight: 500;
450
- color: #57606a;
451
- background-color: #f6f8fa;
452
- box-shadow: 0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25);
453
- border: 1px solid rgba(27, 31, 36, 0.15);
454
- border-radius: 6px;
455
- cursor: pointer;
456
- }
457
- .markdown-body summary.render-expand:hover {
458
- background-color: #f3f4f6;
459
- border-color: rgba(27, 31, 36, 0.15);
460
- transition-duration: 0.1s;
461
- }
462
- .markdown-body pre {
463
- border: 3px solid #e2e2e2;
464
- border-radius: 0px !important;
465
- border-top: none;
466
- }
467
- .markdown-body pre.language-mermaid2 {
468
- background: #eceff1;
469
- color: transparent;
470
- display: none;
471
- }
472
- .markdown-body pre.language-mermaid2 code {
473
- color: transparent;
474
- background-color: #eceff1;
475
- }
476
- .markdown-body .mermaid2 {
477
- justify-content: center;
478
- text-align: center;
479
- align-content: flex-start;
480
- margin: 10px 0;
481
- background-color: #fff;
482
- }
483
- .markdown-body .category {
484
- text-transform: capitalize;
485
- }
486
- .markdown-body .table-area {
487
- overflow: auto;
488
- }
489
- .markdown-body .table-area table {
490
- word-break: keep-all;
491
- word-wrap: break-word;
492
- text-overflow: ellipsis;
493
- white-space: nowrap;
494
- }
495
- .markdown-body .post-copyright {
496
- background-color: #FFFBF0;
497
- border-radius: 4px;
498
- border: 1px solid #EFE1BB;
499
- padding: 18px 20px;
500
- font-size: 14px;
501
- color: #333;
502
- }
503
- .markdown-body .post-copyright p {
504
- margin-bottom: 0px;
505
- text-align: left;
506
- }
507
- .markdown-body .post-copyright p span {
508
- font-weight: bold;
509
- }
510
- .markdown-body .post-copyright p.tips {
511
- color: #E32E00;
512
- display: none;
513
- }
514
- .markdown-body .post-copyright p.tips.active {
515
- display: block;
516
- }
517
- .markdown-body .language-plaintext {
518
- color: chocolate;
519
- }
520
- .markdown-body .footnotes {
521
- border-top-width: 3px;
522
- padding-top: 10px;
523
- }
524
- .markdown-body .footnotes ol li:before {
525
- position: relative !important;
526
- top: 0 !important;
527
- right: 0 !important;
528
- bottom: 0 !important;
529
- left: 0 !important;
530
- content: counter(a) !important;
531
- border: 0px !important;
532
- border-radius: 50% !important;
533
- font-size: 16px;
534
- }
535
- .markdown-body .footnotes ol li p {
536
- display: inline;
537
- }
538
-
539
- .post-no-cover {
540
- height: 360px;
541
- }
542
- .post-no-cover .post-tags {
543
- margin-top: 100px;
544
- }
545
-
546
- .post-pattern-circuitBoard {
547
- background-image: url("data:image/svg+xml,%3Csvg width=%27304%27 height=%27304%27 viewBox=%270 0 304 304%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z%27 fill=%27%23f8f6fb%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
548
- }
549
-
550
- .post-pattern-overlappingCircles {
551
- background-image: url("data:image/svg+xml,%3Csvg width=%2780%27 height=%2780%27 viewBox=%270 0 80 80%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z%27 /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
552
- }
553
-
554
- .post-pattern-food {
555
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27260%27 height=%27260%27 viewBox=%270 0 260 260%27%3E%3Cg fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z%27/%3E%3Cpath id=%27path6_fill-copy%27 d=%27M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z%27/%3E%3Cpath d=%27M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z%27/%3E%3Cpath d=%27M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z%27/%3E%3Cpath d=%27M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z%27/%3E%3Cpath d=%27M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z%27/%3E%3Cpath d=%27M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
556
- }
557
-
558
- .post-pattern-glamorous {
559
- background-image: url("data:image/svg+xml,%3Csvg width=%27180%27 height=%27180%27 viewBox=%270 0 180 180%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
560
- }
561
-
562
- .post-pattern-ticTacToe {
563
- background-image: url("data:image/svg+xml,%3Csvg width=%2764%27 height=%2764%27 viewBox=%270 0 64 64%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
564
- }
565
-
566
- .post-pattern-seaOfClouds {
567
- background-image: url("data:image/svg+xml,%3Csvg width=%2756%27 height=%2728%27 viewBox=%270 0 56 28%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M56 26c-2.813 0-5.456.726-7.752 2H56v-2zm-26 2h4.087C38.707 20.783 46.795 16 56 16v-2c-.672 0-1.339.024-1.999.07L54 14a2 2 0 0 1 2-2v-2a4 4 0 0 0-3.98 3.602 28.087 28.087 0 0 0-2.793-3.862A7.994 7.994 0 0 1 56 6V4a9.988 9.988 0 0 0-8.17 4.232 28.156 28.156 0 0 0-3.03-2.634A13.979 13.979 0 0 1 56 0h-7.752a16.078 16.078 0 0 0-5.09 4.454 27.941 27.941 0 0 0-3.536-1.936c.63-.896 1.33-1.738 2.095-2.518H39.03c-.46.557-.893 1.137-1.297 1.737A27.787 27.787 0 0 0 33.723.585c.12-.196.24-.392.364-.585H30l-.001.07A28.406 28.406 0 0 0 26 .07L26 0h-4.087c.124.193.245.389.364.585a27.787 27.787 0 0 0-4.009 1.152c-.404-.6-.837-1.18-1.297-1.737h-2.688c.764.78 1.466 1.622 2.095 2.518-1.23.562-2.41 1.21-3.536 1.936A16.078 16.078 0 0 0 7.752 0H0c4.58 0 8.645 2.199 11.2 5.598a28.156 28.156 0 0 0-3.03 2.634A9.988 9.988 0 0 0 0 4v2a7.994 7.994 0 0 1 6.773 3.74 28.087 28.087 0 0 0-2.793 3.862A4 4 0 0 0 0 10v2a2 2 0 0 1 1.999 2.07C1.339 14.024.672 14 0 14v2c9.205 0 17.292 4.783 21.913 12H26a2 2 0 1 1 4 0zM7.752 28C5.456 26.726 2.812 26 0 26v2h7.752zM56 20c-6.832 0-12.936 3.114-16.971 8h2.688A19.94 19.94 0 0 1 56 22v-2zm-39.029 8C12.936 23.114 6.831 20 0 20v2a19.94 19.94 0 0 1 14.283 6h2.688zm15.01-.398a28.087 28.087 0 0 1 2.792-3.862A7.994 7.994 0 0 0 28 20a7.994 7.994 0 0 0-6.773 3.74 28.087 28.087 0 0 1 2.793 3.862 4 4 0 0 1 7.96 0zm14.287-11.865C42.318 9.864 35.61 6 28 6c-7.61 0-14.318 3.864-18.268 9.737a27.787 27.787 0 0 0-4.009-1.152C10.275 7.043 18.548 2 28 2c9.452 0 17.725 5.043 22.277 12.585a27.787 27.787 0 0 0-4.009 1.152zm-5.426 2.717a27.941 27.941 0 0 1 3.536-1.936C40.76 11.367 34.773 8 28 8s-12.76 3.367-16.378 8.518c1.23.562 2.41 1.21 3.536 1.936C18.075 14.537 22.741 12 28 12s9.925 2.537 12.842 6.454zm-4.672 3.778a28.156 28.156 0 0 1 3.03-2.634A13.979 13.979 0 0 0 28 14c-4.58 0-8.645 2.199-11.2 5.598a28.156 28.156 0 0 1 3.03 2.634A9.988 9.988 0 0 1 28 18a9.988 9.988 0 0 1 8.17 4.232z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
568
- }
569
-
570
- .post-content {
571
- position: relative;
572
- width: auto;
573
- background-color: #fff;
574
- overflow: visible;
575
- padding: 40px 0 80px;
576
- border: 1px solid #e7eaf1;
577
- border-radius: 3px;
578
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
579
- }
580
- .post-content .post-subtitle {
581
- position: relative;
582
- width: 695px;
583
- font-size: 18px;
584
- color: #585858;
585
- font-weight: normal;
586
- line-height: 28px;
587
- text-align: center;
588
- padding: 35px 0;
589
- margin: 0 auto 40px;
590
- box-sizing: border-box;
591
- }
592
- .post-content .post-subtitle:before, .post-content .post-subtitle:after {
593
- position: absolute;
594
- content: "";
595
- left: 50%;
596
- margin-left: -13%;
597
- width: 26%;
598
- height: 2px;
599
- background-color: #EAECEE;
600
- }
601
- .post-content .post-subtitle:before {
602
- top: 0;
603
- }
604
- .post-content .post-subtitle:after {
605
- bottom: 0;
606
- }
607
- .post-content .container {
608
- width: 1080px;
609
- margin: 0 auto;
610
- display: flex;
611
- flex-direction: row;
612
- justify-content: space-between;
613
- }
614
- .post-content .container .contents {
615
- width: 695px;
616
- padding: 30px;
617
- }
618
- .post-content .interest {
619
- width: auto;
620
- height: 40px;
621
- display: inline-block !important;
622
- margin: 0 20px 0 0 !important;
623
- }
624
-
625
- .post-header, .markdown-body, .post-wrapper, .author-detail, .social-share-wrapper {
626
- margin: 0 auto;
627
- }
628
-
629
- .post-wrapper {
630
- width: 695px;
631
- }
632
-
633
- .post-header {
634
- position: relative;
635
- padding: 0;
636
- margin: 0;
637
- color: #fff;
638
- overflow: hidden;
639
- background-color: #4285f4;
640
- z-index: 0;
641
- }
642
- .post-header h1 {
643
- font-size: 32px;
644
- line-height: 42px;
645
- margin-bottom: 12px;
646
- }
647
- .post-header .post-tags {
648
- margin: 150px 0 16px;
649
- }
650
- .post-header .post-tags .post-tag {
651
- display: inline-block;
652
- width: auto;
653
- height: 24px;
654
- line-height: 24px;
655
- padding: 0 12px;
656
- font-size: 14px;
657
- color: #656565;
658
- box-sizing: border-box;
659
- box-shadow: 0 0 0.6px #D5DAE1;
660
- border: 1px solid rgba(92, 147, 187, 0.168627451);
661
- border-radius: 12px;
662
- background-color: #F7F8FA;
663
- cursor: pointer;
664
- margin-right: 2px;
665
- transition: 0.2s;
666
- margin-bottom: 5px;
667
- color: #fff;
668
- background-color: rgba(255, 255, 255, 0.26);
669
- box-shadow: none;
670
- margin-bottom: 8px;
671
- }
672
- .post-header .post-tags .post-tag:last-child {
673
- margin-right: 0;
674
- }
675
- .post-header .post-tags .post-tag:hover {
676
- background-color: rgba(255, 255, 255, 0.4);
677
- }
678
- .post-header .post-meta {
679
- margin-top: 32px;
680
- }
681
- .post-header .post-meta .post-meta-item {
682
- display: inline-block;
683
- white-space: nowrap;
684
- font-size: 16px;
685
- color: #fff;
686
- margin-right: 4px;
687
- opacity: 0.8;
688
- margin-bottom: 10px;
689
- }
690
- .post-header .post-meta .post-meta-item:last-child {
691
- margin-right: 0;
692
- }
693
- .post-header .post-meta .post-meta-item .iconfont {
694
- font-size: 18px;
695
- margin-right: 4px;
696
- }
697
- .post-header .post-meta .post-meta-item a {
698
- color: #fff;
699
- text-decoration: underline;
700
- }
701
- .post-header .post-meta .post-meta-item .icon {
702
- width: 18px;
703
- height: 18px;
704
- margin-bottom: -3px;
705
- }
706
- .post-header .filter {
707
- position: absolute;
708
- content: "";
709
- top: 0;
710
- left: 0;
711
- width: 100%;
712
- height: 100%;
713
- background-color: #000;
714
- opacity: 0.3;
715
- z-index: -1;
716
- }
717
- .post-header .post-cover {
718
- position: absolute;
719
- top: 0;
720
- left: 0;
721
- width: 100%;
722
- height: 100%;
723
- z-index: -2;
724
- }
725
-
726
- .table-of-contents {
727
- padding: 20px;
728
- border-left: 2px solid #efefef;
729
- width: 280px;
730
- position: -webkit-sticky;
731
- position: sticky;
732
- top: 100px;
733
- margin-bottom: 80px;
734
- height: fit-content;
735
- overflow: auto;
736
- max-height: 450px;
737
- }
738
- .table-of-contents ul {
739
- margin-left: 20px;
740
- list-style-type: revert;
741
- font-size: 14px;
742
- line-height: 24px;
743
- }
744
-
745
- .bgcolor-default {
746
- background-color: rgb(27, 126, 255);
747
- }
748
-
749
- .bgcolor-pink {
750
- background-color: rgba(252, 103, 148, 0.5);
751
- }
752
-
753
- .social-share-wrapper {
754
- float: left;
755
- position: relative;
756
- left: 50%;
757
- }
758
- .social-share-wrapper .social-share {
759
- position: relative;
760
- left: -50%;
761
- }
762
-
763
- .post-footer-item {
764
- margin: 0 auto;
765
- width: 695px;
766
- }
767
-
768
- .author-detail {
769
- position: relative;
770
- top: -35px;
771
- }
772
- .author-detail .comment .wl-gif-popup {
773
- max-width: 90%;
774
- }
775
- .author-detail .comment #disqus_thread, .author-detail .comment #waline {
776
- display: none;
777
- }
778
- .author-detail .comment #disqus_thread.active, .author-detail .comment #waline.active {
779
- display: block;
780
- animation: 0.5s ease 0s 1 normal none running tabshow;
781
- }
782
- .author-detail .comment .comments-headline {
783
- display: inline-block;
784
- vertical-align: middle;
785
- font-weight: 700;
786
- font-size: 1.43em;
787
- margin-bottom: 20px;
788
- height: 40px;
789
- line-height: 40px;
790
- min-width: 150px;
791
- }
792
- .author-detail .comment .comments-headline .icon {
793
- width: 30px;
794
- height: 30px;
795
- margin-bottom: -7px;
796
- }
797
- .author-detail .comment #comments-switch {
798
- background-color: #f1f1f1;
799
- padding: 10px;
800
- border-radius: 10px;
801
- display: block;
802
- float: right;
803
- margin-bottom: 10px;
804
- min-width: 176px;
805
- text-align: center;
806
- }
807
- .author-detail .comment #comments-switch .first-comment {
808
- color: #3CD5FF;
809
- }
810
- .author-detail .comment #comments-switch .second-comment {
811
- color: #FFCE69;
812
- }
813
- .author-detail .comment #comments-switch .switch-button {
814
- display: inline-block;
815
- margin-bottom: -5px;
816
- }
817
- .author-detail .comment #comments-switch .switch-button .cmn-toggle {
818
- position: absolute;
819
- margin-left: -9999px;
820
- visibility: hidden;
821
- }
822
- .author-detail .comment #comments-switch .switch-button .cmn-toggle + label {
823
- display: block;
824
- position: relative;
825
- cursor: pointer;
826
- outline: none;
827
- user-select: none;
828
- }
829
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat + label {
830
- padding: 2px;
831
- width: 40px;
832
- height: 20px;
833
- background-color: #3CD5FF;
834
- border-radius: 15px;
835
- transition: background 0.4s;
836
- }
837
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat + label:before,
838
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat + label:after {
839
- display: block;
840
- position: absolute;
841
- content: "";
842
- }
843
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat + label:before {
844
- top: 2px;
845
- left: 2px;
846
- bottom: 2px;
847
- right: 2px;
848
- background-color: #fff;
849
- border-radius: 10px;
850
- transition: background 0.4s;
851
- }
852
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat + label:after {
853
- top: 4px;
854
- left: 4px;
855
- bottom: 4px;
856
- width: 16px;
857
- background-color: #3CD5FF;
858
- border-radius: 24px;
859
- transition: margin 0.4s, background 0.4s;
860
- }
861
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat:checked + label {
862
- background-color: #FFCE69;
863
- }
864
- .author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat:checked + label:after {
865
- margin-left: 20px;
866
- background-color: #FFCE69;
867
- }
868
-
869
- .read-next {
870
- display: flex;
871
- width: 695px;
872
- margin: 60px auto;
873
- }
874
-
875
- .read-next-item {
876
- position: relative;
877
- flex: 1;
878
- height: 260px;
879
- padding: 0;
880
- margin-left: 10px;
881
- top: 0;
882
- background-color: #AAB4CA;
883
- border-radius: 3px;
884
- overflow: hidden;
885
- box-shadow: 0 2px 10px rgba(109, 127, 144, 0.5);
886
- transition: box-shadow 0.4s ease, top 0.3s ease;
887
- }
888
- .read-next-item:first-child {
889
- margin-left: 0;
890
- }
891
- .read-next-item:hover {
892
- top: -5px;
893
- box-shadow: 0 8px 20px rgba(52, 61, 70, 0.3);
894
- }
895
- .read-next-item .read-next-link {
896
- position: absolute;
897
- top: 0;
898
- left: 0;
899
- width: 100%;
900
- height: 100%;
901
- z-index: 3;
902
- }
903
- .read-next-item section {
904
- display: none;
905
- position: relative;
906
- width: 80%;
907
- margin-left: 10%;
908
- margin-top: 45px;
909
- color: #fff;
910
- z-index: 2;
911
- }
912
- .read-next-item section span {
913
- font-size: 22px;
914
- font-weight: bold;
915
- margin: 0;
916
- }
917
- .read-next-item section p {
918
- margin-top: 8px;
919
- font-size: 15px;
920
- line-height: 22px;
921
- opacity: 0.8;
922
- }
923
- .read-next-item .filter {
924
- position: absolute;
925
- top: 0;
926
- left: 0;
927
- width: 100%;
928
- height: 100%;
929
- background-color: rgba(0, 0, 0, 0.22);
930
- z-index: 1;
931
- transition: 0.3s linear;
932
- }
933
- .read-next-item img {
934
- display: none;
935
- position: absolute;
936
- top: 0;
937
- left: 0;
938
- width: 100%;
939
- filter: blur(6px);
940
- -webkit-filter: blur(6px);
941
- z-index: 0;
942
- }
943
-
944
- .archives-date {
945
- width: 130px;
946
- display: inline-block;
947
- color: #222222;
948
- opacity: 0.63;
949
- }
950
-
951
- .archives-title {
952
- width: 95%;
953
- display: inline-block;
954
- margin-bottom: 0 !important;
955
- margin-top: 0 !important;
956
- white-space: nowrap;
957
- }
958
-
959
- .friends .friendurl {
960
- text-decoration: none !important;
961
- color: inherit;
962
- box-shadow: none !important;
963
- background-color: transparent !important;
964
- border-bottom: none !important;
965
- }
966
- .friends .frienddiv {
967
- height: 100px;
968
- width: 49%;
969
- display: inline-block !important;
970
- border-radius: 5px;
971
- background: 0 0;
972
- -webkit-transition: all ease-out 0.3s;
973
- -moz-transition: all ease-out 0.3s;
974
- -o-transition: all ease-out 0.3s;
975
- transition: all ease-out 0.3s;
976
- }
977
- .friends .frienddiv:hover {
978
- background: rgba(0, 0, 0, 0.03);
979
- }
980
- .friends .frienddivleft {
981
- width: 92px;
982
- float: left;
983
- margin-right: -5px;
984
- }
985
- .friends .frienddivleft .myfriend {
986
- width: 56px !important;
987
- height: 56px !important;
988
- border-radius: 50% !important;
989
- padding: 2px;
990
- margin-top: 20px !important;
991
- margin-left: 14px !important;
992
- background-color: #fff;
993
- box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
994
- }
995
- .friends .frienddivright {
996
- margin-top: 27px;
997
- margin-right: 18px;
998
- }
999
- .friends .frienddivright .friendname {
1000
- text-overflow: ellipsis;
1001
- font-size: 100%;
1002
- margin-bottom: 5px;
1003
- color: var(--primary);
1004
- }
1005
- .friends .frienddivright .friendinfo {
1006
- text-overflow: ellipsis;
1007
- font-size: 70%;
1008
- color: var(--primary);
1009
- }
1010
-
1011
- .alert-tip {
1012
- position: fixed;
1013
- z-index: 102;
1014
- background: hsla(0, 0%, 100%, 0.3);
1015
- padding: 10px 20px;
1016
- min-width: 150px;
1017
- text-align: center;
1018
- left: 0;
1019
- right: 0;
1020
- margin: 0 auto;
1021
- color: #000;
1022
- backdrop-filter: blur(6px);
1023
- visibility: hidden;
1024
- opacity: 0;
1025
- transition: all 1s linear;
1026
- }
1027
- .alert-tip.active {
1028
- visibility: visible;
1029
- opacity: 1;
1030
- }
1031
-
1032
- .cookie-tip {
1033
- position: fixed;
1034
- z-index: 102;
1035
- background: rgb(237, 239, 245);
1036
- padding: 0.5em 1.8em;
1037
- font-size: 13px;
1038
- line-height: 2.5em;
1039
- min-height: 2.5em;
1040
- min-width: 150px;
1041
- bottom: 0;
1042
- left: 0;
1043
- right: 0;
1044
- margin: 0 auto;
1045
- color: rgb(131, 131, 145);
1046
- backdrop-filter: blur(6px);
1047
- visibility: hidden;
1048
- opacity: 0;
1049
- transition: all 0.5s linear;
1050
- }
1051
- .cookie-tip.active {
1052
- visibility: visible;
1053
- opacity: 1;
1054
- }
1055
- .cookie-tip a {
1056
- text-decoration: underline;
1057
- }
1058
-
1059
- #accept-tos {
1060
- float: right;
1061
- padding: 6px 20px;
1062
- color: #fff;
1063
- font-weight: 700;
1064
- border-width: 2px;
1065
- text-align: center;
1066
- border-style: solid;
1067
- border-color: transparent;
1068
- cursor: pointer;
1069
- }
1070
-
1071
- .modal {
1072
- visibility: hidden;
1073
- padding-top: 100px;
1074
- z-index: 1000;
1075
- position: fixed;
1076
- left: 0;
1077
- top: 0;
1078
- width: 100%;
1079
- height: 100%;
1080
- background-color: rgba(0, 0, 0, 0.4);
1081
- overflow: auto;
1082
- }
1083
- .modal .modal-content {
1084
- background-color: #fff;
1085
- margin: auto;
1086
- min-width: 800px;
1087
- max-width: 80%;
1088
- padding: 30px;
1089
- text-align: center;
1090
- border-radius: 8px;
1091
- }
1092
- .modal .modal-content header {
1093
- position: relative;
1094
- }
1095
- .modal .modal-content header span {
1096
- cursor: pointer;
1097
- position: absolute;
1098
- right: 0;
1099
- top: 0;
1100
- font-size: 30px;
1101
- }
1102
-
1103
- .mobile-list {
1104
- position: fixed;
1105
- right: 20.8px;
1106
- height: 48px;
1107
- bottom: 75px;
1108
- z-index: 1000;
1109
- width: 48px;
1110
- border: none;
1111
- border-radius: 50%;
1112
- box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
1113
- cursor: pointer;
1114
- visibility: hidden;
1115
- padding: 0;
1116
- }
1117
- .mobile-list .icon.list, .mobile-list .icon.exit {
1118
- width: 20px;
1119
- height: 20px;
1120
- display: none;
1121
- vertical-align: middle;
1122
- }
1123
- .mobile-list .icon.list.active, .mobile-list .icon.exit.active {
1124
- display: inline-block;
1125
- }
1126
-
1127
- .bttb {
1128
- background-color: #ebedf0;
1129
- border-radius: 50%;
1130
- bottom: 20.8px;
1131
- box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
1132
- height: 48px;
1133
- opacity: 0;
1134
- position: fixed;
1135
- right: 20.8px;
1136
- transform: scale(0);
1137
- transition: all 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
1138
- visibility: hidden;
1139
- width: 48px;
1140
- z-index: 1000;
1141
- border: none;
1142
- cursor: pointer;
1143
- }
1144
- .bttb.active {
1145
- opacity: 1;
1146
- transform: scale(1);
1147
- visibility: visible;
1148
- }
1149
- .bttb .icon.up {
1150
- width: 16px;
1151
- height: 16px;
1152
- display: none;
1153
- }
1154
- .bttb .icon.up.active {
1155
- display: inline-block;
1156
- }
1157
-
1158
- [data-theme=default] .g-header a:hover {
1159
- color: rgb(27, 126, 255) !important;
1160
- }
1161
- [data-theme=default] .g-header .nav-default .mode {
1162
- background-color: rgba(27, 126, 255, 0.6);
1163
- border-radius: 50%;
1164
- }
1165
- [data-theme=default] .g-header .mode:hover {
1166
- background-color: rgb(27, 126, 255) !important;
1167
- border-radius: 50%;
1168
- }
1169
- [data-theme=default] .table-of-contents h2,
1170
- [data-theme=default] .table-of-contents a.active {
1171
- color: rgb(27, 126, 255);
1172
- }
1173
- [data-theme=default] .article-item .post-meta .post-tag:hover,
1174
- [data-theme=default] .tags-card .tag:hover,
1175
- [data-theme=default] .tags-content .tag:hover,
1176
- [data-theme=default] .table-of-contents a:hover,
1177
- [data-theme=default] .g-footer .links a:hover,
1178
- [data-theme=default] .g-footer section a:hover,
1179
- [data-theme=default] .post-header .post-tags .post-tag:hover,
1180
- [data-theme=default] .tags-content .tag-post:hover,
1181
- [data-theme=default] .author-card .level .level-item .title:hover,
1182
- [data-theme=default] .g-sidebar section .latest-articles li .latest-title a:hover {
1183
- color: rgb(27, 126, 255) !important;
1184
- }
1185
- [data-theme=default] .markdown-body a:not([ref=gallery]) {
1186
- background-color: rgba(27, 126, 255, 0.1);
1187
- border-bottom: 2px solid rgba(27, 126, 255, 0.6);
1188
- text-decoration: none;
1189
- color: inherit;
1190
- }
1191
- [data-theme=default] .markdown-body a:not([ref=gallery]):hover {
1192
- background-color: rgba(27, 126, 255, 0.3);
1193
- text-decoration: none;
1194
- }
1195
- [data-theme=default] .markdown-body ol li:before {
1196
- background-color: rgba(27, 126, 255, 0.8);
1197
- }
1198
- [data-theme=default] #accept-tos {
1199
- background-color: rgba(27, 126, 255, 0.8);
1200
- }
1201
- [data-theme=default] #accept-tos:hover {
1202
- background-color: rgb(27, 126, 255);
1203
- }
1204
-
1205
- [data-theme=pink] .g-header a:hover {
1206
- color: rgb(252, 103, 148) !important;
1207
- }
1208
- [data-theme=pink] .g-header .nav-pink .mode {
1209
- background-color: rgba(252, 103, 148, 0.6);
1210
- border-radius: 50%;
1211
- }
1212
- [data-theme=pink] .g-header .mode:hover {
1213
- background-color: rgb(252, 103, 148) !important;
1214
- border-radius: 50%;
1215
- }
1216
- [data-theme=pink] .table-of-contents h2,
1217
- [data-theme=pink] .table-of-contents a.active {
1218
- color: rgb(252, 103, 148);
1219
- }
1220
- [data-theme=pink] .article-item .post-meta .post-tag:hover,
1221
- [data-theme=pink] .tags-card .tag:hover,
1222
- [data-theme=pink] .tags-content .tag:hover,
1223
- [data-theme=pink] .table-of-contents a:hover,
1224
- [data-theme=pink] .g-footer .links a:hover,
1225
- [data-theme=pink] .g-footer section a:hover,
1226
- [data-theme=pink] .post-header .post-tags .post-tag:hover,
1227
- [data-theme=pink] .tags-content .tag-post:hover,
1228
- [data-theme=pink] .author-card .level .level-item .title:hover,
1229
- [data-theme=pink] .g-sidebar section .latest-articles li .latest-title a:hover:hover {
1230
- color: rgb(252, 103, 148) !important;
1231
- }
1232
- [data-theme=pink] .markdown-body a:not([ref=gallery]) {
1233
- background-color: rgba(252, 103, 148, 0.1);
1234
- border-bottom: 2px solid rgba(252, 103, 148, 0.6);
1235
- text-decoration: none;
1236
- color: inherit;
1237
- }
1238
- [data-theme=pink] .markdown-body a:not([ref=gallery]):hover {
1239
- background-color: rgba(252, 103, 148, 0.3);
1240
- text-decoration: none;
1241
- }
1242
- [data-theme=pink] .markdown-body ol li:before {
1243
- background-color: rgba(252, 103, 148, 0.8);
1244
- }
1245
- [data-theme=pink] #accept-tos {
1246
- background-color: rgba(252, 103, 148, 0.8);
1247
- }
1248
- [data-theme=pink] #accept-tos:hover {
1249
- background-color: rgb(252, 103, 148);
1250
- }
1251
-
1252
- .night-mode {
1253
- background-color: #2d313a;
1254
- }
1255
- .night-mode .g-banner {
1256
- background-color: #2d313a;
1257
- color: #C8CDD3;
1258
- }
1259
- .night-mode .post-header .filter {
1260
- opacity: 0.6;
1261
- }
1262
- .night-mode .article-item, .night-mode .g-sidebar, .night-mode .page-links, .night-mode .search-card input, .night-mode .search_result,
1263
- .night-mode .search_item, .night-mode .article-item .post-tag, .night-mode .tags-card .tag, .night-mode .tags-list li,
1264
- .night-mode .tags-list .tag {
1265
- color: #AAAAAA;
1266
- background-color: #2D313A;
1267
- border-color: rgba(255, 255, 255, 0.1);
1268
- box-shadow: none;
1269
- }
1270
- .night-mode .article-item .post-cover img {
1271
- filter: brightness(0.6);
1272
- -webkit-filter: brightness(0.6);
1273
- }
1274
- .night-mode .article-item .post-preview .post-title, .night-mode .article-item .post-preview .post-subtitle, .night-mode .article-item .post-preview .post-excerpt {
1275
- color: #AAAAAA;
1276
- }
1277
- .night-mode .article-item .post-meta .post-tags, .night-mode .article-item .post-meta .post-date {
1278
- color: #AAAAAA;
1279
- }
1280
- .night-mode .pagination .page-link:hover {
1281
- background-color: rgba(255, 255, 255, 0.1);
1282
- }
1283
- .night-mode .pagination .active {
1284
- background-color: rgba(255, 255, 255, 0.1);
1285
- }
1286
- .night-mode .g-sidebar section {
1287
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
1288
- }
1289
- .night-mode .g-sidebar section:last-child {
1290
- border-bottom: none;
1291
- }
1292
- .night-mode .g-sidebar section .level .level-item .title {
1293
- color: #fff;
1294
- }
1295
- .night-mode .avatar img {
1296
- filter: brightness(0.6);
1297
- -webkit-filter: brightness(0.6);
1298
- }
1299
- .night-mode .author-name, .night-mode .bio {
1300
- color: #AAAAAA !important;
1301
- }
1302
- .night-mode .search_result .search_item:last-child {
1303
- border-color: rgba(255, 255, 255, 0.1);
1304
- }
1305
- .night-mode .search_result .search_item:hover {
1306
- background-color: transparent;
1307
- color: #fff;
1308
- }
1309
- .night-mode .article-item .post-tag, .night-mode .tags-card .tag {
1310
- background-color: #565656;
1311
- color: #ffffff;
1312
- }
1313
- .night-mode .tags-card .links {
1314
- color: #d3d3d3;
1315
- }
1316
- .night-mode .tags-list li .tag-name, .night-mode .tags-list li .tag-post {
1317
- color: #AAAAAA;
1318
- }
1319
- .night-mode .latest-articles a {
1320
- color: #ffffff;
1321
- }
1322
- .night-mode .g-footer {
1323
- border-color: rgba(255, 255, 255, 0.1);
1324
- background-color: transparent;
1325
- }
1326
- .night-mode .g-footer section {
1327
- color: #AAAAAA;
1328
- }
1329
- .night-mode .g-footer section a {
1330
- color: #f8f8f8;
1331
- }
1332
- .night-mode .g-footer section a:hover {
1333
- color: #83888f;
1334
- }
1335
- .night-mode .g-footer section .links a {
1336
- color: #AAAAAA;
1337
- }
1338
- .night-mode .g-footer section .links a:before {
1339
- position: absolute;
1340
- top: 80%;
1341
- left: 0;
1342
- right: 0;
1343
- bottom: 0;
1344
- background: rgba(21, 101, 192, 0.6);
1345
- transition: top 0.2s cubic-bezier(0, 0.8, 0.13, 1);
1346
- z-index: 1;
1347
- }
1348
- .night-mode .post-content {
1349
- background-color: #2d313a;
1350
- border-color: rgba(255, 255, 255, 0.1);
1351
- }
1352
- .night-mode .post-content .post-subtitle:before, .night-mode .post-content .post-subtitle:after {
1353
- background-color: #575B63;
1354
- }
1355
- .night-mode .markdown-body {
1356
- color: #AAAAAA;
1357
- background-color: transparent;
1358
- }
1359
- .night-mode .markdown-body img {
1360
- filter: brightness(0.6);
1361
- -webkit-filter: brightness(0.6);
1362
- }
1363
- .night-mode .markdown-body blockquote {
1364
- border-left-color: #555A61;
1365
- }
1366
- .night-mode .markdown-body pre {
1367
- border: 3px solid #393939;
1368
- border-radius: 0px;
1369
- border-top: none;
1370
- }
1371
- .night-mode .markdown-body pre code {
1372
- text-shadow: none !important;
1373
- }
1374
- .night-mode .markdown-body pre code .line-numbers-rows {
1375
- border-right: 1px solid #9d9d9f;
1376
- }
1377
- .night-mode .markdown-body a {
1378
- color: #AAAAAA;
1379
- }
1380
- .night-mode .markdown-body a:not([ref=gallery]):before {
1381
- position: absolute;
1382
- top: 80%;
1383
- left: 0;
1384
- right: 0;
1385
- bottom: 0;
1386
- background: rgba(21, 101, 192, 0.6);
1387
- transition: top 0.2s cubic-bezier(0, 0.8, 0.13, 1);
1388
- z-index: 1;
1389
- }
1390
- .night-mode .markdown-body .copy-container {
1391
- background-color: #393939;
1392
- }
1393
- .night-mode .markdown-body .language-plaintext {
1394
- color: chocolate;
1395
- }
1396
- .night-mode .markdown-body .caption {
1397
- color: #aaaaaa;
1398
- }
1399
- .night-mode .markdown-body table tr {
1400
- background-color: transparent;
1401
- }
1402
- .night-mode .read-next-item {
1403
- background-color: #484D59;
1404
- }
1405
- .night-mode .read-next-item section {
1406
- color: #AEB4BD;
1407
- }
1408
- .night-mode .read-next-item .filter {
1409
- background-color: rgba(0, 0, 0, 0.6);
1410
- }
1411
- .night-mode :not(pre) > code[class*=language-], .night-mode pre[class*=language-] {
1412
- background-color: #efefef;
1413
- }
1414
- .night-mode code[class*=language-], .night-mode pre[class*=language-], .night-mode .token.punctuation,
1415
- .night-mode .token.operator, .night-mode .token.entity, .night-mode .token.url, .night-mode .language-css .token.string,
1416
- .night-mode .style .token.string, .night-mode .token.variable {
1417
- color: #8F97A7;
1418
- background: none;
1419
- }
1420
- .night-mode .token.atrule, .night-mode .token.attr-value, .night-mode .token.function {
1421
- color: #A9A054;
1422
- }
1423
- .night-mode .token.selector, .night-mode .token.attr-name, .night-mode .token.string, .night-mode .token.char,
1424
- .night-mode .token.builtin, .night-mode .token.inserted {
1425
- color: #84AC35;
1426
- }
1427
- .night-mode .token.property, .night-mode .token.tag, .night-mode .token.constant, .night-mode .token.symbol, .night-mode .token.deleted {
1428
- color: #D75885;
1429
- }
1430
- .night-mode .token.keyword {
1431
- color: #61BDCF;
1432
- }
1433
- .night-mode .bttb, .night-mode .mobile-list {
1434
- background-color: #444950;
1435
- }
1436
- .night-mode .wl-panel {
1437
- background-color: #282C34;
1438
- }
1439
- .night-mode .wl-panel label {
1440
- color: #666666;
1441
- }
1442
- .night-mode .wl-editor:focus, .night-mode .wl-input:focus {
1443
- background: #252934;
1444
- }
1445
- .night-mode .wl-card .wl-meta span {
1446
- background: #272727;
1447
- color: #666666;
1448
- }
1449
- .night-mode .wl-card .wl-content p {
1450
- color: #888888;
1451
- }
1452
- .night-mode .archives-date {
1453
- color: #eff0f0;
1454
- }
1455
- .night-mode .year span {
1456
- background-color: #fff;
1457
- }
1458
-
1459
- .g-container {
1460
- width: 1080px;
1461
- display: flex;
1462
- justify-content: space-between;
1463
- flex-direction: row;
1464
- }
1465
-
1466
- a {
1467
- -webkit-user-select: none;
1468
- -moz-user-select: none;
1469
- -ms-user-select: none;
1470
- user-select: none;
1471
- }
1472
- a.extlinks::after {
1473
- content: "↗️";
1474
- font-size: 12px;
1475
- padding: 0 2px;
1476
- vertical-align: 1px;
1477
- }
1478
-
1479
- .home-content {
1480
- margin: 40px auto 60px;
1481
- }
1482
- .home-content:before, .home-content:after {
1483
- content: "";
1484
- display: table;
1485
- }
1486
- .home-content:after {
1487
- clear: both;
1488
- }
1489
-
1490
- .article-list {
1491
- width: 695px;
1492
- }
1493
- .article-list .author-detail {
1494
- top: 20px !important;
1495
- }
1496
- .article-list .article-item {
1497
- width: 100%;
1498
- margin-bottom: 16px;
1499
- padding: 20px 20px;
1500
- background-color: #fff;
1501
- border: 1px solid #E7EAF1;
1502
- border-radius: 3px;
1503
- box-sizing: border-box;
1504
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
1505
- }
1506
- .article-list .article-item:last-child {
1507
- margin-bottom: 0;
1508
- }
1509
- .article-list .article-item .post-link {
1510
- position: absolute;
1511
- top: 0;
1512
- left: 0;
1513
- width: 100%;
1514
- height: 100%;
1515
- }
1516
- .article-list .article-item .post-cover {
1517
- position: relative;
1518
- width: 100%;
1519
- max-height: 300px;
1520
- margin-bottom: 14px;
1521
- overflow: hidden;
1522
- }
1523
- .article-list .article-item .post-cover img {
1524
- width: 100%;
1525
- vertical-align: middle;
1526
- }
1527
- .article-list .article-item .post-preview {
1528
- position: relative;
1529
- }
1530
- .article-list .article-item .post-preview .post-title {
1531
- font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
1532
- color: #4E4E4E;
1533
- font-size: 24px;
1534
- line-height: 32px;
1535
- }
1536
- .article-list .article-item .post-preview .post-title .keep-top {
1537
- color: red;
1538
- }
1539
- .article-list .article-item .post-preview .post-subtitle {
1540
- margin-top: 3px;
1541
- font-size: 18px;
1542
- font-weight: normal;
1543
- color: #585858;
1544
- line-height: 26px;
1545
- }
1546
- .article-list .article-item .post-preview .post-excerpt {
1547
- margin-top: 8px;
1548
- font-size: 16px;
1549
- font-family: "Merriweather", "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
1550
- line-height: 26px;
1551
- word-break: break-all;
1552
- color: #585858;
1553
- }
1554
- .article-list .article-item .post-meta {
1555
- min-height: 22px;
1556
- margin-top: 8px;
1557
- display: flex;
1558
- justify-content: space-between;
1559
- }
1560
- .article-list .article-item .post-meta .post-tags {
1561
- display: inline-block;
1562
- width: 515px;
1563
- }
1564
- .article-list .article-item .post-meta .post-date {
1565
- color: #585858;
1566
- display: inline-block;
1567
- font-size: 14px;
1568
- letter-spacing: 0.6px;
1569
- line-height: 22px;
1570
- min-width: 110px;
1571
- }
1572
- .article-list .article-item .post-meta .post-date .icon {
1573
- width: 16px;
1574
- height: 16px;
1575
- margin-bottom: -3px;
1576
- }
1577
-
1578
- .author-card {
1579
- text-align: center;
1580
- }
1581
- .author-card .avatar {
1582
- width: 70px;
1583
- height: 70px;
1584
- border-radius: 50%;
1585
- margin: 0 auto;
1586
- overflow: hidden;
1587
- box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
1588
- }
1589
- .author-card .avatar img {
1590
- width: 70px;
1591
- height: 70px;
1592
- }
1593
- .author-card .author-name {
1594
- width: 100%;
1595
- font-size: 16px;
1596
- color: #4E4E4E;
1597
- font-weight: 500;
1598
- margin: 12px 0 6px;
1599
- }
1600
- .author-card .bio p {
1601
- font-size: 14px;
1602
- line-height: 20px;
1603
- }
1604
- .author-card .level {
1605
- display: flex;
1606
- margin-top: 20px;
1607
- }
1608
- .author-card .level .level-item {
1609
- flex-grow: 1;
1610
- }
1611
- .author-card .level .level-item .heading {
1612
- display: block;
1613
- font-size: 11px;
1614
- letter-spacing: 1px;
1615
- margin-bottom: 5px;
1616
- text-transform: uppercase;
1617
- }
1618
- .author-card .level .level-item .title {
1619
- color: #363636;
1620
- font-size: 2rem;
1621
- font-weight: 400;
1622
- line-height: 1.125;
1623
- }
1624
- .author-card .sns-links {
1625
- margin-top: 14px;
1626
- cursor: default;
1627
- }
1628
- .author-card .sns-links li {
1629
- position: relative;
1630
- display: inline-block;
1631
- width: 26px;
1632
- height: 26px;
1633
- overflow: hidden;
1634
- }
1635
- .author-card .sns-links li a {
1636
- display: inline-block;
1637
- }
1638
- .author-card .sns-links li .iconfont {
1639
- font-size: 22px;
1640
- line-height: 30px;
1641
- }
1642
- .author-card .sns-links li .iconfont {
1643
- color: #B8BDC3;
1644
- transition: 0.2s;
1645
- }
1646
- .author-card .sns-links li .iconfont:hover {
1647
- color: #7B848F;
1648
- }
1649
- .author-card .sns-links li .icon {
1650
- color: #B8BDC3;
1651
- transition: 0.2s;
1652
- width: 22px;
1653
- height: 22px;
1654
- line-height: 30px;
1655
- vertical-align: -0.15em;
1656
- fill: currentColor;
1657
- overflow: hidden;
1658
- filter: grayscale(100%);
1659
- -webkit-filter: grayscale(100%);
1660
- -moz-filter: grayscale(100%);
1661
- -ms-filter: grayscale(100%);
1662
- }
1663
- .author-card .sns-links li .icon:hover {
1664
- color: #7B848F;
1665
- filter: none;
1666
- -webkit-filter: none;
1667
- -moz-filter: none;
1668
- -ms-filter: none;
1669
- }
1670
- .author-card .sns-links li .icon-weibo:hover {
1671
- color: #F85555;
1672
- }
1673
- .author-card .sns-links li .icon-zhihu:hover {
1674
- color: #1892F5;
1675
- }
1676
- .author-card .sns-links li .icon-twitter:hover {
1677
- color: #39A6F8;
1678
- }
1679
- .author-card .sns-links li .icon-instagram:hover {
1680
- color: #D92580;
1681
- }
1682
- .author-card .sns-links li .icon-juejin:hover {
1683
- color: #1682FC;
1684
- }
1685
- .author-card .sns-links li .icon-douban:hover {
1686
- color: #2E963D;
1687
- }
1688
- .author-card .sns-links li .icon-github:hover {
1689
- color: #575757;
1690
- }
1691
- .author-card .sns-links li .icon-facebook:hover {
1692
- color: #3D5A9A;
1693
- }
1694
- .author-card .sns-links li .icon-dribbble:hover {
1695
- color: #F26798;
1696
- }
1697
- .author-card .sns-links li .icon-jianshu:hover {
1698
- color: #EA6F5A;
1699
- }
1700
- .author-card .sns-links li .icon-uicn:hover {
1701
- color: #3498DB;
1702
- }
1703
- .author-card .sns-links li .icon-linkedin:hover {
1704
- color: #3181BE;
1705
- }
1706
- .author-card .sns-links li .icon-medium:hover {
1707
- color: #0BE370;
1708
- }
1709
- .author-card .sns-links li .icon-youtube:hover {
1710
- color: #FF2600;
1711
- }
1712
- .author-card .sns-links li .icon-behance:hover {
1713
- color: #0057ff;
1714
- }
1715
- .author-card .sns-links li .icon-vk:hover {
1716
- color: #5181b8;
1717
- }
1718
-
1719
- .article-item .post-meta .post-tag, .tags-card .tag, .tags-content .tag {
1720
- display: inline-block;
1721
- width: auto;
1722
- height: 24px;
1723
- line-height: 24px;
1724
- padding: 0 12px;
1725
- font-size: 14px;
1726
- color: #656565;
1727
- box-sizing: border-box;
1728
- box-shadow: 0 0 0.6px #D5DAE1;
1729
- border: 1px solid rgba(92, 147, 187, 0.168627451);
1730
- border-radius: 12px;
1731
- background-color: #F7F8FA;
1732
- cursor: pointer;
1733
- margin-right: 2px;
1734
- transition: 0.2s;
1735
- margin-bottom: 5px;
1736
- }
1737
- .article-item .post-meta .post-tag:last-child, .tags-card .tag:last-child, .tags-content .tag:last-child {
1738
- margin-right: 0;
1739
- }
1740
-
1741
- .tags-card .links {
1742
- width: 100%;
1743
- font-size: 16px;
1744
- color: #4e4e4e;
1745
- font-weight: bold;
1746
- margin: 10px 0 16px;
1747
- text-align: center;
1748
- }
1749
-
1750
- .g-sidebar-wrapper {
1751
- width: 300px;
1752
- position: sticky;
1753
- top: 100px;
1754
- height: fit-content;
1755
- }
1756
-
1757
- .g-sidebar {
1758
- padding: 20px 20px;
1759
- background-color: #fff;
1760
- border: 1px solid #E7EAF1;
1761
- border-radius: 3px;
1762
- box-sizing: border-box;
1763
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
1764
- }
1765
- .g-sidebar section {
1766
- padding: 10px 0;
1767
- border-bottom: 1px solid #E7EAF1;
1768
- }
1769
- .g-sidebar section:first-child {
1770
- padding-top: 0;
1771
- }
1772
- .g-sidebar section:last-child {
1773
- border-bottom: none;
1774
- padding-bottom: 0;
1775
- }
1776
- .g-sidebar section .tag {
1777
- margin-bottom: 8px;
1778
- }
1779
- .g-sidebar section .latest-articles li {
1780
- margin-bottom: 15px;
1781
- font-size: 14px;
1782
- }
1783
- .g-sidebar section .latest-articles li .latest-title {
1784
- margin: 5px 0;
1785
- text-align: justify;
1786
- white-space: nowrap;
1787
- width: 265px;
1788
- overflow: hidden;
1789
- text-overflow: ellipsis;
1790
- }
1791
- .g-sidebar section .latest-articles li .latest-date {
1792
- font-size: 12px;
1793
- }
1794
-
1795
- .search-card {
1796
- position: relative;
1797
- margin-top: 16px;
1798
- padding: 0;
1799
- }
1800
- .search-card input, .search-card .search_item {
1801
- font-size: 16px;
1802
- color: #4E4E4E;
1803
- }
1804
- .search-card input {
1805
- padding: 20px 20px;
1806
- background-color: #fff;
1807
- border: 1px solid #E7EAF1;
1808
- border-radius: 3px;
1809
- box-sizing: border-box;
1810
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
1811
- position: relative;
1812
- padding: 12px 46px 12px 18px;
1813
- margin: 0;
1814
- width: 100%;
1815
- background-color: #fff;
1816
- outline: none;
1817
- z-index: 1;
1818
- }
1819
- .search-card ::-webkit-input-placeholder {
1820
- color: #9EA8B3;
1821
- }
1822
- .search-card :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
1823
- color: #9EA8B3;
1824
- }
1825
- .search-card ::-moz-placeholder { /* Mozilla Firefox 19+ */
1826
- color: #9EA8B3;
1827
- }
1828
- .search-card .icon-search {
1829
- position: absolute;
1830
- top: 10px;
1831
- right: 18px;
1832
- font-size: 26px;
1833
- color: #CAD3DC;
1834
- transition: 0.2s;
1835
- z-index: 1;
1836
- }
1837
- .search-card .icon {
1838
- position: absolute;
1839
- top: 13px;
1840
- right: 18px;
1841
- color: #CAD3DC;
1842
- z-index: 1;
1843
- width: 20px;
1844
- height: 20px;
1845
- vertical-align: -0.15em;
1846
- fill: currentColor;
1847
- overflow: hidden;
1848
- }
1849
- .search-card .search_result {
1850
- position: relative;
1851
- margin-top: -2px;
1852
- background-color: #fff;
1853
- border-radius: 0 0 4px 4px;
1854
- z-index: 0;
1855
- }
1856
- .search-card .search_item {
1857
- padding: 6px 18px;
1858
- margin-bottom: 0;
1859
- width: 100%;
1860
- display: block;
1861
- overflow: hidden;
1862
- text-overflow: ellipsis;
1863
- white-space: nowrap;
1864
- border-left: 1px solid #E7EAF1;
1865
- border-right: 1px solid #E7EAF1;
1866
- box-sizing: border-box;
1867
- opacity: 0.8;
1868
- transition: 0.2s;
1869
- }
1870
- .search-card .search_item:first-child {
1871
- padding-top: 14px;
1872
- }
1873
- .search-card .search_item:last-child {
1874
- padding-bottom: 14px;
1875
- border-radius: 0 0 4px 4px;
1876
- border-bottom: 1px solid #E7EAF1;
1877
- }
1878
- .search-card .search_item:hover {
1879
- opacity: 1;
1880
- background-color: #FAFAFA;
1881
- }
1882
-
1883
- .pagination {
1884
- float: left;
1885
- position: relative;
1886
- left: 50%;
1887
- margin: 8px auto 0;
1888
- }
1889
- .pagination .page-links {
1890
- position: relative;
1891
- left: -50%;
1892
- border: 1px solid #E7EAF1;
1893
- border-radius: 3px;
1894
- background-color: #fff;
1895
- padding: 0 8px;
1896
- overflow: auto;
1897
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
1898
- }
1899
- .pagination .page-link {
1900
- display: block;
1901
- float: left;
1902
- width: 34px;
1903
- height: 34px;
1904
- margin: 6px;
1905
- font-size: 16px;
1906
- color: #A9B0BC;
1907
- line-height: 34px;
1908
- text-align: center;
1909
- border-radius: 2px;
1910
- cursor: pointer;
1911
- }
1912
- .pagination .page-link:hover {
1913
- color: #8F98AA;
1914
- background-color: #EEF0F4;
1915
- }
1916
- .pagination .active {
1917
- color: #8F98AA;
1918
- background-color: #EEF0F4;
1919
- }
1920
- .pagination #page-link-container {
1921
- float: left;
1922
- }
1923
-
1924
- .g-footer {
1925
- min-height: 40px;
1926
- padding: 20px 0;
1927
- border-top: 1px solid #E7EAF1;
1928
- text-align: center;
1929
- background-color: #ffffff;
1930
- box-shadow: 0 -1px 3px rgba(0, 37, 55, 0.06);
1931
- }
1932
- .g-footer .g-container {
1933
- margin: 0 auto;
1934
- }
1935
- .g-footer .g-container:before, .g-footer .g-container:after {
1936
- content: "";
1937
- display: table;
1938
- }
1939
- .g-footer .g-container:after {
1940
- clear: both;
1941
- }
1942
- .g-footer .g-container .g-left {
1943
- width: 600px;
1944
- text-align: left;
1945
- }
1946
- .g-footer .g-container .g-right {
1947
- width: 400px;
1948
- text-align: right;
1949
- }
1950
- .g-footer .g-container .g-right .badges {
1951
- margin-top: 10px;
1952
- }
1953
- .g-footer section {
1954
- font-size: 14px;
1955
- line-height: 20px;
1956
- color: #4E4E4E;
1957
- }
1958
- .g-footer section a {
1959
- color: #4E4E4E;
1960
- }
1961
- .g-footer section a:hover {
1962
- color: #83888F;
1963
- }
1964
- .g-footer section a .license {
1965
- border-width: 0px;
1966
- margin-bottom: -3px;
1967
- width: 80px;
1968
- height: 15px;
1969
- }
1970
- .g-footer section .upyun {
1971
- height: 25px;
1972
- margin-bottom: -8px;
1973
- }
1974
- .g-footer section .foreverblog img {
1975
- width: auto;
1976
- height: 16px;
1977
- vertical-align: super;
1978
- margin: 10px 10px 0 0;
1979
- }
1980
- .g-footer section .wormhole img {
1981
- width: auto;
1982
- height: 24px;
1983
- margin-right: 10px;
1984
- }
1985
- .g-footer section .notbyAI img {
1986
- width: 100px;
1987
- }
1988
-
1989
- .tags-banner {
1990
- height: 300px;
1991
- text-align: center;
1992
- }
1993
- .tags-banner h2 {
1994
- font-size: 36px;
1995
- line-height: 300px;
1996
- }
1997
-
1998
- .tags-content {
1999
- width: 695px;
2000
- margin: -100px auto 0;
2001
- }
2002
-
2003
- .tags-list {
2004
- padding: 40px 0;
2005
- }
2006
- .tags-list li {
2007
- padding: 20px 20px;
2008
- background-color: #fff;
2009
- border: 1px solid #E7EAF1;
2010
- border-radius: 3px;
2011
- box-sizing: border-box;
2012
- box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
2013
- margin-bottom: 12px;
2014
- }
2015
- .tags-list li:first-child {
2016
- margin-bottom: 24px;
2017
- cursor: default;
2018
- }
2019
- .tags-list li .tag {
2020
- box-shadow: 0 0 0.3px #BFC2C6;
2021
- margin-bottom: 12px;
2022
- white-space: nowrap;
2023
- }
2024
- .tags-list li .tag-name {
2025
- display: block;
2026
- font-size: 20px;
2027
- color: #333;
2028
- text-align: center;
2029
- margin-bottom: 20px;
2030
- }
2031
- .tags-list li .tag-post {
2032
- display: block;
2033
- font-size: 16px;
2034
- color: #666;
2035
- text-align: center;
2036
- margin: 16px auto;
2037
- }
2038
-
2039
- .np-banner {
2040
- position: fixed;
2041
- top: 0;
2042
- left: 0;
2043
- width: 100%;
2044
- height: 100%;
2045
- padding: 0 !important;
2046
- text-align: center;
2047
- }
2048
- .np-banner h1 {
2049
- font-size: 86px;
2050
- letter-spacing: 4px;
2051
- font-weight: normal;
2052
- padding: 160px 0 20px;
2053
- }
2054
- .np-banner .subheading {
2055
- font-size: 18px;
2056
- }
2057
- .np-banner .btn {
2058
- display: block;
2059
- width: 160px;
2060
- height: 38px;
2061
- font-size: 16px;
2062
- color: #fff;
2063
- line-height: 38px;
2064
- border-radius: 3px;
2065
- border: 1px solid #fff;
2066
- margin: 80px auto 0;
2067
- opacity: 0.8;
2068
- }
2069
-
2070
- .year span {
2071
- float: right;
2072
- width: 50px;
2073
- height: 25px;
2074
- text-align: center;
2075
- border-radius: 2px;
2076
- }
2077
- .year span .icon.animal {
2078
- width: 25px;
2079
- height: 25px;
2080
- }
2081
- .year span .icon.dz {
2082
- width: 15px;
2083
- height: 15px;
2084
- margin-bottom: 10px;
2085
- margin-left: -5px;
2086
- }
2087
-
2088
- .g-footer .links a {
2089
- color: #24292f;
2090
- position: relative;
2091
- text-decoration: none;
2092
- z-index: 2;
2093
- }
2094
- .g-footer .links a:hover {
2095
- text-decoration: none;
2096
- }
2097
- .g-footer .links a:hover:before {
2098
- top: 0;
2099
- }
2100
- .g-footer #busuanzi_value_site_pv, .g-footer #busuanzi_value_site_uv {
2101
- color: brown;
2102
- }
2103
-
2104
- .premonition p {
2105
- margin-bottom: 0;
2106
- }
2107
- .premonition.note, .premonition.info, .premonition.warning, .premonition.error, .premonition.citation {
2108
- border-radius: 6.4px;
2109
- padding: 1rem;
2110
- margin-bottom: 1em;
2111
- }
2112
- .premonition.note {
2113
- background-color: #eef9fd;
2114
- border-left: 5px solid #3b8ba5;
2115
- color: #3b8ba5;
2116
- }
2117
- .premonition.note code {
2118
- background-color: rgba(84, 199, 236, 0.15);
2119
- color: #3b8ba5 !important;
2120
- }
2121
- .premonition.info {
2122
- background-color: #e6f6e6;
2123
- border-left: 5px solid #009400;
2124
- color: #009400;
2125
- }
2126
- .premonition.info code {
2127
- background-color: rgba(0, 164, 0, 0.15);
2128
- color: #009400 !important;
2129
- }
2130
- .premonition.warning {
2131
- background-color: #fff8e6;
2132
- border-left: 5px solid #e6a700;
2133
- color: #e6a700;
2134
- }
2135
- .premonition.warning code {
2136
- background-color: rgba(255, 186, 0, 0.15);
2137
- color: #e6a700 !important;
2138
- }
2139
- .premonition.error {
2140
- background-color: #fdf7f7;
2141
- border-left: 5px solid #e13238;
2142
- color: #e13238;
2143
- }
2144
- .premonition.error code {
2145
- background-color: rgba(250, 56, 62, 0.15);
2146
- color: #e13238 !important;
2147
- }
2148
- .premonition.citation {
2149
- background-color: #f8f9fa;
2150
- border-left: 5px solid #495057;
2151
- color: #495057;
2152
- }
2153
- .premonition.citation code {
2154
- background-color: #fdfdfe;
2155
- color: #495057 !important;
2156
- }
2157
- .premonition.citation .ref {
2158
- text-align: right;
2159
- }
2160
- .premonition .header {
2161
- font-weight: 700;
2162
- line-height: 17.5px;
2163
- margin-bottom: 0.3rem;
2164
- }
2165
- .premonition code {
2166
- text-shadow: none;
2167
- }
2168
- .premonition .icon {
2169
- width: 18px;
2170
- height: 18px;
2171
- margin-bottom: -2px;
2172
- margin-right: 5px;
2173
- }
2174
- .premonition .title {
2175
- display: inline-block;
2176
- }
2177
-
2178
- .night-mode .premonition {
2179
- color: #fff;
2180
- }
2181
- .night-mode .premonition.note {
2182
- background-color: #193c47;
2183
- }
2184
- .night-mode .premonition.info {
2185
- background-color: #003100;
2186
- }
2187
- .night-mode .premonition.warning {
2188
- background-color: #4d3800;
2189
- }
2190
- .night-mode .premonition.error {
2191
- background-color: #4b1113;
2192
- }
2193
- .night-mode .premonition.citation {
2194
- background-color: #323940;
2195
- }
2196
-
2197
- @media screen and (min-width: 1920px) {
2198
- .home-banner {
2199
- height: 600px;
2200
- }
2201
- .home-banner h2 {
2202
- padding-top: 260px;
2203
- font-size: 42px;
2204
- }
2205
- .home-banner h3 {
2206
- font-size: 22px;
2207
- }
2208
- }
2209
- @media screen and (max-width: 1080px) {
2210
- .g-container {
2211
- width: auto;
2212
- }
2213
- .article-list {
2214
- width: 70%;
2215
- }
2216
- .post-content .container {
2217
- width: auto;
2218
- }
2219
- .post-content .container .contents {
2220
- width: 70%;
2221
- }
2222
- .pagination .page-num {
2223
- display: none;
2224
- }
2225
- .pagination .page-link {
2226
- width: 56px;
2227
- }
2228
- }
2229
- @media screen and (max-width: 1050px) {
2230
- #all {
2231
- overflow: hidden;
2232
- }
2233
- .article-list {
2234
- width: 95%;
2235
- }
2236
- .g-sidebar-wrapper {
2237
- display: none;
2238
- }
2239
- .g-footer .g-container {
2240
- margin: auto 20px;
2241
- }
2242
- .post-wrapper {
2243
- width: auto;
2244
- padding: 30px;
2245
- }
2246
- .post-content .post-subtitle {
2247
- width: auto;
2248
- }
2249
- .post-content .container {
2250
- width: 100%;
2251
- }
2252
- .post-content .container .contents {
2253
- width: 90%;
2254
- float: none;
2255
- margin: 0 auto;
2256
- }
2257
- .table-of-contents {
2258
- visibility: hidden;
2259
- opacity: 0;
2260
- border-left: none;
2261
- position: fixed;
2262
- right: 20.8px;
2263
- top: auto;
2264
- max-height: 60%;
2265
- bottom: 127px;
2266
- margin-left: 0px;
2267
- max-width: 95%;
2268
- background-color: aliceblue;
2269
- z-index: 1000;
2270
- overflow: scroll;
2271
- margin-bottom: 0px;
2272
- padding: 25px;
2273
- }
2274
- .table-of-contents.active {
2275
- visibility: visible;
2276
- opacity: 1;
2277
- transition: 0.5s;
2278
- }
2279
- .read-next {
2280
- margin: 20px;
2281
- width: auto;
2282
- }
2283
- .post-footer-item {
2284
- width: auto;
2285
- }
2286
- .post .mobile-list {
2287
- visibility: visible;
2288
- }
2289
- }
2290
- @media screen and (max-width: 960px) {
2291
- .archives-date {
2292
- display: none;
2293
- }
2294
- .archives-title {
2295
- width: 290px;
2296
- overflow: hidden;
2297
- white-space: nowrap;
2298
- text-overflow: ellipsis;
2299
- margin-bottom: -8px !important;
2300
- }
2301
- .tags-content {
2302
- width: auto;
2303
- }
2304
- }
2305
- @media screen and (max-width: 810px) {
2306
- .g-footer .g-container {
2307
- flex-direction: column;
2308
- }
2309
- .g-footer .g-container .g-left, .g-footer .g-container .g-right {
2310
- width: auto;
2311
- text-align: center;
2312
- }
2313
- }
2314
- @media screen and (max-width: 768px) {
2315
- .post-wrapper, .markdown-body, .read-next {
2316
- width: auto;
2317
- }
2318
- .post-content .post-subtitle {
2319
- width: 92%;
2320
- }
2321
- .author-detail .author-card {
2322
- width: 92%;
2323
- }
2324
- }
2325
- @media screen and (max-width: 695px) {
2326
- .g-header {
2327
- position: absolute;
2328
- top: 0;
2329
- padding: 28px 0;
2330
- }
2331
- .g-header #mode-toggle {
2332
- display: block;
2333
- }
2334
- .g-header .icon-menu {
2335
- display: block;
2336
- width: 40px;
2337
- height: 28px;
2338
- }
2339
- .g-header .g-nav {
2340
- position: relative;
2341
- top: 48px;
2342
- right: 1%;
2343
- display: none;
2344
- min-width: 152px;
2345
- background-color: #fff;
2346
- border-radius: 2px;
2347
- padding: 8px 16px;
2348
- box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
2349
- }
2350
- .g-header .g-nav > ul > li {
2351
- float: none;
2352
- height: auto;
2353
- line-height: normal;
2354
- margin-right: 0;
2355
- }
2356
- .g-header .g-nav > ul > li > a {
2357
- display: block;
2358
- padding: 16px 0;
2359
- font-size: 16px;
2360
- font-weight: bold;
2361
- color: #A5A8B0;
2362
- opacity: 1;
2363
- }
2364
- .g-header .g-nav > ul > li.mode {
2365
- display: none;
2366
- }
2367
- .g-header .g-nav ul.dropdown-menu {
2368
- box-shadow: none;
2369
- position: relative;
2370
- float: none;
2371
- }
2372
- .g-header .g-nav ul.dropdown-menu li {
2373
- padding: 10px;
2374
- line-height: normal;
2375
- }
2376
- .g-header .g-nav ul.dropdown-menu li a {
2377
- text-align: left;
2378
- }
2379
- .author-detail .author-card .sns-links {
2380
- margin-top: 24px;
2381
- }
2382
- .author-detail .author-card .sns-links li {
2383
- width: 36px;
2384
- height: 36px;
2385
- }
2386
- .author-detail .author-card .sns-links li .iconfont {
2387
- font-size: 32px;
2388
- line-height: 40px;
2389
- }
2390
- .author-detail .comment {
2391
- width: 90%;
2392
- }
2393
- .read-next {
2394
- display: block;
2395
- }
2396
- .read-next-item {
2397
- margin-bottom: 16px;
2398
- margin-left: 0;
2399
- }
2400
- .read-next-item:first-child {
2401
- margin-right: 0;
2402
- }
2403
- .read-next-item:last-child {
2404
- margin-bottom: 0;
2405
- }
2406
- .read-next-item:hover {
2407
- top: 0;
2408
- box-shadow: none;
2409
- }
2410
- .read-next-item section {
2411
- width: 90%;
2412
- margin-left: 5%;
2413
- margin-top: 45px;
2414
- }
2415
- .g-banner {
2416
- padding: 0 20px;
2417
- }
2418
- .home-banner h3, .tags-banner h3 {
2419
- margin-top: 8px;
2420
- }
2421
- .home-content {
2422
- margin-top: 0;
2423
- }
2424
- .article-list, .tags-content, .g-footer .g-left, .g-footer .g-right {
2425
- width: 100%;
2426
- }
2427
- .tags-content {
2428
- margin-top: 0;
2429
- }
2430
- .tags-banner {
2431
- height: 300px;
2432
- }
2433
- .tags-list {
2434
- padding: 0 0 24px;
2435
- }
2436
- .g-footer {
2437
- padding: 30px 0;
2438
- }
2439
- .post-meta-item .icon.info2 {
2440
- display: none;
2441
- }
2442
- #accept-tos {
2443
- float: none;
2444
- display: block;
2445
- margin: auto;
2446
- }
2447
- .friends .frienddiv {
2448
- width: 100%;
2449
- }
2450
- }
2451
- @media screen and (max-width: 500px) {
2452
- .home-banner {
2453
- height: 400px;
2454
- }
2455
- .home-banner h2 {
2456
- padding-top: 180px;
2457
- font-size: 28px;
2458
- line-height: 48px;
2459
- }
2460
- .home-banner h3 {
2461
- margin-top: 2px;
2462
- font-size: 18px;
2463
- }
2464
- .home-content {
2465
- margin-bottom: 32px;
2466
- flex-direction: column;
2467
- }
2468
- .g-sidebar-wrapper {
2469
- display: block;
2470
- margin: 0 auto;
2471
- width: 90%;
2472
- min-width: 300px;
2473
- }
2474
- .g-sidebar-wrapper .g-sidebar {
2475
- margin-top: 30px;
2476
- }
2477
- .article-list .article-item {
2478
- padding: 20px 16px;
2479
- margin-bottom: 8px;
2480
- border-left: none;
2481
- border-right: none;
2482
- border-radius: 0;
2483
- box-shadow: none;
2484
- }
2485
- .article-list .article-item:first-child {
2486
- border-top: none;
2487
- }
2488
- .article-list .article-item .post-cover {
2489
- max-height: 200px;
2490
- }
2491
- .article-list .article-item .post-preview .post-title {
2492
- font-size: 18px;
2493
- line-height: 26px;
2494
- }
2495
- .article-list .article-item .post-preview .post-subtitle {
2496
- font-size: 16px;
2497
- line-height: 20px;
2498
- }
2499
- .article-list .article-item .post-meta {
2500
- margin-top: 12px;
2501
- }
2502
- .article-list .article-item .post-meta .post-tags {
2503
- display: none;
2504
- }
2505
- .article-list .article-item .post-meta .post-date {
2506
- float: left;
2507
- margin-left: 5px;
2508
- }
2509
- .pagination .page-links {
2510
- box-shadow: none;
2511
- }
2512
- .post-header {
2513
- padding: 0;
2514
- min-height: 360px;
2515
- height: auto;
2516
- }
2517
- .post-wrapper .post-tags {
2518
- margin: 100px 0 8px;
2519
- }
2520
- .post-wrapper .post-meta {
2521
- margin-top: 16px;
2522
- padding-bottom: 20px;
2523
- }
2524
- .post-content {
2525
- padding-top: 20px;
2526
- }
2527
- .post-content .post-subtitle {
2528
- padding: 8px 0 24px;
2529
- margin-bottom: 32px;
2530
- }
2531
- .post-content .post-subtitle:before {
2532
- height: 0;
2533
- }
2534
- .post-content .container .contents {
2535
- padding: 0;
2536
- }
2537
- .markdown-body p, .markdown-body ul > li {
2538
- font-size: 16px;
2539
- font-weight: 300;
2540
- -webkit-font-smoothing: auto;
2541
- -moz-osx-font-smoothing: auto;
2542
- }
2543
- .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4 {
2544
- margin-top: 24px;
2545
- }
2546
- .markdown-body table {
2547
- margin: 16px auto;
2548
- }
2549
- .markdown-body img {
2550
- margin: 16px 0 auto;
2551
- }
2552
- .markdown-body strong {
2553
- font-weight: 400;
2554
- }
2555
- .markdown-body blockquote p {
2556
- font-size: 18px;
2557
- letter-spacing: 1px;
2558
- color: #888;
2559
- word-break: break-all;
2560
- }
2561
- .markdown-body mjx-container {
2562
- overflow-x: scroll;
2563
- }
2564
- }
2565
- @media screen and (max-width: 376px) {
2566
- .home-banner h2 {
2567
- font-size: 26px;
2568
- line-height: 38px;
2569
- }
2570
- .home-banner h3 {
2571
- margin-top: 4px;
2572
- font-size: 16px;
2573
- }
2574
- }
2575
- @media (hover: hover) {
2576
- .bttb:hover {
2577
- background-color: #dadde1;
2578
- }
2579
- #accept-tos:hover {
2580
- background-color: #71a7ff;
2581
- }
2582
- .mobile-list:hover {
2583
- background-color: #dadde1;
2584
- }
2585
- .markdown-body .btn:hover {
2586
- background-color: #dadde1;
2587
- }
2588
- .night-mode .bttb:hover {
2589
- background-color: #606770;
2590
- }
2591
- }
1
+ .color-f-white{color:#fff}.color-f-gray{color:#666 !important}html,body{height:100%}html,body,div,span,h1,h2,h3,h4,h5,h6,p,ol,ul,li,textarea,form,label,legend,table,caption,menu,nav,section,summary,time,mark,audio,video,iframe,main,header,footer{padding:0;margin:0;border:0;outline:0 none}body{font-family:"LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;color:#656565;-webkit-font-smoothing:antialiased;background-color:#f7f8fa;overflow:visible}ul{list-style-type:none}a{color:#4e4e4e;text-decoration:none;cursor:pointer;transition:.2s}::selection{background-color:rgba(0,147,254,.2)}::-moz-selection{background-color:rgba(0,147,254,.2)}::-webkit-selection{background-color:rgba(0,147,254,.2)}.gray{filter:grayscale(100%);-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%)}:root{--waline-theme-color: #81bbff!important;--waline-active-color: #1B7EFF!important}.g-header{position:fixed;top:0;left:0;width:100%;height:50px;padding:16px 0;background-color:rgba(0,0,0,0);transition:all .6s;z-index:1000}.g-header .g-logo{float:left;margin-left:2%;width:50px;height:50px;opacity:.8;transition:all .2s}.g-header .g-logo:hover{opacity:1}.g-header .g-logo a{display:block;width:100%;height:100%}.g-header #travelling-toggle{width:40px;height:40px;position:absolute;top:35px;right:107px;display:none}.g-header #travelling-toggle a{color:#fff}.g-header #travelling-toggle .icon{width:30px;height:30px;padding:5px;fill:currentColor;overflow:hidden}.g-header #mode-toggle{width:40px;height:40px;position:absolute;top:35px;right:57px;display:none}.g-header #mode-toggle .icon-day,.g-header #mode-toggle .icon-night{width:30px;height:30px;padding:5px;display:none}.g-header #mode-toggle .icon-day.active,.g-header #mode-toggle .icon-night.active{display:block}.g-header #mode-toggle .icon-day:hover,.g-header #mode-toggle .icon-night:hover{background-color:#81bbff;border-radius:50%}.g-header .icon-menu{display:none;position:absolute;top:32px;right:0;padding:8px;font-size:28px;color:#fff;opacity:.8;border-radius:3px}.g-header .icon-menu:active{background-color:rgba(255,255,255,.2)}.g-header .g-nav{float:right;margin-right:2%}.g-header .g-nav>ul>li{float:left;height:50px;line-height:50px;text-transform:uppercase;margin-right:18px}.g-header .g-nav>ul>li:last-child{margin-right:0}.g-header .g-nav>ul>li>a{display:inline-block;font-size:16px;font-weight:bold;letter-spacing:1px;color:#fff;padding:0 12px;opacity:1}.g-header .g-nav>ul>li>a:hover{opacity:.7}.g-header .g-nav>ul>li.travelling{color:#fff;margin:5px 10px;cursor:pointer}.g-header .g-nav>ul>li.travelling .icon{width:30px;height:30px;padding:5px;fill:currentColor;overflow:hidden}.g-header .g-nav>ul>li.mode{width:40px;height:40px;margin:5px 0;cursor:pointer}.g-header .g-nav>ul>li.mode .icon{width:30px;height:30px;padding:5px;display:none}.g-header .g-nav>ul>li.mode .icon.active{display:block}.g-header .g-nav .dropdown-toggle{white-space:nowrap}.g-header .g-nav .dropdown-toggle::after{content:"";display:inline-block;vertical-align:.306em;width:.36em;height:.36em;border-bottom:2px solid;border-left:2px solid;margin-right:.1em;margin-left:.4em;transform:rotate(-45deg)}.g-header .g-nav .dropdown-toggle.show::after{vertical-align:.1em;transform:rotate(135deg)}.g-header .g-nav ul.dropdown-menu{background-color:#fff;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:3px;display:none;float:left;position:absolute;min-width:140px;padding:5px 0;margin-left:12px}.g-header .g-nav ul.dropdown-menu.show{display:block}.g-header .g-nav ul.dropdown-menu li{padding:0rem .75rem;line-height:2.5rem}.g-header .g-nav ul.dropdown-menu li:hover{background-color:rgba(98,105,118,.04)}.g-header .g-nav ul.dropdown-menu li a{color:#4e4e4e;display:block;text-align:center}.headerUp{top:-82px}.headerDown{top:0}.g-banner{height:460px;background-color:#2f3139;color:#fff;padding:0 60px}.g-banner .meta-item{margin-top:20px;color:#fff}.g-banner .meta-item .icon{width:20px;height:20px;margin-bottom:-5px;fill:currentColor;overflow:hidden}.g-banner .meta-item a{text-decoration:underline;color:#fff}.home-banner{position:relative;text-align:center;overflow:hidden;box-shadow:0 4px 20px rgba(0,38,55,.16)}.home-banner h2,.home-banner h3{position:relative;z-index:1;text-shadow:0 1px 1px rgba(0,0,0,.2)}.home-banner h2{padding-top:190px;line-height:38px;font-size:42px;font-family:"LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;font-weight:bold;line-height:52px}.home-banner h3{font-size:20px;font-weight:400;margin-top:8px}.banner-theme-default{background:-webkit-linear-gradient(0deg, #3CD5FF, #a8b8c9);background:-o-linear-gradient(0deg, #3CD5FF, #a8b8c9);background:-moz-linear-gradient(0deg, #3CD5FF, #a8b8c9);background:linear-gradient(100deg, #3CD5FF, #a8b8c9)}.banner-theme-pink{background:-webkit-linear-gradient(0deg, #FFCE69, #fcc6d7);background:-o-linear-gradient(0deg, #FFCE69, #fcc6d7);background:-moz-linear-gradient(0deg, #FFCE69, #fcc6d7);background:linear-gradient(100deg, #FFCE69, #fcc6d7)}.themeColor-default{background-color:#1b7eff}.themeColor-pink{background-color:#fc6794}.markdown-body{font-family:"LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;width:100%;box-sizing:border-box;padding:0 0 32px}.markdown-body .highlight{margin:0 0 16px}.markdown-body img{transition:.3s;max-width:100%;max-height:100%;margin:16px auto 5px;display:block}.markdown-body .caption{display:block;text-align:center;color:#222;font-size:13.5px}.markdown-body ul li p,.markdown-body ol li p{margin:0}.markdown-body ul li p:first-child,.markdown-body ol li p:first-child{margin-bottom:0}.markdown-body mjx-math{overflow-x:auto;overflow-y:unset;width:100%}.markdown-body .copy-container{position:relative;background-color:#e2e2e2;height:28px}.markdown-body .copy-container .lang{line-height:28px;padding-left:10px;font-weight:bold}.markdown-body .copy-container .btn{position:absolute;top:0px;right:0px;padding:2px 2px;border:none;cursor:pointer;height:28px;background-color:#ebedf0;z-index:100}.markdown-body .copy-container .btn .icon{width:24px;height:24px}.markdown-body .copy-container .btn .tooltip{font-family:"LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;font-size:14px;float:right;position:absolute;margin-left:-38px;background-color:#dadde1;padding:3px 7px;border-radius:3px;margin-top:-35px;display:none}.markdown-body .copy-container .btn .tooltip.finish{margin-left:-43px}.markdown-body .copy-container .btn .tooltip:after{content:"";position:absolute;top:calc(100% - 6px);left:calc(50% - 6px);width:10px;height:10px;background-color:#dadde1;border-width:1px;border-style:solid;border-color:rgba(0,0,0,0) #dadde1 #dadde1 rgba(0,0,0,0);transform:rotate(45deg);clip-path:polygon(145% -50%, 150% 150%, -50% 145%)}.markdown-body .copy-container .btn .tooltip.active{display:inline-block}.markdown-body p{font-size:16px;line-height:1.8;text-align:justify}.markdown-body h1,.markdown-body h2{border-bottom:none}.markdown-body ul{list-style:revert}.markdown-body>ol{padding-left:0}.markdown-body ol{list-style:none !important}.markdown-body ol li{counter-increment:a 1}.markdown-body ol li:before{content:counter(a);font-weight:bold;color:#fff;text-align:center;padding:0 5px;margin-right:10px;border-radius:50%}.markdown-body ol li::marker{content:""}.markdown-body ol li li{counter-increment:b 1}.markdown-body ol li li:before{content:counter(a) "." counter(b);border-radius:0}.markdown-body ol li li li{counter-increment:c 1}.markdown-body ol li li li:before{content:counter(a) "." counter(b) "." counter(c)}.markdown-body ol li li li li{counter-increment:d 1}.markdown-body ol li li li li:before{content:counter(a) "." counter(b) "." counter(c) "." counter(d)}.markdown-body .calendar-top{margin:10px auto}.markdown-body .calendar-top .legends{float:right;font-size:12px;margin:5px;min-width:150px}.markdown-body .calendar-top .legends #ex-ghDay-legend2{display:inline-block;margin:0 4px}.markdown-body a.button{text-decoration:none;padding:3px 15px;display:inline-block;border-radius:5px;margin-right:5px;color:#2d313a}.markdown-body a.button:hover{background-color:#ebedf0}.markdown-body summary.render-expand{padding:3px 12px;font-size:12px;line-height:20px;float:right;list-style:none;font-weight:500;color:#57606a;background-color:#f6f8fa;box-shadow:0 1px 0 rgba(27,31,36,.04),inset 0 1px 0 rgba(255,255,255,.25);border:1px solid rgba(27,31,36,.15);border-radius:6px;cursor:pointer}.markdown-body summary.render-expand:hover{background-color:#f3f4f6;border-color:rgba(27,31,36,.15);transition-duration:.1s}.markdown-body pre{border:3px solid #e2e2e2;border-radius:0px !important;border-top:none}.markdown-body pre.language-mermaid2{background:#eceff1;color:rgba(0,0,0,0);display:none}.markdown-body pre.language-mermaid2 code{color:rgba(0,0,0,0);background-color:#eceff1}.markdown-body .mermaid2{justify-content:center;text-align:center;align-content:flex-start;margin:10px 0;background-color:#fff}.markdown-body .category{text-transform:capitalize}.markdown-body .table-area{overflow:auto;margin:0 auto}.markdown-body .table-area table{word-break:keep-all;word-wrap:break-word;text-overflow:ellipsis;white-space:nowrap;margin:0 auto}.markdown-body .post-copyright{background-color:#fffbf0;border-radius:4px;border:1px solid #efe1bb;padding:18px 20px;font-size:14px;color:#333}.markdown-body .post-copyright p{margin-bottom:0px;text-align:left}.markdown-body .post-copyright p span{font-weight:bold}.markdown-body .post-copyright p.tips{color:#e32e00;display:none}.markdown-body .post-copyright p.tips.active{display:block}.markdown-body .language-plaintext{color:#d2691e}.markdown-body .footnotes{border-top-width:3px;padding-top:10px}.markdown-body .footnotes ol li:before{position:relative !important;top:0 !important;right:0 !important;bottom:0 !important;left:0 !important;content:counter(a) !important;border:0px !important;border-radius:50% !important;font-size:16px}.markdown-body .footnotes ol li p{display:inline}.markdown-body #archive-heatmap .icon{width:18px;height:18px;margin-bottom:-3px;fill:currentColor;overflow:hidden}.markdown-body #archive-articles ul{border-left:4px solid #efefef;padding-left:0;list-style:none}.markdown-body #archive-articles ul li{padding-left:15px;position:relative}.markdown-body #archive-articles ul li:before{content:"";position:absolute;left:-4px;width:4px;border-radius:12px;height:4px;top:calc(50% - 2px);background:#ccc;transition:background .2s ease-out,height .2s ease-out,top .2s ease-out,transform .2s ease-out;-moz-transition:background .2s ease-out,height .2s ease-out,top .2s ease-out,transform .2s ease-out;-webkit-transition:background .2s ease-out,height .2s ease-out,top .2s ease-out,transform .2s ease-out;-o-transition:background .2s ease-out,height .2s ease-out,top .2s ease-out,transform .2s ease-out;transform:scale(2)}.markdown-body #archive-articles ul li:hover:before{border-radius:0px;height:15px;top:7px;width:2px;left:-3px}.post-no-cover{height:360px}.post-no-cover .post-tags{margin-top:100px}.post-pattern-circuitBoard{background-image:url("data:image/svg+xml,%3Csvg width=%27304%27 height=%27304%27 viewBox=%270 0 304 304%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z%27 fill=%27%23f8f6fb%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.post-pattern-overlappingCircles{background-image:url("data:image/svg+xml,%3Csvg width=%2780%27 height=%2780%27 viewBox=%270 0 80 80%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z%27 /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-food{background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27260%27 height=%27260%27 viewBox=%270 0 260 260%27%3E%3Cg fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z%27/%3E%3Cpath id=%27path6_fill-copy%27 d=%27M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z%27/%3E%3Cpath d=%27M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z%27/%3E%3Cpath d=%27M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z%27/%3E%3Cpath d=%27M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z%27/%3E%3Cpath d=%27M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z%27/%3E%3Cpath d=%27M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-glamorous{background-image:url("data:image/svg+xml,%3Csvg width=%27180%27 height=%27180%27 viewBox=%270 0 180 180%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.post-pattern-ticTacToe{background-image:url("data:image/svg+xml,%3Csvg width=%2764%27 height=%2764%27 viewBox=%270 0 64 64%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.post-pattern-seaOfClouds{background-image:url("data:image/svg+xml,%3Csvg width=%2756%27 height=%2728%27 viewBox=%270 0 56 28%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M56 26c-2.813 0-5.456.726-7.752 2H56v-2zm-26 2h4.087C38.707 20.783 46.795 16 56 16v-2c-.672 0-1.339.024-1.999.07L54 14a2 2 0 0 1 2-2v-2a4 4 0 0 0-3.98 3.602 28.087 28.087 0 0 0-2.793-3.862A7.994 7.994 0 0 1 56 6V4a9.988 9.988 0 0 0-8.17 4.232 28.156 28.156 0 0 0-3.03-2.634A13.979 13.979 0 0 1 56 0h-7.752a16.078 16.078 0 0 0-5.09 4.454 27.941 27.941 0 0 0-3.536-1.936c.63-.896 1.33-1.738 2.095-2.518H39.03c-.46.557-.893 1.137-1.297 1.737A27.787 27.787 0 0 0 33.723.585c.12-.196.24-.392.364-.585H30l-.001.07A28.406 28.406 0 0 0 26 .07L26 0h-4.087c.124.193.245.389.364.585a27.787 27.787 0 0 0-4.009 1.152c-.404-.6-.837-1.18-1.297-1.737h-2.688c.764.78 1.466 1.622 2.095 2.518-1.23.562-2.41 1.21-3.536 1.936A16.078 16.078 0 0 0 7.752 0H0c4.58 0 8.645 2.199 11.2 5.598a28.156 28.156 0 0 0-3.03 2.634A9.988 9.988 0 0 0 0 4v2a7.994 7.994 0 0 1 6.773 3.74 28.087 28.087 0 0 0-2.793 3.862A4 4 0 0 0 0 10v2a2 2 0 0 1 1.999 2.07C1.339 14.024.672 14 0 14v2c9.205 0 17.292 4.783 21.913 12H26a2 2 0 1 1 4 0zM7.752 28C5.456 26.726 2.812 26 0 26v2h7.752zM56 20c-6.832 0-12.936 3.114-16.971 8h2.688A19.94 19.94 0 0 1 56 22v-2zm-39.029 8C12.936 23.114 6.831 20 0 20v2a19.94 19.94 0 0 1 14.283 6h2.688zm15.01-.398a28.087 28.087 0 0 1 2.792-3.862A7.994 7.994 0 0 0 28 20a7.994 7.994 0 0 0-6.773 3.74 28.087 28.087 0 0 1 2.793 3.862 4 4 0 0 1 7.96 0zm14.287-11.865C42.318 9.864 35.61 6 28 6c-7.61 0-14.318 3.864-18.268 9.737a27.787 27.787 0 0 0-4.009-1.152C10.275 7.043 18.548 2 28 2c9.452 0 17.725 5.043 22.277 12.585a27.787 27.787 0 0 0-4.009 1.152zm-5.426 2.717a27.941 27.941 0 0 1 3.536-1.936C40.76 11.367 34.773 8 28 8s-12.76 3.367-16.378 8.518c1.23.562 2.41 1.21 3.536 1.936C18.075 14.537 22.741 12 28 12s9.925 2.537 12.842 6.454zm-4.672 3.778a28.156 28.156 0 0 1 3.03-2.634A13.979 13.979 0 0 0 28 14c-4.58 0-8.645 2.199-11.2 5.598a28.156 28.156 0 0 1 3.03 2.634A9.988 9.988 0 0 1 28 18a9.988 9.988 0 0 1 8.17 4.232z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E")}.post-content{position:relative;width:auto;background-color:#fff;overflow:visible;padding:40px 0 80px;border-radius:3px;box-shadow:0 1px 3px rgba(0,37,55,.06)}.post-content .post-subtitle{position:relative;width:695px;font-size:18px;color:#585858;font-weight:normal;line-height:28px;text-align:center;padding:35px 0;margin:0 auto 40px;box-sizing:border-box}.post-content .post-subtitle:before,.post-content .post-subtitle:after{position:absolute;content:"";left:50%;margin-left:-13%;width:26%;height:2px;background-color:#eaecee}.post-content .post-subtitle:before{top:0}.post-content .post-subtitle:after{bottom:0}.post-content .container{width:1300px;margin:0 auto;display:flex;flex-direction:row;justify-content:space-between}.post-content .container .contents{width:695px;padding:30px}.post-content .interest{width:auto;height:40px;display:inline-block !important;margin:0 20px 0 0 !important}.post-header,.markdown-body,.post-wrapper,.author-detail,.social-share-wrapper{margin:0 auto}.post-wrapper{width:695px}.post-header{position:relative;padding:0;margin:0;color:#fff;overflow:hidden;background-color:#4285f4;z-index:0}.post-header h1{font-size:32px;line-height:42px;margin-bottom:12px}.post-header .post-tags{margin:150px 0 16px}.post-header .post-tags .post-tag{display:inline-block;width:auto;height:24px;line-height:24px;padding:0 12px;font-size:14px;color:#656565;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border:1px solid rgba(92,147,187,.168627451);border-radius:12px;background-color:#f7f8fa;cursor:pointer;margin-right:2px;transition:.2s;margin-bottom:5px;color:#fff;background-color:rgba(255,255,255,.26);box-shadow:none;margin-bottom:8px}.post-header .post-tags .post-tag:last-child{margin-right:0}.post-header .post-tags .post-tag:hover{background-color:rgba(255,255,255,.4)}.post-header .post-meta{margin-top:32px}.post-header .post-meta .post-meta-item{display:inline-block;white-space:nowrap;font-size:16px;color:#fff;margin-right:4px;opacity:.8;margin-bottom:10px}.post-header .post-meta .post-meta-item:last-child{margin-right:0}.post-header .post-meta .post-meta-item .iconfont{font-size:18px;margin-right:4px}.post-header .post-meta .post-meta-item a{color:#fff;text-decoration:underline}.post-header .post-meta .post-meta-item .icon{width:18px;height:18px;margin-bottom:-3px;fill:currentColor;overflow:hidden}.post-header .filter{position:absolute;content:"";top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.3;z-index:-1}.post-header .post-cover{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-2}.submenu{width:200px;max-height:450px;height:fit-content;padding:15px;margin-bottom:80px;position:sticky;top:100px;overflow:auto;color:#000;line-height:24px;z-index:800;background-color:rgba(92,147,187,.168627451);border-radius:10px}.submenu ul{margin-top:10px;margin-left:20px;list-style-type:circle}.submenu ul li{line-height:28px}.submenu .icon{width:20px;height:20px;margin-bottom:-4px;margin-right:5px;fill:currentColor;overflow:hidden}.table-of-contents{width:280px;position:-webkit-sticky;position:sticky;top:100px;margin-bottom:80px;display:block;height:fit-content}.table-of-contents h2{padding-bottom:20px}.table-of-contents .toc-body{position:relative;max-height:450px;overflow:auto;overflow-x:hidden}.table-of-contents ul{margin:0px;list-style-type:none;font-size:14px;line-height:20px;height:fit-content;border-left:4px solid #efefef}.table-of-contents ul li{padding-left:0px;position:relative}.table-of-contents ul li.active:before{content:"";position:absolute;top:0;left:0;margin-left:-4px;width:4px;height:24px;background:rgba(0,0,0,0)}.table-of-contents ul li ul{border-left:none}.table-of-contents ul li ul li{padding-left:15px}.table-of-contents ul li ul li ul{margin-left:-15px}.table-of-contents ul li ul li ul li{padding-left:30px}.table-of-contents ul li a{display:inline-block;padding:0px 8px;width:95%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bgcolor-default{background-color:#1b7eff}.bgcolor-pink{background-color:rgba(252,103,148,.5)}.social-share-wrapper{float:left;position:relative;left:50%}.social-share-wrapper .social-share{position:relative;left:-50%}.post-footer-item{margin:0 auto;width:695px}.author-detail{position:relative;top:-35px}.author-detail .comment .wl-gif-popup{max-width:90%}.author-detail .comment #disqus_thread,.author-detail .comment #waline{display:none}.author-detail .comment #disqus_thread.active,.author-detail .comment #waline.active{display:block;animation:.5s ease 0s 1 normal none running tabshow}.author-detail .comment .comments-headline{display:inline-block;vertical-align:middle;font-weight:700;font-size:1.43em;margin-bottom:20px;height:40px;line-height:40px;min-width:150px}.author-detail .comment .comments-headline .icon{width:30px;height:30px;margin-bottom:-7px;fill:currentColor;overflow:hidden}.author-detail .comment #comments-switch{background-color:#f1f1f1;padding:10px;border-radius:10px;display:block;float:right;margin-bottom:10px;min-width:176px;text-align:center}.author-detail .comment #comments-switch .first-comment{color:#3cd5ff}.author-detail .comment #comments-switch .second-comment{color:#ffce69}.author-detail .comment #comments-switch .switch-button{display:inline-block;margin-bottom:-5px}.author-detail .comment #comments-switch .switch-button .cmn-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.author-detail .comment #comments-switch .switch-button .cmn-toggle+label{display:block;position:relative;cursor:pointer;outline:none;user-select:none}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat+label{padding:2px;width:40px;height:20px;background-color:#3cd5ff;border-radius:15px;transition:background .4s}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat+label:before,.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat+label:after{display:block;position:absolute;content:""}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat+label:before{top:2px;left:2px;bottom:2px;right:2px;background-color:#fff;border-radius:10px;transition:background .4s}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat+label:after{top:4px;left:4px;bottom:4px;width:16px;background-color:#3cd5ff;border-radius:24px;transition:margin .4s,background .4s}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat:checked+label{background-color:#ffce69}.author-detail .comment #comments-switch .switch-button input.cmn-toggle-round-flat:checked+label:after{margin-left:20px;background-color:#ffce69}.read-next{display:flex;width:695px;margin:60px auto}.read-next-item{position:relative;flex:1;height:260px;padding:0;margin-left:10px;top:0;background-color:#aab4ca;border-radius:3px;overflow:hidden;box-shadow:0 2px 10px rgba(109,127,144,.5);transition:box-shadow .4s ease,top .3s ease}.read-next-item:first-child{margin-left:0}.read-next-item:hover{top:-5px;box-shadow:0 8px 20px rgba(52,61,70,.3)}.read-next-item .read-next-link{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.read-next-item section{display:none;position:relative;width:80%;margin-left:10%;margin-top:45px;color:#fff;z-index:2}.read-next-item section span{font-size:22px;font-weight:bold;margin:0}.read-next-item section p{margin-top:8px;font-size:15px;line-height:22px;opacity:.8}.read-next-item .filter{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.22);z-index:1;transition:.3s linear}.read-next-item img{display:none;position:absolute;top:0;left:0;width:100%;filter:blur(6px);-webkit-filter:blur(6px);z-index:0}.archives-date{margin-right:10px;display:inline-block;color:#222;opacity:.63}.archives-title{width:95%;display:inline-block;margin-bottom:0 !important;margin-top:0 !important;white-space:nowrap}.friends .icon{width:20px;height:20px;margin-bottom:-3px;fill:currentColor;overflow:hidden}.friends .friendurl{text-decoration:none !important;color:inherit;box-shadow:none !important;background-color:rgba(0,0,0,0) !important;border-bottom:none !important}.friends .frienddiv{height:100px;width:49%;display:inline-block !important;border-radius:5px;background:0 0;-webkit-transition:all ease-out .3s;-moz-transition:all ease-out .3s;-o-transition:all ease-out .3s;transition:all ease-out .3s}.friends .frienddiv:hover{background:rgba(0,0,0,.03)}.friends .frienddivleft{width:92px;float:left;margin-right:-5px}.friends .frienddivleft .myfriend{width:56px !important;height:56px !important;border-radius:50% !important;padding:2px;margin-top:20px !important;margin-left:14px !important;background-color:#fff;box-shadow:0 1px 4px rgba(100,110,120,.53)}.friends .frienddivright{margin-top:27px;margin-right:18px}.friends .frienddivright .friendname{text-overflow:ellipsis;font-size:100%;margin-bottom:5px;color:var(--primary)}.friends .frienddivright .friendinfo{text-overflow:ellipsis;font-size:70%;color:var(--primary)}.alert-tip{position:fixed;z-index:102;background:rgba(255,255,255,.3);padding:10px 20px;min-width:150px;text-align:center;left:0;right:0;margin:0 auto;color:#000;backdrop-filter:blur(6px);visibility:hidden;opacity:0;transition:all 1s linear}.alert-tip.active{visibility:visible;opacity:1}.cookie-tip{position:fixed;z-index:102;background:#edeff5;padding:.5em 1.8em;font-size:13px;line-height:2.5em;min-height:2.5em;min-width:150px;bottom:0;left:0;right:0;margin:0 auto;color:#838391;backdrop-filter:blur(6px);visibility:hidden;opacity:0;transition:all .5s linear}.cookie-tip.active{visibility:visible;opacity:1}.cookie-tip a{text-decoration:underline}#accept-tos{float:right;padding:6px 20px;color:#fff;font-weight:700;border-width:2px;text-align:center;border-style:solid;border-color:rgba(0,0,0,0);cursor:pointer}.modal{visibility:hidden;padding-top:100px;z-index:1000;position:fixed;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.4);overflow:auto}.modal .modal-content{background-color:#fff;margin:auto;min-width:800px;max-width:80%;padding:30px;text-align:center;border-radius:8px}.modal .modal-content header{position:relative}.modal .modal-content header span{cursor:pointer;position:absolute;right:0;top:0;font-size:30px}.hidden{visibility:hidden !important}#tools{visibility:hidden;position:fixed;right:20.8px;bottom:100px;z-index:1000}#tools .tool{width:24px;height:24px;background-color:#ebedf0;padding:12px;border-radius:50%;box-shadow:1px 2px 0 rgba(0,0,0,.1);margin-bottom:10px}#tools .tool:hover{background-color:#dadde1;cursor:pointer}#tools .tool .icon{width:24px;height:24px;fill:currentColor;overflow:hidden;display:none}#tools .tool .icon.active{display:block}.bttb{visibility:hidden;opacity:0;position:fixed;right:20.8px;bottom:50px;z-index:1000;color:#656565;transform:scale(0);transition:all 200ms cubic-bezier(0.08, 0.52, 0.52, 1);border:none;cursor:pointer}.bttb .tool{width:20px;height:20px;background-color:#ebedf0;padding:14px;border-radius:50%;box-shadow:1px 2px 0 rgba(0,0,0,.1)}.bttb .tool:hover{background-color:#dadde1;cursor:pointer}.bttb .tool .icon{width:20px;height:20px;fill:currentColor;overflow:hidden}.bttb.active{opacity:1;transform:scale(1);visibility:visible}[data-theme=default] .g-header a:hover{color:#1b7eff !important}[data-theme=default] .g-header .nav-default .mode{background-color:rgba(27,126,255,.6);border-radius:50%}[data-theme=default] .g-header .mode:hover{background-color:#1b7eff !important;border-radius:50%}[data-theme=default] .submenu li:hover::marker,[data-theme=default] .submenu li a:hover,[data-theme=default] .table-of-contents h2,[data-theme=default] .table-of-contents li.active>a{color:#1b7eff}[data-theme=default] .article-item .post-meta .post-tag:hover,[data-theme=default] .tags-card .tag:hover,[data-theme=default] .tags-content .tag:hover,[data-theme=default] .table-of-contents a:hover,[data-theme=default] .g-footer .links a:hover,[data-theme=default] .g-footer section a:hover,[data-theme=default] .post-header .post-tags .post-tag:hover,[data-theme=default] .tags-content .tag-post:hover,[data-theme=default] .author-card .level .level-item .title:hover,[data-theme=default] .g-sidebar section .latest-articles li .latest-title a:hover{color:#1b7eff !important}[data-theme=default] .markdown-body a:not([ref=gallery]):not(.button){background-color:rgba(27,126,255,.1);border-bottom:2px solid rgba(27,126,255,.6);text-decoration:none;color:inherit}[data-theme=default] .markdown-body a:not([ref=gallery]):not(.button):hover{background-color:rgba(27,126,255,.3);text-decoration:none}[data-theme=default] .markdown-body ol li:before{background-color:rgba(27,126,255,.8)}[data-theme=default] .markdown-body #archive-articles ul li:hover:before{background:rgba(27,126,255,.8)}[data-theme=default] .table-of-contents li.active:before{background-color:#1b7eff}[data-theme=default] .search-card .icon{color:#1b7eff}[data-theme=default] #accept-tos{background-color:rgba(27,126,255,.8)}[data-theme=default] #accept-tos:hover{background-color:#1b7eff}[data-theme=pink] .g-header a:hover{color:#fc6794 !important}[data-theme=pink] .g-header .nav-pink .mode{background-color:rgba(252,103,148,.6);border-radius:50%}[data-theme=pink] .g-header .mode:hover{background-color:#fc6794 !important;border-radius:50%}[data-theme=pink] .submenu li:hover::marker,[data-theme=pink] .submenu li a:hover,[data-theme=pink] .table-of-contents h2,[data-theme=pink] .table-of-contents li.active>a{color:#fc6794}[data-theme=pink] .article-item .post-meta .post-tag:hover,[data-theme=pink] .tags-card .tag:hover,[data-theme=pink] .tags-content .tag:hover,[data-theme=pink] .table-of-contents a:hover,[data-theme=pink] .g-footer .links a:hover,[data-theme=pink] .g-footer section a:hover,[data-theme=pink] .post-header .post-tags .post-tag:hover,[data-theme=pink] .tags-content .tag-post:hover,[data-theme=pink] .author-card .level .level-item .title:hover,[data-theme=pink] .g-sidebar section .latest-articles li .latest-title a:hover:hover{color:#fc6794 !important}[data-theme=pink] .markdown-body a:not([ref=gallery]):not(.button){background-color:rgba(252,103,148,.1);border-bottom:2px solid rgba(252,103,148,.6);text-decoration:none;color:inherit}[data-theme=pink] .markdown-body a:not([ref=gallery]):not(.button):hover{background-color:rgba(252,103,148,.3);text-decoration:none}[data-theme=pink] .markdown-body ol li:before{background-color:rgba(252,103,148,.8)}[data-theme=pink] .markdown-body #archive-articles ul li:hover:before{background:rgba(252,103,148,.8)}[data-theme=pink] .table-of-contents ul li.active:before{background-color:#fc6794}[data-theme=pink] .search-card .icon{color:#fc6794}[data-theme=pink] #accept-tos{background-color:rgba(252,103,148,.8)}[data-theme=pink] #accept-tos:hover{background-color:#fc6794}.night-mode [data-theme=default] a.button{color:#aaa}.night-mode [data-theme=default] a.button:hover,.night-mode [data-theme=default] .g-sidebar .tags-card a.button:hover,.night-mode [data-theme=default] .friends .frienddiv:hover{background-color:rgba(27,126,255,.3)}.night-mode [data-theme=default] .submenu li:hover::marker,.night-mode [data-theme=default] .submenu a:hover{color:#1b7eff}.night-mode [data-theme=pink] a.button{color:#aaa}.night-mode [data-theme=pink] a.button:hover,.night-mode [data-theme=pink] .g-sidebar .tags-card a.button:hover,.night-mode [data-theme=pink] .friends .frienddiv:hover{background-color:rgba(252,103,148,.3)}.night-mode [data-theme=pink] .submenu li:hover::marker,.night-mode [data-theme=pink] .submenu a:hover{color:#fc6794}.night-mode{background-color:#2d313a}.night-mode .g-banner{background-color:#2d313a;color:#c8cdd3}.night-mode .post-header .filter{opacity:.6}.night-mode .article-item,.night-mode .g-sidebar,.night-mode .page-links,.night-mode .search-card input,.night-mode .search_result,.night-mode .search_item,.night-mode .article-item .post-tag,.night-mode .tags-card .tag,.night-mode .tags-list li,.night-mode .tags-list .tag{color:#aaa;background-color:#2d313a;border-color:rgba(255,255,255,.1);box-shadow:none}.night-mode .article-item .post-cover img{filter:brightness(0.6);-webkit-filter:brightness(0.6)}.night-mode .article-item .post-preview .post-title,.night-mode .article-item .post-preview .post-subtitle,.night-mode .article-item .post-preview .post-excerpt{color:#aaa}.night-mode .article-item .post-meta .post-tags,.night-mode .article-item .post-meta .post-date{color:#aaa}.night-mode .pagination .page-link:hover{background-color:rgba(255,255,255,.1)}.night-mode .pagination .active{background-color:rgba(255,255,255,.1)}.night-mode .g-sidebar section{border-bottom:1px solid rgba(255,255,255,.1)}.night-mode .g-sidebar section:last-child{border-bottom:none}.night-mode .g-sidebar section .level .level-item .title{color:#fff}.night-mode .avatar img{filter:brightness(0.6);-webkit-filter:brightness(0.6)}.night-mode .author-name,.night-mode .bio{color:#aaa !important}.night-mode .search_result .search_item:last-child{border-color:rgba(255,255,255,.1)}.night-mode .search_result .search_item:hover{background-color:rgba(0,0,0,0);color:#fff}.night-mode .article-item .post-tag,.night-mode .tags-card .tag{background-color:#565656;color:#fff}.night-mode .tags-card .links,.night-mode .tags-card a{color:#d3d3d3}.night-mode .tags-list li .tag-name,.night-mode .tags-list li .tag-post{color:#aaa}.night-mode .latest-articles a{color:#fff}.night-mode .g-footer{border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0)}.night-mode .g-footer section{color:#aaa}.night-mode .g-footer section a{color:#f8f8f8}.night-mode .g-footer section a:hover{color:#83888f}.night-mode .g-footer section .links a{color:#aaa}.night-mode .g-footer section .links a:before{position:absolute;top:80%;left:0;right:0;bottom:0;background:rgba(21,101,192,.6);transition:top .2s cubic-bezier(0, 0.8, 0.13, 1);z-index:1}.night-mode .post-content{background-color:#2d313a;border-color:rgba(255,255,255,.1)}.night-mode .post-content .post-subtitle{color:#fff}.night-mode .post-content .post-subtitle:before,.night-mode .post-content .post-subtitle:after{background-color:#575b63}.night-mode .post-content .submenu{color:#fff}.night-mode .post-content .submenu a{color:#fff}.night-mode .markdown-body{color:#aaa;background-color:rgba(0,0,0,0)}.night-mode .markdown-body img{filter:brightness(0.6);-webkit-filter:brightness(0.6)}.night-mode .markdown-body blockquote{border-left-color:#555a61}.night-mode .markdown-body pre{border:3px solid #393939;border-radius:0px;border-top:none}.night-mode .markdown-body pre code{text-shadow:none !important}.night-mode .markdown-body pre code .line-numbers-rows{border-right:1px solid #9d9d9f}.night-mode .markdown-body a{color:#aaa}.night-mode .markdown-body a:not([ref=gallery]):before{position:absolute;top:80%;left:0;right:0;bottom:0;background:rgba(21,101,192,.6);transition:top .2s cubic-bezier(0, 0.8, 0.13, 1);z-index:1}.night-mode .markdown-body .copy-container{background-color:#393939}.night-mode .markdown-body .language-plaintext{color:#d2691e}.night-mode .markdown-body .caption{color:#aaa}.night-mode .markdown-body table tr{background-color:rgba(0,0,0,0)}.night-mode .markdown-body #archive-articles ul li:before{background:#aaa}.night-mode .table-of-contents,.night-mode .table-of-contents a{color:#fff}.night-mode .read-next-item{background-color:#484d59}.night-mode .read-next-item section{color:#aeb4bd}.night-mode .read-next-item .filter{background-color:rgba(0,0,0,.6)}.night-mode :not(pre)>code[class*=language-],.night-mode pre[class*=language-]{background-color:#efefef}.night-mode code[class*=language-],.night-mode pre[class*=language-],.night-mode .token.punctuation,.night-mode .token.operator,.night-mode .token.entity,.night-mode .token.url,.night-mode .language-css .token.string,.night-mode .style .token.string,.night-mode .token.variable{color:#8f97a7;background:none}.night-mode .token.atrule,.night-mode .token.attr-value,.night-mode .token.function{color:#a9a054}.night-mode .token.selector,.night-mode .token.attr-name,.night-mode .token.string,.night-mode .token.char,.night-mode .token.builtin,.night-mode .token.inserted{color:#84ac35}.night-mode .token.property,.night-mode .token.tag,.night-mode .token.constant,.night-mode .token.symbol,.night-mode .token.deleted{color:#d75885}.night-mode .token.keyword{color:#61bdcf}.night-mode #tools .tool,.night-mode .bttb .tool{background-color:#444950;color:#afb3b7}.night-mode #tools .tool:hover,.night-mode .bttb .tool:hover{background-color:#606770}.night-mode .author-detail,.night-mode #waline button,.night-mode .wl-editor,.night-mode .wl-input,.night-mode .wl-info .wl-text-number,.night-mode .wl-content p,.night-mode .wl-panel label,.night-mode .wl-card .wl-meta span{color:#fff}.night-mode .wl-panel{background-color:#282c34}.night-mode .wl-editor:focus,.night-mode .wl-input:focus{background:#252934}.night-mode .wl-card .wl-meta span{background:#272727}.night-mode .archives-date{color:#eff0f0}.night-mode .year span{background-color:#fff}.g-container{width:1080px;display:flex;justify-content:space-between;flex-direction:row}a{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}a.extlinks::after{content:"↗️";font-size:12px;padding:0 2px;vertical-align:1px}.home-content{margin:40px auto 60px}.home-content:before,.home-content:after{content:"";display:table}.home-content:after{clear:both}.article-list{width:695px}.article-list .author-detail{top:20px !important}.article-list .article-item{width:100%;margin-bottom:16px;padding:20px 20px;background-color:#fff;border:1px solid #e7eaf1;border-radius:3px;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,37,55,.06)}.article-list .article-item:last-child{margin-bottom:0}.article-list .article-item .post-link{position:absolute;top:0;left:0;width:100%;height:100%}.article-list .article-item .post-cover{position:relative;width:100%;max-height:300px;margin-bottom:14px;overflow:hidden}.article-list .article-item .post-cover img{width:100%;vertical-align:middle}.article-list .article-item .post-preview{position:relative}.article-list .article-item .post-preview .post-title{font-family:"LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;color:#4e4e4e;font-size:24px;line-height:32px}.article-list .article-item .post-preview .post-title .icon{width:28px;height:28px;margin-bottom:-5px}.article-list .article-item .post-preview .post-subtitle{margin-top:3px;font-size:18px;font-weight:normal;color:#585858;line-height:26px}.article-list .article-item .post-preview .post-excerpt{margin-top:8px;font-size:16px;font-family:"Merriweather","LXGW WenKai Screen",-apple-system,Verdana,"PingFang SC","Helvetica Neue","Arial","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;line-height:26px;word-break:break-all;color:#585858}.article-list .article-item .post-meta{min-height:22px;margin-top:8px;display:flex;justify-content:space-between}.article-list .article-item .post-meta .post-tags{display:inline-block;width:515px}.article-list .article-item .post-meta .post-date{color:#585858;display:inline-block;font-size:14px;letter-spacing:.6px;line-height:22px;min-width:110px}.article-list .article-item .post-meta .post-date .icon{width:16px;height:16px;margin-bottom:-3px}.author-card{text-align:center}.author-card .avatar{width:70px;height:70px;border-radius:50%;margin:0 auto;overflow:hidden;box-shadow:0 1px 4px rgba(100,110,120,.53)}.author-card .avatar img{width:70px;height:70px}.author-card .author-name{width:100%;font-size:16px;color:#4e4e4e;font-weight:500;margin:12px 0 6px}.author-card .bio p{font-size:14px;line-height:20px}.author-card .level{display:flex;margin-top:20px}.author-card .level .level-item{flex-grow:1}.author-card .level .level-item .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.author-card .level .level-item .title{color:#363636;font-size:2rem;font-weight:400;line-height:1.125}.author-card .sns-links{margin-top:14px;cursor:default}.author-card .sns-links li{position:relative;display:inline-block;width:26px;height:26px;overflow:hidden}.author-card .sns-links li a{display:inline-block}.author-card .sns-links li .iconfont{font-size:22px;line-height:30px}.author-card .sns-links li .iconfont{color:#b8bdc3;transition:.2s}.author-card .sns-links li .iconfont:hover{color:#7b848f}.author-card .sns-links li .icon{color:#b8bdc3;transition:.2s;width:22px;height:22px;line-height:30px;vertical-align:-0.15em;fill:currentColor;overflow:hidden;filter:grayscale(100%);-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%)}.author-card .sns-links li .icon:hover{color:#7b848f;filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none}.author-card .sns-links li .icon-weibo:hover{color:#f85555}.author-card .sns-links li .icon-zhihu:hover{color:#1892f5}.author-card .sns-links li .icon-twitter:hover{color:#39a6f8}.author-card .sns-links li .icon-instagram:hover{color:#d92580}.author-card .sns-links li .icon-juejin:hover{color:#1682fc}.author-card .sns-links li .icon-douban:hover{color:#2e963d}.author-card .sns-links li .icon-github:hover{color:#575757}.author-card .sns-links li .icon-facebook:hover{color:#3d5a9a}.author-card .sns-links li .icon-dribbble:hover{color:#f26798}.author-card .sns-links li .icon-jianshu:hover{color:#ea6f5a}.author-card .sns-links li .icon-uicn:hover{color:#3498db}.author-card .sns-links li .icon-linkedin:hover{color:#3181be}.author-card .sns-links li .icon-medium:hover{color:#0be370}.author-card .sns-links li .icon-youtube:hover{color:#ff2600}.author-card .sns-links li .icon-behance:hover{color:#0057ff}.author-card .sns-links li .icon-vk:hover{color:#5181b8}.article-item .post-meta .post-tag,.tags-card .tag,.tags-content .tag{display:inline-block;width:auto;height:24px;line-height:24px;padding:0 12px;font-size:14px;color:#656565;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border:1px solid rgba(92,147,187,.168627451);border-radius:12px;background-color:#f7f8fa;cursor:pointer;margin-right:2px;transition:.2s;margin-bottom:5px}.article-item .post-meta .post-tag:last-child,.tags-card .tag:last-child,.tags-content .tag:last-child{margin-right:0}.tags-card .links{width:100%;font-size:16px;color:#4e4e4e;font-weight:bold;margin:10px 0 16px;text-align:center}.g-sidebar-wrapper{width:300px;position:sticky;top:100px;height:fit-content}.g-sidebar{padding:20px 20px;background-color:#fff;border:1px solid #e7eaf1;border-radius:3px;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,37,55,.06)}.g-sidebar section{padding:10px 0;border-bottom:1px solid #e7eaf1}.g-sidebar section:first-child{padding-top:0}.g-sidebar section:last-child{border-bottom:none;padding-bottom:0}.g-sidebar section .tag{margin-bottom:8px}.g-sidebar section .icon{width:30px;height:16px;margin-bottom:-3px;fill:currentColor;overflow:hidden}.g-sidebar section .latest-articles li{margin-bottom:15px;font-size:14px}.g-sidebar section .latest-articles li .latest-title{margin:5px 0;text-align:justify;white-space:nowrap;width:265px;overflow:hidden;text-overflow:ellipsis}.g-sidebar section .latest-articles li .latest-date{font-size:12px}.g-sidebar section .calendar-top{margin:10px auto}.g-sidebar section .calendar-top .button{border-radius:5px;padding:3px 5px;display:inline-block}.g-sidebar section .calendar-top .button:hover{background-color:#ebedf0}.g-sidebar section .calendar-top .button .icon{width:16px}.g-sidebar section .calendar-top .legends{float:right;font-size:12px;margin:5px;min-width:100px}.g-sidebar section .calendar-top .legends .text{color:#768390;font-size:11px}.g-sidebar section .calendar-top .legends #ex-ghDay-legend{display:inline-block;margin:0 4px}.search-card{position:relative;margin-top:16px;padding:0}.search-card input,.search-card .search_item{font-size:16px;color:#4e4e4e}.search-card input{padding:20px 20px;background-color:#fff;border:1px solid #e7eaf1;border-radius:3px;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,37,55,.06);position:relative;padding:12px 46px 12px 18px;margin:0;width:100%;background-color:#fff;outline:none;z-index:1}.search-card ::-webkit-input-placeholder{color:#9ea8b3}.search-card :-moz-placeholder{color:#9ea8b3}.search-card ::-moz-placeholder{color:#9ea8b3}.search-card .icon-search{position:absolute;top:10px;right:18px;font-size:26px;color:#cad3dc;transition:.2s;z-index:1}.search-card .icon{position:absolute;top:13px;right:18px;z-index:1;width:20px;height:20px;vertical-align:-0.15em;fill:currentColor;overflow:hidden}.search-card .search_result{position:relative;margin-top:-2px;background-color:#fff;border-radius:0 0 4px 4px;z-index:0}.search-card .search_item{padding:6px 18px;margin-bottom:0;width:100%;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-left:1px solid #e7eaf1;border-right:1px solid #e7eaf1;box-sizing:border-box;opacity:.8;transition:.2s}.search-card .search_item:first-child{padding-top:14px}.search-card .search_item:last-child{padding-bottom:14px;border-radius:0 0 4px 4px;border-bottom:1px solid #e7eaf1}.search-card .search_item:hover{opacity:1;background-color:#fafafa}.pagination{float:left;position:relative;left:50%;margin:8px auto 0}.pagination .page-links{position:relative;left:-50%;border:1px solid #e7eaf1;border-radius:3px;background-color:#fff;padding:0 8px;overflow:auto;box-shadow:0 1px 3px rgba(0,37,55,.06)}.pagination .page-link{display:block;float:left;width:34px;height:34px;margin:6px;font-size:16px;color:#a9b0bc;line-height:34px;text-align:center;border-radius:2px;cursor:pointer}.pagination .page-link:hover{color:#8f98aa;background-color:#eef0f4}.pagination .active{color:#8f98aa;background-color:#eef0f4}.pagination #page-link-container{float:left}.g-footer{min-height:40px;padding:20px 0;border-top:1px solid #e7eaf1;text-align:center;background-color:#fff;box-shadow:0 -1px 3px rgba(0,37,55,.06)}.g-footer .g-container{margin:0 auto}.g-footer .g-container:before,.g-footer .g-container:after{content:"";display:table}.g-footer .g-container:after{clear:both}.g-footer .g-container .g-left{width:500px;text-align:left}.g-footer .g-container .g-right{width:500px;text-align:right}.g-footer .g-container .g-right .badges{margin-top:10px}.g-footer section{font-size:12px;line-height:18px;color:#4e4e4e}.g-footer section a{color:#4e4e4e}.g-footer section a.others{margin-left:10px}.g-footer section a:hover{color:#83888f}.g-footer section a .license{border-width:0px;margin-bottom:-3px;width:80px;height:15px}.g-footer section .icon{width:14px;height:14px;margin-bottom:-3px;fill:currentColor;overflow:hidden}.g-footer section .upyun{height:25px;margin-bottom:-8px}.g-footer section .foreverblog img{width:auto;height:16px;vertical-align:super;margin:10px 10px 0 0}.g-footer section .wormhole img{width:auto;height:24px;margin-right:10px}.g-footer section .travelling-badge img{width:120px;margin-right:10px}.g-footer section .notbyAI img{width:100px}.tags-banner{height:300px;text-align:center}.tags-banner h2{font-size:36px;line-height:300px}.tags-content{width:695px;margin:-100px auto 0}.tags-list{padding:40px 0}.tags-list li{padding:20px 20px;background-color:#fff;border:1px solid #e7eaf1;border-radius:3px;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,37,55,.06);margin-bottom:12px}.tags-list li:first-child{margin-bottom:24px;cursor:default}.tags-list li .tag{box-shadow:0 0 .3px #bfc2c6;margin-bottom:12px;white-space:nowrap}.tags-list li .tag-name{display:block;font-size:20px;color:#333;text-align:center;margin-bottom:20px}.tags-list li .tag-post{display:block;font-size:16px;color:#666;text-align:center;margin:16px auto}.np-banner{position:fixed;top:0;left:0;width:100%;height:100%;padding:0 !important;text-align:center}.np-banner h1{font-size:86px;letter-spacing:4px;font-weight:normal;padding:160px 0 20px}.np-banner .subheading{font-size:18px}.np-banner .btn{display:block;width:160px;height:38px;font-size:16px;color:#fff;line-height:38px;border-radius:3px;border:1px solid #fff;margin:80px auto 0;opacity:.8}.year span{float:right;width:50px;height:25px;text-align:center;border-radius:2px}.year span .icon.animal{width:25px;height:25px}.year span .icon.dz{width:15px;height:15px;margin-bottom:10px;margin-left:-5px}.g-footer .links a{color:#24292f;position:relative;text-decoration:none;z-index:2}.g-footer .links a:hover{text-decoration:none}.g-footer .links a:hover:before{top:0}.g-footer #busuanzi_value_site_pv,.g-footer #busuanzi_value_site_uv{color:brown}.premonition p{margin-bottom:0}.premonition.note,.premonition.info,.premonition.warning,.premonition.error,.premonition.citation{border-radius:6.4px;padding:1rem;margin-bottom:1em}.premonition.note{background-color:#eef9fd;border-left:5px solid #3b8ba5;color:#3b8ba5}.premonition.note code{background-color:rgba(84,199,236,.15);color:#3b8ba5 !important}.premonition.info{background-color:#e6f6e6;border-left:5px solid #009400;color:#009400}.premonition.info code{background-color:rgba(0,164,0,.15);color:#009400 !important}.premonition.warning{background-color:#fff8e6;border-left:5px solid #e6a700;color:#e6a700}.premonition.warning code{background-color:rgba(255,186,0,.15);color:#e6a700 !important}.premonition.error{background-color:#fdf7f7;border-left:5px solid #e13238;color:#e13238}.premonition.error code{background-color:rgba(250,56,62,.15);color:#e13238 !important}.premonition.citation{background-color:#f8f9fa;border-left:5px solid #495057;color:#495057}.premonition.citation code{background-color:#fdfdfe;color:#495057 !important}.premonition.citation .ref{text-align:right}.premonition .header{font-weight:700;line-height:17.5px;margin-bottom:.3rem}.premonition code{text-shadow:none}.premonition .icon{width:18px;height:18px;margin-bottom:-2px;margin-right:5px}.premonition .title{display:inline-block}.night-mode .premonition{color:#fff}.night-mode .premonition.note{background-color:#193c47}.night-mode .premonition.info{background-color:#003100}.night-mode .premonition.warning{background-color:#4d3800}.night-mode .premonition.error{background-color:#4b1113}.night-mode .premonition.citation{background-color:#323940}@media screen and (min-width: 1920px){.home-banner{height:600px}.home-banner h2{padding-top:260px;font-size:42px}.home-banner h3{font-size:22px}}@media screen and (max-width: 1080px){.g-container{width:auto}.article-list{width:70%}.post-content .container{width:auto}.post-content .container .contents{width:70%}.pagination .page-num{display:none}.pagination .page-link{width:56px}}@media screen and (max-width: 1300px){.post-content .container{width:90%}.night-mode .post-content .submenu,.night-mode .post-content .table-of-contents{background-color:#606770}.submenu{visibility:hidden;opacity:0;position:fixed;right:20.8px;bottom:140px;top:auto;background-color:#f0f8ff;z-index:1010;max-width:75%;max-height:60%;overflow:scroll}.submenu.active{visibility:visible;opacity:1;transition:.5s;border-radius:0px}#tools{visibility:visible}#tools .tool.toc{visibility:hidden}}@media screen and (max-width: 1050px){#all{overflow:hidden}.article-list{width:95%}.g-sidebar-wrapper{display:none}.g-footer .g-container{margin:auto 20px}.post-wrapper{width:auto;padding:30px}.post-content .post-subtitle{width:auto}.post-content .container{width:100%}.post-content .container .contents{width:90%;float:none;margin:0 auto}#tools .tool.toc{visibility:visible}.table-of-contents{visibility:hidden;opacity:0;border-left:none;position:fixed;right:20.8px;top:auto;bottom:157px;margin-left:0px;max-width:95%;background-color:#f0f8ff;z-index:1010;margin-bottom:5px;padding:25px}.table-of-contents .toc-body{height:300px}.table-of-contents.active{visibility:visible;opacity:1;transition:.5s}.read-next{margin:20px;width:auto}.post-footer-item{width:auto}.post .mobile-list{visibility:visible}}@media screen and (max-width: 960px){.archives-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-bottom:-8px !important}.tags-content{width:auto}}@media screen and (max-width: 810px){.g-footer .g-container{flex-direction:column}.g-footer .g-container .g-left,.g-footer .g-container .g-right{width:auto;text-align:center}}@media screen and (max-width: 768px){.post-wrapper,.markdown-body,.read-next{width:auto}.post-content .post-subtitle{width:92%}.author-detail .author-card{width:92%}}@media screen and (max-width: 695px){.g-header{position:absolute;top:0;padding:28px 0}.g-header #travelling-toggle,.g-header #mode-toggle{display:block}.g-header .icon-menu{display:block;width:40px;height:28px}.g-header .g-nav{position:relative;top:48px;right:1%;display:none;min-width:152px;background-color:#fff;border-radius:2px;padding:8px 16px;box-shadow:0 3px 8px rgba(0,0,0,.2)}.g-header .g-nav>ul>li{float:none;height:auto;line-height:normal;margin-right:0}.g-header .g-nav>ul>li>a{display:block;padding:16px 0;font-size:16px;font-weight:bold;color:#a5a8b0;opacity:1}.g-header .g-nav>ul>li.travelling,.g-header .g-nav>ul>li.mode{display:none}.g-header .g-nav ul.dropdown-menu{box-shadow:none;position:relative;float:none}.g-header .g-nav ul.dropdown-menu li{padding:10px;line-height:normal}.g-header .g-nav ul.dropdown-menu li a{text-align:left}.author-detail .author-card .sns-links{margin-top:24px}.author-detail .author-card .sns-links li{width:36px;height:36px}.author-detail .author-card .sns-links li .iconfont{font-size:32px;line-height:40px}.author-detail .comment{width:90%}.read-next{display:block}.read-next-item{margin-bottom:16px;margin-left:0}.read-next-item:first-child{margin-right:0}.read-next-item:last-child{margin-bottom:0}.read-next-item:hover{top:0;box-shadow:none}.read-next-item section{width:90%;margin-left:5%;margin-top:45px}.g-banner{padding:0 20px}.home-banner h3,.tags-banner h3{margin-top:8px}.home-content{margin-top:0}.article-list,.tags-content,.g-footer .g-left,.g-footer .g-right{width:100%}.tags-content{margin-top:0}.tags-banner{height:300px}.tags-list{padding:0 0 24px}.g-footer{padding:30px 0}.post-meta-item .icon.info2{display:none}#accept-tos{float:none;display:block;margin:auto}.friends .frienddiv{width:100%}}@media screen and (max-width: 500px){.home-banner{height:400px}.home-banner h2{padding-top:180px;font-size:28px;line-height:48px}.home-banner h3{margin-top:2px;font-size:18px}.home-content{margin-bottom:32px;flex-direction:column}.g-sidebar-wrapper{display:block;margin:0 auto;width:90%;min-width:300px}.g-sidebar-wrapper .g-sidebar{margin-top:30px}.article-list .article-item{padding:20px 16px;margin-bottom:8px;border-left:none;border-right:none;border-radius:0;box-shadow:none}.article-list .article-item:first-child{border-top:none}.article-list .article-item .post-cover{max-height:200px}.article-list .article-item .post-preview .post-title{font-size:18px;line-height:26px}.article-list .article-item .post-preview .post-subtitle{font-size:16px;line-height:20px}.article-list .article-item .post-meta{margin-top:12px}.article-list .article-item .post-meta .post-tags{display:none}.article-list .article-item .post-meta .post-date{float:left;margin-left:5px}.pagination .page-links{box-shadow:none}.post-header{padding:0;min-height:360px;height:auto}.post-wrapper .post-tags{margin:100px 0 8px}.post-wrapper .post-meta{margin-top:16px;padding-bottom:20px}.post-content{padding-top:20px}.post-content .post-subtitle{padding:8px 0 24px;margin-bottom:32px}.post-content .post-subtitle:before{height:0}.post-content .container .contents{padding:0}.markdown-body p,.markdown-body ul>li{font-size:16px;font-weight:300;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4{margin-top:24px}.markdown-body table{margin:16px auto}.markdown-body img{margin:16px 0 auto}.markdown-body strong{font-weight:400}.markdown-body blockquote p{font-size:18px;letter-spacing:1px;color:#888;word-break:break-all}.markdown-body mjx-container{overflow-x:scroll}}@media screen and (max-width: 376px){.home-banner h2{font-size:26px;line-height:38px}.home-banner h3{margin-top:4px;font-size:16px}}@media(hover: hover){#accept-tos:hover{background-color:#71a7ff}.markdown-body .btn:hover{background-color:#dadde1}}
2592
2
 
2593
3
  /*# sourceMappingURL=app.min.css.map*/