jekyll-theme-h2o-ac 1.1.0 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a860fd414fff653740f209b3a54b36be28adb6b74de857fab4b4d5249758d8db
4
- data.tar.gz: a193919f131591bc6668ba78da6c3d3c54385320ce06710ca1c493814f6086b0
3
+ metadata.gz: 908a6b670742868fcad0025e1e4647cf934e46270b69506275dfd432db703295
4
+ data.tar.gz: 5310bdba76638a0fb7783fe9ae5620ea86c1fea6fc81534d9555e7c81bd8eb03
5
5
  SHA512:
6
- metadata.gz: 3d8e01b857c2d6a17726933c497babcb6f5b798f01ba757938eb67154b97c6b114598abe9cc504c015f917a11d9f0fb99397f78586b9af9a9856dc41e2007d81
7
- data.tar.gz: 8fcddd1aa936edf9d1c9bcb85dee5aa05f4fd00b81aa5a00b9cd318bd795654903713a792ba27c887d32219c47394b1a67426cc9cba8d8e7f63bc210085633c3
6
+ metadata.gz: aa21e30eb7ee3cf95ff7940657f6e4a48b41092d8b9a11e6596bb09ca59b165a7b01f4a8557d2443f024135c416c4d6a7d97300abb6ffd1505f7d964bf519907
7
+ data.tar.gz: c5c51dfb0801b7ccb17e1684bc02e70e25f620fde75294cf095af6094f0b245b2fe70fadc14fdf3ef7274ce5739ac3737c59aa64f5aa8ae2c8237621008754ed
data/_config.yml CHANGED
@@ -102,6 +102,9 @@ cclicense: true
102
102
  # cnzz: 1234567891
103
103
  cnzz:
104
104
 
105
+ # Busuanzi Analytics
106
+ busuanzi: true
107
+
105
108
  # Google Analytics
106
109
  # google_analytics: UA-XXXXXXXXX-X
107
110
  google_analytics:
@@ -113,8 +116,16 @@ google_search:
113
116
  recommend-tags: true # whether or not display recommend-tags on the sidebar
114
117
  recommend-condition-size: 12 # a tag will be recommended if the size of it is more than this value
115
118
 
119
+ # paginate
120
+ # pagination:
121
+ # enabled: true
122
+ # per_page: 2
123
+ # permalink: "blog/page:num"
124
+ # sort_field: "keep_on"
125
+ # sort_reverse: true
126
+
116
127
  # Build settings
117
- paginate: 10
128
+ paginate: 2
118
129
  paginate_path: 'blog/page:num'
119
130
  exclude: ['node_modules', 'dev', 'package.json', 'gulpfile.js', '.gitignore', 'README.md', '*.gemspec', '*.gem']
120
131
 
@@ -123,6 +134,9 @@ markdown: kramdown
123
134
  highlighter: rouge
124
135
  kramdown:
125
136
  input: GFM
137
+ prism:
138
+ theme:
139
+ line_numbers: true
126
140
 
127
141
  # RSS
128
142
  RSS: true
@@ -18,7 +18,31 @@
18
18
  <script type="text/javascript">document.write(unescape("%3Cspan id='cnzz_stat_icon_{{ site.cnzz }}'%3E%3C/span%3E%3Cscript src='https://v1.cnzz.com/z_stat.php%3Fid%3D{{ site.cnzz }}%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
19
19
  {% endif %}
20
20
  </section>
21
+ {% if site.busuanzi %}
22
+ <section>
23
+ <span id="busuanzi_container_site_pv">
24
+ 👁️ Total Views <span id="busuanzi_value_site_pv"></span> <b>·</b>
25
+ </span>
26
+ <span id="busuanzi_container_site_uv">
27
+ 👤 Total Visitors <span id="busuanzi_value_site_uv"></span>
28
+ </span>
29
+ </section>
30
+ {% endif %}
21
31
  </footer>
32
+ <button id="list" aria-label="Scroll back to top" class="mobile-list" type="button">
33
+ <svg class="icon list day" aria-hidden="true">
34
+ <use xlink:href="#icon-list-day"></use>
35
+ </svg>
36
+ <svg class="icon list night" aria-hidden="true">
37
+ <use xlink:href="#icon-list-night"></use>
38
+ </svg>
39
+ <svg class="icon exit day" aria-hidden="true">
40
+ <use xlink:href="#icon-exit-day"></use>
41
+ </svg>
42
+ <svg class="icon exit night" aria-hidden="true">
43
+ <use xlink:href="#icon-exit-night"></use>
44
+ </svg>
45
+ </button>
22
46
  <button id="bttb" aria-label="Scroll back to top" class="bttb" type="button">
23
47
  <svg class="icon up day" aria-hidden="true">
24
48
  <use xlink:href="#icon-up-day"></use>
data/_includes/head.html CHANGED
@@ -22,9 +22,17 @@
22
22
  <link rel="Shortcut Icon" href="{{ site.favicon | prepend: site.baseurl }}">
23
23
  <link rel="icon" href="{{ site.favicon | prepend: site.baseurl }}" type="image/x-icon" />
24
24
  <link rel="bookmark" href="{{ site.favicon | prepend: site.baseurl }}" type="image/x-icon" />
25
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.min.css">
25
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.min.css" async>
26
26
  <link rel="stylesheet" href="{{ "/assets/css/plugins.min.css" | prepend: site.baseurl }}">
27
27
  <link rel="preload" href="{{ "/assets/fonts/Merriweather-Regular.ttf" | prepend: site.baseurl }}" as="font" crossorigin="anonymous">
28
+ {% if site.prism.theme %}
29
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/themes/prism-{{site.prism.theme}}.min.css">
30
+ {% else %}
31
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/themes/prism.min.css">
32
+ {% endif %}
33
+ {% if site.prism.line_numbers %}
34
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/plugins/line-numbers/prism-line-numbers.min.css">
35
+ {% endif %}
28
36
  <link rel="stylesheet" href="{{ "/assets/css/app.min.css" | prepend: site.baseurl }}">
29
37
  <script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
30
38
  </head>
@@ -22,11 +22,20 @@
22
22
  <link rel="Shortcut Icon" href="{{ site.favicon | prepend: site.baseurl }}">
23
23
  <link rel="icon" href="{{ site.favicon | prepend: site.baseurl }}" type="image/x-icon" />
24
24
  <link rel="bookmark" href="{{ site.favicon | prepend: site.baseurl }}" type="image/x-icon" />
25
- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/normalize.min.css">
26
- <link rel="stylesheet" href="{{ "/assets/css/plugins.min.css" | prepend: site.baseurl }}">
27
- <link rel="preload" href="{{ "/assets/fonts/Merriweather-Regular.ttf" | prepend: site.baseurl }}" as="font" crossorigin="anonymous">
25
+ <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/normalize.min.css" />
26
+ <link rel="stylesheet" href="{{ "/assets/css/plugins.min.css" | prepend: site.baseurl }}" />
27
+ <link rel="preload" href="{{ "/assets/fonts/Merriweather-Regular.ttf" | prepend: site.baseurl }}" as="font" crossorigin="anonymous" />
28
+ <link rel="stylesheet" href="{{ "/assets/fonts/Merriweather-Regular.ttf" | prepend: site.baseurl }}" media="print" onload="this.media='all'" />
29
+ {% if site.prism.theme %}
30
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/themes/prism-{{site.prism.theme}}.min.css" />
31
+ {% else %}
32
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/themes/prism.min.css" />
33
+ {% endif %}
34
+ {% if site.prism.line_numbers %}
35
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/plugins/line-numbers/prism-line-numbers.min.css">
36
+ {% endif %}
28
37
  <link rel="stylesheet" href="{{ "/assets/css/app.min.css" | prepend: site.baseurl }}">
29
38
  <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.min.css" />
30
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@waline/client/dist/waline.css">
39
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@waline/client/dist/waline.css" />
31
40
  <script src="//cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
32
41
  </head>
data/_layouts/blog.html CHANGED
@@ -17,7 +17,55 @@ description: 或许是最漂亮的Jekyll主题
17
17
 
18
18
  <main class="g-container home-content">
19
19
  <div class="article-list">
20
+
21
+
22
+ {% for post in paginator.posts %}
23
+ {% if post.keep_top %}
24
+ <article class="article-item keep-top">
25
+ {% if post.cover %}
26
+ <div class="post-cover">
27
+ <a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}"></a>
28
+ <img src="{{ post.cover | relative_url }}" href="{{ post.url | relative_url }}" alt="">
29
+ </div>
30
+ {% endif %}
31
+ <section class="post-preview">
32
+ <a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}"></a>
33
+ <h2 class="post-title"> <span class="keep-top">[置顶]</span> {{ post.title }}</h2>
34
+ {% if post.subtitle %}
35
+ <h3 class="post-subtitle">{{ post.subtitle }}</h3>
36
+ {% endif %}
37
+ {% if post.subtitle.size==0 or post.subtitle==nil %}
38
+ <p class="post-excerpt">{{ post.excerpt | strip_html | strip_newlines | truncate: 126}}</p>
39
+ {% endif %}
40
+ </section>
41
+ <footer class="post-meta">
42
+ <div class="post-tags">
43
+ {% if post.tags.size > 0 %}
44
+ {% for tag in post.tags %}
45
+ <a href={{ "/tags.html#" | append: tag | relative_url }} class="post-tag">{{ tag }}</a>
46
+ {% endfor %}
47
+ {% endif %}
48
+ </div>
49
+ <time class="post-date" datetime="{{ post.date | date:"%y-%m-%d" }}">
50
+ <svg class="icon" aria-hidden="true">
51
+ <use xlink:href="#icon-time2"></use>
52
+ </svg>
53
+ {% case site.formats.time %}
54
+ {% when 0 %}
55
+ {{ post.date | date: "%Y-%m-%d" }}
56
+ {% when 1 %}
57
+ {{ post.date | date_to_string }}
58
+ {% else %}
59
+ {{ post.date | date: "%Y年%-m月%-d日" }}
60
+ {% endcase %}
61
+ </time>
62
+ </footer>
63
+ </article>
64
+ {% endif %}
65
+ {% endfor %}
66
+
20
67
  {% for post in paginator.posts %}
68
+ {% unless post.keep_top %}
21
69
  <article class="article-item">
22
70
  {% if post.cover %}
23
71
  <div class="post-cover">
@@ -58,6 +106,8 @@ description: 或许是最漂亮的Jekyll主题
58
106
  </time>
59
107
  </footer>
60
108
  </article>
109
+ {% endunless %}
110
+
61
111
  {% endfor %}
62
112
 
63
113
  {% if paginator.total_pages > 1 %}
