-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
1095 lines (706 loc) · 33.6 KB
/
search.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>12月到了</title>
<url>/posts/33755/</url>
<content><![CDATA[# 12月到了,我要更加努力💪
]]></content>
<categories>
<category>日常</category>
</categories>
<tags>
<tag>日常</tag>
</tags>
</entry>
<entry>
<title>butterfly导航栏图标修改</title>
<url>/posts/42497/</url>
<content><
官方配置代码如下
```
例: 首页: / || fas fa-home
```
打开[fontawesome](https://fontawesome.com/)

点击顶部导航栏的icons

比如我在搜索栏里搜索bilibili
点击你想要的图标

这里他给了一个html
```
<i class="fa-brands fa-bilibili"></i>```
```
把里面的fa-brands fa-bilibili复制下来
```
# 原来代码
首页: / || fas fa-home
#修改后
首页: / || fa-brands fa-bilibili
```
至此修改完毕
]]></content>
<categories>
<category>butterfly</category>
<category>教程</category>
</categories>
<tags>
<tag>butterfly</tag>
<tag>教程</tag>
</tags>
</entry>
<entry>
<title>greasyfork新可用地址</title>
<url>/posts/61002/</url>
<content><![CDATA[- # 更多请前往github仓库https://github.com/fishcpy/greasyfork
# 由于greasyfork在中国突然被sni阻断,这里提供一个新地址
# 25.2.14更新
更新长期地址自动跳转
请求地址 https://nextgo.us.kg/api
例;
原先地址 https://www.greasyfork.us.kg/zh-CN/scripts/by-site/bilibili.com
长期自动跳转地址 https://nextgo.us.kg/api/zh-CN/scripts/by-site/bilibili.com
使用这个可以长期自动跳转到最新域名
## 中文:
新域名 https://nextgo.us.kg/ (此域名为中转,确保以后更换域名不用费劲心思再找)
它将有以下限制:
1.日本地区ip将会被阻止
2.繁体中文将会重定向到 https://greasyfork.org/zh-TW
3.由于服务器带宽不高,将会进行人机验证
4.可能无法登录,ps:没试过
此域名为镜像 cn-greasyfork.org
下载地址为 update.greasyfork.us.kg
⚠️注意事项:
由于.us.kg域名的特殊性,如果跳反诈基本是由于使用了运营商dns,可以更改dns为其他的,我在这里列几个
阿里云:223.5.5.5
腾讯云:119.29.29.29
114dns:114.114.114.114
360dns:101.198.198.198
google:8.8.8.8
cloudflare:1.1.1.1
## English:
New domain: https://nextgo.us.kg/ (This domain name for the transit, to ensure that the future replacement of the domain name do not have to struggle to find again)
It will have the following restrictions:
1.IP addresses from Japan will be blocked.
2.Traditional Chinese will be redirected to https://greasyfork.org/zh-TW.
3.Due to low server bandwidth, human verification will be implemented.
4.Login may not be possible; PS: not tested.
This domain is a mirror of cn-greasyfork.org.
The download address is update.greasyfork.us.kg.
⚠️ Notices:
Due to the unique nature of the .us.kg domain, if you experience issues with fraud prevention, it is likely due to using your ISP's DNS. You can change the DNS to others; here are a few options:
Alibaba Cloud: 223.5.5.5
Tencent Cloud: 119.29.29.29
114dns: 114.114.114.114
360dns: 101.198.198.198
Google: 8.8.8.8
Cloudflare: 1.1.1.1]]></content>
<categories>
<category>解决问题</category>
<category>greasyfork</category>
</categories>
<tags>
<tag>解决问题</tag>
<tag>greasyfork</tag>
</tags>
</entry>
<entry>
<title>Hello World</title>
<url>/posts/1243066710/</url>
<content><! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues).
## Quick Start
### Create a new post
```bash
$ hexo new "My New Post"
```
More info: [Writing](https://hexo.io/docs/writing.html)
### Run server
```bash
$ hexo server
```
More info: [Server](https://hexo.io/docs/server.html)
### Generate static files
```bash
$ hexo generate
```
More info: [Generating](https://hexo.io/docs/generating.html)
### Deploy to remote sites
```bash
$ hexo deploy
```
More info: [Deployment](https://hexo.io/docs/one-command-deployment.html)
]]></content>
<categories>
<category>hallo word</category>
<category>hexo</category>
</categories>
<tags>
<tag>hallo word</tag>
<tag>hexo</tag>
</tags>
</entry>
<entry>
<title>一班热榜历史记录2024-2025(上半学期)</title>
<url>/posts/000001/</url>
<content><
## 2024.10.17 星期四 运动会
好 1 龚晟鑫和张雨泽提供自助餐 2 班委们很负责 3 今日运动员们十分卖力 4 王昕妍和刘佳懿无私奉献 不好 1 有几位同学违反纪律 [运动会图库 点击这里](/yi-ban-2024-di-jiu-jie-qiu-ji-tian-jing-yun-dong-hui-tu-ku)
## 2024.10.16 星期三
好 1 李嘉晟上课十分认真 2 今日有十个人听写全对 💯 不好 1 无
## 2024.10.15 星期二
好 1 今日耿思凡主动借饭卡给索林熙 2 李承宣课上被老师表扬 👍 3 今日语文听写 15 个全对💯 不好 1 今日某人没写英语作业(小马哥)🐎 2 两位同学记律太差👎 班主任信息 今天继续听写论语十二章,以下同学全对。辛栋,孟诗颖,郭佳怡,李嘉晟,张紫涵,于浩楠,张耘卓,闫博凯,王思萌,陈骏洁,王腾煊,张紫萱,马一然,姜子跃。王昱涵,张雨泽。恭喜以上同学。今天班里小伙子表现很好。期待大家更好表现。
## 2024.10.14 星期一
好 1 姜子跃,王昱涵和侯睿祺上课认真听讲 2 今日论语默写有 20 人全对 3.1 张紫萱,侯芊黛和孟诗颖为优秀课代表 3.2 王昕妍,张紫萱和段茗涵为优秀班委 3.3 杜明露,汪洋和闫博凯为学习标兵 不好 1 今日有一名同学所有作业都没带 2 今日升旗时,两位同学乱动,享受了免费健身服务 3两位同学历史作业在讲台,被历史老师请到班级后面(已补完) 4 今日小干部扣了3分😭
## 2024.10.12 星期六
好 1 王昕妍,陈骏洁,段茗涵当选学生代表 2 毛立龙在班里认真学习 不好 1 两位同学在课上吵架 2 有一位同学逃值日 3 地理课上有几位同学没拿地球仪 4 四位同学课间跳舞
## 2024.10.11 星期五
好 1 今日王沛禹主动为班级喊口号 2 今日班委会正式成立 3 今日有 10 名同学默写全对,23 名同学优秀 4 索林熙分享自己珍藏的昆虫标本 不好 1 三名同学上课玩笔+罗阵 2 两名同学在图书馆说话 班主任信息 今天语文课默写全对的的同学有王思萌,辛栋,张耘卓,杜明露,张紫萱,刘溢昕,孟诗颖,陈骏洁,郭佳怡,段茗涵。错两个以内的同学有,李泽辰,郑旭晴,王昱涵,王腾煊,张紫涵,李子宇,李嘉晟,侯芊黛,闫博凯,王欣妍,陆子俊,马敏萱于浩楠,张雨泽。恭喜以上同学。期待看到更多孩子优秀的表现。
## 2024.10.10 星期四
好 1 今天有八个同学英语听写 100 分 2 张雨泽数学 100 分(周二热搜) 3 本周卫生角没有扣分,十分难得 4 刘佳懿,梦诗颖,刘溢昕,张耘卓,王思萌,于浩楠语文默写全对 不好 1 有两位男生在图书馆说小话 2 某位同学道法课带历史书,历史课带道法书 3 某人在历史课上写作业
## 2024.10.9 星期三
好 1 张雨泽数学 100 分(至今未超越) 2 刘佳懿,梦诗颖,刘溢昕,张耘卓,王思萌,于浩楠语文听写 100 分 不好 1 昨天有 4 个男生没找老师背论语 2 早读有位同学说话被罚站
## 2024.10.8 星期二
好 1 张雨泽数学 100 分 2 姜子跃和索林熙自觉在教室学习 3 马敏宣背完语文书 4 王腾煊回答了许多男生不会的问题 不好 1 数学课上 4 个男生回答不出问题 2 有两位男生在生物课上说话
# 更早以前
没有啦,那时一班热榜都还没有啊!
# 维护名单
| | |
| ----------------- | ------ |
| 名字 | 分组 |
| 孟\*\* | 班委 |
| fishcpy | 班委 |
| 郭\*\* | 班委 |
| 陈\*\* | 班委 |
| 梁\* | 班主任 |
]]></content>
<categories>
<category>家校</category>
</categories>
<tags>
<tag>家校</tag>
</tags>
</entry>
<entry>
<title>关于casaos国内无法拉取镜像解决方法</title>
<url>/posts/4/</url>
<content><![CDATA[1 进入casaos
2 打开files
3 点击文件下方的root
4 打开etc文件夹
5 使用cirl+f搜索docker
6打开docker文件夹
7 在电脑本地创建一个txt,加入以下内容
```json
{n "registry-mirrors": [n "https://dockerhub.icu",n "https://docker.chenby.cn",n "https://docker.1panel.live",n "https://docker.awsl9527.cn",n "https://docker.anyhub.us.kg",n "https://dhub.kubesre.xyz",n "https://dockerproxy.cn/",n "https://hub.rat.dev/",n "https://docker.actima.top/"n ]n }
```
8 保存,重命名为daemon.json
9 上传到docker文件夹
10使用ssh链接打开终端,输入以下内容
```
sudo systemctl daemon-reloadnnsudo systemctl restart dockernnsudo reboot
```
此时设备会重启,重启好了就可以用应用商店了。
]]></content>
<categories>
<category>解决问题</category>
<category>教程</category>
</categories>
<tags>
<tag>教程</tag>
<tag>解决问题</tag>
</tags>
</entry>
<entry>
<title>启用cloudflare cdn后js无法正常加载解决办法</title>
<url>/posts/46462/</url>
<content><
### 2.点击侧边栏的 速度-优化-内容优化 把里面的 Rocket Loader™ 关掉

]]></content>
<categories>
<category>解决问题</category>
<category>CDN</category>
</categories>
<tags>
<tag>解决问题</tag>
<tag>CDN</tag>
</tags>
</entry>
<entry>
<title>在byrutgame上下载免费游戏</title>
<url>/posts/9688/</url>
<content><

在搜索栏里输入刚刚搜索到的游戏英文名,例如我的就是FORZA HORIZON 5

直接搜索

> 注意:图片有红色印章的是可以联网的游戏
点击想要的游戏来到这页

点击这个按钮下载.torrent文件

# 下载下载器
这里推荐qbittorrent增强版 [github](https://github.com/c0re100/qBittorrent-Enhanced-Edition/)
链接不上github的可以用 123[盘下载](https://www.123pan.com/s/rnITjv-lxY13)(仅适用于Windows)
打开软件之后是这样的

点击左上角 文件-添加torrent文件,把刚下的文件导入进去
选择文件保存位置后点击确定就可以开始下载了

下载完点击对应启动程序启动游戏
> 记得在游戏设置里改语言!
]]></content>
<categories>
<category>教程</category>
<category>游戏</category>
</categories>
<tags>
<tag>教程</tag>
<tag>游戏</tag>
</tags>
</entry>
<entry>
<title>安知鱼主题音乐馆默认歌单修改</title>
<url>/posts/23139/</url>
<content><,其他请自行测试
## 文件路径
打开博客根目录目录
依次打开
/themes/anzhiyu/source/js
里面有一个utils.js
打开它
按ctrl+f搜索 getCustomPlayList: function ()

文件参数是这样的
修改const userId = 你歌单的id
如果想修改歌单音乐服务商就改const userServer = netease或tencent或kugou,或xiami或 baidu
这样访问 /music/接可以了,不用在后面加?id=歌单id&server=音乐服务商
> 参考 [避坑:我找到了Hexo安知鱼的音乐馆配置(目前好像还没有教程)](https://blog.csdn.net/2202_75762088/article/details/138251572#:~:text=%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6%E5%B0%B1%E6%98%AFBloghemesanzhiyusourcejsutils.js%20%E6%89%93%E5%BC%80%E8%AF%A5%E6%96%87%E4%BB%B6%EF%BC%8C%E6%8C%89Ctrl%2BF%E6%90%9C%E7%B4%A2%20getCustomPlayList%3A,function%20%28%29%20%E8%BF%99%E4%B8%AA%E5%87%BD%E6%95%B0%E5%86%85%E5%B0%B1%E6%98%AF%E5%85%B3%E4%BA%8E%E9%9F%B3%E4%B9%90%E6%BA%90%E7%9A%84%E8%AE%BE%E7%BD%AE%EF%BC%8C%E6%94%B9%E6%88%90%E8%87%AA%E5%B7%B1%E7%9A%84%E5%B0%B1%E5%A5%BD%EF%BC%9A)。]]></content>
<categories>
<category>技术</category>
<category>安知鱼主题</category>
</categories>
<tags>
<tag>技术</tag>
<tag>安知鱼主题</tag>
</tags>
</entry>
<entry>
<title>引入Aplayer播放音乐-自定义api地址</title>
<url>/posts/10813/</url>
<content><![CDATA[> ## 此文章仅适用于akilar糖果屋中的 **引入Aplayer播放音乐** 文章 https://akilar.top/posts/3afa069a/ ,其他请自行测试]
# 1.为什么要自定义api地址
meting_js的官方api很不稳定,播放歌曲断断续续,所以要自定义api地址
# 2.如何自定义api地址
akilar糖果屋中有这样一些字
4.在主题配置文件`[Blogroot]\_config.butterfly.yml`的inject配置项中添加Aplayer的容器。
```
inject:
head:
bottom:
- <div class="aplayer no-destroy" data-id="5183531430" data-server="netease" data-type="playlist" data-fixed="true" data-mini="true" data-listFolded="false" data-order="random" data-preload="none" data-autoplay="false" muted></div>
```
1. Aplayer的网易云歌单接口时不时的会挂掉,所以如果你确定你配置正确,但是歌单还是没有出现。不妨去看看其他人的站点是不是也没有Aplayer标签了来判断是Aplayer本身接口的问题还是自己配置出错的问题。
里面并没有说如何自定义api地址
所根据我的尝试,成功自定义api地址
```
# akilar糖果屋中原本代码
- <div class="aplayer no-destroy" data-id="5183531430" data-server="netease" data-type="playlist" data-fixed="true" data-mini="true" data-listFolded="false" data-order="random" data-preload="none" data-autoplay="false" muted></div>
# 修改后
- <div class="aplayer no-destroy" data-id="5183531430" data-server="netease" data-type="playlist" data-fixed="true" data-mini="true" data-listFolded="false" data-order="random" data-preload="none" data-autoplay="false" data-meting_api="https://meting.qjqq.cn/?server=:server&type=:type&id=:id&auth=:auth&r=:r" muted></div>
```
根据上方的配置参数,这里添加了一个data-meting_api="https://meting.qjqq.cn/?server=:server&type=:type&id=:id&auth=:auth&r=:r"
如果以后这个挂了也可以自建或者使用别人的api
]]></content>
<categories>
<category>解决问题</category>
</categories>
<tags>
<tag>解决问题</tag>
</tags>
</entry>
<entry>
<title>我的ai网站发布啦</title>
<url>/posts/1/</url>
<content><![CDATA[<https://ai.fishcpy.us.kg/>]]></content>
<categories>
<category>AI</category>
</categories>
<tags>
<tag>AI</tag>
</tags>
</entry>
<entry>
<title>本站历程</title>
<url>/posts/56827/</url>
<content><![CDATA[# 本站历程
- 2024.9 宝塔面板无法安装,找到了1panel面板
- 2024.9 在应用商店里发现halo建站,开始了我的建站之路
- 2024.9 发布自己的第一篇文章
- 2024.9 购买了云服务器
- 2024.10 发现wordpass有一款主题特别好看,于是转到WordPress
- 2024.11 wordpass优化不好,有转到hexo倾向
- 2024.12 全站正式转到hexo,开始对butterfly美化
- 2024.12 基本定型
- 2024.12 更换安知鱼主题,启用cloudflare cdn
- 2025.1.1 安知鱼主题加载太慢,并且页脚不能加 html,关闭 cloudflare CDN
- 等待发展
]]></content>
<categories>
<category>站点历程</category>
</categories>
<tags>
<tag>站点历程</tag>
</tags>
</entry>
<entry>
<title>水-1</title>
<url>/posts/2/</url>
<content><![CDATA[提示词:写一篇400字的描述中国的作文
# 中国的文化传统
中国是一个拥有悠久历史和丰富文化传统的国家。中国的文化源远流长,包括诗歌、绘画、音乐、戏剧、建筑等多个领域,都展现出独特的魅力。其中,中国的书法被誉为“东方艺术之花”,每一笔每一画都蕴含着深厚的文化内涵。中国的传统绘画以山水、花鸟为主题,追求意境的抒发和笔墨的韵味,体现了中国人对自然的独特感悟。
中国的音乐也是独具特色,古代的乐曲如《广陵散》、《阳关三叠》等流传至今,展现了中国人对音乐艺术的热爱和追求。中国的传统戏曲更是独树一帜,有京剧、豫剧、越剧等不同类型,每一种戏曲都有其独特的表演风格和表现形式,深受中国人民的喜爱。
此外,中国的建筑也是举世闻名,如万里长城、故宫等建筑奇迹,展现了中国古代建筑工艺的精湛和气势恢宏。中国的传统建筑注重“天人合一”的理念,追求与自然的和谐共生,体现了中国人对宇宙和谐的追求。
总的来说,中国的文化传统是丰富多彩的,融合了诗歌、绘画、音乐、戏剧、建筑等多种艺术形式,展现了中国人民对美好生活的向往和追求。这些传统文化不仅丰富了中国人民的精神生活,也为世界文化的多样性做出了重要贡献。
> AI 也可能犯错,请仔细辨别]]></content>
</entry>
<entry>
<title>给你的博客加上一个十年倒计时吧</title>
<url>/posts/39860/</url>
<content><
# 打开: 你博客目录/themes/anzhiyu/source/js
在里面新建一个.js文件,例如我新建了一个clock.js文件
编辑文件,加入下面代码
```
// 设置倒计时的目标日期
var countDownDate = new Date("September 6, 2034 00:00:00").getTime();
// 更新倒计时每秒
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
// 计算天、小时、分钟和秒
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// 显示结果
document.getElementById("countdown").innerHTML = days + "天 " + hours + "小时 "
+ minutes + "分钟 " + seconds + "秒 ";
// 如果倒计时结束,显示消息
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "你发现了彩蛋";
}
}, 1000);
```
| 参数 | 注释 | 可改值 |
| ----------- | ----------- | ----------- |
| 你发现了彩蛋 | 倒计时结束的文字 | 随意 |
| September 6 | 日期 | 英文月份+日期 |
| 2034 00:00:00 | 日期 | 年份+具体时间 |
# 在你要的文件里(本人仅测试了md文件)加入下面代码即可实现
```
<style>
.big-font {
font-size: 50px; /* 你可以根据需要调整这个大小 */
font-weight: bold;
}
</style>
<body>
<div id="countdown" class="big-font"></div> <!-- 应用大字体样式 -->