yz-yuki-plugin 1.0.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/.puppeteerrc.cjs +4 -0
  2. package/CHANGELOG.md +7 -0
  3. package/LICENSE +21 -0
  4. package/README.md +195 -0
  5. package/defaultConfig/bilibili/config.yaml +41 -0
  6. package/defaultConfig/bilibili/push.yaml +0 -0
  7. package/defaultConfig/help/help.yaml +86 -0
  8. package/defaultConfig/weibo/config.yaml +41 -0
  9. package/defaultConfig/weibo/push.yaml +0 -0
  10. package/lib/apps/bilibili.js +402 -0
  11. package/lib/apps/help.js +37 -0
  12. package/lib/apps/index.js +4 -0
  13. package/lib/apps/version.js +34 -0
  14. package/lib/apps/weibo.js +252 -0
  15. package/lib/components/dynamic/Account.js +26 -0
  16. package/lib/components/dynamic/Content.js +118 -0
  17. package/lib/components/dynamic/Footer.js +36 -0
  18. package/lib/components/dynamic/ForwardContent.js +15 -0
  19. package/lib/components/dynamic/LogoText.js +10 -0
  20. package/lib/components/dynamic/MainPage.js +22 -0
  21. package/lib/components/help/Help.js +33 -0
  22. package/lib/components/index.js +6 -0
  23. package/lib/components/loginQrcode/Page.js +21 -0
  24. package/lib/components/version/Version.js +27 -0
  25. package/lib/index.js +29 -0
  26. package/lib/models/bilibili/bilibili.api.js +49 -0
  27. package/lib/models/bilibili/bilibili.get.web.data.js +80 -0
  28. package/lib/models/bilibili/bilibili.models.js +484 -0
  29. package/lib/models/bilibili/bilibili.query.js +393 -0
  30. package/lib/models/bilibili/bilibili.task.js +256 -0
  31. package/lib/models/bilibili/bilibili.wbi.js +49 -0
  32. package/lib/models/help/help.js +20 -0
  33. package/lib/models/version/version.js +62 -0
  34. package/lib/models/weibo/weibo.api.js +19 -0
  35. package/lib/models/weibo/weibo.get.web.data.js +55 -0
  36. package/lib/models/weibo/weibo.query.js +323 -0
  37. package/lib/models/weibo/weibo.task.js +215 -0
  38. package/lib/types/apps/bilibili.d.ts +6 -0
  39. package/lib/types/apps/help.d.ts +6 -0
  40. package/lib/types/apps/index.d.ts +4 -0
  41. package/lib/types/apps/version.d.ts +6 -0
  42. package/lib/types/apps/weibo.d.ts +6 -0
  43. package/lib/types/components/dynamic/Account.d.ts +13 -0
  44. package/lib/types/components/dynamic/Content.d.ts +12 -0
  45. package/lib/types/components/dynamic/Footer.d.ts +11 -0
  46. package/lib/types/components/dynamic/ForwardContent.d.ts +6 -0
  47. package/lib/types/components/dynamic/LogoText.d.ts +9 -0
  48. package/lib/types/components/dynamic/MainPage.d.ts +34 -0
  49. package/lib/types/components/help/Help.d.ts +12 -0
  50. package/lib/types/components/index.d.ts +5 -0
  51. package/lib/types/components/loginQrcode/Page.d.ts +7 -0
  52. package/lib/types/components/version/Version.d.ts +8 -0
  53. package/lib/types/index.d.ts +5 -0
  54. package/lib/types/models/bilibili/bilibili.api.d.ts +47 -0
  55. package/lib/types/models/bilibili/bilibili.buid.fp.d.ts +2 -0
  56. package/lib/types/models/bilibili/bilibili.get.web.data.d.ts +6 -0
  57. package/lib/types/models/bilibili/bilibili.models.d.ts +20 -0
  58. package/lib/types/models/bilibili/bilibili.query.d.ts +13 -0
  59. package/lib/types/models/bilibili/bilibili.task.d.ts +18 -0
  60. package/lib/types/models/bilibili/bilibili.wbi.d.ts +5 -0
  61. package/lib/types/models/help/help.d.ts +8 -0
  62. package/lib/types/models/version/version.d.ts +7 -0
  63. package/lib/types/models/weibo/weibo.api.d.ts +17 -0
  64. package/lib/types/models/weibo/weibo.get.web.data.d.ts +8 -0
  65. package/lib/types/models/weibo/weibo.query.d.ts +18 -0
  66. package/lib/types/models/weibo/weibo.task.d.ts +17 -0
  67. package/lib/types/utils/config.d.ts +21 -0
  68. package/lib/types/utils/image.d.ts +10 -0
  69. package/lib/types/utils/paths.d.ts +10 -0
  70. package/lib/types/utils/puppeteer.render.d.ts +23 -0
  71. package/lib/utils/config.js +108 -0
  72. package/lib/utils/image.js +26 -0
  73. package/lib/utils/paths.js +18 -0
  74. package/lib/utils/puppeteer.render.js +102 -0
  75. package/package.json +110 -0
  76. package/public/output.css +1 -0
  77. package/resources/css/dynamic/Account.css +68 -0
  78. package/resources/css/dynamic/Content.box.grid.4.css +4 -0
  79. package/resources/css/dynamic/Content.box.grid.9.css +4 -0
  80. package/resources/css/dynamic/Content.css +87 -0
  81. package/resources/css/dynamic/Footer.css +44 -0
  82. package/resources/css/dynamic/ForwardContent.css +11 -0
  83. package/resources/css/dynamic/LogoText.css +15 -0
  84. package/resources/css/dynamic/MainPage.css +93 -0
  85. package/resources/css/help/help.css +182 -0
  86. package/resources/css/loginQrcode/Page.css +55 -0
  87. package/resources/css/version/version.css +116 -0
  88. package/resources/fonts/iconfont.16acc2.ttf +0 -0
  89. package/resources/img/background/Girl.png +0 -0
  90. package/resources/img/icon/dynamic/bili-rich-text-module-goods-taobao.svg +1 -0
  91. package/resources/img/icon/dynamic/bili-rich-text-module-lottery.svg +1 -0
  92. package/resources/img/icon/dynamic/bilibili.svg +6 -0
  93. package/resources/img/icon/dynamic/weibo.svg +43 -0
  94. package/resources/img/icon/puplic/archaic_stone.png +0 -0
  95. package/resources/img/icon/puplic/condessence_crystal.png +0 -0
  96. package/resources/img/icon/puplic/delightful_encounter.png +0 -0
  97. package/resources/img/icon/puplic/diagram.png +0 -0
  98. package/resources/img/icon/puplic/essence_of_pure_sacred_dewdrop.png +0 -0
  99. package/resources/img/icon/puplic/everamber.png +0 -0
  100. package/resources/img/icon/puplic/flower_1.png +0 -0
  101. package/resources/img/icon/puplic/flower_2.png +0 -0
  102. package/resources/img/icon/puplic/kamera.png +0 -0
  103. package/resources/img/icon/puplic/lumidouce_bell.png +0 -0
  104. package/resources/img/icon/puplic/mora.png +0 -0
  105. package/resources/img/icon/puplic/pluie_lotus.png +0 -0
  106. package/resources/img/icon/puplic/restaurant_smoothie.png +0 -0
  107. package/resources/img/icon/puplic/romaritime_flower.png +0 -0
  108. package/resources/img/icon/puplic/shell.png +0 -0
  109. package/resources/img/icon/puplic/spring_of_pure_sacred_dewdrop.png +0 -0
  110. package/resources/img/icon/puplic/surging_sacred_chalice.png +0 -0
  111. package/resources/img/icon/puplic/tourbillon_device.png +0 -0
  112. package/resources/img/icon/puplic/unfading_silky_grace.png +0 -0
  113. package/resources/img/icon/puplic/wisdom.png +0 -0
  114. package/resources/img/icon/puplic/wondrous_lovely_flower.png +0 -0
  115. package/resources/img/icon/puplic//345/262/251/347/245/236/347/236/263/345/205/261/351/270/243/347/237/263.png +0 -0
  116. package/resources/img/icon/puplic//346/260/264/347/245/236/347/236/263/345/205/261/351/270/243/347/237/263.png +0 -0
  117. package/resources/img/icon/puplic//350/215/211/347/245/236/347/236/263/345/205/261/351/270/243/347/237/263.png +0 -0
  118. package/resources/img/icon/puplic//351/222/223/351/261/274.png +0 -0
  119. package/resources/img/icon/puplic//351/233/267/347/245/236/347/236/263/345/205/261/351/270/243/347/237/263.png +0 -0
  120. package/resources/img/icon/puplic//351/243/216/347/245/236/347/236/263/345/205/261/351/270/243/347/237/263.png +0 -0
  121. package/resources/img/icon/puplic//351/243/216/350/275/246.png +0 -0
  122. package/resources/img/readme/girl.png +0 -0
  123. package/resources/img/readme/min-Girl.png +0 -0
  124. package/resources/img/readme/mini-help.jpg +0 -0
