-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1454 lines (1399 loc) · 107 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN" data-a11y-animated-images="system" data-a11y-link-underlines="false">
<head>
<meta charset="utf-8">
<title>庞玺桐</title>
<link media="all" rel="stylesheet" href="./blog/Pricing/light-983b05c0927a.css" />
<link media="all" rel="stylesheet" href="./blog/Pricing/dark-5d486a4ede8e.css" />
<link data-color-theme="light" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/light-983b05c0927a.css" />
<link data-color-theme="dark" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/dark-5d486a4ede8e.css" />
<link data-color-theme="dark_dimmed" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/dark_dimmed-27c8d635e4e5.css" />
<link data-color-theme="dark_high_contrast" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/dark_high_contrast-8438e75afd36.css" />
<link data-color-theme="dark_colorblind" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/dark_colorblind-bf5665b96628.css" />
<link data-color-theme="light_colorblind" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/light_colorblind-c414b5ba1dce.css" />
<link data-color-theme="light_high_contrast" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/light_high_contrast-e5868b7374db.css" />
<link data-color-theme="light_tritanopia" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/light_tritanopia-299ac9c64ec0.css" />
<link data-color-theme="dark_tritanopia" media="all" rel="stylesheet" type="text/css" data-href="./blog/Pricing/dark_tritanopia-3a26e78ad0ff.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/primer-primitives-49b09e982548.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/primer-057c0a4d4826.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/global-c351b58c5a60.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/github-16496cb71934.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/site-657ed51f7599.css" />
<link media="all" rel="stylesheet" type="text/css" href="./blog/Pricing/pricing-7fcde07cab17.css" />
<script type="application/json" id="client-env">{"locale":"en","featureFlags":["failbot_handle_non_errors","fix_react_title","geojson_azure_maps","image_metric_tracking","turbo_experiment_risky","use_scroll_restoration","sample_network_conn_type"]}</script>
<script defer="defer" type="application/javascript" src="./blog/Pricing/wp-runtime-4c1ff8ea605b.js"></script>
<script defer="defer" type="application/javascript" src="./blog/Pricing/vendors-node_modules_github_selector-observer_dist_index_esm_js-2646a2c533e3.js"></script>
<script defer="defer" type="application/javascript" src="./blog/Pricing/pricing-87be70414a88.js"></script>
<link rel="shortcut icon" href="./blog/images/favicon.ico">
<link rel="bookmark" href="./blog/images/favicon.ico">
<style>
.cover-image{position:absolute !important;height:100% !important;width:100% !important;object-fit:cover;left:0 !important;top:0 !important}@media(min-width:768px){.tease-thumbnail--square-reverse{padding-bottom:25%}}
@media(min-width:544px){.p-responsive-blog{padding-left:40px !important;padding-right:40px !important}}
@media(min-width:544px){.square-thumb-wrap{box-sizing:content-box;max-width:168px}}
</style>
</head>
<body class="logged-in env-production page-responsive header-white" style="word-wrap: break-word;">
<div
class="application-main "
data-commit-hovercards-enabled
data-discussion-hovercards-enabled
data-issue-and-pr-hovercards-enabled
>
<!--百度统计-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?c3a493d9a1c55744165dff839ae8bd12";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- 菜单栏 -->
<header class="blog-header left-0 width-full z-3"style="position: fixed;">
<div data-color-mode="light" data-light-theme="light" data-dark-theme="dark_dimmed" class="border-bottom color-border-muted">
<nav class="nav-header-with-logo nav-bar-include-search container-xl mx-auto p-responsive-blog position-relative">
<div class="d-flex flex-justify-between flex-items-center pt-3 pb-3 color-fg-default">
<div class="d-flex flex-items-center">
<a href="https://github.com" target="_blank" rel="noreferrer" title="Visit GitHub" class="Header-link color-fg-default">
<!--<svg aria-hidden="true" role="img" class="octicon octicon-mark-github d-block" viewBox="0 0 16 16" width="32" height="32" fill="currentColor" style="display:inline-block;user-select:none;vertical-align:text-bottom;overflow:visible"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>-->
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 400 400">
<circle cx="200" cy="200" r="55" fill="black" /> <!-- 黑色圆圈 -->
<circle cx="200" cy="200" r="180" fill="none" stroke="black" stroke-width="5" /> <!-- 黑色圆环2 -->
<circle cx="200" cy="200" r="140" fill="none" stroke="black" stroke-width="5" /> <!-- 黑色圆环3 -->
<circle cx="200" cy="200" r="100" fill="none" stroke="black" stroke-width="5" /> <!-- 黑色圆环4 -->
<circle cx="155" cy="330" r="20" fill="black" /> <!-- 小球1 -->
<circle cx="265" cy="130" r="20" fill="black" /> <!-- 小球2 -->
<circle cx="20" cy="185" r="20" fill="black" /> <!-- 小球4 -->
</svg>
</a>
<span class="d-inline-block ml-2 f1-mktg f2-md-mktg" style="opacity: 0.3;">/</span>
<a class="d-inline-block Header-link font-weight-semibold ml-2 f2 color-fg-default" href="https://oldsai.cn">Oldsai's Blog</a>
</div>
<ul class="d-flex flex-row flex-nowrap overflow-hidden flex-grow-0 list-style-none js-p-target" style="margin-left: auto;">
<li class="ml-4"><a target="_blank"href="./index.htm" class="d-block no-wrap f4-mktg color-fg-default text-medium">HomePage</a></li>
<li class="ml-4"><a target="_blank"href="./introduce/index.html" class="d-block no-wrap f4-mktg color-fg-default text-medium">Introduce</a></li>
<li class="ml-4"><a target="_blank"href="./map.html" class="d-block no-wrap f4-mktg color-fg-default text-medium">Map</a></li>
<li class="ml-4"><a target="_blank"href="./blog/tool/ToolList.html" class="d-block no-wrap f4-mktg color-fg-default text-medium">Tool</a></li>
<li class="ml-4"><a target="_blank"href="./introduce/GitList.html" class="d-block no-wrap f4-mktg color-fg-default text-medium">Git</a></li>
<li class="ml-4"><a target="_blank"href="https://mcjecu.github.io/" class="d-block no-wrap f4-mktg color-fg-default text-medium">MCCU</a></li>
<li class="ml-4"><a target="_blank"href="https://wtcu.github.io/" class="d-block no-wrap f4-mktg color-fg-default text-medium">WTCU</a></li>
</ul>
<a data-analytics-click="Blog, click on button, text: Try GitHub Copilot; ref_location:top nav;" class="btn-mktg font-weight-semibold ml-5 js-header-cta header-cta" href="#comment">评论区</a>
<a data-analytics-click="Blog, click on button, text: Contact sales; ref_location:top nav;" class="btn-mktg btn-muted-mktg font-weight-semibold ml-3 js-header-cta header-cta" href="#oldsai">庞玺桐</a>
<!--搜索<a role="button" aria-label="Search toggle" href="#" class="ml-4 color-fg-default search-field-icon-toggle js-search-toggle" aria-expanded="false" aria-controls="js-header-search">
<svg height="20" class="octicon octicon-search d-block mt-1" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="20" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</a>
<div class="header-search box-shadow-large p-3 js-header-search" hidden>
<form role="search" method="get" class="header-search__form col-12" action="https://github.blog">
<label class="search-form__label screen-reader-text" for="search-input">Search by Keyword</label>
<div class="header-search__form-fields d-flex flex-row flex-items-center">
<input type="search" class="search-field form-control flex-auto p-2 mr-2" placeholder="Search …" value="" name="s" id="search-input">
<div class="site-search__submit ml-2">
<button type="submit" class="btn btn-outline px-4 py-2 search-submit">
Search </button>
</div>
</div>-->
</form>
</div>
</div>
</nav>
</div>
</header>
<!--padding属性用于设置元素的内边距-->
<style>
.element {
padding-left: 20px;
padding-right: 20px;
}
/*
html {
font-size: 16px; 基础字体大小
}
*/
body {
font-size: 1rem; /* 使用rem单位相对于根元素的字体大小 */
min-font-size: 10px; /* 设置字体的最小大小为10px */
}
</style>
<!--
<div class="element">
你的内容
</div>
margin属性用于设置元素的外边距
<style>
.element {
margin-left: 20px;
margin-right: 20px;
}
</style>-->
<center><div style="max-width:1300px;">
<div class="position-relative js-header-wrapper ">
<header class="Header js-details-container Details px-3 px-md-4 px-lg-5 flex-wrap flex-md-nowrap" role="banner" >
<div class="d-flex position-relative"style="max-width:900px">
<a class="js-selected-navigation-item Header-link flex-auto mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade"target="_blank"href="./index.html"style="font-size: 20px;">HomePage</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade"target="_blank"href="./introduce/index.html"style="font-size: 20px;">Introduce</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade"target="_blank"href="./map.html"style="font-size: 20px;">Map</a>
</div>
</div>
</div></center>
<!-- 标题 -->
<main class="font-mktg">
<div class="p-responsive container-xl text-center mt-7 mt-md-8 mt-lg-9 mb-5 mb-lg-9"class="element">
<h1 class="h2-mktg"><big>庞玺桐</big></h1>
<div class="mt-4 mb-n5">
<h2 id="billing-frequency-header" class="h6-mktg mb-3">一名中国青年大学生</h2>
<div class="d-inline-block text-center">
<div role="radiogroup" aria-labelledby="billing-frequency-header" class="d-flex flex-items-center radio-group-toggle rounded-3 color-bg-subtle p-1">
<input type="radio" name="billing_cycle" class="radio-toggle-switch sr-only" value="monthly" id="cycle_monthly">
<label for="cycle_monthly" class="d-block text-normal rounded-3 color-border-accent-emphasis color-fg-muted px-3 py-2 mr-1 cursor-pointer">
飞行学员
</label>
<input type="radio" name="billing_cycle" class="radio-toggle-switch sr-only" aria-checked="true" value="yearly" id="cycle_yearly" checked>
<label for="cycle_yearly" class="d-block text-normal rounded-3 color-border-accent-emphasis color-fg-muted px-3 py-2 mr-1 cursor-pointer">
理想
<span class="IssueLabel pl-1">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-tag color-fg-sponsors pt-1">
<path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"></path>
</svg>
<span class="text-gradient-purple-coral">飞行员
</span>
</span>
</label>
</div>
<!--
<button id="zoomButton">使用手机浏览请点击此按钮</button>
<style>
/* 按钮的基本样式 */
#zoomButton {
top: 15px;
padding: 10px 20px; /* 内边距 */
font-size: 16px; /* 字体大小 */
color: black; /* 文字颜色 */
background-color: white; /* 背景颜色 */
border-radius: 15px; /* 圆角 */
cursor: pointer; /* 鼠标悬停时显示手形图标 */
outline: none; /* 点击时不显示轮廓 */
transition: background-color 0.3s, transform 0.2s; /* 过渡效果 */
border: 1px solid #000;
}
/* 鼠标悬停时的样式 */
#zoomButton:hover {
background-color: white; /* 背景颜色变深 */
transform: scale(1.05); /* 轻微放大 */
}
/* 按钮被按下时的样式 */
#zoomButton:active {
transform: scale(0.95); /* 轻微缩小 */
}
</style>
<script>
// 获取按钮元素
var zoomButton = document.getElementById('zoomButton');
var zoomLevel = 1; // 初始缩放级别为100%
// 定义放大和缩小的函数
function zoomIn() {
zoomLevel = 1.50; // 设置新的缩放级别为125%
document.body.style.zoom = zoomLevel * 100 + '%'; // 应用缩放
zoomButton.textContent = '恢复到原始大小'; // 更改按钮文本
zoomButton.onclick = zoomOut; // 更改按钮点击事件为缩小
}
function zoomOut() {
zoomLevel = 1; // 恢复到原始缩放级别100%
document.body.style.zoom = zoomLevel * 100 + '%'; // 应用缩放
zoomButton.textContent = '手机显示请点击此按钮'; // 更改按钮文本
zoomButton.onclick = zoomIn; // 更改按钮点击事件为放大
}
// 初始点击事件设置为放大
zoomButton.onclick = zoomIn;
</script> 标题 -->
</div>
<p>使用手机浏览时,建议从浏览器将此网页缩放为150%</p>
</div>
</main>
<!-- 打字显示
<style>
#text {
font-family: Arial, sans-serif;
font-size: 18px;
border: none;
color: #333;
white-space: pre-wrap; /* 保留换行符 */
/* display: inline-block; 可以和其他元素在同一行上显示 */
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
var textContainer = document.getElementById("text");
var text = `花会沿途盛开,以后的路也是。高考加油——2024.5.25
`;
var index = 0;
var typingSpeed = 100; // 每个字符的打印速度(毫秒)
function type() {
if (index < text.length) {
textContainer.textContent += text.charAt(index);
index++;
setTimeout(type, typingSpeed);
// 在每次添加新字符后,滚动到文本底部
textContainer.scrollTo(0, textContainer.scrollHeight);
}
}
type();
});
</script>
<center>
<pre id="text"style="max-width: 1000px;"align="left"class="element"> </pre>
</center> -->
<!-- <audio src="./blog/daily.m4a" controls="controls" style="width: auto; min-width: 0;">您的浏览器不支持音频播放器。</audio> -->
<!-- the top 3 featured -->
<div class="container-xl mx-auto p-responsive-blog element">
<div class="homepage-section mt-2 mt-md-5 mb-4 mb-md-6">
<div class="d-flex flex-wrap gutter gutter-spacious">
<div class="col-12 col-lg-7">
<article class="py-4 d-flex flex-column height-lg-full">
<a href="./introduce/index.html" class="d-block col-12 position-relative rounded-2 mb-3 mb-md-4 overflow-hidden tease-thumbnail">
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block" style="visibility: hidden; pointer-events: none;"></svg>
<img srcset="./blog/images/index.jpg 400w,./blog/images/index.jpg 800w,./blog/images/index.jpg 1600w" src="./blog/images/index.jpg" width="800" height="425" class="d-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" />
</a>
<div class="mb-1">
<a href="./introduce/index.html" class="f5-mktg text-gradient-purple-coral text-bold pb-1">学术自我介绍页面(英文)</a>
</div>
<h3 class="h3-mktg mb-12px">
<a href="./introduce/index.html" class="Link--primary">自我介绍</a>
</h3>
<p class="f4-mktg color-fg-muted">庞玺桐的学术自我介绍页面,有英文书写,包含个人简介、论文、组织等,具有学术参考价值。</p>
<div class="mt-14px">
<div class="d-flex flex-items-center">
<a href="./introduce/index.html" class="d-inline-block post-author-avatar post-author-avatar-last mr-14px">
<img src="./blog/Pricing/IMG_1687.JPG" class="d-block circle byline__photo--recirc" width="40" height="40" />
</a>
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px;">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="./introduce/index.html" title="Sara Verdi">OldsaiA350</a></span>
<time datetime="2023-08-30" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1">February 21, 2023</time>
</div>
</div>
</div>
</article>
</div>
<div class="col-12 col-lg-5">
<article class="py-4 featured-side-article">
<div class="d-flex flex-column flex-sm-row flex-sm-nowrap gutter-14px">
<div class="col-12 col-lg-5 square-thumb-wrap mb-3 mb-sm-0">
<a href="./map.html" class="d-block position-relative rounded-2 overflow-hidden tease-thumbnail">
<svg aria-hidden="true" width="168" height="168" class="width-full height-auto d-none d-sm-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-sm-none" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/Pricing/map.png" width="200" height="200" class="d-none d-sm-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img src="./blog/Pricing/map.png" width="400" height="212" class="d-block d-sm-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
</div>
<div class="col-12 col-lg-8">
<div class="mb-2px">
<a href="./map.html" class="f5-mktg text-gradient-purple-coral text-bold pb-1">Map</a>
</div>
<h3 class="h6-mktg mb-2"><a href="./map.html" class="Link--primary">网页导览</a></h3>
<p class="f5-mktg color-fg-muted">庞玺桐的博客网站的全部页面的列表,可以作为网页的导览。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-column flex-items-start flex-wrap" style="margin-top: -4px;">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="./map.html" title="Klint Finley">Xitong Pang</a>
</span>
<time datetime="2023-09-01" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1">May 7, 2023</time>
</div>
</div>
</div>
</div>
</article>
<article class="py-4 featured-side-article">
<div class="d-flex flex-column flex-sm-row flex-sm-nowrap gutter-14px">
<div class="col-12 col-lg-5 square-thumb-wrap mb-3 mb-sm-0">
<a href="./blog/tool/ToolList.html" class="d-block position-relative rounded-2 overflow-hidden tease-thumbnail">
<svg aria-hidden="true" width="168" height="168" class="width-full height-auto d-none d-sm-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-sm-none" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/Pricing/tool.png" width="200" height="200" class="d-none d-sm-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img src="./blog/Pricing/tool.png" width="400" height="212" class="d-block d-sm-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
</div>
<div class="col-12 col-lg-8">
<div class="mb-2px">
<a href="./blog/tool/ToolList.html" class="f5-mktg text-gradient-purple-coral text-bold pb-1">Tool List</a>
</div>
<h3 class="h6-mktg mb-2">
<a href="./blog/tool/ToolList.html" class="Link--primary">工具列表</a>
</h3>
<p class="f5-mktg color-fg-muted">我开发的小工具列表</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-column flex-items-start flex-wrap" style="margin-top: -4px;">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="./blog/tool/ToolList.html" title="Craig Peters">庞玺桐</a>
</span>
<time datetime="2023-08-31" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1">July 15, 2023</time>
</div>
</div>
</div>
</article>
<article class="py-4 featured-side-article">
<div class="d-flex flex-column flex-sm-row flex-sm-nowrap gutter-14px">
<div class="col-12 col-lg-5 square-thumb-wrap mb-3 mb-sm-0">
<a href="./introduce/GitList.html" class="d-block position-relative rounded-2 overflow-hidden tease-thumbnail">
<svg aria-hidden="true" width="168" height="168" class="width-full height-auto d-none d-sm-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-sm-none" style="visibility: hidden; pointer-events: none;"></svg>
<img width="200" height="200" src="./blog/Pricing/code.png" class="d-none d-sm-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img width="400" height="212" src="./blog/Pricing/code.png" class="d-block d-sm-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" /></a></div><div class="col-12 col-lg-8">
<div class="mb-2px">
<a href="./introduce/GitList.html" class="f5-mktg text-gradient-purple-coral text-bold pb-1">Git List</a>
</div>
<h3 class="h6-mktg mb-2">
<a href="./introduce/GitList.html" class="Link--primary">代码储存库列表</a>
</h3>
<p class="f5-mktg color-fg-muted">列举我在代码方面的贡献</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-column flex-items-start flex-wrap" style="margin-top: -4px;">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="./introduce/GitList.html" title="Melody Mileski">Pang Xitong</a>
</span>
<time datetime="2023-08-29" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1">August 29, 2023</time>
</div>
</div>
</div>
</article>
</div></div>
<!-- 我的项目 -->
<div class="d-none d-md-block position-absolute width-full left-0 right-0 z-n1" style="top: 40%">
<img class="width-full height-auto" src="./blog/Pricing/bg-whats.svg" aria-hidden="true" width="1676" height="1040">
</div>
<div class="text-left">
<div class="text-center my-7">
<h2 class="h2-mktg col-lg-7 mx-auto">我的项目</h2>
</div>
<div class="d-flex flex-column flex-md-row gutter js-build-in-trigger " >
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between col-12 col-md-3 mb-3 mb-md-0">
<a href="./introduce/transcript.pdf"target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-accent">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-copilot color-fg-accent m-1">
<path d="M6.25 9a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 6.25 9Zm4.25.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5Z"></path><path d="M7.86 1.77c.05.053.097.107.14.164.043-.057.09-.111.14-.164.681-.731 1.737-.9 2.943-.765 1.23.136 2.145.527 2.724 1.26.566.716.693 1.614.693 2.485 0 .572-.053 1.147-.254 1.655l.168.838.066.033A2.75 2.75 0 0 1 16 9.736V11c0 .24-.086.438-.156.567-.073.131-.16.253-.259.366-.18.21-.404.413-.605.58a10.19 10.19 0 0 1-.792.597l-.015.01-.006.004-.028.018a8.849 8.849 0 0 1-.456.281c-.307.177-.749.41-1.296.642C11.296 14.528 9.756 15 8 15c-1.756 0-3.296-.472-4.387-.935a12.28 12.28 0 0 1-1.296-.641 8.849 8.849 0 0 1-.456-.281l-.028-.02-.006-.003-.015-.01a10.593 10.593 0 0 1-.792-.596 5.264 5.264 0 0 1-.605-.58 2.133 2.133 0 0 1-.259-.367A1.189 1.189 0 0 1 0 11V9.736a2.75 2.75 0 0 1 1.52-2.46l.067-.033.167-.838C1.553 5.897 1.5 5.322 1.5 4.75c0-.87.127-1.77.693-2.485.579-.733 1.494-1.124 2.724-1.26 1.206-.134 2.262.034 2.944.765ZM3 7.824v4.261c.02.013.043.025.065.038.264.152.65.356 1.134.562.972.412 2.307.815 3.801.815 1.494 0 2.83-.403 3.8-.815.412-.174.813-.375 1.2-.6v-4.26l-.023-.116c-.49.21-1.075.291-1.727.291-1.146 0-2.06-.328-2.71-.991A3.233 3.233 0 0 1 8 6.266c-.144.269-.321.52-.54.743C6.81 7.672 5.896 8 4.75 8c-.652 0-1.236-.082-1.726-.291L3 7.824Zm6.237-5.031c-.204.218-.359.678-.242 1.614.091.726.303 1.23.618 1.553.299.304.784.54 1.638.54.922 0 1.28-.199 1.442-.38.179-.2.308-.578.308-1.37 0-.765-.123-1.242-.37-1.555-.233-.296-.693-.586-1.713-.7-1.044-.116-1.488.091-1.681.298Zm-2.472 0c-.193-.207-.637-.414-1.681-.298-1.02.114-1.48.404-1.713.7-.247.313-.37.79-.37 1.555 0 .792.129 1.17.308 1.37.162.181.52.38 1.442.38.854 0 1.339-.236 1.638-.54.315-.323.527-.827.618-1.553.117-.936-.038-1.396-.242-1.614Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">成绩单</h3>
<p class="color-fg-muted f4-mktg my-auto">高中阶段成绩单</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">查看文件
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between col-12 col-md-3 mb-3 mb-md-0">
<a href="./blog/open.html"target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-done">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-codespaces color-fg-done m-1">
<path d="M0 11.25c0-.966.784-1.75 1.75-1.75h12.5c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm2-9.5C2 .784 2.784 0 3.75 0h8.5C13.216 0 14 .784 14 1.75v5a1.75 1.75 0 0 1-1.75 1.75h-8.5A1.75 1.75 0 0 1 2 6.75Zm1.75-.25a.25.25 0 0 0-.25.25v5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5a.25.25 0 0 0-.25-.25Zm-2 9.5a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-3a.25.25 0 0 0-.25-.25Z"></path><path d="M7 12.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">开源协议</h3>
<p class="color-fg-muted f4-mktg my-auto">此网站有关协议</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">了解更多
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between col-12 col-md-3 mb-3 mb-md-0">
<a href="./introduce/index.html"target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-attention">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-archive color-fg-attention m-1">
<path d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 14.25 6H1.75A1.75 1.75 0 0 1 0 4.25ZM1.75 7a.75.75 0 0 1 .75.75v5.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.75.75 0 0 1 1.5 0v5.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-5.5A.75.75 0 0 1 1.75 7Zm0-4.5a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25ZM6.25 8h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">自我介绍</h3>
<p class="color-fg-muted f4-mktg my-auto">学术自我介绍</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">了解更多
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between col-12 col-md-3 mb-3 mb-md-0">
<a href="https://wtcu.github.io/cac/index.html"target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-success">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-shield-lock color-fg-success m-1">
<path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM9.5 6.5c0 .536-.286 1.032-.75 1.3v2.45a.75.75 0 0 1-1.5 0V7.8A1.5 1.5 0 1 1 9.5 6.5Z"></path>
</svg>
</span>
<span data-view-component="true" class="Label Label--primary px-2 py-1">为爱发电</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">我的理想</h3>
<p class="color-fg-muted f4-mktg my-auto">我要成为一名优秀的飞行员</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">了解更多
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path><path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
</div>
</div>
<div class="mt-6 mt-md-7">
<a href="#moreaboutme"class="d-flex flex-column flex-items-center flex-justify-center h5-mktg">
了解关于我的更多
<svg height="32" aria-hidden="true" viewBox="0 0 24 24" version="1.1" width="32" data-view-component="true" class="octicon octicon-arrow-down mt-2">
<path d="M4.97 13.22a.75.75 0 0 1 1.06 0L11 18.19V3.75a.75.75 0 0 1 1.5 0v14.44l4.97-4.97a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-6.25 6.25a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06Z"></path>
</svg>
</a>
</div>
</div>
</div>
<div id="testimonials" class="px-lg-3 my-7 my-md-8" data-color-mode=dark data-light-theme=light data-dark-theme=dark>
<div class="pricing-dark-container position-relative z-1 py-5 py-md-7">
<p id="moreaboutme"></p>
<div class="p-responsive container-xl">
<div class="col-12 mx-auto d-flex flex-justify-between flex-items-stretch overflow-x-scroll overflow-y-hidden pl-3 pl-md-0">
<button class="border-0 rounded-3 mb-3 mr-2 mr-md-0 pricing-testimonial-logo pricing-testimonial-logo-active js-pricing-testimonial-logo" type=button>
<picture class="d-block height-full d-flex flex-column flex-justify-center">
<img src="./blog/Pricing/logo.svg" height="85" class="p-3 z-1" loading="lazy">
</picture>
</button>
<button class="border-0 rounded-3 mb-3 mr-2 mr-md-0 pricing-testimonial-logo js-pricing-testimonial-logo" type=button>
<picture class="d-block height-full d-flex flex-column flex-justify-center">
<img src="./blog/Pricing/logo.svg" height="85" class="p-3 z-1" loading="lazy">
</picture>
</button>
<button class="border-0 rounded-3 mb-3 mr-2 mr-md-0 pricing-testimonial-logo js-pricing-testimonial-logo" type=button>
<picture class="d-block height-full d-flex flex-column flex-justify-center">
<img src="./blog/Pricing/logo.svg" height="85" class="p-3 z-1" loading="lazy">
</picture>
</button>
<button class="border-0 rounded-3 mb-3 mr-2 mr-md-0 pricing-testimonial-logo js-pricing-testimonial-logo" type=button>
<picture class="d-block height-full d-flex flex-column flex-justify-center">
<img src="./blog/Pricing/logo.svg" height="85" class="p-3 z-1" loading="lazy">
</picture>
</button>
</div>
<div class="d-flex flex-justify-between mt-5 flex-wrap flex-md-nowrap flex-column-reverse flex-md-row pricing-testimonial-img-container">
<div class="col-md-6 position-relative pr-5 pr-md-9 pb-5">
<div class="position-relative">
<picture>
<source sizes="(max-width: 768) 85vw, (max-width: 1360px) 40vw, 544px" type="image/jpeg"></source>
<img class="pricing-testimonial-content js-pricing-testimonial-img z-1 width-full width-fit height-auto pricing-testimonial-content-active" width="900" height="600" loading="lazy" decoding="async" src="./blog/images/aviation1.jpg" />
</picture>
<picture>
<source sizes="(max-width: 768) 85vw, (max-width: 1360px) 40vw, 544px" type="image/jpeg"></source>
<img class="pricing-testimonial-content js-pricing-testimonial-img z-1 width-full width-fit height-auto" width="900" height="600" loading="lazy" decoding="async" src="./blog/images/Aviation.jpg" />
</picture>
<picture>
<source sizes="(max-width: 768) 85vw, (max-width: 1360px) 40vw, 544px" type="image/jpeg"></source>
<img class="pricing-testimonial-content js-pricing-testimonial-img z-1 width-full width-fit height-auto" width="900" height="600" loading="lazy" decoding="async" src="./blog/images/20240427.jpg" />
</picture>
<picture>
<source sizes="(max-width: 768) 85vw, (max-width: 1360px) 40vw, 544px" type="image/jpeg"></source>
<img class="pricing-testimonial-content js-pricing-testimonial-img z-1 width-full width-fit height-auto" width="900" height="600" loading="lazy" decoding="async" src="./blog/images/IMG_4235.JPG" />
</picture>
</div>
</div>
<div class="col-md-6 px-md-0 px-3 pb-6">
<div class="js-pricing-testimonial-quote pricing-testimonial-content pricing-testimonial-content-active">
<p class="f1-mktg text-normal text-gradient-mint-blue pr-3">
<span class="pricing-hanging-quote">“</span>Aviation
</p>
<p class="h6-mktg color-fg-default mb-5">我有着对航空的热爱</p>
<a class="link-mktg text-semibold color-fg-default py-1 color-fg-accent f3-mktg" href="https://wtcu.github.io/cac/index.html">
Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
<div class="js-pricing-testimonial-quote pricing-testimonial-content ">
<p class="f1-mktg text-normal text-gradient-mint-blue pr-3">
<span class="pricing-hanging-quote">“</span>
Technology
</p>
<p class="h6-mktg color-fg-default mb-5">对科学技术的向往</p>
<a class="link-mktg text-semibold color-fg-default py-1 color-fg-accent f3-mktg" href="https://wtcu.github.io/cac/index.html" >
Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
<div class="js-pricing-testimonial-quote pricing-testimonial-content ">
<p class="f1-mktg text-normal text-gradient-mint-blue pr-3">
<span class="pricing-hanging-quote">“</span>FREE
</p>
<p class="h6-mktg color-fg-default mb-5">对自由的渴望</p>
<a class="link-mktg text-semibold color-fg-default py-1 color-fg-accent f3-mktg" href="https://wtcu.github.io/cac/index.html" >
Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
<div class="js-pricing-testimonial-quote pricing-testimonial-content ">
<p class="f1-mktg text-normal text-gradient-mint-blue pr-3">
<span class="pricing-hanging-quote">“</span>
Independence
</p>
<p class="h6-mktg color-fg-default mb-5">独立完成事情的能力</p>
<a class="link-mktg text-semibold color-fg-default py-1 color-fg-accent f3-mktg" href="https://wtcu.github.io/cac/index.html" data-analytics-event="{"category":"Read the case study","action":"click to Read the case study","label":"ref_cta:Read the case study;"}">
Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--CAAC资质
<div class="border-bottom pb-5 pt-5 overflow-hidden">-->
<div class="container-xl p-responsive my-7 my-md-10 my-lg-12">
<div class="river-mktg js-build-in-trigger d-flex flex-column position-relative text-center" data-build-in-stagger="100">
<div class="col-12 mb-8 mb-lg-10">
<h2 class="color-fg-default h3-mktg col-lg-8 mx-md-auto px-sm-3">CAAC资质</h2>
<p class="f3-mktg color-fg-muted px-sm-3 mx-auto col-7-max mt-3 mt-md-5 text-medium mb-0">了解我在中国民用航空局获得的资质</p>
</div>
<div class="d-flex flex-column flex-md-row gutter js-build-in-trigger flex-justify-center text-left gutter-spacious" ><div class="col-md-4 d-flex flex-justify-between flex-1 z-1 mb-4 mb-md-7">
<div class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full px-4 py-6 pt-md-7 pb-md-7 pl-md-5 pl-lg-7 pr-md-5 pr-lg-7 color-bg-subtle">
<img class="height-auto mb-4 mt-2" loading="lazy" decoding="async" width="300" height="60" src="./blog//images/mhzf.png" />
<h3 class="mb-auto f2-mktg text-bold col-9 color-fg-default">
我通过了民航招飞
</h3>
<a class="link-mktg text-semibold color-fg-default py-1 mt-5 mt-md-6 flex-self-start f4-mktg" href="https://mhzf.caac.gov.cn/#/index" style="font-weight: 600 !important;">
进入系统
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
</div>
<div class="col-md-4 d-flex flex-justify-between flex-1 z-1 mb-4 mb-md-7">
<div class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full px-4 py-6 pt-md-7 pb-md-7 pl-md-5 pl-lg-7 pr-md-5 pr-lg-7 color-bg-subtle">
<img class="height-auto mb-4 mt-2" loading="lazy" decoding="async" width="400" height="60" src="./blog/images/uom.png" />
<h3 class="mb-auto f2-mktg text-bold col-9 color-fg-default">
我获得了“轻型民用无人驾驶航空器安全操控理论培训合格证明”
</h3>
<a class="link-mktg text-semibold color-fg-default py-1 mt-5 mt-md-6 flex-self-start f4-mktg" href="https://uom.caac.gov.cn/"style="font-weight: 600 !important;">
进入系统
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
</div>
</div>
<div class="d-flex flex-wrap flex-md-nowrap position-relative z-1 rounded-2 box-shadow-card-border-mktg overflow-hidden color-bg-subtle">
<div class="col-6-max mx-auto mx-md-0">
<div class="col-12 col-md-10 px-4 pb-0 pt-6 pt-md-7 pb-md-7 pl-md-5 pl-lg-7 pr-md-5 pr-lg-7 mb-md-0 text-left">
<h2 class="f2-mktg text-bold mb-5 mx-auto mx-md-0">我的学飞之路</h2>
<a class="btn-mktg mb-3 mb-sm-0 mr-sm-2 btn-muted-mktg" href="./blog/mhzf.html">
探索人物故事
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</a>
</div>
</div>
<div class="col-12 col-md-8 mt-n4 mt-md-0 position-relative position-md-absolute text-right height-full right-md-n12 z-n1 color-bg-subtle">
<svg aria-hidden="true" version="1.1" width="800" height="560" class="width-full height-auto d-block d-md-none events-none"></svg>
<picture>
<source srcset="./blog/images/caac.png 1376w" sizes="(max-width: 1120px) 60vw, 688px" type="image/jpeg"></source>
<img class="services-customer-stories-decoration width-full height-full position-absolute right-0 bottom-0 events-none" width="1376" height="436" style="mix-blend-mode: multiply; object-fit: cover; object-position: 76% 50%;" loading="lazy" decoding="async" src="./blog/images/caac.png" />
</picture>
</div>
</div>
</div>
</div>
<!--学术研究成果-->
<br><br>
<div class="color-bg-subtle pb-4 pb-md-8 pb-lg-9 pt-2 pt-md-5 js-section overflow-hidden" id="services-process">
<div class="container-xl p-responsive">
<div class="river-mktg js-build-in-trigger d-flex gutter gutter-spacious my-5 my-sm-7 my-md-8 position-relative flex-md-items-center text-center flex-column" data-build-in-stagger="100">
<div class="col-12 py-3 mb-2">
<div class="">
<div class="color-fg-muted f3-mktg text-medium pb-md-1 mb-2" style="margin-top: 6px;">学术研究成果</div>
<h2 class="color-fg-default mb-3 h3-mktg col-lg-8 mx-md-auto px-3">
<a href="./introduce/papers/Clinical%20application%20and%20mechanism%20of%20antidepressant%20drugs(Chinese).pdf"style="color:black">抗抑郁药物的临床应⽤及其作⽤机理</a>
</h2>
</div>
</div>
<div class="col-12 py-3 mt-5">
<div class="position-relative">
<div class="d-flex flex-row flex-wrap gutter gutter-spacious flex-items-center">
<div class="col-12 col-md-5 offset-md-1 mt-n4 mt-md-0">
<a href="./introduce/papers/Clinical%20application%20and%20mechanism%20of%20antidepressant%20drugs(Chinese).pdf"style="color:black">
<picture>
<source srcset="./introduce/images/cell1.jpg" sizes="(max-width: 720px) 90vw, 492px" type="image/webp"></source>
<source srcset="./introduce/images/cell1.jpg" sizes="(max-width: 720px) 90vw, 492px" type="image/png"></source>
<img class="d-block height-auto width-full rounded-2 box-shadow-default-mktg" width="984" height="672" loading="lazy" decoding="async" src="./introduce/papers/Clinical%20application%20and%20mechanism%20of%20antidepressant%20drugs(Chinese).pdf" />
</picture>
</a>
</div>
<div class="col-12 col-md-5 text-left build-in-slideX-left build-in-animate mt-8 mt-md-0">
<p class="f3-mktg color-fg-muted pl-lg-8 mb-0">       随着⼈们⽣活压⼒与⼯作压⼒的增加,在⻓期紧张情绪的压迫之下,越来越多的⼈就患上了抑郁症。⽬前,抑郁症已成为世界第四⼤疾病,对于它的治疗已经刻不容缓。现在常⽤的治疗⽅法是药物治疗,因此,本⽂对抗抑郁药物的临床应⽤情况以及临床研究进⾏了概述,为临床治疗抑郁症提供依据。<br>       本文是庞玺桐发表的一篇生物学论文,我在长春市第八中学高二参加生物学科基础科学研究的“英才计划”。庞玺桐虽未入选“英才计划”,但论文仍有参考价值。点击上方论文标题或左侧论文图片查看论文。</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 我创建了三个全球化组织 -->
<br>
<div id="plan-costs-json" hidden>
</div>
<div id="audiences" class="overflow-x-hidden"style="text-align:left">
<div class="p-responsive container-xl">
<div class="text-center my-7 mb-md-9">
<img class="mx-auto"src="./blog/Pricing/icon-community.svg"loading="lazy" width="50" height="50">
<h2 class="h2-mktg col-lg-7 mx-auto">我创建了三个全球化组织</h2>
</div>
<div class="d-flex flex-column flex-md-row gutter js-build-in-trigger px-lg-4" >
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between">
<a href="https://mcjecu.github.io" target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5" href="/team">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-accent">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-organization color-fg-accent m-1">
<path d="M1.75 16A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0h8.5C11.216 0 12 .784 12 1.75v12.5c0 .085-.006.168-.018.25h2.268a.25.25 0 0 0 .25-.25V8.285a.25.25 0 0 0-.111-.208l-1.055-.703a.749.749 0 1 1 .832-1.248l1.055.703c.487.325.779.871.779 1.456v5.965A1.75 1.75 0 0 1 14.25 16h-3.5a.766.766 0 0 1-.197-.026c-.099.017-.2.026-.303.026h-3a.75.75 0 0 1-.75-.75V14h-1v1.25a.75.75 0 0 1-.75.75Zm-.25-1.75c0 .138.112.25.25.25H4v-1.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v1.25h2.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM3.75 6h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 3.75A.75.75 0 0 1 3.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 3.75Zm4 3A.75.75 0 0 1 7.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 7 6.75ZM7.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 9.75A.75.75 0 0 1 3.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 9.75ZM7.75 9h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">MCCU</h3>
<p class="color-fg-muted f4-mktg my-auto">Minecraft大同社会服务器,一个以Minecraft服务器为中心的游戏娱乐组织</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between">
<a href="https://wtcu.github.io" target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5" href="https://wtcu.github.io">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-attention">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-mortar-board color-fg-attention m-1">
<path d="M7.693 1.066a.747.747 0 0 1 .614 0l7.25 3.25a.75.75 0 0 1 0 1.368L13 6.831v2.794c0 1.024-.81 1.749-1.66 2.173-.893.447-2.075.702-3.34.702-.278 0-.55-.012-.816-.036a.75.75 0 0 1 .133-1.494c.22.02.45.03.683.03 1.082 0 2.025-.221 2.67-.543.69-.345.83-.682.83-.832V7.503L8.307 8.934a.747.747 0 0 1-.614 0L4 7.28v1.663c.296.105.575.275.812.512.438.438.688 1.059.688 1.796v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-3c0-.737.25-1.358.688-1.796.237-.237.516-.407.812-.512V6.606L.443 5.684a.75.75 0 0 1 0-1.368ZM2.583 5 8 7.428 13.416 5 8 2.572ZM2.5 11.25v2.25H4v-2.25c0-.388-.125-.611-.25-.735a.697.697 0 0 0-.5-.203.707.707 0 0 0-.5.203c-.125.124-.25.347-.25.735Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">WTCU</h3>
<p class="color-fg-muted f4-mktg my-auto">World Teashnology Communism Union,一个以互联网开源组织.</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
<div class="d-flex col-md-4 pb-5 pb-md-0 mb-5 flex-justify-between">
<a href="https://wtcu.github.io/cac/index.html" target="_blank" class="d-flex flex-column flex-justify-between no-underline box-shadow-card-border-mktg rounded-2 width-full resource-card arrow-target-mktg color-bg-default p-5" href="/nonprofit">
<div class="d-flex flex-row flex-justify-between flex-items-center mb-3">
<span class="card-icon-mktg d-flex lh-condensed-ultra circle p-2 color-bg-sponsors">
<svg width="20" height="20" aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" class="octicon octicon-globe color-fg-sponsors m-1">
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM5.78 8.75a9.64 9.64 0 0 0 1.363 4.177c.255.426.542.832.857 1.215.245-.296.551-.705.857-1.215A9.64 9.64 0 0 0 10.22 8.75Zm4.44-1.5a9.64 9.64 0 0 0-1.363-4.177c-.307-.51-.612-.919-.857-1.215a9.927 9.927 0 0 0-.857 1.215A9.64 9.64 0 0 0 5.78 7.25Zm-5.944 1.5H1.543a6.507 6.507 0 0 0 4.666 5.5c-.123-.181-.24-.365-.352-.552-.715-1.192-1.437-2.874-1.581-4.948Zm-2.733-1.5h2.733c.144-2.074.866-3.756 1.58-4.948.12-.197.237-.381.353-.552a6.507 6.507 0 0 0-4.666 5.5Zm10.181 1.5c-.144 2.074-.866 3.756-1.58 4.948-.12.197-.237.381-.353.552a6.507 6.507 0 0 0 4.666-5.5Zm2.733-1.5a6.507 6.507 0 0 0-4.666-5.5c.123.181.24.365.353.552.714 1.192 1.436 2.874 1.58 4.948Z"></path>
</svg>
</span>
</div>
<h3 class="mb-3 text-semibold color-fg-default h6-mktg">CAC</h3>
<p class="color-fg-muted f4-mktg my-auto">长飞航空俱乐部(Changchun/China Aviation Club),一个航空俱乐部</p>
<div class="f4-mktg text-semibold position-relative mt-3 color-fg-default">Learn more
<svg xmlns="http://www.w3.org/2000/svg" class="octicon arrow-symbol-mktg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
<br><br><br>
<!-- 前进 -->
<center>
<div class="homepage-section homepage-section-category-seven-five element"style="max-width:1200px;text-align: left">
<br>
<hr style="border-top: 5px solid black;max-width: 1200px;align-items: center;">
<h2 class="h6-mktg section-heading">Items</h2>
<hr style="height: 1px;max-width: 1200px;align-items: center;">
<div class="d-flex flex-wrap flex-row-reverse gutter-spacious">
<div class="col-md-7 col-xl-9">
<article class="py-4 d-flex flex-column border-bottom border-md-0">
<a href="./blog/photos.html" class="d-block col-12 position-relative rounded-2 mb-4 overflow-hidden tease-thumbnail">
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-none d-md-block" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/images/airforce.jpg" width="1600" height="850" class="d-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
<div class="col-12 tease-text">
<h3 class="h3-mktg h3-alt-mktg mb-12px">
<a href="./blog/photos.html" class="Link--primary">航空摄影作品展览</a>
</h3>
<p class="f4-mktg color-fg-muted">你可以在这里浏览我的航空摄影作品,与我约拍,或申请照片使用权。</p>
<div class="mt-14px">
<div class="d-flex flex-items-center">
<a href="./blog/photos.html" class="d-inline-block post-author-avatar post-author-avatar-last mr-14px"><img src="./blog/images/IMG_6744.JPG" class="d-block circle byline__photo--recirc" width="40" height="40" /></a>
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="https://oldsai.cn" title="Sidney Espinosa">庞玺桐</a></span>
<time datetime="2023-11-21" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1">January 6, 2024</time>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-5 col-xl-3">
<article class="py-4 d-flex flex-column tease-border">
<div class="col-12 tease-text"><h3 class="h6-mktg mb-2">
<a href="./blog/page/前进.html" class="Link--primary">「前进」——前进追梦的脚步不会停歇</a></h3>
<p class="f4-mktg color-fg-muted">2023我参加了长春空军航空展、通过了空军和民航的体检,这一年是意义非凡的一年!</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="./blog/page/前进.html">January 6, 2024</a></span>
</div>
</div>
</div>
</div>
</article>
<article class="py-4 d-flex flex-column tease-border">
<div class="col-12 tease-text"><h3 class="h6-mktg mb-2">
<a href="./blog/page/GoldenSentence.html" class="Link--primary">中文好句集</a></h3>
<p class="f4-mktg color-fg-muted">庞玺桐创作和收集的金句,外国原文均翻译成中文。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="./blog/page/GoldenSentence.html">August 26, 2023</a></span>
</div>
</div>
</div>
</div>
</article>
<article class="py-4 d-flex flex-column tease-border">
<div class="col-12 tease-text">
<h3 class="h6-mktg mb-2">
<a href="./blog/tool/staticrypt/index.html" class="Link--primary">密码保护静态HTML页面</a>
</h3>
<p class="f4-mktg color-fg-muted">此网页汉化工作由庞玺桐完成,生成加密的html网页,只有输入密码,才能看道网页,并且网页内容加密储存,不是明文存储。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="./blog/tool/staticrypt/index.html" title="Ed Summers">October 21,2023</a>
</span>
</div>
</div>
</div>
</div>
</article>
<!--
<article class="py-4 d-flex flex-column tease-border">
<div class="col-12 tease-text">
<h3 class="h6-mktg mb-2">
<a href="./blog/tool/search-engine.html" class="Link--primary">多搜索引擎搜索</a>
</h3>
<p class="f4-mktg color-fg-muted">此工具结合了百度、必应、搜狐、网易、夸克等搜索引擎,可以帮助全方位多角度的查询资料。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="./blog/tool/search-engine.html" title="Stormy Peters">December 22, 2023</a></span>
</div>
</div>
</div>
</div>
</article> -->
</div>
</div>
</div>
<br>
<!-- 文学造诣 -->
<link crossorigin="anonymous" media="all" rel="stylesheet" href="./blog/Pricing/landing-pages-b2ecc374de92.css" />
<div class="my-10">
<div class="Primer_Brand__Stack-module__Stack___tASKe Primer_Brand__Stack-module__Stack--vertical___CFzE7 Primer_Brand__Stack-module__Stack--gap-spacious___w5ugZ Primer_Brand__Stack-module__Stack--padding-none___RCMh9">
<section class="Primer_Brand__CTABanner-module__CTABanner___m0t8s Primer_Brand__CTABanner-module__CTABanner--shadow___BA030 width-full">
<div class="Primer_Brand__CTABanner-module__CTABanner-container___iRzd1 Primer_Brand__CTABanner-module__CTABanner-container--background___v1yTH">
<div class="Primer_Brand__CTABanner-module__CTABanner-content___sZo6_ Primer_Brand__CTABanner-module__CTABanner-content--center___S0ChQ">
<h3 class="Primer_Brand__Heading-module__Heading___IVpmp Primer_Brand__Heading-module__Heading-font--mona-sans___SCnTx Primer_Brand__Heading-module__Heading--3___wsITu Primer_Brand__Heading-module__Heading--weight-extrabold___SJAUw">
你不能做我的诗,正如我不能做你的梦
</h3>
<section class="Primer_Brand__ButtonGroup-module__ButtonGroup___QQSsj">
<a class="Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--primary___xIC7G Primer_Brand__Button-module__Button--size-large___REN1l no-underline" href="./blog/page/GoldenSentence.html" data-analytics-event="{"category":"Get Copilot for Business","action":"click to Get Copilot for Business","label":"ref_cta:Get Copilot for Business;"}">
<span class="Primer_Brand__Button-module__Button__text___Z3ocU">
<span class="Primer_Brand__Text-module__Text___pecHN Primer_Brand__Text-module__Text-font--mona-sans___GpzSG Primer_Brand__Text-module__Text--default___DChoE Primer_Brand__Text-module__Text--400___y7m4l Primer_Brand__Text-module__Text--weight-semibold___Ns19j Primer_Brand__Button-module__Button--label___lUBc0 Primer_Brand__Button-module__Button--label-large____iBy6 Primer_Brand__Button-module__Button--label-primary___Leisi">
查看我的文学造诣
</span>
</span>
<span class="Primer_Brand__Button-module__Button__trailing-visual___zg8jd">
<svg class="Primer_Brand__ExpandableArrow-module__ExpandableArrow___rkfek Primer_Brand__Button-module__Button-arrow___SkJXQ" width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true" focusable="false" data-testid="Button-expandable-arrow">
<path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="Primer_Brand__ExpandableArrow-module__ExpandableArrow-stem___g4mdy" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path>
</svg>
</span>
</a>
</section>
</div>
</div>
</section>
</div>
</div>
<br>
<!--赞助售卖-->
<center>
<div class="homepage-section homepage-section-category-hero-four element"style="max-width:1200px;text-align: left">
<hr style="border-top: 5px solid black;max-width: 1200px;align-items: center;">
<h2 class="h6-mktg section-heading">赞助</h2>
<hr style="height: 1px;max-width: 1200px;align-items: center;">
<article class="py-4 d-flex flex-column flex-md-row">
<a href="./blog/images/支付宝.JPG" class="d-block col-12 position-relative rounded-2 mb-4 mb-md-0 overflow-hidden tease-thumbnail mr-md-4">
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/images/IMG_3516.jpg" width="800" height="425" class="d-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
<div class="col-12 tease-text ml-md-4">
<h3 class="h3-mktg h3-alt-2-mktg mb-12px mt-md-4">
<a href="./blog/images/支付宝.JPG" class="Link--primary">赞助</a>
</h3>
<a href="./blog/images/支付宝.JPG"><p class="f4-mktg color-fg-muted">如果我的项目、网站或Minecraft服务器服务对你有帮助,您可以在此对我进行捐助,您的捐助对我有很大帮助,谢谢!</p></a>
<div class="mt-14px">
<div class="d-flex flex-items-center">
<a href="./blog/images/支付宝.JPG" class="d-inline-block post-author-avatar post-author-avatar-last mr-14px">
<img src="./blog/images/zfb.jpeg" class="d-block circle byline__photo--recirc" width="40" height="40" />
</a>
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold"><a class="d-inline-block Link--primary color-fg-default" href="./blog/images/支付宝.JPG" title="Nick Floyd">PangXitong</a></span>
<time datetime="2024-01-03" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1"> February 7, 2024</time>
</div>
</div>
</div>
</div>
</article>
<div class="d-flex flex-wrap flex-items-start gutter-spacious">
<article class="py-4 d-flex flex-column flex-md-row-reverse flex-items-start flex-wrap col-12 col-md-6">
<div class="col-12 border-top mt-n4 mb-4"></div>
<a href="https://mc.oldsai.cn" class="d-block col-12 position-relative rounded-2 mb-4 overflow-hidden tease-thumbnail col-md-3">
<svg aria-hidden="true" width="152" height="152" class="width-full height-auto d-none d-md-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-md-none" style="visibility: hidden; pointer-events: none;"></svg>
<img src="https://mc.oldsai.cn/images/union.jpeg" width="200" height="200" class="d-none d-md-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img src="https://mc.oldsai.cn/images/union.jpeg" width="800" height="425" class="d-block d-md-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
<div class="col-12 col-md-9 pr-md-4 tease-text">
<h3 class="h6-mktg mb-2">
<a href="https://mc.oldsai.cn" class="Link--primary">Minecraft服务器</a>
</h3>
<p class="f4-mktg color-fg-muted">我运营着一个Minecraft服务器。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="https://mc.oldsai.cn" title="Michelle Mannering">PangXitong</a>
</span>
<time datetime="2023-12-19" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1"> February 7, 2024</time>
</div>
</div>
</div>
</div>
</article>
<article class="py-4 d-flex flex-column flex-md-row-reverse flex-items-start flex-wrap col-12 col-md-6">
<div class="col-12 border-top mt-n4 mb-4"></div>
<a href="https://github.com/PangXitong" class="d-block col-12 position-relative rounded-2 mb-4 overflow-hidden tease-thumbnail col-md-3">
<svg aria-hidden="true" width="152" height="152" class="width-full height-auto d-none d-md-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-md-none" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/images/GitHub.png" width="200" height="200" class="d-none d-md-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img src="./blog/images/GitHub.png" width="800" height="425" class="d-block d-md-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
<div class="col-12 col-md-9 pr-md-4 tease-text">
<h3 class="h6-mktg mb-2">
<a href="https://github.com/PangXitong" class="Link--primary">GitHub项目</a>
</h3>
<p class="f4-mktg color-fg-muted">我在GitHub有很多开源项目。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="https://github.com/PangXitong" title="Sidney Espinosa">PangXitong</a>
</span>
<time datetime="2023-11-21" class="d-inline-block f5-mktg text-mono color-fg-muted mt-1"> February 7, 2024</time>
</div>
</div>
</div>
</div>
</article>
<article class="py-4 d-flex flex-column flex-md-row-reverse flex-items-start flex-wrap col-12 col-md-6">
<div class="col-12 border-top mt-n4 mb-4"></div>
<a href="https://mc.oldsai.cn" class="d-block col-12 position-relative rounded-2 mb-4 overflow-hidden tease-thumbnail col-md-3">
<svg aria-hidden="true" width="152" height="152" class="width-full height-auto d-none d-md-block" style="visibility: hidden; pointer-events: none;"></svg>
<svg aria-hidden="true" width="1032" height="548" class="width-full height-auto d-block d-md-none" style="visibility: hidden; pointer-events: none;"></svg>
<img src="./blog/Pricing/tool.png" width="200" height="200" class="d-none d-md-block width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
<img src="./blog/Pricing/tool.png" width="800" height="425" class="d-block d-md-none width-full height-auto rounded-2 tease-thumbnail__img cover-image" loading="lazy" decoding="async" />
</a>
<div class="col-12 col-md-9 pr-md-4 tease-text">
<h3 class="h6-mktg mb-2">
<a href="./blog/tool/ToolList.html" class="Link--primary">工具列表</a>
</h3>
<p class="f4-mktg color-fg-muted">我开发了很多的小工具。</p>
<div class="mt-12px">
<div class="d-flex flex-items-center">
<div class="d-flex flex-items-end flex-wrap" style="margin-top: -4px">
<span class="authors-wrap mr-12px mt-1 f5-mktg text-bold">
<a class="d-inline-block Link--primary color-fg-default" href="./blog/tool/ToolList.html" title="Taylor Blau">PangXitong</a>