提交 4e6294ab 编写于 作者: EvanOne(文一)'s avatar EvanOne(文一)

feat: Add pwa manifest

上级 80d8cd9d
......@@ -29,10 +29,18 @@ menu_settings:
# ---------------------------------------------------------------
favicon:
small: /images/favicon-16x16-stun.png
medium: /images/favicon-32x32-stun.png
# apple_touch_icon: /images/apple-touch-icon-stun.png
# safari_pinned_tab: /images/logo-stun.svg
small: /images/icons/favicon-16x16.png
medium: /images/icons/favicon-32x32.png
# apple_touch_icon: /images/icons/apple-touch-icon.png
# safari_pinned_tab: /images/icons/logo-stun.svg
# msapplication: /images/icons/favicon-144x144.png
# PWA
# See: https://github.com/JLHwung/hexo-offline/
pwa:
enable: false
manifest: /manifest.json
theme_color: "#54bcff"
header:
# Header height (Support for all types of CSS size units).
......
......@@ -287,10 +287,11 @@ gallery_waterfall:
```yaml
favicon:
small: /imgs/favicon-16x16-stun.png
medium: /imgs/favicon-32x32-stun.png
# apple_touch_icon: /imgs/apple-touch-icon-stun.png
# safari_pinned_tab: /imgs/logo-stun.svg
small: /images/icons/favicon-16x16.png
medium: /images/icons/favicon-32x32.png
# apple_touch_icon: /images/icons/apple-touch-icon.png
# safari_pinned_tab: /images/icons/logo-stun.svg
# msapplication: /images/icons/favicon-144x144.png
```
## 网站顶部栏信息 <Badge text="Stable"/>
......
# 第三方支持
## PWA <Badge text="Stable"/> <Badge text="v1.2.2"/>
想要使用 PWA 特性,需要安装插件 [hexo-offline](https://github.com/JLHwung/hexo-offline),使用步骤如下:
1、安装插件
```bash
$ npm install hexo-offline --save
```
2、配置插件
找到 Hexo 根目录下的 _config.yml 文件,添加以下字段:
``` yaml
offline:
# 缓存的最大文件大小,以字节为单位
maximumFileSizeToCacheInBytes: 5242880
# 静态文件,如果你的站点使用了例如 webp 格式的文件,请将文件类型添加进去
staticFileGlobs:
- public/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff,woff2}
stripPrefix: public
verbose: true
# 缓存 CDN 资源(如果你不需要,则不用配置该项)
runtimeCaching:
- urlPattern: /*
handler: cacheFirst
options:
origin: # 替换成你 CDN 的域名
```
有关插件的详尽信息,请查看插件的[文档](https://github.com/JLHwung/hexo-offline)
3、修改主题配置
修改主题配置文件:
```yaml
pwa:
# 是否启用
enable: true
manifest: /manifest.json
theme_color: "#54bcff"
```
4、创建 `manifest.json` 文件
你可以通过 [Web App Manifest](https://app-manifest.firebaseapp.com/) 网站来快速生成 `manifest.json` 文件。`manifest.json` 文件的内容如下:
```json
{
"name": "xxx", // 应用全称
"short_name": "xxx", // 应用简称
"theme_color": "#ffffff", // 匹配浏览器的地址栏颜色
"background_color": "#ffffff", // 加载应用时的背景色
"display": "standalone", // 首选显示模式。其他选项有:fullscreen, minimal-ui, browser
"scope": "/",
"start_url": "/",
"icons": [ // 该数组指定图标参数,用来适配不同设备(格式为 png,至少包含一个 192px*192px 的图标)
{
"src": "images/icons/favicon-48x48.png", // 图标文件的路径,需在 source/ 目录下自行创建
"sizes": "48x48",
"type": "image/png"
},
{
"src": "images/icons/favicon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "images/icons/favicon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "images/icons/favicon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "images/icons/favicon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"splash_pages": null // 配置自定义启动动画。
}
```
5、重启 hexo 服务器
```bash
$ hexo clean && hexo s
```
## 添加 Emoji 支持 <Badge text="disrelated" type="warning"/>
如果想要使用 Emoji,你可以直接在[这里](http://emojihomepage.com/)复制粘贴使用。
......
......@@ -26,20 +26,33 @@ meta(name="copyright" content=pageCopyright)
title= pageTitle
meta(name="format-detection" content="telephone=no")
meta(http-equiv="x-dns-prefetch-control" content="on")
link(rel="dns-prefetch" href="https://cdn.jsdelivr.net")
meta(name="apple-mobile-web-app-capable" content="yes")
meta(name="apple-mobile-web-app-status-bar-style" content="black")
if theme.favicon.apple_touch_icon
link(rel="apple-touch-icon" sizes="180x180" href=`${url_for(theme.favicon.apple_touch_icon)}?v=${stun_env("version")}`)
if theme.pwa && theme.pwa.enable
if theme.pwa.theme_color
meta(name="theme-color" content=theme.pwa.theme_color)
if theme.pwa.manifest
link(rel="manifest" href=`${url_for(theme.pwa.manifest)}?v=${stun_env("version")}`)
if theme.favicon.small
link(rel="icon" type="image/png" sizes="16x16" href=`${url_for(theme.favicon.small)}?v=${stun_env("version")}`)
if theme.favicon.medium
link(rel="icon" type="image/png" sizes="32x32" href=`${url_for(theme.favicon.medium)}?v=${stun_env("version")}`)
if theme.favicon.small
link(rel="icon" type="image/png" sizes="16x16" href=`${url_for(theme.favicon.small)}?v=${stun_env("version")}`)
if theme.favicon.apple_touch_icon
link(rel="apple-touch-icon" sizes="180x180" href=`${url_for(theme.favicon.apple_touch_icon)}?v=${stun_env("version")}`)
if theme.favicon.safari_pinned_tab
link(rel="mask-icon" href=`${url_for(theme.favicon.safari_pinned_tab)}?v=${stun_env("version")}` color="#333")
link(rel="mask-icon" href=`${url_for(theme.favicon.safari_pinned_tab)}?v=${stun_env("version")}` color="#54bcff")
if theme.favicon.msapplication
meta(name="msapplication-TileImage" content=`${url_for(theme.favicon.msapplication)}`)
meta(name="msapplication-TileColor" content="#000000")
link(rel="dns-prefetch" href="https://cdn.jsdelivr.net")
- var fontawesome_css = 'https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css'
- if (theme.cdn.fontawesome_css) fontawesome_css = theme.cdn.fontawesome_css
......
<svg xmlns="http://www.w3.org/2000/svg">
<style>
.st0{fill:#e5e5e5}.st1{fill:#15aca3}.st2{fill:#e2b503}.st3{fill:#d9534f}.st4{fill:#c792c6}
</style>
<path d="M349.5 246.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h132.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H355.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M281.5 246.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h42.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-42.2c-2.2 0-4.4-.9-5.9-2.5z" class="st1"/>
<path d="M159.5 246.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h91.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-91.2c-2.2 0-4.4-.9-5.9-2.5z" class="st2"/>
<path d="M19.5 246.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h108.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H25.4c-2.2 0-4.4-.9-5.9-2.5zM24.5 213.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h87.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H30.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M142.5 213.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h57.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-57.2c-2.2 0-4.4-.9-5.9-2.5z" class="st3"/>
<path d="M296.5 213.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h95.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-95.2c-2.2 0-4.4-.9-5.9-2.5zM422.5 213.5c-3.7-3.8-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h54.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-54.2c-2.2 0-4.4-.9-5.9-2.5zM231.6 199.5c1.5-1.6 3.7-2.5 5.9-2.5h34.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-34.2c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M231.6 166.5c1.5-1.6 3.7-2.5 5.9-2.5h34.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-34.2c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M384.5 180.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h82.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-82.3c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M301.5 180.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h57.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-57.3c-2.2 0-4.4-.9-5.9-2.5z" class="st2"/>
<path d="M142.5 180.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h57.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-57.3c-2.2 0-4.4-.9-5.9-2.5z" class="st4"/>
<path d="M34.5 180.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h77.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H40.4c-2.2 0-4.4-.9-5.9-2.5zM367.5 147.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h83.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-83.3c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M265.5 147.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h76.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-76.3c-2.2 0-4.4-.9-5.9-2.5z" class="st4"/>
<path d="M157.5 147.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h77.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-77.3c-2.2 0-4.4-.9-5.9-2.5z" class="st1"/>
<path d="M102.4 133.5c1.5-1.6 3.7-2.5 5.9-2.5h26.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-26.2c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M50.5 133.5c1.5-1.6 3.7-2.5 5.9-2.5h21.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H56.4c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M337.5 114.5c-3.7-3.8-3.7-10.2 0-14 1.5-1.6 3.7-2.5 5.9-2.5h90.3c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-90.3c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M194.5 114.5c-3.7-3.8-3.7-10.2 0-14 1.5-1.6 3.7-2.5 5.9-2.5h117.3c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H200.4c-2.2 0-4.4-.9-5.9-2.5z" class="st3"/>
<path d="M74.5 114.5c-3.7-3.8-3.7-10.2 0-14 1.5-1.6 3.7-2.5 5.9-2.5h84.3c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H80.4c-2.2 0-4.4-.9-5.9-2.5zM240.5 81.5c-3.7-3.8-3.7-10.2 0-14 1.5-1.6 3.7-2.5 5.9-2.5h152.3c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H246.4c-2.2 0-4.4-.9-5.9-2.5zM108.5 81.5c-3.5-3.4-3.5-10.6 0-14 1.5-1.6 3.7-2.5 5.9-2.5h101.3c2.2 0 4.3.9 5.9 2.5 3.5 3.4 3.5 10.6 0 14-1.5 1.6-3.7 2.5-5.9 2.5H114.4c-2.2 0-4.4-.9-5.9-2.5zM167.5 48.5c-3.7-3.8-3.7-10.2 0-14 1.5-1.6 3.7-2.5 5.9-2.5h168.3c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H173.4c-2.2 0-4.4-.9-5.9-2.5zM19.3 279.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h127.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H25.2c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M178.1 279.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h48.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6h-48.5c-2.6 0-5.1-.9-7.1-2.6z" class="st4"/>
<path d="M368.5 279.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h113.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H374.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M261.1 279.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h77.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6h-77.5c-2.6 0-5.1-.9-7.1-2.6z" class="st3"/>
<path d="M23.5 312.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h176.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H29.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M302.1 312.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h53.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6h-53.5c-2.6 0-5.1-.9-7.1-2.6z" class="st4"/>
<path d="M384.5 312.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h93.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-93.3c-2.2 0-4.4-.9-5.9-2.5zM231.6 298.5c1.5-1.6 3.7-2.5 5.9-2.5h34.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-34.2c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M233 331.5c1.5-1.6 3.7-2.5 5.9-2.5h34.2c2.2 0 4.3.9 5.9 2.5 3.7 3.8 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-34.2c-2.2 0-4.4-.9-5.9-2.5-3.7-3.8-3.7-10.1 0-14M33.5 345.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h78.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H39.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M142.5 345.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h62.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-62.3c-2.2 0-4.4-.9-5.9-2.5zM302.1 345.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h53.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6h-53.5c-2.6 0-5.1-.9-7.1-2.6z" class="st2"/>
<path d="M384.5 345.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h83.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-83.3c-2.2 0-4.4-.9-5.9-2.5zM49.5 378.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h79.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H55.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M160.1 378.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h38.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6h-38.5c-2.6 0-5.1-.9-7.1-2.6z" class="st3"/>
<path d="M231.1 378.4c-4.3-3.6-4.3-10.2 0-13.8 2-1.7 4.5-2.6 7.1-2.6h107.5c2.6 0 5.1.9 7.1 2.6 4.3 3.6 4.3 10.2 0 13.8-2 1.7-4.5 2.6-7.1 2.6H238.2c-2.6 0-5.1-.9-7.1-2.6z" class="st1"/>
<path d="M367.5 378.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h84.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-84.3c-2.2 0-4.4-.9-5.9-2.5zM72.5 411.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h86.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H78.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
<path d="M194.5 411.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h117.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H200.4c-2.2 0-4.4-.9-5.9-2.5z" class="st4"/>
<path d="M337.5 411.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h91.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5h-91.3c-2.2 0-4.4-.9-5.9-2.5zM295.5 444.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h100.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H301.4c-2.2 0-4.4-.9-5.9-2.5zM106.5 444.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h158.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H112.4c-2.2 0-4.4-.9-5.9-2.5zM162.5 477.5c-3.7-3.9-3.7-10.1 0-14 1.5-1.6 3.7-2.5 5.9-2.5h177.3c2.2 0 4.3.9 5.9 2.5 3.7 3.9 3.7 10.1 0 14-1.5 1.6-3.7 2.5-5.9 2.5H168.4c-2.2 0-4.4-.9-5.9-2.5z" class="st0"/>
</svg>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册