@@ -1,7 +1,13 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="{{site.language}}">
3
3
  {% include head.html %}
4
+
5
+ {% if site.prism.line_numbers %}
6
+ <body class="line-numbers" ontouchstart="">
7
+ {% else %}
4
8
  <body ontouchstart="">
9
+ {% endif %}
10
+
5
11
  <!--[if lt IE 10]>
6
12
  <div class="alert-danger" role="alert">你的浏览器实在太太太旧了,放学别走,升级完浏览器再说!<a target="_blank" class="alert-link" href="http://browsehappy.com">立即升级</a></div>
7
13
  <![endif]-->
@@ -18,9 +24,13 @@
18
24
 
19
25
  <script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
20
26
  <script src="https://cdn.jsdelivr.net/npm/clipboard/dist/clipboard.min.js"></script>
21
- <script src="{{ "/assets/js/prism.js" | prepend: site.baseurl }}"></script>
27
+ <script src="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/components/prism-core.min.js"></script>
28
+ <script src="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/plugins/autoloader/prism-autoloader.min.js"></script>
22
29
  <script src="{{ "/assets/js/index.min.js" | prepend: site.baseurl }}"></script>
23
- <script src="https://at.alicdn.com/t/font_3046306_rpxw9us9jmc.js"></script>
30
+ <script src="https://at.alicdn.com/t/font_3046306_5ex1jlxzv93.js"></script>
31
+ {% if site.busuanzi %}
32
+ <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
33
+ {% endif %}
24
34
  {% include analytics.html %}
25
35
  {% include pwa.html %}
26
36
  {% if site.mathjax %}
data/_layouts/post.html CHANGED
@@ -6,14 +6,19 @@
6
6
  {% endif %}
7
7
  {% include post-head.html %}
8
8
 
9
- <body>
9
+ {% if site.prism.line_numbers %}
10
+ <body class="line-numbers" ontouchstart="">
11
+ {% else %}
12
+ <body ontouchstart="">
13
+ {% endif %}
14
+
10
15
  <!--[if lt IE 10]>
11
16
  <div class="alert-danger" role="alert">你的浏览器实在太太太旧了,放学别走,升级完浏览器再说!<a target="_blank" class="alert-link" href="http://browsehappy.com">立即升级</a></div>
12
17
  <![endif]-->
13
18
  {% if site.gray %}
14
- <div id=all class="gray">
19
+ <div id=all class="post gray">
15
20
  {% else %}
16
- <div id="all">
21
+ <div id="all" class="post">
17
22
  {% endif %}
18
23
  <input id="nm-switch" type="hidden" value="{{ site.nightMode }}"> {% include header.html %}
19
24
 
@@ -39,7 +44,7 @@
39
44
  </span>
40
45
  <time class="post-meta-item" datetime="{{ page.date | date:"%y-%m-%d" }}">
41
46
  <svg class="icon" aria-hidden="true">
42
- <use xlink:href="#icon-time"></use>
47
+ <use xlink:href="#icon-calendar"></use>
43
48
  </svg>
44
49
  {% case site.formats.time %}
45
50
  {% when 0 %}
@@ -52,16 +57,46 @@
52
57
  </time>
53
58
  {% if site.language == 'zh-cn' %}
54
59
  <span class="post-meta-item">
55
- <svg class="icon info2" aria-hidden="true">
56
- <use xlink:href="#icon-info2"></use>
60
+ <svg class="icon words" aria-hidden="true">
61
+ <use xlink:href="#icon-words"></use>
62
+ </svg>
63
+ 本文总共 {{ page.content | strip_html | strip_newlines | remove: " " | size }} 字
64
+ </span>
65
+ <span class="post-meta-item">
66
+ <svg class="icon time" aria-hidden="true">
67
+ <use xlink:href="#icon-time"></use>
68
+ </svg>
69
+ 阅读全文大约需要 {{ page.content | strip_html | strip_newlines | remove: " " | size | divided_by: 350 | plus: 1 }} 分钟
70
+ </span>
71
+ {% if site.busuanzi %}
72
+ <span class="post-meta-item">
73
+ <svg class="icon pv" aria-hidden="true">
74
+ <use xlink:href="#icon-pv"></use>
57
75
  </svg>
58
- 本文总共 {{ page.content | strip_html | strip_newlines | remove: " " | size }} 字 <b>·</b> 阅读全文大约需要 {{ page.content | strip_html | strip_newlines | remove: " " | size | divided_by: 350 | plus: 1 }} 分钟</span>
76
+ 本文总阅读量 <span id="busuanzi_value_page_pv"></span>
77
+ </span>
78
+ {% endif %}
59
79
  {% else %}
60
80
  <span class="post-meta-item">
61
- <svg class="icon" aria-hidden="true">
62
- <use xlink:href="#icon-info2"></use>
81
+ <svg class="icon words" aria-hidden="true">
82
+ <use xlink:href="#icon-words"></use>
83
+ </svg>
84
+ There are {{ page.content | strip_html | strip_newlines | remove: " " | size }} words totally
85
+ </span>
86
+ <span class="post-meta-item">
87
+ <svg class="icon time" aria-hidden="true">
88
+ <use xlink:href="#icon-time"></use>
89
+ </svg>
90
+ It may needs {{ page.content | strip_html | strip_newlines | remove: " " | size | divided_by: 350 | plus: 1 }} minutes
91
+ </span>
92
+ {% if site.busuanzi %}
93
+ <span class="post-meta-item">
94
+ <svg class="icon pv" aria-hidden="true">
95
+ <use xlink:href="#icon-pv"></use>
63
96
  </svg>
64
- There are {{ page.content | strip_html | strip_newlines | remove: " " | size }} words totally <b>·</b> It may needs {{ page.content | strip_html | strip_newlines | remove: " " | size | divided_by: 350 | plus: 1 }} minutes</span>
97
+ Total pageviews <span id="busuanzi_value_page_pv"></span>
98
+ </span>
99
+ {% endif %}
65
100
  {% endif %}
66
101
  </div>
67
102
  </div>
@@ -204,7 +239,9 @@
204
239
  </script>
205
240
  {% endif %}
206
241
 
207
- <script src="{{ "/assets/js/prism.js" | relative_url }}"></script>
242
+ <script src="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/components/prism-core.min.js"></script>
243
+ <script src="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/plugins/autoloader/prism-autoloader.min.js"></script>
244
+ <script src="https://cdn.jsdelivr.net/npm/prismjs@1.28.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
208
245
  <script src="{{ "/assets/js/index.min.js" | relative_url }}"></script>
209
246
  <script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.min.js"></script>
210
247
  <script src="https://cdn.jsdelivr.net/npm/clipboard/dist/clipboard.min.js"></script>
@@ -212,17 +249,12 @@
212
249
  <script src="https://cdn.jsdelivr.net/npm/@waline/client/dist/waline.js"></script>
213
250
  {% endif %}
214
251
  <script src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js" async></script>
215
- <!-- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
216
- <script src="https://cdn.jsdelivr.net/npm/tippy.js@6.3.7/dist/tippy.cjs.min.js"></script>
217
- <script src="https://cdn.jsdelivr.net/npm/tippy.js@6.3.7/dist/tippy-bundle.umd.min.js.map"></script> -->
218
- <!-- <!-- <script src="https://unpkg.com/@popperjs/core@2"></script> -->
219
- <!-- <script src="https://unpkg.com/tippy.js@6"></script> -->
220
-
221
252
  <script>
222
253
  // 给图片添加链接
223
254
  $(document).ready(function() {
255
+ var baseurl = $("meta[property='og:baseurl']").attr('content');
224
256
  $("p img").each(function() {
225
- $(this).attr('data-src', $(this).attr('src')).removeAttr('src').addClass("lazyload");
257
+ $(this).attr('data-src', $(this).attr('src')).removeAttr('src').addClass("lazyload").attr('src', baseurl + '/assets/img/loading.gif');
226
258
  var strA = "<a data-fancybox='gallery' ref='gallery' href='" + $(this).attr('data-src') + "' data-caption='" + $(this).attr('alt') + "'></a>";
227
259
  $(this).wrapAll(strA);
228
260
  });
@@ -250,7 +282,10 @@
250
282
 
251
283
  });
252
284
  </script>
253
- <script src="https://at.alicdn.com/t/font_3046306_rpxw9us9jmc.js"></script>
285
+ <script src="https://at.alicdn.com/t/font_3046306_5ex1jlxzv93.js"></script>
286
+ {% if site.busuanzi %}
287
+ <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
288
+ {% endif %}
254
289
  {% include analytics.html %}
255
290
  {% include pwa.html %}
256
291
  {% if site.mathjax %}