@@ -0,0 +1,93 @@
1
+ /* 隐藏滚动条 */
2
+ body {
3
+ overflow: -moz-scrollbars-none;
4
+ /* Firefox */
5
+ -ms-overflow-style: none;
6
+ /* IE 10+ */
7
+ scrollbar-width: none;
8
+ /* Firefox 64+ */
9
+ }
10
+
11
+ body::-webkit-scrollbar {
12
+ display: none;
13
+ /* Chrome, Safari, Edge */
14
+ }
15
+
16
+ ::-webkit-scrollbar {
17
+ width: 0px;
18
+ height: 5px;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: "iconfont";
23
+ src: url("./../../fonts/iconfont.16acc2.ttf");
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ body {
29
+ font-family: "iconfont", Arial, sans-serif;
30
+ background-color: #f9f9f9;
31
+ margin: 0;
32
+ padding: 0;
33
+ justify-content: center;
34
+ align-items: center;
35
+ flex-direction: column;
36
+ width: 828px !important;
37
+ width: 100%;
38
+ }
39
+
40
+
41
+ .outside-border {
42
+ /*限制页面内收缩*/
43
+ width: 100%;
44
+ min-width: 798px;
45
+ overflow: hidden;
46
+ margin: auto;
47
+ }
48
+
49
+ .container {
50
+ max-width: 788px;
51
+ width: 100%;
52
+ padding: 20px;
53
+ background-color: #fff;
54
+ box-shadow: 0px 1px 9px 12px rgb(246 140 224 / 20%);
55
+ border-radius: 8px;
56
+ margin-top: 20px;
57
+ margin-bottom: 20px;
58
+ margin-left: 20px;
59
+ margin-right: 20px;
60
+ border: 1px solid #ff69b4;
61
+ overflow: hidden;
62
+ }
63
+
64
+ .unfold {
65
+ -webkit-box-sizing: border-box;
66
+ box-sizing: border-box;
67
+ line-height: 40px;
68
+ height: 100%;
69
+ outline: none;
70
+ overflow-y: auto;
71
+ -o-tab-size: 4;
72
+ tab-size: 4;
73
+ -moz-tab-size: 4;
74
+ text-align: left;
75
+ word-wrap: break-word;
76
+ overflow-x: hidden;
77
+ overflow-y: hidden;
78
+ }
79
+
80
+ .dynamic-article-page-main {
81
+ /*限制页面布局改变*/
82
+ width: 100%;
83
+ max-width: 789px;
84
+ min-width: 742px;
85
+ }
86
+
87
+ * {
88
+ margin: 0;
89
+ padding: 0;
90
+ box-sizing: border-box;
91
+ /**禁止选中文本*/
92
+ user-select: none;
93
+ }
@@ -0,0 +1,182 @@
1
+ /* 隐藏滚动条 */
2
+ body {
3
+ overflow: -moz-scrollbars-none;
4
+ /* Firefox */
5
+ -ms-overflow-style: none;
6
+ /* IE 10+ */
7
+ scrollbar-width: none;
8
+ /* Firefox 64+ */
9
+ }
10
+
11
+ body::-webkit-scrollbar {
12
+ display: none;
13
+ /* Chrome, Safari, Edge */
14
+ }
15
+
16
+ ::-webkit-scrollbar {
17
+ width: 0px;
18
+ height: 5px;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: "iconfont";
23
+ src: url("./../../fonts/iconfont.16acc2.ttf");
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ * {
29
+ margin: 0;
30
+ padding: 0;
31
+ box-sizing: border-box;
32
+ user-select: none;
33
+ }
34
+
35
+ body {
36
+ font-family: "iconfont";
37
+ font-size: 16px;
38
+ color: #1e1f20;
39
+ transform: scale(1.5);
40
+ transform-origin: 0 0;
41
+ width: 788px;
42
+ }
43
+
44
+
45
+ .container {
46
+ width: 788px;
47
+ padding: 15px 15px 15px 15px;
48
+ background-image: url(./../../img/background/Girl.png);
49
+ background-size: 100%;
50
+ }
51
+
52
+ .head_box {
53
+ font-family: "iconfont";
54
+ border-radius: 10px;
55
+ padding: 10px 20px;
56
+ position: relative;
57
+ color: #ff69b4;
58
+ box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgb(238 160 236 / 80%);
59
+ border: 0.5px solid #ff69b4;
60
+ backdrop-filter: blur(10px);
61
+ }
62
+
63
+ .head_box .id_text {
64
+ font-size: 24px;
65
+ }
66
+
67
+ .head_box .day_text {
68
+ font-size: 20px;
69
+ }
70
+
71
+ .head_box .genshin_logo {
72
+ position: absolute;
73
+ top: -6px;
74
+ right: 15px;
75
+ width: 97px;
76
+ }
77
+
78
+ .base_info {
79
+ position: relative;
80
+ padding-left: 10px;
81
+ }
82
+
83
+ .data_box {
84
+ border-radius: 15px;
85
+ margin-top: 20px;
86
+ margin-bottom: 15px;
87
+ padding: 20px 0px 5px 0px;
88
+ background: transparent;
89
+ background-color: rgba(255 241 255 / 35%);
90
+ box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgb(238 160 236 / 80%);
91
+ border: 0.5px solid #ff69b4;
92
+ position: relative;
93
+ }
94
+
95
+ .tab_lable {
96
+ position: absolute;
97
+ top: -10px;
98
+ left: -8px;
99
+ background-color: rgb(187 187 187 / 0%);
100
+ backdrop-filter: blur(15px);
101
+ box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgba(225 166 231 / 80%);
102
+ color: #ff004c;
103
+ font-size: 14px;
104
+ padding: 3px 10px;
105
+ border-radius: 15px 0px 15px 15px;
106
+ z-index: 20;
107
+ border: 0.5px solid #ff69b4;
108
+ }
109
+
110
+ .data_line {
111
+ display: flex;
112
+ justify-content: space-around;
113
+ margin-bottom: 14px;
114
+ }
115
+
116
+ .data_line_item {
117
+ width: 100px;
118
+ text-align: center;
119
+ /*margin: 0 20px;*/
120
+ }
121
+
122
+ .num {
123
+ font-size: 24px;
124
+ }
125
+
126
+ .data_box .lable {
127
+ font-size: 14px;
128
+ color: #7f858a;
129
+ line-height: 1;
130
+ margin-top: 3px;
131
+ }
132
+
133
+ .list {
134
+ display: flex;
135
+ justify-content: flex-start;
136
+ flex-wrap: wrap;
137
+ }
138
+
139
+ .list .item {
140
+ width: 235px;
141
+ display: flex;
142
+ align-items: center;
143
+ color: #151215;
144
+ background: transparent;
145
+ box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgb(255 213 254 / 80%);
146
+ padding: 8px 6px 8px 6px;
147
+ border-radius: 8px;
148
+ margin: 0 0px 10px 10px;
149
+ backdrop-filter: blur(4px);
150
+ border: 1px solid #ffb1fa;
151
+ }
152
+
153
+ .list .item .icon {
154
+ width: 24px;
155
+ height: 24px;
156
+ background-repeat: no-repeat;
157
+ background-size: 100% 100%;
158
+ position: relative;
159
+ flex-shrink: 0;
160
+ }
161
+
162
+ .list .item .title {
163
+ font-size: 16px;
164
+ margin-left: 6px;
165
+ line-height: 20px;
166
+ }
167
+
168
+ /* .list .item .title .text{
169
+ white-space: nowrap;
170
+ } */
171
+ .list .item .title .dec {
172
+ font-size: 12px;
173
+ color: #102644;
174
+ margin-top: 2px;
175
+ }
176
+
177
+ .logo {
178
+ text-align: center;
179
+ font-size: 14px;
180
+ color: rgb(0, 0, 0);
181
+ font-family: "iconfont";
182
+ }
@@ -0,0 +1,55 @@
1
+ body {
2
+ width: 563px !important;
3
+ }
4
+
5
+ .container {
6
+ width: 24rem;
7
+ max-height: 40rem;
8
+ margin: auto;
9
+ font-size: 1.125rem
10
+ /* 18px */
11
+ ;
12
+ line-height: 1.75rem
13
+ /* 28px */
14
+ ;
15
+ padding: 20px;
16
+ background-color: #fff;
17
+ box-shadow: 0px 1px 9px 12px rgb(246 140 224 / 20%);
18
+ border-radius: 8px;
19
+ margin-top: 20px;
20
+ margin-bottom: 20px;
21
+ margin-left: 20px;
22
+ margin-right: 20px;
23
+ border: 1px solid #ff69b4;
24
+ overflow: hidden;
25
+ }
26
+
27
+ .txt-0 {
28
+ text-align: center;
29
+ margin-top: 0.75rem;
30
+ margin-bottom: 0.75rem;
31
+ padding: 0.25rem;
32
+ --tw-text-opacity: 1;
33
+ color: rgb(59 130 246 / var(--tw-text-opacity));
34
+ }
35
+
36
+ .txt-1 {
37
+ text-align: center;
38
+ margin-top: 0.75rem;
39
+ margin-bottom: 0.75rem;
40
+ padding: 0.25rem;
41
+ --tw-text-opacity: 1;
42
+ color: rgb(220 38 38 / var(--tw-text-opacity));
43
+ }
44
+
45
+ .QrCode {
46
+ margin: auto;
47
+ }
48
+
49
+ .qr-code {
50
+ width: 18rem;
51
+ height: 18rem;
52
+ margin-left: 2.8rem;
53
+ border-radius: 8px;
54
+ border: 1.5px dashed #fb8bc3;
55
+ }
@@ -0,0 +1,116 @@
1
+ /* 隐藏滚动条 */
2
+ body {
3
+ overflow: -moz-scrollbars-none;
4
+ /* Firefox */
5
+ -ms-overflow-style: none;
6
+ /* IE 10+ */
7
+ scrollbar-width: none;
8
+ /* Firefox 64+ */
9
+ }
10
+
11
+ body::-webkit-scrollbar {
12
+ display: none;
13
+ /* Chrome, Safari, Edge */
14
+ }
15
+
16
+ ::-webkit-scrollbar {
17
+ width: 0px;
18
+ height: 5px;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: "iconfont";
23
+ src: url("./../../fonts/iconfont.16acc2.ttf");
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ * {
29
+ margin: 0;
30
+ padding: 0;
31
+ box-sizing: border-box;
32
+ user-select: none;
33
+ }
34
+
35
+ body {
36
+ font-size: 16px;
37
+ font-family: "iconfont";
38
+ transform: scale(1.5);
39
+ transform-origin: 0 0;
40
+ color: white;
41
+ width: 788px;
42
+ }
43
+
44
+ .container {
45
+ width: 788px;
46
+ background-image: url(./../../img/background/Girl.png);
47
+ background-size: 100%;
48
+ padding: 15px 0 10px 0;
49
+ }
50
+
51
+ .version-card {
52
+ background: transparent;
53
+ margin: 5px 10px 8px 10px;
54
+ position: relative;
55
+ box-shadow: 0 0 0.5px 0 #ffd1f8, 2px 2px 4px 0 rgb(238 160 236 / 80%);
56
+ border: 0.5px solid #ff69b4;
57
+ overflow: hidden;
58
+ color: #fff;
59
+ font-size: 16px;
60
+ border-radius: 4px;
61
+ backdrop-filter: blur(4px);
62
+ border-radius: 10px;
63
+ }
64
+
65
+ .version-card .title {
66
+ border-bottom: 0.5px solid #ff69b4;
67
+ color: #4e8eff;
68
+ font-family: Number, YS;
69
+ padding: 10px 20px;
70
+ text-align: left;
71
+ font-size: 16px;
72
+ padding: 8px 20px 8px;
73
+ font-weight: bold;
74
+ background: transparent;
75
+ }
76
+
77
+ .version-card .content {
78
+ padding: 10px 15px;
79
+ font-size: 12px;
80
+ font-weight: normal;
81
+ font-family: "iconfont";
82
+ background: transparent;
83
+ color: rgba(0, 0, 0);
84
+ }
85
+
86
+ .version-card ul {
87
+ font-size: 14px;
88
+ padding-left: 20px;
89
+ }
90
+
91
+ .version-card ul li {
92
+ margin: 3px 0;
93
+ }
94
+
95
+ .version-card .cmd {
96
+ color: #c59460;
97
+ display: inline-block;
98
+ border-radius: 3px;
99
+ padding: 0 3px;
100
+ margin: 1px 2px;
101
+ }
102
+
103
+ .version-card .strong {
104
+ color: #67a9e4;
105
+ display: inline-block;
106
+ border-radius: 3px;
107
+ padding: 0 3px;
108
+ margin: 1px 2px;
109
+ }
110
+
111
+ .logo {
112
+ text-align: center;
113
+ font-size: 14px;
114
+ color: rgb(15, 15, 15);
115
+ font-family: 'iconfont';
116
+ }
@@ -0,0 +1 @@
1
+ <svg style="width: 22px; height: 22px;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 22 22" width="22" height="22"><path d="M2.7083333333333335 6.1875C2.7083333333333335 4.266007500000001 4.266007500000001 2.7083333333333335 6.1875 2.7083333333333335L15.8125 2.7083333333333335C17.734016666666665 2.7083333333333335 19.291666666666668 4.266007500000001 19.291666666666668 6.1875L19.291666666666668 15.8125C19.291666666666668 17.734016666666665 17.734016666666665 19.291666666666668 15.8125 19.291666666666668L6.1875 19.291666666666668C4.266007500000001 19.291666666666668 2.7083333333333335 17.734016666666665 2.7083333333333335 15.8125L2.7083333333333335 6.1875zM6.1875 3.7083333333333335C4.818296666666667 3.7083333333333335 3.7083333333333335 4.818296666666667 3.7083333333333335 6.1875L3.7083333333333335 15.8125C3.7083333333333335 17.181716666666667 4.818296666666667 18.291666666666664 6.1875 18.291666666666664L15.8125 18.291666666666664C17.181716666666667 18.291666666666664 18.291666666666664 17.181716666666667 18.291666666666664 15.8125L18.291666666666664 6.1875C18.291666666666664 4.818296666666667 17.181716666666667 3.7083333333333335 15.8125 3.7083333333333335L6.1875 3.7083333333333335z" fill="currentColor" data-darkreader-inline-fill="" style="--darkreader-inline-fill: currentColor;"></path><path d="M13.757108333333333 13.653325L13.158108333333333 13.952791666666666C12.345366666666667 14.3557 11.483833333333333 14.548616666666666 10.604199999999999 14.548791666666666L10.368558333333333 14.548224999999999C9.573775000000001 14.542691666666666 8.928339999999999 13.893758333333334 8.928339999999999 13.106541666666667C8.927285 12.855666666666666 9.130069166666667 12.637524999999998 9.396216666666666 12.637524999999998C9.64563333333333 12.63695 9.860033333333332 12.83735 9.864341666666665 13.104591666666666C9.865283333333332 13.383716666666666 10.094491666666666 13.612383333333332 10.380683333333334 13.612383333333332L10.624783333333333 13.612383333333332C10.888233333333332 13.612383333333332 11.132408333333332 13.591833333333332 11.388491666666665 13.55095L11.388491666666665 12.101108333333334L9.394841666666666 12.101108333333334C9.143170833333333 12.101108333333334 8.928423333333333 11.895983333333334 8.928423333333333 11.632333333333333C8.928423333333333 11.376408333333332 9.135684166666667 11.164774999999999 9.396791666666667 11.164774999999999L11.388491666666665 11.164774999999999L11.388491666666665 10.612825L10.500566666666666 10.612325C10.4498 10.667208333333333 10.397116666666665 10.721 10.343266666666667 10.770125L10.283000000000001 10.822333333333335C10.162016666666666 10.933691666666666 9.992883333333332 10.970591666666666 9.838641666666666 10.92825C9.684408333333334 10.885825 9.561066666666665 10.760683333333333 9.518133333333333 10.599058333333334C9.477158333333334 10.441824999999998 9.520241666666665 10.275683333333332 9.637475 10.1592L9.692716666666666 10.104624999999999C9.957916666666666 9.841175 10.155516666666667 9.541183333333333 10.281841666666667 9.20215C10.373700000000001 8.958719166666665 10.644416666666666 8.83972 10.879008333333333 8.922351666666666C11.10935 9.0042925 11.226058333333333 9.244898333333332 11.15910833333333 9.471924999999999C11.140575 9.538158333333332 11.120325 9.607483333333333 11.094074999999998 9.676083333333333L13.829766666666666 9.676491666666667C14.077258333333333 9.676491666666667 14.292758333333333 9.880625 14.292758333333333 10.146899999999999C14.292758333333333 10.408016666666665 14.074333333333334 10.612825 13.826833333333333 10.612825L12.325141666666667 10.612825L12.325141666666667 11.164774999999999L14.316583333333334 11.164774999999999C14.565591666666666 11.164774999999999 14.786333333333333 11.365008333333332 14.784708333333331 11.635266666666666C14.784708333333331 11.897283333333332 14.569491666666664 12.100783333333332 14.316583333333334 12.100783333333332L12.325141666666667 12.100783333333332L12.325141666666667 13.296475C12.479316666666666 13.238258333333333 12.622083333333332 13.17395 12.769941666666664 13.100524999999998L13.359041666666666 12.806449999999998C13.366616666666665 12.610191666666667 13.516291666666666 12.43765 13.711441666666666 12.38815C13.9066 12.33865 14.130925 12.422625 14.23575 12.607916666666666L14.621291666666666 13.278949999999998C14.7073 13.429416666666665 14.704008333333332 13.611275000000001 14.612716666666666 13.75965C14.52905 13.898425 14.375 13.982474999999999 14.214866666666666 13.981924999999999C14.047308333333334 13.981425 13.896616666666667 13.892199999999999 13.81745 13.757808333333333L13.757108333333333 13.653325z" fill="currentColor" data-darkreader-inline-fill="" style="--darkreader-inline-fill: currentColor;"></path><path d="M10.141116666666667 7.871404999999999C11.328766666666667 7.438774166666667 12.555391666666667 7.215831666666666 13.827083333333333 7.215848333333333C15.153899999999997 7.215848333333333 16.26105 8.289123333333334 16.26105 9.654541666666667L16.26105 13.283133333333334C16.26105 13.877308333333332 16.019366666666667 14.452191666666666 15.599258333333335 14.8723C15.17915 15.292416666666664 14.604941666666665 15.532691666666665 14.006291666666668 15.532691666666665L12.859875 15.532691666666665C12.596625 15.532691666666665 12.391174999999999 15.317558333333332 12.391174999999999 15.067658333333336C12.391174999999999 14.805141666666664 12.600616666666665 14.596358333333335 12.859875 14.596358333333335L14.004308333333332 14.596358333333335C14.735625000000002 14.596358333333335 15.325183333333333 14.00395 15.325183333333333 13.273366666666666L15.325183333333333 9.652908333333334C15.325183333333333 8.823482499999999 14.655866666666666 8.152205 13.827083333333333 8.152205C12.581516666666667 8.152205 11.338858333333333 8.391508333333334 10.186158333333333 8.856445833333334L9.571741666666664 9.102275833333332C9.534158333333332 9.117400833333333 9.498483333333333 9.126616666666667 9.458241666666664 9.1311175C9.244658333333334 9.437491666666666 9.022283333333332 9.70335 8.754945833333334 9.973466666666667C8.576434166666667 10.1538 8.272740833333334 10.149383333333333 8.093571666666666 9.969075C7.914400833333333 9.788766666666666 7.913789166666667 9.495258333333334 8.09357 9.308340000000001C8.678384166666666 8.717681666666666 9.118864166666667 8.017764999999999 9.394874999999999 7.194660833333334L9.446258333333333 7.040054166666667C9.497933333333334 6.872650833333333 9.633899999999999 6.7534725 9.794308333333332 6.718536666666666C9.954641666666666 6.6836025 10.129574999999999 6.735529999999999 10.244158333333333 6.865451666666666C10.351725 6.9883375 10.389983333333333 7.1609175 10.336116666666667 7.322384999999999L10.288358333333335 7.470230833333334C10.2444 7.606509999999999 10.196091666666668 7.735731666666667 10.141116666666667 7.871404999999999z" fill="currentColor" data-darkreader-inline-fill="" style="--darkreader-inline-fill: currentColor;"></path><path d="M7.281644166666666 8.590612499999999C7.010457499999999 8.590661666666666 6.759849999999999 8.446013333333333 6.6242475 8.21117C6.488643333333333 7.9763175 6.488643333333333 7.686965833333334 6.6242475 7.4521225C6.759849999999999 7.21727 7.010457499999999 7.072621666666667 7.281644166666666 7.072669166666667C7.700748333333332 7.072753333333333 8.040468333333333 7.4125299999999985 8.040468333333333 7.831641666666665C8.040468333333333 8.250753333333332 7.700748333333332 8.5905375 7.281644166666666 8.590612499999999z" fill="currentColor" data-darkreader-inline-fill="" style="--darkreader-inline-fill: currentColor;"></path><path d="M6.420774166666667 10.315491666666667C6.270295833333334 10.251333333333331 6.1625775 10.100191666666666 6.146236666666666 9.935008333333332C6.129231666666667 9.763308333333335 6.207533333333332 9.603124999999999 6.341634166666666 9.507733333333332C6.475736666666666 9.412341666666666 6.6631149999999995 9.391433333333332 6.8192200000000005 9.470058333333332L7.109841666666667 9.604616666666667C7.688676666666667 9.877066666666668 8.130755833333334 10.387 8.313906666666666 11.006116666666665C8.496081666666667 11.613416666666666 8.4112325 12.28825 8.061553333333332 12.847466666666666L6.841030833333333 14.820866666666664C6.7568825 14.964991666666664 6.5957558333333335 15.057891666666668 6.4190958333333334 15.050316666666667C6.250913333333333 15.044141666666668 6.1002575 14.946441666666667 6.023563333333333 14.801716666666668C5.9440425 14.651991666666666 5.954351666666666 14.465425 6.044146666666666 14.329208333333334L7.272609999999999 12.34385C7.474779166666666 12.017416666666666 7.5227008333333325 11.627616666666666 7.416402499999999 11.271275C7.306640833333333 10.903233333333333 7.0499325 10.608883333333333 6.701947499999999 10.446458333333334L6.420774166666667 10.315491666666667z" fill="currentColor" data-darkreader-inline-fill="" style="--darkreader-inline-fill: currentColor;"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 22 22" width="22" height="22" style="width: 22px; height: 22px;"><path d="M4.1249725 10.892791666666666C4.401121666666666 10.892791666666666 4.6249725 11.1166 4.6249725 11.392791666666666L4.6249725 16.892791666666664C4.6249725 17.59294166666667 5.1926175 18.16058333333333 5.892828333333333 18.16058333333333L16.107116666666666 18.16058333333333C16.80735 18.16058333333333 17.374999999999996 17.59294166666667 17.374999999999996 16.892791666666664L17.374999999999996 11.392791666666666C17.374999999999996 11.1166 17.598808333333334 10.892791666666666 17.875 10.892791666666666C18.151108333333333 10.892791666666666 18.375 11.1166 18.375 11.392791666666666L18.375 16.892791666666664C18.375 18.145241666666667 17.35965 19.16058333333333 16.107116666666666 19.16058333333333L5.892828333333333 19.16058333333333C4.640328333333334 19.16058333333333 3.6249724999999997 18.145241666666667 3.6249724999999997 16.892791666666664L3.6249724999999997 11.392791666666666C3.6249724999999997 11.1166 3.8488325000000003 10.892791666666666 4.1249725 10.892791666666666z" fill="currentColor"></path><path d="M2.8392608333333333 8.0535675C2.8392608333333333 7.126520833333333 3.5907816666666665 6.374999999999999 4.517828333333333 6.374999999999999L17.482116666666666 6.374999999999999C18.40915 6.374999999999999 19.160675 7.126520833333333 19.160675 8.0535675L19.160675 9.809341666666667C19.160675 10.625725 18.566341666666666 11.337641666666666 17.725475 11.422875C16.56895833333333 11.540091666666665 14.390741666666667 11.696441666666665 11 11.696441666666665C7.609239999999998 11.696441666666665 5.431005000000001 11.540091666666665 4.2745049999999996 11.422875C3.4335991666666668 11.337641666666666 2.8392608333333333 10.625725 2.8392608333333333 9.809341666666667L2.8392608333333333 8.0535675zM4.517828333333333 7.374999999999999C4.143070833333333 7.374999999999999 3.8392608333333333 7.67881 3.8392608333333333 8.0535675L3.8392608333333333 9.809341666666667C3.8392608333333333 10.14125 4.071879166666666 10.397183333333334 4.375326666666667 10.427975C5.495405 10.541491666666666 7.6398399999999995 10.696441666666667 11 10.696441666666667C14.360141666666665 10.696441666666667 16.504558333333332 10.541491666666666 17.624583333333334 10.427975C17.928075 10.397183333333334 18.160674999999998 10.14125 18.160674999999998 9.809341666666667L18.160674999999998 8.0535675C18.160674999999998 7.67881 17.856849999999998 7.374999999999999 17.482116666666666 7.374999999999999L4.517828333333333 7.374999999999999z" fill="currentColor"></path><path d="M6.178549166666666 4.910775833333333C6.178549166666666 3.5497883333333333 7.281840833333334 2.4464966666666665 8.642828333333332 2.4464966666666665C10.003858333333332 2.4464966666666665 11.107116666666666 3.5497883333333333 11.107116666666666 4.910775833333333L11.107116666666666 7.375064166666665L8.642828333333332 7.375064166666665C7.281840833333334 7.375064166666665 6.178549166666666 6.2717633333333325 6.178549166666666 4.910775833333333zM8.642828333333332 3.4464966666666665C7.83413 3.4464966666666665 7.1785491666666665 4.102077499999999 7.1785491666666665 4.910775833333333C7.1785491666666665 5.719483333333334 7.83413 6.375064166666666 8.642828333333332 6.375064166666666L10.107116666666668 6.375064166666666L10.107116666666668 4.910775833333333C10.107116666666668 4.102077499999999 9.451558333333335 3.4464966666666665 8.642828333333332 3.4464966666666665z" fill="currentColor"></path><path d="M10.892791666666666 4.910775833333333C10.892791666666666 3.5497883333333333 11.996133333333333 2.4464966666666665 13.357116666666666 2.4464966666666665C14.718099999999998 2.4464966666666665 15.821441666666669 3.5497883333333333 15.821441666666669 4.910775833333333C15.821441666666669 6.2717633333333325 14.718099999999998 7.375064166666665 13.357116666666666 7.375064166666665L10.892791666666666 7.375064166666665L10.892791666666666 4.910775833333333zM13.357116666666666 3.4464966666666665C12.548433333333332 3.4464966666666665 11.892791666666666 4.102077499999999 11.892791666666666 4.910775833333333L11.892791666666666 6.375064166666666L13.357116666666666 6.375064166666666C14.165799999999999 6.375064166666666 14.821441666666667 5.719483333333334 14.821441666666667 4.910775833333333C14.821441666666667 4.102077499999999 14.165799999999999 3.4464966666666665 13.357116666666666 3.4464966666666665z" fill="currentColor"></path><path d="M11 5.392764166666666C11.276108333333331 5.392764166666666 11.499999999999998 5.6166149999999995 11.499999999999998 5.892764166666666L11.499999999999998 18.071350000000002C11.499999999999998 18.347458333333332 11.276108333333331 18.571350000000002 11 18.571350000000002C10.723808333333334 18.571350000000002 10.5 18.347458333333332 10.5 18.071350000000002L10.5 5.892764166666666C10.5 5.6166149999999995 10.723808333333334 5.392764166666666 11 5.392764166666666z" fill="currentColor"></path></svg>
@@ -0,0 +1,6 @@
1
+ <svg class="bottom-bilibili-logo" viewBox="0 0 2240 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4404"
2
+ xmlnsXlink="http://www.w3.org/1999/xlink" width="128" height="38.4">
3
+ <path
4
+ d="M2079.810048 913.566175c-10.01309 0-18.554608 0.799768-26.936172-0.159954-16.987063-1.951433-33.974126-1.567544-50.99318-2.079395-10.972811-0.287916-10.652904-0.287916-11.580634-10.90883-2.71921-32.406582-5.694345-64.781173-8.605499-97.155764-2.527266-28.439735-4.926568-56.91146-7.70976-85.319204-2.527266-26.040432-5.566382-52.016883-8.317583-78.025324-2.623238-24.440897-5.054531-48.913784-7.77374-73.322691a12681.114551 12681.114551 0 0 0-10.684895-92.133223c-3.295042-27.128116-6.558094-54.320213-10.205034-81.416339a20559.272961 20559.272961 0 0 0-17.530905-125.979387c-6.398141-44.723002-14.075909-89.22207-22.105576-133.657156-1.439582-7.965685-1.247637-8.253601 6.36615-9.533229 31.670796-5.406429 63.501545-10.01309 95.716183-9.309295 3.486987 0.095972 7.005964 0.159954 10.460959 0.607823 5.662354 0.703795 8.605499 3.454996 8.925406 10.045081 1.119675 22.969325 2.71921 45.938649 4.414717 68.875983 2.71921 37.589076 5.662354 75.178151 8.477537 112.735236 1.791479 24.184971 3.327033 48.305961 5.150503 72.426951 2.911154 38.772732 5.982261 77.513473 8.925406 116.286205 1.791479 23.705111 3.359024 47.474203 5.182494 71.179313 2.783191 34.805885 5.822308 69.579778 8.637489 104.353672 1.791479 22.137566 3.391014 44.307123 5.278466 66.44469 2.783191 32.79047 5.790317 65.580941 8.63749 98.371411 2.143377 25.592562 4.09481 51.249106 6.270178 77.673426zM853.670395 114.918282c4.638652 0 11.644616-0.511851 18.554607 0.127963 8.797443 0.799768 10.49295 3.071107 11.036793 11.900541 2.527266 40.372267 4.894578 80.776524 7.581796 121.180782 2.943145 43.571337 6.174206 87.078693 9.405267 130.586048 2.975135 39.956388 5.950271 79.912775 9.149341 119.869163 3.486987 43.891244 7.357862 87.718507 10.876839 131.609751 2.655228 33.622229 4.926568 67.244457 7.677768 100.898677 2.623238 31.222926 5.694345 62.38187 8.509527 93.572805 2.399303 26.8402 4.830596 53.71239 7.165918 80.58458 0.735786 8.509527 0.127963 9.053369-9.053369 8.829434-24.025018-0.575833-47.922073-3.391014-71.947091-2.71921-5.502401 0.159954-7.101936-2.367312-8.029666-7.581796-1.983424-11.356699-1.663517-22.905343-2.879163-34.390006-3.295042-30.359177-5.182494-60.846317-7.965685-91.269474-2.495275-27.639967-5.502401-55.215953-8.349574-82.82393-2.527266-25.240664-5.02254-50.481329-7.709759-75.753984-2.687219-24.792795-5.534392-49.61758-8.349573-74.442365-2.591247-22.841362-5.118512-45.682723-7.869713-68.524085-4.062819-33.462275-8.093648-66.92455-12.508365-100.322844-4.062819-30.647093-8.66948-61.198214-12.988225-91.813317-5.886289-41.587914-12.508365-83.079855-19.834236-124.411842a1393.96288 1393.96288 0 0 0-5.310457-28.023856c-0.959721-4.702633-0.095972-7.421843 5.278466-8.157629 14.139891-1.887451 28.24779-4.830596 42.451663-6.206196 14.203872-1.311619 28.407744-3.966847 45.106891-2.71921z m1006.075609 403.33878c27.064134 0 27.703949 0.191944 32.054684 24.536869 5.342447 30.03927 9.08536 60.334465 12.636328 90.62966 3.742912 32.278619 7.517815 64.557238 10.972811 96.867848 2.783191 26.008441 5.118512 52.080864 7.74175 78.089305 2.7512 27.256079 5.662354 54.416185 8.509527 81.640274 1.567544 15.387528 3.039117 30.775056 4.798605 46.130593 0.511851 4.446708-0.831758 6.81402-5.214485 7.325871-9.245313 1.055693-18.426645 2.27134-27.639967 3.263052-16.891091 1.82347-33.814173 3.614949-50.737254 5.182493-8.733462 0.799768-9.309294 0.319907-10.940821-8.125638-14.843686-76.617733-29.719363-153.171485-44.435086-229.821208-9.789155-50.961189-19.322384-101.95437-28.919595-152.915559a805.525894 805.525894 0 0 1-3.582959-21.081873c-0.639814-4.030829 0.44787-6.622075 5.022541-7.70976 30.48714-7.133927 61.294186-12.636328 89.733921-14.011927z m-1137.077537 0c28.951586 0 28.823623 0.095972 33.302322 26.360339 6.909992 40.660183 11.804569 81.544301 16.187295 122.556382 4.286754 39.796434 8.957397 79.560878 13.148179 119.357311 2.847173 27.224088 5.086522 54.512157 7.74175 81.704255 1.887451 19.354375 4.126801 38.644769 6.174206 57.967153 0.255926 2.367312 0.383888 4.734624 0.543842 7.133927 0.415879 9.469248 0 10.237025-9.117351 11.164755-18.074747 1.887451-36.181485 3.454996-54.256232 5.246476-6.558094 0.639814-13.084197 1.599535-19.57831 2.239349-8.63749 0.799768-8.925406 0.767777-10.620913-7.965685-6.078234-30.679084-11.964523-61.422149-17.914793-92.101233-14.267853-73.898523-28.69566-147.733065-42.867542-221.631589-5.662354-29.559409-10.524941-59.246781-16.091323-88.838181-1.023702-5.406429-0.255926-7.933694 5.342447-9.245313 30.199223-7.037955 60.590391-12.540355 88.006423-13.947946z m382.128944 309.861946v124.027954c0 1.183656-0.127963 2.399303 0.03199 3.582959 0.607823 6.014252-1.599535 8.66948-7.805731 8.413555-8.157629-0.351898-16.251277-0.127963-24.408906 0.063981-17.019054 0.319907-34.070098-0.351898-51.057162 1.599535-9.405267 1.087684-9.213322 0.511851-10.141052-9.405266-2.783191-31.222926-5.822308-62.413861-8.669481-93.636787-2.623238-28.823623-4.99055-57.711228-7.677768-86.534851-2.71921-29.655381-5.758326-59.214791-8.509527-88.838181-1.887451-19.770254-3.550968-39.508518-5.214485-59.278772-2.175368-25.720525-4.190782-51.409059-6.462122-77.129585-0.959721-10.844848-0.159954-12.380402 10.588923-13.500076a531.877423 531.877423 0 0 1 83.527724-2.591247c6.941982 0.383888 13.851974 1.727498 20.570022 3.359024 8.477536 2.015414 9.405267 3.263052 9.853137 12.124476 0.92773 17.850812 1.855461 35.701624 2.335321 53.584427 0.543842 19.866226 0.095972 39.764443 0.831758 59.63067 1.855461 54.800074 1.567544 109.664129 2.207359 164.528184z m1134.806197 5.630364v117.437869c0 1.983424-0.063981 3.966847 0.03199 5.982262 0.415879 5.150503-1.983424 6.973973-6.878001 6.941982-12.028504-0.095972-24.025018 0-36.021531 0.159954-13.564058 0.127963-27.096125 0.063981-40.628192 1.535553-8.925406 1.023702-8.989387 0.351898-9.789155-8.509527-3.678931-40.660183-7.549806-81.320366-11.260728-122.04453-3.391014-37.525094-6.526103-75.082179-9.981099-112.639265-3.550968-38.740741-7.421843-77.38551-10.90883-116.09426-1.727498-19.386366-3.16708-38.772732-4.606661-58.159097-0.575833-8.445546 0.351898-9.949109 9.885127-10.716886 16.571184-1.311619 33.078387-3.550968 49.777534-3.263051 16.635165 0.319907 33.302322-0.607823 49.841515 2.559256 14.011928 2.687219 14.715723 3.486987 15.547481 18.458635 2.399303 44.051198 1.663517 88.230358 3.231061 132.281556 1.599535 46.89837 0.479861 93.79674 1.759489 146.069549zM1831.498213 305.135c9.789155 0.575833 17.498914 0.095972 25.176683 1.791479 4.894578 1.119675 7.357862 3.327033 7.837723 8.573509 2.303331 25.240664 4.798605 50.51332 7.32587 75.785975 2.015414 20.50604 4.158791 41.012081 6.238188 61.518121l0.191944 1.183656c1.663517 12.924244 1.279628 13.276142-11.292718 13.979937-11.196746 0.607823-22.361501 1.599535-33.558247 2.27134-7.357862 0.44787-9.693183 1.695507-10.90883-9.021378-4.190782-37.813011-9.053369-75.530049-13.692021-113.311069a1185.0316 1185.0316 0 0 0-4.286754-31.798759c-0.92773-5.982261 1.407591-9.277304 7.005964-9.757164 7.357862-0.671805 14.715723-0.863749 19.962198-1.215647z m-1133.398606 0.159954c7.549806 0.415879 15.323547-0.159954 22.937334 1.599535 4.350736 0.991712 6.558094 2.815182 6.973973 7.773741 0.92773 11.83656 2.7512 23.641129 3.870875 35.477689 3.550968 36.309448 6.909992 72.650886 10.237025 108.992324 0.703795 7.901704 0.543842 8.061657-6.84601 8.605499-13.116188 0.959721-26.264367 1.919442-39.412546 2.463284-7.645778 0.351898-8.605499-0.575833-9.56522-8.381564-3.327033-26.744227-6.462122-53.520446-9.661192-80.296664-2.591247-22.073585-4.766615-44.14717-7.901704-66.156773-0.863749-6.078234 1.119675-7.74175 5.982262-8.733462 7.709759-1.567544 15.451509-1.055693 23.385203-1.343609z m399.147998 100.002936c0 23.001315 0.063981 45.97064-0.031991 69.003946 0 10.332997-0.127963 10.396978-10.396978 10.269016a324.289753 324.289753 0 0 1-36.981252-1.919443c-7.933694-0.991712-8.093648-0.735786-8.317583-9.149341-0.799768-28.119828-1.631526-56.239655-2.207359-84.359483-0.415879-19.034468-0.639814-38.004955-1.791479-57.039422-0.607823-9.821146-0.063981-9.917118 9.373276-10.045081 13.915956-0.159954 27.799921 0.479861 41.619904 2.591247 8.317583 1.279628 8.701471 1.279628 8.733462 10.49295 0.063981 23.385204 0.063981 46.770407 0.063981 70.187602h-0.063981z m1135.38203 0.607824c0 23.033306 0.063981 46.034621-0.031991 69.035936 0 9.661192-0.159954 9.725174-9.853137 9.661192a505.32514 505.32514 0 0 1-38.132917-1.791479c-6.302168-0.479861-8.157629-3.135089-7.74175-8.861425 0.063981-0.799768 0-1.599535 0-2.399302-0.959721-44.403095-1.919442-88.7742-2.815182-133.177296-0.031991-2.367312-0.159954-4.734624-0.063982-7.133926 0.127963-8.957397 0.159954-9.181332 9.149341-9.117351 12.380402 0.063981 24.664832 0.703795 37.013243 1.919442 15.067621 1.503563 12.412393 3.359024 12.476375 15.259566 0.063981 22.169557 0.031991 44.403095 0 66.604643z m-1565.593 54.000306c0.287916 12.636328 0.287916 12.604337-11.804569 15.547481-8.221611 2.015414-16.443221 4.222773-24.728813 6.046243-7.069945 1.599535-8.317583 0.703795-9.53323-6.238187-8.445546-47.090314-16.8591-94.212619-25.240664-141.334924-1.695507-9.757164-1.247637-10.364988 8.349573-12.060495 11.804569-2.079396 23.577148-4.126801 35.381717-5.950271 7.517815-1.183656 8.477536-0.767777 9.9811 7.517815 2.975135 16.731138 5.790317 33.526256 7.997675 50.385357 3.423005 26.680246 6.238187 53.456464 9.309295 80.168701 0.255926 1.951433 0.191944 3.966847 0.287916 5.91828z m1064.138735-136.696273c15.451509-2.527266 31.030982-5.086522 46.610454-7.549806 5.598373-0.863749 7.29388 2.655228 8.029666 7.645778 2.655228 18.426645 5.982261 36.725327 8.157629 55.183962 3.19907 26.744227 7.581797 53.360492 8.413555 80.328655 0.063981 2.7512 0.031991 5.566382 0.095972 8.317583 0.159954 4.286754-1.983424 6.494113-5.950271 7.421843-10.556932 2.367312-21.113864 4.734624-31.638805 7.261889-5.054531 1.215647-6.750038-0.92773-7.581796-5.854298-3.16708-18.746552-6.81402-37.397131-10.045081-56.079702-5.47041-30.775056-10.780867-61.582103-16.091323-92.38915-0.127963-1.119675 0-2.303331 0-4.286754z m-710.64147 108.032603c-0.44787 16.37924 0.543842 30.647093-1.695507 44.914947-0.671805 4.510689-1.983424 7.421843-6.846011 7.837722-10.428969 0.863749-20.825947 1.695507-31.190935 2.7512-5.02254 0.543842-6.430131-1.631526-7.261889-6.558094-2.335321-14.55577-1.919442-29.303484-3.327033-43.923234-2.655228-27.607976-3.774903-55.407897-5.566383-83.111846-0.44787-6.750038-1.119675-13.436095-1.663516-20.186134-0.287916-3.774903 1.215647-5.886289 5.246475-6.046242 13.500077-0.543842 26.936172-3.007126 40.50023-2.527266 7.933694 0.287916 8.605499 0.799768 9.181331 8.797443 0.351898 5.534392 0.255926 11.132765 0.383889 16.699147l2.239349 81.352357z m1134.902169-15.867388c0 19.066459 0.223935 38.132918-0.031991 57.199376-0.159954 9.917118-1.279628 10.780867-10.652904 11.644616-9.277304 0.863749-18.490626 1.567544-27.735939 2.559256-5.214485 0.543842-7.645778-0.991712-7.965685-6.973973-1.34361-25.336637-3.16708-50.673273-4.926568-75.977919-1.3756-20.985901-2.943145-41.939811-4.414717-62.893722-0.159954-2.399303-0.031991-4.798605-0.191944-7.165917-0.223935-4.190782 1.055693-6.654066 5.758326-6.81402 13.116188-0.44787 26.136404-2.975135 39.348564-2.495274 8.061657 0.287916 8.18962 0.415879 8.797444 8.797443 1.951433 27.32006 2.143377 54.704102 2.015414 82.120134zM628.295894 756.171918c16.571184 18.234701 17.402942 39.828425 11.932532 62.413861-5.502401 22.585436-18.042756 41.204025-33.23834 57.903171-25.49659 27.895893-56.303637 48.497905-89.062116 65.99682-56.399609 30.135242-116.190232 50.161422-178.572103 61.997982-44.882956 8.477536-90.053828 15.00364-135.704561 17.498914-13.915956 0.767777-27.799921 1.407591-41.715876 1.311619-10.077071 0-20.186133 0.287916-30.231214-0.063981-8.541518-0.319907-9.789155-1.791479-10.49295-10.716886-2.591247-32.022693-4.798605-64.077378-7.645778-96.100071-3.327033-37.109215-7.229899-74.18644-10.812858-111.295654-2.623238-26.8402-4.894578-53.744381-7.773741-80.520599-3.327033-31.542833-7.069945-63.021684-10.716885-94.564517-3.327033-29.111539-6.526103-58.28706-10.045081-87.430591-3.934856-32.278619-7.997676-64.493257-12.31642-96.707894a8228.968456 8228.968456 0 0 0-13.212161-92.996973 5984.500754 5984.500754 0 0 0-24.312934-152.627642 3243.825263 3243.825263 0 0 0-23.67312-123.740038c-1.151665-5.502401 0.511851-7.709759 5.342448-9.725174C52.335283 47.609843 98.465876 28.063524 144.724432 8.77313c8.605499-3.582959 17.434933-6.590085 26.584274-8.285592 6.334159-1.183656 7.965685 0.127963 7.773741 6.494113-0.479861 16.283268 0.191944 32.630517-1.407591 48.849803a161.393095 161.393095 0 0 0-0.639814 13.084197c-0.735786 58.383032-1.439582 116.798056 0.095972 175.213079 1.34361 51.185124 4.030829 102.338258 7.005964 153.491392 2.335321 40.372267 5.694345 80.744534 9.149341 121.052819 3.391014 39.508518 7.517815 78.953054 11.38869 118.461572 0.735786 7.517815 1.407591 8.221611 9.949108 7.069945a381.329176 381.329176 0 0 1 50.833227-4.190782c52.880632-0.127963 104.897514 7.133927 156.338564 19.322384 45.010919 10.684895 88.806191 24.920757 130.777993 44.818975 20.793957 9.853136 40.692174 21.241827 58.830902 35.701624 6.174206 4.862587 11.676606 10.46096 16.891091 16.315259z m1126.840512-9.597211c20.47405 17.946784 27.927883 39.924397 22.105576 67.116494-4.830596 22.425483-15.771416 41.268006-30.359177 58.127107-23.417194 27.096125-51.856929 47.698138-82.631985 64.909136-60.334465 33.782182-124.603787 55.727804-192.168151 68.396122a1151.089465 1151.089465 0 0 1-111.455609 15.547481c-21.177845 1.82347-42.451662 4.09481-66.220754 2.623238h-27.76793c-5.406429 0-8.477536-1.695507-8.925406-8.125638-2.047405-28.087837-4.414717-56.143683-6.941983-84.19953-2.687219-29.623391-5.662354-59.246781-8.477536-88.870172-2.559256-27.224088-4.926568-54.512157-7.709759-81.736245-2.559256-25.656544-5.502401-51.249106-8.285592-76.873659-2.591247-24.057008-5.086522-48.114017-7.933695-72.139035-3.423005-29.111539-7.037955-58.223079-10.652904-87.334618-3.391014-27.160107-6.750038-54.288222-10.364987-81.416338a6133.577429 6133.577429 0 0 0-12.156467-87.142675c-5.694345-37.653057-11.804569-75.178151-17.818822-112.767227a3259.14881 3259.14881 0 0 0-29.111539-158.993792c-0.44787-2.335321-0.671805-4.734624-1.3756-7.005964-1.663517-5.118512-0.063981-7.837722 4.958559-9.821146C1191.012355 47.641834 1238.61452 24.448575 1288.2321 6.149893c6.494113-2.431293 13.052207-5.150503 20.058171-5.854299 6.302168-0.639814 7.901704 0.383888 7.29388 7.101936-3.327033 36.43741-1.407591 73.066765-3.135089 109.536166-1.407591 29.751354-1.247637 59.598679 0.255926 89.382023 0.351898 7.549806 0.639814 15.131602 0.575832 22.649418-0.383888 35.765606 1.503563 71.499221 3.327033 107.200845 2.335321 47.186286 5.758326 94.276601 9.245313 141.398906 2.527266 34.006117 5.822308 67.948253 9.021379 101.922379 1.695507 18.586598 3.518977 37.141206 5.822308 55.631832 1.247637 10.205034 1.759489 10.301006 11.772578 8.957396 17.658868-2.399303 35.349726-4.350736 53.200539-4.09481 62.637796 0.799768 124.027954 10.684895 184.266447 27.863902 40.788146 11.580634 80.488608 26.040432 117.981712 46.290547a253.55831 253.55831 0 0 1 47.218277 32.438573zM308.676783 922.811488c23.161269-11.068783 135.608589-98.947243 144.533995-113.279078-54.576139-23.513166-109.344222-45.362816-168.239105-63.24562l23.70511 176.524698z m1277.196815-107.520752c2.879163-3.103098 2.559256-5.502401-1.343609-7.229899-7.773741-3.550968-15.4835-7.325871-23.353213-10.556932-42.003793-17.179007-84.19953-33.814173-127.482951-47.37823-3.774903-1.151665-7.645778-3.774903-12.476374-1.535554l23.321222 173.45359c3.454996 0.767777 4.798605-0.831758 6.33416-1.919442 39.316574-28.855614 78.889073-57.35933 116.638102-88.390312 6.36615-5.182494 12.668318-10.396978 18.362663-16.443221z"
5
+ fill="#FB7299" p-id="4405"></path>
6
+ </svg>
@@ -0,0 +1,43 @@
1
+ <svg version="1.1" class="bottom-weibo-logo" xmlns="http://www.w3.org/2000/svg"
2
+ xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 81"
3
+ style="enable-background:new 0 0 100 81;" xml:space="preserve" width="55" height="55">
4
+ <style type="text/css">
5
+ .st0 {
6
+ fill: #FFFFFF;
7
+ }
8
+
9
+ .st1 {
10
+ fill: #D62B2A;
11
+ }
12
+
13
+ .st2 {
14
+ fill: #E89214;
15
+ }
16
+
17
+ .st3 {
18
+ fill: #040000;
19
+ }
20
+ </style>
21
+ <title>navigationbar_release</title>
22
+ <desc>Created with Sketch.</desc>
23
+ <g id="Page-1">
24
+ <g id="weibo-logo" transform="translate(-10.000000, -27.000000)">
25
+ <g id="tab">
26
+ <g id="navigationbar_release-copy" transform="translate(10.000000, 27.000000)">
27
+ <g id="Group" transform="translate(2.500000, 4.500000)">
28
+ <path id="Shape" class="st0"
29
+ d="M9.1,49.8c0,10.4,13.7,19,30.4,19c16.9,0,30.4-8.5,30.4-19S56.2,30.7,39.5,30.7S9.1,39.3,9.1,49.8" />
30
+ <path id="Shape_1_" class="st1"
31
+ d="M70,34.7c-1.3-0.4-2.2-0.6-1.4-2.2c1.4-3.6,1.5-6.7,0-8.9c-3-4.1-11-4-20.1-0.1c0,0-2.9,1.3-2.2-1.1c1.4-4.5,1.2-8.3-1-10.6C40.4,6.8,27.3,12,15.9,23.2C7.5,31.7,2.5,40.7,2.5,48.6c0,14.8,19.2,23.9,37.8,23.9c24.5,0,40.8-14.3,40.8-25.5C81,40.1,75.1,36.3,70,34.7z M40.2,67.1C25.4,68.6,12.4,61.9,11.4,52c-1-9.7,10.3-18.9,25.2-20.3s27.8,5.2,28.8,15.1C66.5,56.5,55.1,65.7,40.2,67.1z" />
32
+ <path id="Shape_2_" class="st2"
33
+ d="M86.3,7.4c-5.9-6.5-14.6-9-22.7-7.3l0,0c-1.9,0.4-3.1,2.2-2.6,4c0.4,1.9,2.2,3.1,4,2.6c5.7-1.2,11.9,0.6,16.2,5.2c4.1,4.7,5.3,11.1,3.6,16.6l0,0c-0.6,1.8,0.4,3.8,2.2,4.4c1.8,0.6,3.8-0.4,4.4-2.2l0,0C93.8,22.9,92.2,14,86.3,7.4" />
34
+ <path id="Shape_3_" class="st2"
35
+ d="M77.2,15.7c-2.9-3.2-7.1-4.4-11.1-3.6c-1.5,0.4-2.6,1.9-2.2,3.6c0.4,1.5,1.9,2.6,3.6,2.2l0,0c1.9-0.4,4,0.3,5.3,1.8c1.4,1.5,1.8,3.7,1.2,5.6l0,0c-0.4,1.5,0.4,3.2,1.9,3.7c1.5,0.4,3.2-0.4,3.7-1.9C80.9,23.1,80.2,18.8,77.2,15.7" />
36
+ <path id="Shape_4_" class="st3"
37
+ d="M41.7,39.3c-7.1-1.9-15.1,1.6-18.2,8s-0.1,13.4,7,15.8c7.4,2.3,16.2-1.3,19.3-8.2C52.8,48.1,49.1,41.2,41.7,39.3z M36.3,55.5c-1.4,2.2-4.5,3.3-6.9,2.2c-2.2-1.1-3-3.7-1.5-5.9c1.4-2.2,4.4-3.2,6.7-2.2C37,50.6,37.7,53.2,36.3,55.5z M41,49.4c-0.4,1-1.6,1.3-2.6,1c-0.8-0.4-1.2-1.3-0.7-2.2c0.4-0.8,1.6-1.3,2.5-1C41.3,47.5,41.5,48.6,41,49.4z" />
38
+ </g>
39
+ </g>
40
+ </g>
41
+ </g>
42
+ </g>
43
+ </svg>
Binary file