@@ -1 +1 @@
1
- @charset "UTF-8";@font-face{font-family:Merriweather;src:url(../fonts/Merriweather-Regular.ttf);font-display:swap}@font-face{font-family:Merriweather-Light;src:url(../fonts/Merriweather-Light.ttf);font-display:swap}body,html{height:100%}audio,body,caption,div,footer,form,h1,h2,h3,h4,h5,h6,header,html,iframe,label,legend,li,main,mark,menu,nav,ol,p,section,span,summary,table,textarea,time,ul,video{padding:0;margin:0;border:0;outline:0 none}body{font-family:-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%)}.g-container{width:960px}.g-header{position:fixed;top:0;left:0;width:100%;height:50px;padding:16px 0;background-color:transparent;transition:all .6s;z-index:1000}.g-header .g-logo{float:left;margin-left:2%;width:50px;height:50px;transition:all .2s}.g-header .g-logo:hover{opacity:1}.g-header .g-logo a{display:block;width:100%;height:100%}.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:18px;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.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>ul>li.mode:hover{background-color:#81bbff;border-radius:50%}.g-header .nav-default a:hover{color:#1494fb!important}.g-header .nav-default .mode{background-color:#1b7eff;border-radius:50%}.g-header .nav-pink a:hover{color:#fc6794!important}.headerUp{top:-82px}.headerDown{top:0}.g-banner{height:460px;background-color:#2f3139;color:#fff;padding:0 60px}.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:'Microsoft YaHei',Arial,'Hiragino Sans GB','WenQuanYi Micro Hei',sans-serif;font-weight:700;line-height:52px}.home-banner h3{font-size:20px;font-weight:400;margin-top:8px}.banner-theme-default{background:-webkit-linear-gradient(0deg,#3cd5ff,#007aff);background:-o-linear-gradient(0deg,#3cd5ff,#007aff);background:-moz-linear-gradient(0deg,#3cd5ff,#007aff);background:linear-gradient(100deg,#3cd5ff,#007aff)}.banner-theme-pink{background:-webkit-linear-gradient(0deg,#ffce69,#fa709a);background:-o-linear-gradient(0deg,#ffce69,#fa709a);background:-moz-linear-gradient(0deg,#ffce69,#fa709a);background:linear-gradient(100deg,#ffce69,#fa709a)}.themeColor-default{background-color:#1494fb}.themeColor-pink{background-color:#fc6794}.home-content{margin:40px auto 60px}.home-content:after,.home-content:before{content:'';display:table}.home-content:after{clear:both}.article-list{float:left;width:695px}.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:Merriweather,-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-subtitle{margin-top:3px;font-size:18px;font-weight:400;color:#585858;line-height:26px}.article-list .article-item .post-preview .post-excerpt{margin-top:8px;font-size:16px;font-family:Merriweather,-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:inline-block}.article-list .article-item .post-meta .post-tags{float:left;display:inline-block;width:515px}.article-list .article-item .post-meta .post-date{float:right;color:#585858;display:inline-block;font-size:14px;letter-spacing:.6px;line-height:22px}.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 .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:-.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:22px;padding:0 8px;font-size:14px;color:#656565;font-family:-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;line-height:22px;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border-radius:2px;background-color:#fafafa;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}.article-item .post-meta .post-tag:hover,.tags-card .tag:hover,.tags-content .tag:hover{color:#1494fb!important}.tags-card .links{width:100%;font-size:16px;color:#4e4e4e;font-weight:500;margin:12px 0 6px;text-align:center}.g-sidebar-wrapper{float:right;width:240px}.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:30px 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}.search-card{position:relative;margin-top:16px;padding:0}.search-card .search_item,.search-card input{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:0;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;color:#cad3dc;z-index:1;width:20px;height:20px;vertical-align:-.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{display:inline-block;float:left}.g-footer{min-height:40px;padding:20px 0;border-top:1px solid #e7eaf1;text-align:center}.g-footer section{font-size:14px;line-height:20px;color:#4e4e4e}.g-footer section a{color:#4e4e4e}.g-footer section a:hover{color:#83888f}.g-footer section a .license{border-width:0;margin-bottom:-3px;width:80px;height:15px}.author-detail,.markdown-body,.post-header,.post-wrapper,.social-share-wrapper{margin:0 auto}.post-wrapper{width:720px}.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:22px;padding:0 8px;font-size:14px;color:#656565;font-family:-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;line-height:22px;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border-radius:2px;background-color:#fafafa;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{color:#1494fb!important}.post-header .post-tags .post-tag:hover{color:#fff;background-color:rgba(255,255,255,.4)}.post-header .post-meta{margin-top:32px}.post-header .post-meta .post-meta-item{display:inline-block;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}.post-header .post-meta .post-meta-item .icon{width:18px;height:18px;margin-bottom:-3px}.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}.bgcolor-default{background-color:#1494fb}.bgcolor-pink{background-color:#fc6794}.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='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.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' fill='%23f8f6fb' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-overlappingCircles{background-image:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M50 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' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-food{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M24.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'/%3E%3Cpath id='path6_fill-copy' d='M284.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'/%3E%3Cpath d='M159.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'/%3E%3Cpath d='M39 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'/%3E%3Cpath d='M129 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'/%3E%3Cpath d='M212 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'/%3E%3Cpath d='M-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'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-glamorous{background-image:url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-ticTacToe{background-image:url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-seaOfClouds{background-image:url("data:image/svg+xml,%3Csvg width='56' height='28' viewBox='0 0 56 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M56 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-content{position:relative;width:100%;background-color:#fff;overflow:visible;padding:40px 0 80px}.post-content .post-subtitle{position:relative;width:720px;font-size:18px;color:#585858;font-weight:400;line-height:28px;text-align:center;padding:35px 0;margin:0 auto 40px;box-sizing:border-box}.post-content .post-subtitle:after,.post-content .post-subtitle:before{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:1050px;margin:0 auto;display:flex;flex-direction:row}.post-content .container .contents{width:720px}.post-content .container .table-of-contents{padding:10px;border-left:2px solid #efefef;width:280px;position:-webkit-sticky;position:sticky;top:80px;margin-bottom:80px;height:fit-content;margin-left:30px}.post-content .container .table-of-contents h2{font-family:fantasy;color:#e32e00}.post-content .container .table-of-contents ul{margin-left:20px;list-style-type:revert;font-size:14px;line-height:24px;color:#005b81}.post-content .container .table-of-contents ul a{color:#005b81}.post-content .container .table-of-contents ul a:hover{color:#e32e00;text-decoration:underline}.post-content .container .table-of-contents ul a.active{color:#e32e00}.post-content .interest{width:auto;height:40px;display:inline-block!important;margin:0 20px 0 0!important}.markdown-body{font-family:Merriweather,-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;width:720px;box-sizing:border-box;padding:0 0 32px}.markdown-body .highlight{margin:0 0 16px}.markdown-body img{transition:.3s;width:100%;height:100%}.markdown-body ol li p,.markdown-body ul li p{margin:0}.markdown-body ol li p:first-child,.markdown-body ul li p:first-child{margin-bottom:0}.markdown-body .copy-container{position:relative}.markdown-body .copy-container .btn{position:absolute;top:0;right:0;padding:2px 2px;border:none;cursor:pointer;height:28px;background-color:#ebedf0}.markdown-body .copy-container .btn .icon{width:24px;height:24px}.markdown-body .copy-container .btn .tooltip{font-family:-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:transparent #dadde1 #dadde1 transparent;transform:rotate(45deg);clip-path:polygon(145% -50%,150% 150%,-50% 145%)}.markdown-body .copy-container .btn .tooltip.active{display:inline-block}.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:720px}.author-detail{position:relative;top:-35px}.author-detail .comment{margin-bottom:60px}.read-next{display:flex;width:720px;margin:60px auto}.read-next-item{position:relative;flex:1;height:260px;padding:0;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-right:10px}.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:700;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%;-webkit-filter:blur(6px);z-index:0}.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}.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}.tags-list li .tag-post:hover{color:#000}.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:400;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}.night-mode{background-color:#282c33}.night-mode .g-banner{background-color:#282c33;color:#c8cdd3}.night-mode .post-header .filter{opacity:.6}.night-mode .article-item,.night-mode .article-item .post-tag,.night-mode .g-sidebar,.night-mode .page-links,.night-mode .search-card input,.night-mode .search_item,.night-mode .search_result,.night-mode .tags-card .tag,.night-mode .tags-list .tag,.night-mode .tags-list li{color:#aaa;background-color:#2d313a;border-color:rgba(255,255,255,.1);box-shadow:none}.night-mode .article-item .post-cover img{-webkit-filter:brightness(.6)}.night-mode .article-item .post-preview .post-excerpt,.night-mode .article-item .post-preview .post-subtitle,.night-mode .article-item .post-preview .post-title{color:#aaa}.night-mode .article-item .post-meta .post-date,.night-mode .article-item .post-meta .post-tags{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 .avatar img{-webkit-filter:brightness(.6)}.night-mode .author-name,.night-mode .bio{color:#aaa}.night-mode .search_result .search_item:last-child{border-color:rgba(255,255,255,.1)}.night-mode .search_result .search_item:hover{background-color:transparent;color:#fff}.night-mode .article-item .post-tag,.night-mode .tags-card .tag{background-color:#565656;color:#fff}.night-mode .tags-card .links{color:#d3d3d3}.night-mode .tags-list li .tag-name,.night-mode .tags-list li .tag-post{color:#aaa}.night-mode .g-footer{border-color:rgba(255,255,255,.1)}.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 .post-content{background-color:#282c33}.night-mode .post-content .post-subtitle:after,.night-mode .post-content .post-subtitle:before{background-color:#575b63}.night-mode .markdown-body{color:#aaa}.night-mode .markdown-body img{-webkit-filter:brightness(.6)}.night-mode .markdown-body blockquote{border-left-color:#555a61}.night-mode .markdown-body code{text-shadow:none!important}.night-mode .markdown-body a{color:#58ceff}.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:#2d313a}.night-mode .language-css .token.string,.night-mode .style .token.string,.night-mode .token.entity,.night-mode .token.operator,.night-mode .token.punctuation,.night-mode .token.url,.night-mode .token.variable,.night-mode code[class*=language-],.night-mode pre[class*=language-]{color:#8f97a7}.night-mode .token.atrule,.night-mode .token.attr-value,.night-mode .token.function{color:#a9a054}.night-mode .token.attr-name,.night-mode .token.builtin,.night-mode .token.char,.night-mode .token.inserted,.night-mode .token.selector,.night-mode .token.string{color:#84ac35}.night-mode .token.constant,.night-mode .token.deleted,.night-mode .token.property,.night-mode .token.symbol,.night-mode .token.tag{color:#d75885}.night-mode .token.keyword{color:#61bdcf}.night-mode .bttb{background-color:#444950}.night-mode .wl-panel{background-color:#282c34}.night-mode .wl-panel label{color:#666}.night-mode .wl-editor:focus,.night-mode .wl-input:focus{background:#252934}.night-mode .wl-card .wl-meta span{background:#272727;color:#666}.night-mode .wl-card .wl-content p{color:#888}.night-mode .archives-date{color:#eff0f0}.night-mode .year span{background-color:#fff}.archives-date{width:130px;display:inline-block;color:#222;opacity:.63}.archives-title{width:95%;display:inline-block;margin-bottom:0!important;margin-top:0!important}.markdown-body a{color:#005b81;text-decoration:none}.markdown-body a:hover{color:#e32e00;text-decoration:underline}.markdown-body p{font-size:16px}.markdown-body .table-area{overflow:auto}.markdown-body .table-area table{word-break:keep-all;word-wrap:break-word;text-overflow:ellipsis;white-space:nowrap}.bttb{background-color:#ebedf0;border-radius:50%;bottom:20.8px;box-shadow:1px 2px 0 rgba(0,0,0,.1);height:48px;opacity:0;position:fixed;right:20.8px;transform:scale(0);transition:all .2s cubic-bezier(.08,.52,.52,1);visibility:hidden;width:48px;z-index:100;border:none;cursor:pointer}.bttb.active{opacity:1;transform:scale(1);visibility:visible}.bttb .icon.up{width:16px;height:16px;display:none}.bttb .icon.up.active{display:inline-block}:root{--waline-theme-color:#81bbff!important;--waline-active-color:#1B7EFF!important}.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}.premonition.citation,.premonition.error,.premonition.info,.premonition.note,.premonition.warning{border-radius:6.4px;padding:10px 16px 1px 16px;margin-bottom:20px}.premonition.note{background-color:#d4deea;border-left:5px solid #045494;color:#045494}.premonition.note code{color:#045494!important}.premonition.info{background-color:#e6f6e6;border-left:5px solid #009400;color:#009400}.premonition.info code{color:#009400!important}.premonition.warning{background-color:#fcf8f2;border-left:5px solid #f0ad4e;color:#f0ad4e}.premonition.warning code{color:#f0ad4e!important}.premonition.error{background-color:#fdf7f7;border-left:5px solid #d9534f;color:#d9534f}.premonition.error code{color:#d9534f!important}.premonition.citation{background-color:#f8f9fa;border-left:5px solid #495057;color:#495057}.premonition.citation code{color:#495057!important}.premonition.citation .ref{text-align:right;margin-bottom:10px}.premonition .header{font-weight:700;line-height:17.5px;margin-bottom:10px}.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:#193c45}.night-mode .premonition.info{background-color:#1c4a1c}.night-mode .premonition.warning{background-color:#3d2d14}.night-mode .premonition.error{background-color:#3e1616}.night-mode .premonition.citation{background-color:#323940}.night-mode .premonition.citation code{color:#848e97!important}@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:960px){.g-container{width:auto}.article-list{float:none;margin:0 auto}.g-sidebar,.search-card{display:none}.pagination .page-num{display:none}.pagination .page-link{width:56px}}@media screen and (max-width:1050px){.post-content .container{width:100%}.post-content .container .contents{width:100%;float:none;margin:0 auto}.post-content .container .table-of-contents{display:none}}@media screen and (max-width:960px){.archives-date{display:none}.archives-title{width:290px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-bottom:-8px!important}}@media screen and (max-width:768px){.markdown-body,.post-wrapper,.read-next{width:92%}.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 #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;width:120px;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:700;color:#a5a8b0;opacity:1}.g-header .g-nav>ul>li.mode{display:none}.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}.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{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}}@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}.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;height:360px}.post-wrapper .post-tags{margin:100px 0 8px}.post-wrapper h1{font-family:"Helvetica Neue",Helvetica,Arial,"Pingfang SC","Microsoft Yahei",Sans-serif}.post-wrapper .post-meta{margin-top:16px}.post-content{padding-top:20px}.post-content .post-subtitle{padding:8px 0 24px;margin-bottom:32px}.post-content .post-subtitle:before{height: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:0 auto 16px}.markdown-body strong{font-weight:400}.markdown-body blockquote p{font-size:18px;letter-spacing:1px;color:#888;word-break:break-all}}@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){.bttb:hover{background-color:#dadde1}.markdown-body .btn:hover{background-color:#dadde1}.night-mode .bttb:hover{background-color:#606770}}
1
+ @charset "UTF-8";@font-face{font-family:Merriweather;src:url(../fonts/Merriweather-Regular.ttf);font-display:swap}@font-face{font-family:Merriweather-Light;src:url(../fonts/Merriweather-Light.ttf);font-display:swap}body,html{height:100%}audio,body,caption,div,footer,form,h1,h2,h3,h4,h5,h6,header,html,iframe,label,legend,li,main,mark,menu,nav,ol,p,section,span,summary,table,textarea,time,ul,video{padding:0;margin:0;border:0;outline:0 none}body{font-family:-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%)}.g-container{width:960px}.g-header{position:fixed;top:0;left:0;width:100%;height:50px;padding:16px 0;background-color:transparent;transition:all .6s;z-index:1000}.g-header .g-logo{float:left;margin-left:2%;width:50px;height:50px;transition:all .2s}.g-header .g-logo:hover{opacity:1}.g-header .g-logo a{display:block;width:100%;height:100%}.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:18px;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.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>ul>li.mode:hover{background-color:#81bbff;border-radius:50%}.g-header .nav-default a:hover{color:#1494fb!important}.g-header .nav-default .mode{background-color:#1b7eff;border-radius:50%}.g-header .nav-pink a:hover{color:#fc6794!important}.headerUp{top:-82px}.headerDown{top:0}.g-banner{height:460px;background-color:#2f3139;color:#fff;padding:0 60px}.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:"Microsoft YaHei",Arial,"Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;font-weight:700;line-height:52px}.home-banner h3{font-size:20px;font-weight:400;margin-top:8px}.banner-theme-default{background:-webkit-linear-gradient(0deg,#3cd5ff,#007aff);background:-o-linear-gradient(0deg,#3cd5ff,#007aff);background:-moz-linear-gradient(0deg,#3cd5ff,#007aff);background:linear-gradient(100deg,#3cd5ff,#007aff)}.banner-theme-pink{background:-webkit-linear-gradient(0deg,#ffce69,#fa709a);background:-o-linear-gradient(0deg,#ffce69,#fa709a);background:-moz-linear-gradient(0deg,#ffce69,#fa709a);background:linear-gradient(100deg,#ffce69,#fa709a)}.themeColor-default{background-color:#1494fb}.themeColor-pink{background-color:#fc6794}.home-content{margin:40px auto 60px}.home-content:after,.home-content:before{content:"";display:table}.home-content:after{clear:both}.article-list{float:left;width:695px}.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:Merriweather,-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 .keep-top{color:red}.article-list .article-item .post-preview .post-subtitle{margin-top:3px;font-size:18px;font-weight:400;color:#585858;line-height:26px}.article-list .article-item .post-preview .post-excerpt{margin-top:8px;font-size:16px;font-family:Merriweather,-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:inline-block}.article-list .article-item .post-meta .post-tags{float:left;display:inline-block;width:515px}.article-list .article-item .post-meta .post-date{float:right;color:#585858;display:inline-block;font-size:14px;letter-spacing:.6px;line-height:22px}.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 .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:-.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:22px;padding:0 8px;font-size:14px;color:#656565;font-family:-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;line-height:22px;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border-radius:2px;background-color:#fafafa;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}.article-item .post-meta .post-tag:hover,.tags-card .tag:hover,.tags-content .tag:hover{color:#1494fb!important}.tags-card .links{width:100%;font-size:16px;color:#4e4e4e;font-weight:500;margin:12px 0 6px;text-align:center}.g-sidebar-wrapper{float:right;width:240px}.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:30px 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}.search-card{position:relative;margin-top:16px;padding:0}.search-card .search_item,.search-card input{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:0;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;color:#cad3dc;z-index:1;width:20px;height:20px;vertical-align:-.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{display:inline-block;float:left}.g-footer{min-height:40px;padding:20px 0;border-top:1px solid #e7eaf1;text-align:center}.g-footer section{font-size:14px;line-height:20px;color:#4e4e4e}.g-footer section a{color:#4e4e4e}.g-footer section a:hover{color:#83888f}.g-footer section a .license{border-width:0;margin-bottom:-3px;width:80px;height:15px}.author-detail,.markdown-body,.post-header,.post-wrapper,.social-share-wrapper{margin:0 auto}.post-wrapper{width:720px}.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:22px;padding:0 8px;font-size:14px;color:#656565;font-family:-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;line-height:22px;box-sizing:border-box;box-shadow:0 0 .6px #d5dae1;border-radius:2px;background-color:#fafafa;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{color:#1494fb!important}.post-header .post-tags .post-tag:hover{color:#fff;background-color:rgba(255,255,255,.4)}.post-header .post-meta{margin-top:32px}.post-header .post-meta .post-meta-item{display:inline-block;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}.post-header .post-meta .post-meta-item .icon{width:18px;height:18px;margin-bottom:-3px}.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}.bgcolor-default{background-color:#1494fb}.bgcolor-pink{background-color:#fc6794}.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='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.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' fill='%23f8f6fb' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-overlappingCircles{background-image:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M50 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' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-food{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M24.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'/%3E%3Cpath id='path6_fill-copy' d='M284.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'/%3E%3Cpath d='M159.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'/%3E%3Cpath d='M39 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'/%3E%3Cpath d='M129 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'/%3E%3Cpath d='M212 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'/%3E%3Cpath d='M-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'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.post-pattern-glamorous{background-image:url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-ticTacToe{background-image:url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-pattern-seaOfClouds{background-image:url("data:image/svg+xml,%3Csvg width='56' height='28' viewBox='0 0 56 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M56 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E")}.post-content{position:relative;width:100%;background-color:#fff;overflow:visible;padding:40px 0 80px}.post-content .post-subtitle{position:relative;width:720px;font-size:18px;color:#585858;font-weight:400;line-height:28px;text-align:center;padding:35px 0;margin:0 auto 40px;box-sizing:border-box}.post-content .post-subtitle:after,.post-content .post-subtitle:before{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:1050px;margin:0 auto;display:flex;flex-direction:row}.post-content .container .contents{width:720px}.post-content .interest{width:auto;height:40px;display:inline-block!important;margin:0 20px 0 0!important}.markdown-body{font-family:Merriweather,-apple-system,Verdana,"PingFang SC","Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;width:720px;box-sizing:border-box;padding:0 0 32px}.markdown-body .highlight{margin:0 0 16px}.markdown-body img{transition:.3s;width:100%;height:100%}.markdown-body ol li p,.markdown-body ul li p{margin:0}.markdown-body ol li p:first-child,.markdown-body ul li p:first-child{margin-bottom:0}.markdown-body .copy-container{position:relative;background-color:#e2e2e2;height:28px}.markdown-body .copy-container .lang{line-height:28px;padding-left:10px;font-weight:700}.markdown-body .copy-container .btn{position:absolute;top:0;right:0;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:-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:transparent #dadde1 #dadde1 transparent;transform:rotate(45deg);clip-path:polygon(145% -50%,150% 150%,-50% 145%)}.markdown-body .copy-container .btn .tooltip.active{display:inline-block}.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:720px}.author-detail{position:relative;top:-35px}.author-detail .comment{margin-bottom:60px}.read-next{display:flex;width:720px;margin:60px auto}.read-next-item{position:relative;flex:1;height:260px;padding:0;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-right:10px}.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:700;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%;-webkit-filter:blur(6px);z-index:0}.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}.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}.tags-list li .tag-post:hover{color:#000}.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:400;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}.night-mode{background-color:#282c33}.night-mode .g-banner{background-color:#282c33;color:#c8cdd3}.night-mode .post-header .filter{opacity:.6}.night-mode .article-item,.night-mode .article-item .post-tag,.night-mode .g-sidebar,.night-mode .page-links,.night-mode .search-card input,.night-mode .search_item,.night-mode .search_result,.night-mode .tags-card .tag,.night-mode .tags-list .tag,.night-mode .tags-list li{color:#aaa;background-color:#2d313a;border-color:rgba(255,255,255,.1);box-shadow:none}.night-mode .article-item .post-cover img{-webkit-filter:brightness(.6)}.night-mode .article-item .post-preview .post-excerpt,.night-mode .article-item .post-preview .post-subtitle,.night-mode .article-item .post-preview .post-title{color:#aaa}.night-mode .article-item .post-meta .post-date,.night-mode .article-item .post-meta .post-tags{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 .avatar img{-webkit-filter:brightness(.6)}.night-mode .author-name,.night-mode .bio{color:#aaa}.night-mode .search_result .search_item:last-child{border-color:rgba(255,255,255,.1)}.night-mode .search_result .search_item:hover{background-color:transparent;color:#fff}.night-mode .article-item .post-tag,.night-mode .tags-card .tag{background-color:#565656;color:#fff}.night-mode .tags-card .links{color:#d3d3d3}.night-mode .tags-list li .tag-name,.night-mode .tags-list li .tag-post{color:#aaa}.night-mode .g-footer{border-color:rgba(255,255,255,.1)}.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 .post-content{background-color:#282c33}.night-mode .post-content .post-subtitle:after,.night-mode .post-content .post-subtitle:before{background-color:#575b63}.night-mode .markdown-body{color:#aaa}.night-mode .markdown-body img{-webkit-filter:brightness(.6)}.night-mode .markdown-body blockquote{border-left-color:#555a61}.night-mode .markdown-body code{text-shadow:none!important}.night-mode .markdown-body a{color:#58ceff}.night-mode .markdown-body .copy-container{background-color:#393939}.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:#2d313a}.night-mode .language-css .token.string,.night-mode .style .token.string,.night-mode .token.entity,.night-mode .token.operator,.night-mode .token.punctuation,.night-mode .token.url,.night-mode .token.variable,.night-mode code[class*=language-],.night-mode pre[class*=language-]{color:#8f97a7;background:0 0}.night-mode .token.atrule,.night-mode .token.attr-value,.night-mode .token.function{color:#a9a054}.night-mode .token.attr-name,.night-mode .token.builtin,.night-mode .token.char,.night-mode .token.inserted,.night-mode .token.selector,.night-mode .token.string{color:#84ac35}.night-mode .token.constant,.night-mode .token.deleted,.night-mode .token.property,.night-mode .token.symbol,.night-mode .token.tag{color:#d75885}.night-mode .token.keyword{color:#61bdcf}.night-mode .bttb,.night-mode .mobile-list{background-color:#444950}.night-mode .wl-panel{background-color:#282c34}.night-mode .wl-panel label{color:#666}.night-mode .wl-editor:focus,.night-mode .wl-input:focus{background:#252934}.night-mode .wl-card .wl-meta span{background:#272727;color:#666}.night-mode .wl-card .wl-content p{color:#888}.night-mode .archives-date{color:#eff0f0}.night-mode .year span{background-color:#fff}.archives-date{width:130px;display:inline-block;color:#222;opacity:.63}.archives-title{width:95%;display:inline-block;margin-bottom:0!important;margin-top:0!important}.markdown-body a{color:#005b81;text-decoration:none}.markdown-body a:hover{color:#e32e00;text-decoration:underline}.markdown-body p{font-size:16px}.markdown-body .table-area{overflow:auto}.markdown-body .table-area table{word-break:keep-all;word-wrap:break-word;text-overflow:ellipsis;white-space:nowrap}.mobile-list{position:fixed;right:20.8px;height:48px;bottom:75px;z-index:1000;width:48px;border:none;border-radius:50%;box-shadow:1px 2px 0 rgba(0,0,0,.1);cursor:pointer;visibility:hidden}.mobile-list .icon.exit,.mobile-list .icon.list{width:20px;height:20px;display:none}.mobile-list .icon.exit.active,.mobile-list .icon.list.active{display:inline-block}.bttb{background-color:#ebedf0;border-radius:50%;bottom:20.8px;box-shadow:1px 2px 0 rgba(0,0,0,.1);height:48px;opacity:0;position:fixed;right:20.8px;transform:scale(0);transition:all .2s cubic-bezier(.08,.52,.52,1);visibility:hidden;width:48px;z-index:1000;border:none;cursor:pointer}.bttb.active{opacity:1;transform:scale(1);visibility:visible}.bttb .icon.up{width:16px;height:16px;display:none}.bttb .icon.up.active{display:inline-block}:root{--waline-theme-color:#81bbff!important;--waline-active-color:#1B7EFF!important}.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}.table-of-contents{padding:10px;border-left:2px solid #efefef;width:280px;position:-webkit-sticky;position:sticky;top:80px;margin-bottom:80px;height:fit-content;margin-left:30px}.table-of-contents h2{font-family:fantasy;color:#e32e00}.table-of-contents ul{margin-left:20px;list-style-type:revert;font-size:14px;line-height:24px;color:#005b81}.table-of-contents ul a{color:#005b81}.table-of-contents ul a.active{color:#e32e00}#busuanzi_value_site_pv,#busuanzi_value_site_uv{color:brown}.premonition.citation,.premonition.error,.premonition.info,.premonition.note,.premonition.warning{border-radius:6.4px;padding:10px 16px 1px 16px;margin-bottom:20px}.premonition.note{background-color:#d4deea;border-left:5px solid #045494;color:#045494}.premonition.note code{color:#045494!important}.premonition.info{background-color:#e6f6e6;border-left:5px solid #009400;color:#009400}.premonition.info code{color:#009400!important}.premonition.warning{background-color:#fcf8f2;border-left:5px solid #f0ad4e;color:#f0ad4e}.premonition.warning code{color:#f0ad4e!important}.premonition.error{background-color:#fdf7f7;border-left:5px solid #d9534f;color:#d9534f}.premonition.error code{color:#d9534f!important}.premonition.citation{background-color:#f8f9fa;border-left:5px solid #495057;color:#495057}.premonition.citation code{color:#495057!important}.premonition.citation .ref{text-align:right;margin-bottom:10px}.premonition .header{font-weight:700;line-height:17.5px;margin-bottom:10px}.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:#193c45}.night-mode .premonition.info{background-color:#1c4a1c}.night-mode .premonition.warning{background-color:#3d2d14}.night-mode .premonition.error{background-color:#3e1616}.night-mode .premonition.citation{background-color:#323940}.night-mode .premonition.citation code{color:#848e97!important}@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:960px){.g-container{width:auto}.article-list{float:none;margin:0 auto}.g-sidebar,.search-card{display:none}.pagination .page-num{display:none}.pagination .page-link{width:56px}}@media screen and (max-width:1050px){.post-content .container{width:100%}.post-content .container .contents{width:100%;float:none;margin:0 auto}.table-of-contents{visibility:hidden;opacity:0;border-left:none;position:fixed;right:20.8px;top:auto;max-height:60%;bottom:127px;margin-left:0;max-width:95%;background-color:#f0f8ff;z-index:1000;overflow:scroll;margin-bottom:0;padding:25px}.table-of-contents.active{visibility:visible;opacity:1;transition:.5s}.post .mobile-list{visibility:visible}}@media screen and (max-width:960px){.archives-date{display:none}.archives-title{width:290px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-bottom:-8px!important}}@media screen and (max-width:768px){.markdown-body,.post-wrapper,.read-next{width:92%}.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 #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;width:120px;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:700;color:#a5a8b0;opacity:1}.g-header .g-nav>ul>li.mode{display:none}.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}.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{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}}@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}.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;height:360px}.post-wrapper .post-tags{margin:100px 0 8px}.post-wrapper h1{font-family:"Helvetica Neue",Helvetica,Arial,"Pingfang SC","Microsoft Yahei",Sans-serif}.post-wrapper .post-meta{margin-top:16px}.post-content{padding-top:20px}.post-content .post-subtitle{padding:8px 0 24px;margin-bottom:32px}.post-content .post-subtitle:before{height: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:0 auto 16px}.markdown-body strong{font-weight:400}.markdown-body blockquote p{font-size:18px;letter-spacing:1px;color:#888;word-break:break-all}}@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){.bttb:hover{background-color:#dadde1}.mobile-list:hover{background-color:#dadde1}.markdown-body .btn:hover{background-color:#dadde1}.night-mode .bttb:hover{background-color:#606770}.table-of-contents ul a:hover{color:#e32e00!important;text-decoration:underline}}
@@ -1 +1 @@
1
- code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}@font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format('woff')}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.5;color:#24292e;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .pl-c{color:#969896}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0086b3}.markdown-body .pl-e,.markdown-body .pl-en{color:#795da3}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#333}.markdown-body .pl-ent{color:#63a35c}.markdown-body .pl-k{color:#a71d5d}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#183691}.markdown-body .pl-smw,.markdown-body .pl-v{color:#ed6a43}.markdown-body .pl-bu{color:#b52a1d}.markdown-body .pl-ii{color:#f8f8f8;background-color:#b52a1d}.markdown-body .pl-c2{color:#f8f8f8;background-color:#b52a1d}.markdown-body .pl-c2::before{content:"^M"}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#63a35c}.markdown-body .pl-ml{color:#693a17}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#1d3e81}.markdown-body .pl-mq{color:teal}.markdown-body .pl-mi{font-style:italic;color:#333}.markdown-body .pl-mb{font-weight:700;color:#333}.markdown-body .pl-md{color:#bd2c00;background-color:#ffecec}.markdown-body .pl-mi1{color:#55a532;background-color:#eaffea}.markdown-body .pl-mc{color:#ef9700;background-color:#ffe3b4}.markdown-body .pl-mi2{color:#d8d8d8;background-color:grey}.markdown-body .pl-mdr{font-weight:700;color:#795da3}.markdown-body .pl-mo{color:#1d3e81}.markdown-body .pl-ba{color:#595e62}.markdown-body .pl-sg{color:silver}.markdown-body .pl-corl{text-decoration:underline;color:#183691}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor}.markdown-body a{background-color:transparent;-webkit-text-decoration-skip:objects}.markdown-body a:active,.markdown-body a:hover{outline-width:0}.markdown-body strong{font-weight:inherit}.markdown-body strong{font-weight:bolder}.markdown-body h1{font-size:2em;margin:.67em 0}.markdown-body img{display:block;border-style:none;margin:0 auto}.markdown-body img{display:block;margin:32px auto;max-width:100%;background-color:#fff;border-style:none;box-sizing:content-box}.markdown-body svg:not(:root){overflow:hidden}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em}.markdown-body hr{box-sizing:content-box;height:0;overflow:visible}.markdown-body input{font:inherit;margin:0}.markdown-body input{overflow:visible}.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.markdown-body *{box-sizing:border-box}.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body a{color:inherit;text-decoration:underline}.markdown-body strong{font-weight:600}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:0 0;border:0;border-bottom:1px solid #dfe2e5}.markdown-body hr::before{display:table;content:""}.markdown-body hr::after{display:table;clear:both;content:""}.markdown-body table{margin:32px auto;border-spacing:0;border-collapse:collapse;overflow:auto}.markdown-body td,.markdown-body th{padding:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1{margin-top:36px;font-size:28px;font-weight:600}.markdown-body h2{margin-top:28px;font-size:24px;font-weight:600}.markdown-body h3{font-size:20px;font-weight:600}.markdown-body h4{font-size:16px;font-weight:600}.markdown-body h5{font-size:14px;font-weight:600}.markdown-body h6{font-size:12px;font-weight:600}.markdown-body p{margin-bottom:16px;font-size:17px;line-height:1.8;text-align:justify}.markdown-body blockquote{margin:0}.markdown-body ul{list-style:disc}.markdown-body ul ul{list-style:circle}.markdown-body ol,.markdown-body ul{padding-left:0;margin-top:0;margin-bottom:0}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}li p:nth-child(2){margin-bottom:16px!important}.markdown-body dd{margin-left:0}.markdown-body .octicon{vertical-align:text-bottom}.markdown-body .pl-0{padding-left:0!important}.markdown-body .pl-1{padding-left:4px!important}.markdown-body .pl-2{padding-left:8px!important}.markdown-body .pl-3{padding-left:16px!important}.markdown-body .pl-4{padding-left:24px!important}.markdown-body .pl-5{padding-left:32px!important}.markdown-body .pl-6{padding-left:40px!important}.markdown-body::before{display:table;content:""}.markdown-body::after{display:table;clear:both;content:""}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:0}.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body pre,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1{font-size:2em}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:#6a737d}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body p code{padding:.2em .4em;margin:0;font-size:85%;font-family:SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace;background-color:rgba(27,31,35,.05);border-radius:3px}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#005cc5;border-color:#005cc5}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#0366d6}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item+.task-list-item{margin-top:3px}.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.markdown-body hr{border-bottom-color:#eee}@font-face{font-family:socialshare;src:url(../fonts/iconfont.eot);src:url(../fonts/iconfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iconfont.woff) format("woff"),url(../fonts/iconfont.ttf) format("truetype"),url(../fonts/iconfont.svg#iconfont) format("svg")}.social-share{font-family:socialshare!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-webkit-text-stroke-width:.2px;-moz-osx-font-smoothing:grayscale}.social-share *{font-family:socialshare!important}.social-share .icon-tencent:before{content:"\f07a"}.social-share .icon-qq:before{content:"\f11a"}.social-share .icon-weibo:before{content:"\f12a"}.social-share .icon-wechat:before{content:"\f09a"}.social-share .icon-douban:before{content:"\f10a"}.social-share .icon-heart:before{content:"\f20a"}.social-share .icon-like:before{content:"\f00a"}.social-share .icon-qzone:before{content:"\f08a"}.social-share .icon-linkedin:before{content:"\f01a"}.social-share .icon-diandian:before{content:"\f05a"}.social-share .icon-facebook:before{content:"\f03a"}.social-share .icon-google:before{content:"\f04a"}.social-share .icon-twitter:before{content:"\f06a"}.social-share a{position:relative;text-decoration:none;margin:4px;display:inline-block;outline:0}.social-share .social-share-icon{position:relative;display:inline-block;width:32px;height:32px;font-size:20px;border-radius:50%;line-height:32px;border:1px solid #666;color:#666;text-align:center;vertical-align:middle;transition:background .6s ease-out 0s}.social-share .social-share-icon:hover{background:#666;color:#fff}.social-share .icon-weibo{color:#ff763b;border-color:#ff763b}.social-share .icon-weibo:hover{background:#ff763b}.social-share .icon-tencent{color:#56b6e7;border-color:#56b6e7}.social-share .icon-tencent:hover{background:#56b6e7}.social-share .icon-qq{color:#56b6e7;border-color:#56b6e7}.social-share .icon-qq:hover{background:#56b6e7}.social-share .icon-qzone{color:#fdbe3d;border-color:#fdbe3d}.social-share .icon-qzone:hover{background:#fdbe3d}.social-share .icon-douban{color:#33b045;border-color:#33b045}.social-share .icon-douban:hover{background:#33b045}.social-share .icon-linkedin{color:#0077b5;border-color:#0077b5}.social-share .icon-linkedin:hover{background:#0077b5}.social-share .icon-facebook{color:#44619d;border-color:#44619d}.social-share .icon-facebook:hover{background:#44619d}.social-share .icon-google{color:#db4437;border-color:#db4437}.social-share .icon-google:hover{background:#db4437}.social-share .icon-twitter{color:#55acee;border-color:#55acee}.social-share .icon-twitter:hover{background:#55acee}.social-share .icon-diandian{color:#307dca;border-color:#307dca}.social-share .icon-diandian:hover{background:#307dca}.social-share .icon-wechat{position:relative;color:#7bc549;border-color:#7bc549}.social-share .icon-wechat:hover{background:#7bc549}.social-share .icon-wechat .wechat-qrcode{display:none;border:1px solid #eee;position:absolute;z-index:9;top:-205px;left:-84px;width:200px;height:192px;color:#666;font-size:12px;text-align:center;background-color:#fff;box-shadow:0 2px 10px #aaa;transition:all .2s;-webkit-tansition:all 350ms;-moz-transition:all 350ms}.social-share .icon-wechat .wechat-qrcode.bottom{top:40px;left:-84px}.social-share .icon-wechat .wechat-qrcode.bottom:after{display:none}.social-share .icon-wechat .wechat-qrcode h4{font-weight:400;height:26px;line-height:26px;font-size:12px;background-color:#f3f3f3;margin:0;padding:0;color:#777}.social-share .icon-wechat .wechat-qrcode .qrcode{width:105px;margin:10px auto}.social-share .icon-wechat .wechat-qrcode .qrcode table{margin:0!important}.social-share .icon-wechat .wechat-qrcode .help p{font-weight:400;line-height:16px;padding:0;margin:0}.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;bottom:-13px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color:#fff transparent transparent transparent}.social-share .icon-wechat:hover .wechat-qrcode{display:block}
1
+ @font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format('woff')}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.5;color:#24292e;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .pl-c{color:#969896}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0086b3}.markdown-body .pl-e,.markdown-body .pl-en{color:#795da3}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#333}.markdown-body .pl-ent{color:#63a35c}.markdown-body .pl-k{color:#a71d5d}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#183691}.markdown-body .pl-smw,.markdown-body .pl-v{color:#ed6a43}.markdown-body .pl-bu{color:#b52a1d}.markdown-body .pl-ii{color:#f8f8f8;background-color:#b52a1d}.markdown-body .pl-c2{color:#f8f8f8;background-color:#b52a1d}.markdown-body .pl-c2::before{content:"^M"}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#63a35c}.markdown-body .pl-ml{color:#693a17}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#1d3e81}.markdown-body .pl-mq{color:teal}.markdown-body .pl-mi{font-style:italic;color:#333}.markdown-body .pl-mb{font-weight:700;color:#333}.markdown-body .pl-md{color:#bd2c00;background-color:#ffecec}.markdown-body .pl-mi1{color:#55a532;background-color:#eaffea}.markdown-body .pl-mc{color:#ef9700;background-color:#ffe3b4}.markdown-body .pl-mi2{color:#d8d8d8;background-color:grey}.markdown-body .pl-mdr{font-weight:700;color:#795da3}.markdown-body .pl-mo{color:#1d3e81}.markdown-body .pl-ba{color:#595e62}.markdown-body .pl-sg{color:silver}.markdown-body .pl-corl{text-decoration:underline;color:#183691}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor}.markdown-body a{background-color:transparent;-webkit-text-decoration-skip:objects}.markdown-body a:active,.markdown-body a:hover{outline-width:0}.markdown-body strong{font-weight:inherit}.markdown-body strong{font-weight:bolder}.markdown-body h1{font-size:2em;margin:.67em 0}.markdown-body img{display:block;border-style:none;margin:0 auto}.markdown-body img{display:block;margin:32px auto;max-width:100%;background-color:#fff;border-style:none;box-sizing:content-box}.markdown-body svg:not(:root){overflow:hidden}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em}.markdown-body hr{box-sizing:content-box;height:0;overflow:visible}.markdown-body input{font:inherit;margin:0}.markdown-body input{overflow:visible}.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.markdown-body *{box-sizing:border-box}.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body a{color:inherit;text-decoration:underline}.markdown-body strong{font-weight:600}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:0 0;border:0;border-bottom:1px solid #dfe2e5}.markdown-body hr::before{display:table;content:""}.markdown-body hr::after{display:table;clear:both;content:""}.markdown-body table{margin:32px auto;border-spacing:0;border-collapse:collapse;overflow:auto}.markdown-body td,.markdown-body th{padding:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1{margin-top:36px;font-size:28px;font-weight:600}.markdown-body h2{margin-top:28px;font-size:24px;font-weight:600}.markdown-body h3{font-size:20px;font-weight:600}.markdown-body h4{font-size:16px;font-weight:600}.markdown-body h5{font-size:14px;font-weight:600}.markdown-body h6{font-size:12px;font-weight:600}.markdown-body p{margin-bottom:16px;font-size:17px;line-height:1.8;text-align:justify}.markdown-body blockquote{margin:0}.markdown-body ul{list-style:disc}.markdown-body ul ul{list-style:circle}.markdown-body ol,.markdown-body ul{padding-left:0;margin-top:0;margin-bottom:0}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}li p:nth-child(2){margin-bottom:16px!important}.markdown-body dd{margin-left:0}.markdown-body .octicon{vertical-align:text-bottom}.markdown-body .pl-0{padding-left:0!important}.markdown-body .pl-1{padding-left:4px!important}.markdown-body .pl-2{padding-left:8px!important}.markdown-body .pl-3{padding-left:16px!important}.markdown-body .pl-4{padding-left:24px!important}.markdown-body .pl-5{padding-left:32px!important}.markdown-body .pl-6{padding-left:40px!important}.markdown-body::before{display:table;content:""}.markdown-body::after{display:table;clear:both;content:""}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:0}.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body pre,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1{font-size:2em}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:#6a737d}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body p code{padding:.2em .4em;margin:0;font-size:85%;font-family:SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace;background-color:rgba(27,31,35,.05);border-radius:3px}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#005cc5;border-color:#005cc5}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#0366d6}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item+.task-list-item{margin-top:3px}.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.markdown-body hr{border-bottom-color:#eee}@font-face{font-family:socialshare;src:url(../fonts/iconfont.eot);src:url(../fonts/iconfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iconfont.woff) format("woff"),url(../fonts/iconfont.ttf) format("truetype"),url(../fonts/iconfont.svg#iconfont) format("svg")}.social-share{font-family:socialshare!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-webkit-text-stroke-width:.2px;-moz-osx-font-smoothing:grayscale}.social-share *{font-family:socialshare!important}.social-share .icon-tencent:before{content:"\f07a"}.social-share .icon-qq:before{content:"\f11a"}.social-share .icon-weibo:before{content:"\f12a"}.social-share .icon-wechat:before{content:"\f09a"}.social-share .icon-douban:before{content:"\f10a"}.social-share .icon-heart:before{content:"\f20a"}.social-share .icon-like:before{content:"\f00a"}.social-share .icon-qzone:before{content:"\f08a"}.social-share .icon-linkedin:before{content:"\f01a"}.social-share .icon-diandian:before{content:"\f05a"}.social-share .icon-facebook:before{content:"\f03a"}.social-share .icon-google:before{content:"\f04a"}.social-share .icon-twitter:before{content:"\f06a"}.social-share a{position:relative;text-decoration:none;margin:4px;display:inline-block;outline:0}.social-share .social-share-icon{position:relative;display:inline-block;width:32px;height:32px;font-size:20px;border-radius:50%;line-height:32px;border:1px solid #666;color:#666;text-align:center;vertical-align:middle;transition:background .6s ease-out 0s}.social-share .social-share-icon:hover{background:#666;color:#fff}.social-share .icon-weibo{color:#ff763b;border-color:#ff763b}.social-share .icon-weibo:hover{background:#ff763b}.social-share .icon-tencent{color:#56b6e7;border-color:#56b6e7}.social-share .icon-tencent:hover{background:#56b6e7}.social-share .icon-qq{color:#56b6e7;border-color:#56b6e7}.social-share .icon-qq:hover{background:#56b6e7}.social-share .icon-qzone{color:#fdbe3d;border-color:#fdbe3d}.social-share .icon-qzone:hover{background:#fdbe3d}.social-share .icon-douban{color:#33b045;border-color:#33b045}.social-share .icon-douban:hover{background:#33b045}.social-share .icon-linkedin{color:#0077b5;border-color:#0077b5}.social-share .icon-linkedin:hover{background:#0077b5}.social-share .icon-facebook{color:#44619d;border-color:#44619d}.social-share .icon-facebook:hover{background:#44619d}.social-share .icon-google{color:#db4437;border-color:#db4437}.social-share .icon-google:hover{background:#db4437}.social-share .icon-twitter{color:#55acee;border-color:#55acee}.social-share .icon-twitter:hover{background:#55acee}.social-share .icon-diandian{color:#307dca;border-color:#307dca}.social-share .icon-diandian:hover{background:#307dca}.social-share .icon-wechat{position:relative;color:#7bc549;border-color:#7bc549}.social-share .icon-wechat:hover{background:#7bc549}.social-share .icon-wechat .wechat-qrcode{display:none;border:1px solid #eee;position:absolute;z-index:9;top:-205px;left:-84px;width:200px;height:192px;color:#666;font-size:12px;text-align:center;background-color:#fff;box-shadow:0 2px 10px #aaa;transition:all .2s;-webkit-tansition:all 350ms;-moz-transition:all 350ms}.social-share .icon-wechat .wechat-qrcode.bottom{top:40px;left:-84px}.social-share .icon-wechat .wechat-qrcode.bottom:after{display:none}.social-share .icon-wechat .wechat-qrcode h4{font-weight:400;height:26px;line-height:26px;font-size:12px;background-color:#f3f3f3;margin:0;padding:0;color:#777}.social-share .icon-wechat .wechat-qrcode .qrcode{width:105px;margin:10px auto}.social-share .icon-wechat .wechat-qrcode .qrcode table{margin:0!important}.social-share .icon-wechat .wechat-qrcode .help p{font-weight:400;line-height:16px;padding:0;margin:0}.social-share .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;bottom:-13px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color:#fff transparent transparent transparent}.social-share .icon-wechat:hover .wechat-qrcode{display:block}
Binary file
Binary file
@@ -1 +1 @@
1
- $(document).ready(function(){document.body.addEventListener("touchstart",function(){},{passive:!0});var a,o,n,s,i=$(".g-nav"),c=$("meta[property='og:baseurl']").attr("content"),r=$(".g-logo"),l=$(".g-banner").attr("data-theme");function t(){var a,o,n,t=$("#search_input"),e=$(".search_result");t.focus(function(){$(".icon-search").css("color","#3199DB"),e.show()}),t.keyup((a=this.autoComplete,o=o||120,function(){var t=this,e=arguments;clearTimeout(n),n=setTimeout(function(){a.apply(t,e)},o)})),$(document).click(function(t){"search_input"!==t.target.id&&"search_result"!==t.target.className&&"search_item"!==t.target.className&&($(".icon-search").css("color","#CAD3DC"),e.hide())})}function e(){var t=$("article :header"),e=$(".table-of-contents").find("a"),a=$(window).scrollTop();0<a&&$(".g-header").addClass("headerUp");for(var o=0;o<t.length;o++)$(t[o]).offset().top-100<a&&($(e).removeClass("active"),$(e[o]).addClass("active"))}function d(t){for(var e=t+"=",a=document.cookie.split(";"),o=0;o<a.length;o++){var n=a[o].trim();if(0==n.indexOf(e))return n.substring(e.length,n.length)}return""}function g(t,e,a){var o=new Date;o.setTime(o.getTime()+24*a*60*60*1e3);o="expires="+o.toGMTString();document.cookie=c?t+"="+e+"; path="+c+"; "+o:t+"="+e+"; path=/; "+o}function h(){var t=d("mode");""==t||"day"==t?(g("mode","night",1),$("body").addClass("night-mode")):(g("mode","day",1),$("body").removeClass("night-mode")),$(".g-nav li.mode .icon").toggleClass("active"),$("#mode-toggle .icon").toggleClass("active"),$(".icon.up.day").toggleClass("active"),$(".icon.up.night").toggleClass("active")}r.css({background:"url("+c+"/assets/icons/"+l+".svg) no-repeat center","background-size":"100% 100%"}),$("table").wrap("<div class='table-area'></div>"),$("#menu-toggle").on("click",function(t){i.slideToggle(200),$(document).on("click",function(){i.slideUp(200)}),t.stopPropagation()}),i.on("click",function(t){t.stopPropagation()}),695<$(window).width()?(n=(o=$(".g-header")).outerHeight(),a=i.find("a"),s=$(document).scrollTop(),r=$(".g-logo"),l=$(".g-banner").attr("data-theme"),$(document).scroll(function(){var t=$(this).scrollTop(),e="nav-"+l;n<t?(3*n<t&&o.addClass("headerUp"),o.css({"background-color":"rgba(255, 255, 255, .98)","box-shadow":"0 1px 12px rgba(0, 0, 0, .08)"}),r.css({background:"url("+c+"/assets/icons/"+l+".svg) no-repeat center","background-size":"100% 100%"}),a.css("color","#666"),i.addClass(e)):(o.removeClass("headerUp"),$("#bttb").removeClass("active"),o.css({"background-color":"transparent","box-shadow":"none"}),r.css({background:"url("+c+"/assets/icons/"+l+".svg) no-repeat center","background-size":"100% 100%"}),a.css("color","#fff"),i.removeClass(e)),t<s?(o.addClass("headerDown"),o.hasClass("headerUp")&&$("#bttb").addClass("active")):(o.removeClass("headerDown"),$("#bttb").removeClass("active")),s=t})):(n=(o=$(".g-header")).outerHeight(),s=$(document).scrollTop(),$(document).scroll(function(){var t=$(this).scrollTop();t<100&&$("#bttb").removeClass("active"),t<s&&5<s?$("#bttb").addClass("active"):$("#bttb").removeClass("active"),s=t})),$(".bttb").bind("click",function(){$("html,body").animate({scrollTop:0},function(){$("#bttb").removeClass("active")})}),$(".read-next-item section").each(function(){var t=$(this).height(),e=$(".read-next-item").height();$(this).css("margin-top",(e-t)/2+"px"),$(this).fadeIn()}),$(".read-next-item img").each(function(){var t,e,a,o,n,s;t=$(this),e=$(".read-next-item"),a=t.width(),o=e.width(),n=t.height(),s=e.height(),n<s?(t.css({width:"auto",height:"100%"}),a=t.width(),o=e.width(),t.css("margin-left","-"+(a-o)/2+"px")):t.css("margin-top",(s-n)/2+"px"),t.fadeIn(),$(this).attr("data-src",$(this).attr("src")).removeAttr("src").addClass("lazyload")}),function(){for(var t=parseInt($("#total_pages").val()),e=parseInt($("#current_pages").val()),a=$("#base_url").val(),o="",n=e-3;n<e;n++)0<n&&1!==n?o+='<a href="'+a+"page"+n+'/index.html" class="page-link page-num">'+n+"</a>":1===n&&(o+='<a href="'+a+'" class="page-link page-num">'+n+"</a>");o+='<span class="page-link page-num active">'+e+"</span>";for(var s=e+1;s<=e+3;s++)s<=t&&(o+='<a href="'+a+"page"+s+'/index.html" class="page-link page-num">'+s+"</a>");$("#page-link-container").html(o)}(),t.prototype.autoComplete=function(){var i=this.value.toLowerCase();i.length?$(".icon-search").css("color","#3199DB"):$(".icon-search").css("color","#CAD3DC"),$.getJSON(c+"/assets/search.json").done(function(t){var e,a="";for(e in t){var o=t[e],n=o.title,s=o.tags;o.url;""!==i&&0<=(n+s).toLowerCase().indexOf(i)&&(a+='<a class="search_item" href="'+o.url+'">'+o.title+"</a>")}$(".search_result").html(a)})},new t,"true"===$("#nm-switch").val()&&function(){$("body");var t=(new Date).getHours(),e=d("mode");""==e&&(console.log(e),(t<=6||18<=t)&&(console.log("Start night mode"),g("mode","night",1)))}(),$(".post-content").on("mouseup",function(t){var e,a=window.getSelection();30<=a.toString().length&&(e=a,e+="\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: "+location.href,$(".post-content").on("copy",function(t){(window.clipboardData||t.originalEvent.clipboardData).setData("text/plain",e),t.preventDefault()}))}),e(),$(window).bind("scroll",e),"night"==d("mode")?($(".g-nav li.mode .night").addClass("active"),$("#mode-toggle .icon-night").addClass("active"),$("body").addClass("night-mode"),$(".icon.up.night").toggleClass("active")):($(".g-nav li.mode .day").addClass("active"),$("#mode-toggle .icon-day").addClass("active"),$("body").removeClass("night-mode"),$(".icon.up.day").toggleClass("active")),$(".g-nav li.mode").click(function(){h()}),$("#mode-toggle").click(function(){h()}),$("pre").each(function(t){t="codeblock"+(t+1);$(this).attr("id",t);t='<div class="copy-container"><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+t+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';$(this).before(t)}),new ClipboardJS(".btn").on("success",function(t){t.clearSelection()}),$(".markdown-body .btn").hover(function(){$(this).find(".tooltip.unfinish").addClass("active")},function(){$(this).find(".tooltip.unfinish").removeClass("active")}),$(".markdown-body .btn").click(function(){$(this).find(".tooltip.unfinish").removeClass("active");var t=$(this).find(".tooltip.finish");t.addClass("active"),setTimeout(function(){t.removeClass("active")},500)})});
1
+ $(document).ready(function(){document.body.addEventListener("touchstart",function(){},{passive:!0});var a,o,s,i,t,e,n=$(".g-nav"),c=$("meta[property='og:baseurl']").attr("content"),l=$(".g-logo"),r=$(".g-banner").attr("data-theme");function d(){$(".table-of-contents").toggleClass("active"),"night"==C("mode")?($(".mobile-list .icon.list.night").toggleClass("active"),$(".mobile-list .icon.exit.night").toggleClass("active")):($(".mobile-list .icon.list.day").toggleClass("active"),$(".mobile-list .icon.exit.day").toggleClass("active"))}l.css({background:"url("+c+"/assets/icons/"+r+".svg) no-repeat center","background-size":"100% 100%"}),$("table").wrap("<div class='table-area'></div>"),$("#menu-toggle").on("click",function(t){n.slideToggle(200),$(document).on("click",function(){n.slideUp(200)}),t.stopPropagation()}),n.on("click",function(t){t.stopPropagation()}),695<$(window).width()?(s=(o=$(".g-header")).outerHeight(),a=n.find("a"),i=$(document).scrollTop(),l=$(".g-logo"),r=$(".g-banner").attr("data-theme"),$(document).scroll(function(){var t=$(this).scrollTop(),e="nav-"+r;s<t?(3*s<t&&o.addClass("headerUp"),o.css({"background-color":"rgba(255, 255, 255, .98)","box-shadow":"0 1px 12px rgba(0, 0, 0, .08)"}),l.css({background:"url("+c+"/assets/icons/"+r+".svg) no-repeat center","background-size":"100% 100%"}),a.css("color","#666"),n.addClass(e)):(o.removeClass("headerUp"),$("#bttb").removeClass("active"),o.css({"background-color":"transparent","box-shadow":"none"}),l.css({background:"url("+c+"/assets/icons/"+r+".svg) no-repeat center","background-size":"100% 100%"}),a.css("color","#fff"),n.removeClass(e)),t<i?(o.addClass("headerDown"),o.hasClass("headerUp")&&$("#bttb").addClass("active")):(o.removeClass("headerDown"),$("#bttb").removeClass("active")),i=t})):(s=(o=$(".g-header")).outerHeight(),i=$(document).scrollTop(),$(document).scroll(function(){var t=$(this).scrollTop();t<100&&$("#bttb").removeClass("active"),t<i&&5<i?$("#bttb").addClass("active"):$("#bttb").removeClass("active"),i=t})),$(".mobile-list").bind("click",function(){d()}),$(".table-of-contents").on("click",function(){d()}),$(".bttb").bind("click",function(){$("html,body").animate({scrollTop:0},function(){$("#bttb").removeClass("active")})}),$(".read-next-item section").each(function(){var t=$(this).height(),e=$(".read-next-item").height();$(this).css("margin-top",(e-t)/2+"px"),$(this).fadeIn()}),$(".read-next-item img").each(function(){var t,e,a,o,s,i;t=$(this),e=$(".read-next-item"),a=t.width(),o=e.width(),s=t.height(),i=e.height(),s<i?(t.css({width:"auto",height:"100%"}),a=t.width(),o=e.width(),t.css("margin-left","-"+(a-o)/2+"px")):t.css("margin-top",(i-s)/2+"px"),t.fadeIn(),$(this).attr("data-src",$(this).attr("src")).removeAttr("src").addClass("lazyload")});for(var g=parseInt($("#total_pages").val()),h=parseInt($("#current_pages").val()),u=$("#base_url").val(),p="",v=h-3;v<h;v++)0<v&&1!==v?p+='<a href="'+u+"page"+v+'/index.html" class="page-link page-num">'+v+"</a>":1===v&&(p+='<a href="'+u+'" class="page-link page-num">'+v+"</a>");p+='<span class="page-link page-num active">'+h+"</span>";for(var m=h+1;m<=h+3;m++)m<=g&&(p+='<a href="'+u+"page"+m+'/index.html" class="page-link page-num">'+m+"</a>");function f(){var a,o,s,t=$("#search_input"),e=$(".search_result");t.focus(function(){$(".icon-search").css("color","#3199DB"),e.show()}),t.keyup((a=this.autoComplete,o=o||120,function(){var t=this,e=arguments;clearTimeout(s),s=setTimeout(function(){a.apply(t,e)},o)})),$(document).click(function(t){"search_input"!==t.target.id&&"search_result"!==t.target.className&&"search_item"!==t.target.className&&($(".icon-search").css("color","#CAD3DC"),e.hide())})}function b(){var t=$("article :header"),e=$(".table-of-contents").find("a"),a=$(window).scrollTop();0<a&&$(".g-header").addClass("headerUp");for(var o=0;o<t.length;o++)$(t[o]).offset().top-100<a&&($(e).removeClass("active"),$(e[o]).addClass("active"))}function C(t){for(var e=t+"=",a=document.cookie.split(";"),o=0;o<a.length;o++){var s=a[o].trim();if(0==s.indexOf(e))return s.substring(e.length,s.length)}return""}function y(t,e,a){var o=new Date,a=(o.setTime(o.getTime()+24*a*60*60*1e3),"expires="+o.toGMTString());document.cookie=c?t+"="+e+"; path="+c+"; "+a:t+"="+e+"; path=/; "+a}function w(){var t=C("mode");""==t||"day"==t?(y("mode","night",1),$("body").addClass("night-mode")):(y("mode","day",1),$("body").removeClass("night-mode")),$(".g-nav li.mode .icon").toggleClass("active"),$("#mode-toggle .icon").toggleClass("active"),$(".icon.up.day").toggleClass("active"),$(".icon.up.night").toggleClass("active"),"visible"==$(".table-of-contents").css("visibility")?($(".icon.exit.day").toggleClass("active"),$(".icon.exit.night").toggleClass("active")):($(".icon.list.day").toggleClass("active"),$(".icon.list.night").toggleClass("active"))}$("#page-link-container").html(p),f.prototype.autoComplete=function(){var n=this.value.toLowerCase(),t=(n.length?$(".icon-search").css("color","#3199DB"):$(".icon-search").css("color","#CAD3DC"),c+"/assets/search.json");$.getJSON(t).done(function(t){var e,a="";for(e in t){var o=t[e],s=o.title,i=o.tags;o.url;""!==n&&0<=(s+i).toLowerCase().indexOf(n)&&(a+='<a class="search_item" href="'+o.url+'">'+o.title+"</a>")}$(".search_result").html(a)})},new f,"true"===$("#nm-switch").val()&&($("body"),t=(new Date).getHours(),""==(e=C("mode"))&&(console.log(e),(t<=6||18<=t)&&(console.log("Start night mode"),y("mode","night",1)))),$(".post-content").on("mouseup",function(t){var e,a=window.getSelection();30<=a.toString().length&&(e=a,e+="\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: "+location.href,$(".post-content").on("copy",function(t){(window.clipboardData||t.originalEvent.clipboardData).setData("text/plain",e),t.preventDefault()}))}),b(),$(window).bind("scroll",b),"night"==C("mode")?($(".g-nav li.mode .night").addClass("active"),$("#mode-toggle .icon-night").addClass("active"),$("body").addClass("night-mode"),$(".icon.up.night").toggleClass("active"),$(".icon.list.night").toggleClass("active")):($(".g-nav li.mode .day").addClass("active"),$("#mode-toggle .icon-day").addClass("active"),$("body").removeClass("night-mode"),$(".icon.up.day").toggleClass("active"),$(".icon.list.day").toggleClass("active")),$(".g-nav li.mode").click(function(){w()}),$("#mode-toggle").click(function(){w()}),$("pre").each(function(t){t="codeblock"+(t+1);$(this).attr("id",t);t='<div class="copy-container"><span class="lang">'+$(this).attr("class").split(" ")[1].substring(9).toUpperCase()+'</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+t+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';$(this).before(t)}),new ClipboardJS(".btn").on("success",function(t){t.clearSelection()}),$(".markdown-body .btn").hover(function(){$(this).find(".tooltip.unfinish").addClass("active")},function(){$(this).find(".tooltip.unfinish").removeClass("active")}),$(".markdown-body .btn").click(function(){$(this).find(".tooltip.unfinish").removeClass("active");var t=$(this).find(".tooltip.finish");t.addClass("active"),setTimeout(function(){t.removeClass("active")},500)}),document.addEventListener("error",function(t){"IMG"==t.target.nodeName&&(t.target.src=c+"/assets/img/placeholder.webp")},!0)});
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-h2o-ac
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - zhonger
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2022-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll-paginate
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 2.3.4
97
- description:
97
+ description:
98
98
  email:
99
99
  - zhonger@live.cn
100
100
  executables: []
@@ -141,6 +141,8 @@ files:
141
141
  - assets/icons/logo_pink.svg
142
142
  - assets/icons/pink.svg
143
143
  - assets/img/hero.jpg
144
+ - assets/img/loading.gif
145
+ - assets/img/placeholder.webp
144
146
  - assets/img/profile.png
145
147
  - assets/img/profile.webp
146
148
  - assets/img/touch/android-chrome-192x192.png
@@ -163,7 +165,7 @@ metadata:
163
165
  mailing_list_uri: https://github.com/zhonger/jekyll-theme-H2O-ac/discussions
164
166
  source_code_uri: https://github.com/zhonger/jekyll-theme-H2O-ac/tree/master
165
167
  rubygems_mfa_required: 'true'
166
- post_install_message:
168
+ post_install_message:
167
169
  rdoc_options: []
168
170
  require_paths:
169
171
  - lib
@@ -178,8 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
180
  - !ruby/object:Gem::Version
179
181
  version: 3.0.0
180
182
  requirements: []
181
- rubygems_version: 3.3.7
182
- signing_key:
183
+ rubygems_version: 3.2.3
184
+ signing_key:
183
185
  specification_version: 4
184
186
  summary: A Jekyll theme for researchers and maintainers based on Jekyll and H2O theme.
185
187
  test_files: []