-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1074 lines (687 loc) · 39.9 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">
<head>
<meta name="generator" content="Hugo 0.117.0"><meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'><meta name='description' content='Don't think too much.Just keep studying find something you like and do it.'><title>My Blog</title>
<link rel='canonical' href='https://okokfun.github.io/'>
<link rel="stylesheet" href="/scss/style.min.css"><meta property='og:title' content='My Blog'>
<meta property='og:description' content='Don't think too much.Just keep studying find something you like and do it.'>
<meta property='og:url' content='https://okokfun.github.io/'>
<meta property='og:site_name' content='My Blog'>
<meta property='og:type' content='website'><meta property='og:updated_time' content=' 2025-01-04T23:38:14+08:00 '/>
<meta name="twitter:title" content="My Blog">
<meta name="twitter:description" content="Don't think too much.Just keep studying find something you like and do it."><link rel="alternate" type="application/rss+xml" href="https://okokfun.github.io/index.xml"><script>
(function(){
if(''){
if (prompt('请输入文章密码') !== ''){
alert('密码错误!');
history.back();
}
}
})();
</script>
</head>
<body class="">
<script>
(function() {
const colorSchemeKey = 'StackColorScheme';
if(!localStorage.getItem(colorSchemeKey)){
localStorage.setItem(colorSchemeKey, "auto");
}
})();
</script><script>
(function() {
const colorSchemeKey = 'StackColorScheme';
const colorSchemeItem = localStorage.getItem(colorSchemeKey);
const supportDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches === true;
if (colorSchemeItem == 'dark' || colorSchemeItem === 'auto' && supportDarkMode) {
document.documentElement.dataset.scheme = 'dark';
} else {
document.documentElement.dataset.scheme = 'light';
}
})();
</script>
<div class="container main-container flex on-phone--column extended"><aside class="sidebar left-sidebar sticky">
<button class="hamburger hamburger--spin" type="button" id="toggle-menu" aria-label="Toggle Menu">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<header class="site-info">
<figure class="site-avatar">
<img src="/img/avatar_hu71fc3898bde3464d50a00f65e63c7ec2_517570_300x0_resize_box_3.png" width="300"
height="354" class="site-logo" loading="lazy" alt="Avatar">
<span class="emoji">🍥</span>
</figure>
<h1 class="site-name"><a href="/">My Blog</a></h1>
<h2 class="site-description">Don't think too much.Just keep studying find something you like and do it.</h2><ol class="social-menu">
<li>
<a
href='[email protected]'
target="_blank"
title="Email"
>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697104166931" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1713" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M944 146.5H80c-44.183 0-80 35.817-80 80v590c0 44.184 35.817 80 80 80h864c44.183 0 80-35.816 80-80v-590c0-44.183-35.817-80-80-80z m-864 50h864c16.542 0 30 13.458 30 30v60.605L512 539.324 50 287.104V226.5c0-16.542 13.458-30 30-30z m864 650H80c-16.542 0-30-13.458-30-30V344.07l449.958 245.646a24.896 24.896 0 0 0 12.049 3.059c4.074 0.013 8.208-0.97 12.036-3.06L974 344.07V816.5c0 16.542-13.458 30-30 30z" fill="#999999" p-id="1714"></path></svg>
</a>
</li>
<li>
<a
href='https://github.com/okokfun'
target="_blank"
title="GitHub"
>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" />
</svg>
</a>
</li>
<li>
<a
href='2643989637'
target="_blank"
title="QQ"
>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697117887981" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2317" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M671.346939 929.959184c-10.971429 0-22.465306-1.044898-33.436735-2.612245-41.273469-5.22449-78.367347-25.077551-106.057143-55.902041-14.106122 5.746939-29.779592 5.746939-43.885714 0-22.465306 29.779592-64.783673 50.677551-114.416327 55.902041-70.008163 7.314286-145.763265-12.016327-152.555102-58.514286-5.22449-36.04898 39.183673-64.261224 85.681633-79.934694-27.167347-29.779592-45.97551-67.395918-53.812245-107.102041l-0.522449 1.044898c-26.644898 32.914286-43.885714 52.767347-64.261224 52.767347-2.089796 0-4.702041-0.522449-6.791837-1.044898-7.314286-2.612245-13.583673-8.881633-18.285714-19.853061-17.240816-36.04898-9.926531-105.534694 16.195918-158.302041 0 0 0-0.522449 0.522449-0.522449 13.061224-24.032653 29.257143-45.97551 48.065306-65.306122-6.791837-12.016327-10.971429-25.077551-12.538775-38.661225v-3.134694c0.522449-20.37551 10.971429-39.183673 27.689796-49.632653-11.493878-76.8 10.44898-155.167347 61.648979-214.204081C356.310204 124.865306 430.497959 91.95102 509.387755 94.040816h5.22449c68.963265 0 136.359184 27.689796 185.991837 75.755102 51.722449 50.155102 80.979592 118.073469 82.024489 190.693878v7.836735c0.522449 9.926531 0 20.37551-1.044898 30.824489 14.628571 9.404082 22.465306 21.420408 22.465307 50.677551 0 14.628571-1.567347 29.257143-10.44898 37.616327 13.583673 18.808163 30.302041 44.930612 43.363265 66.35102l2.612245 4.179592c21.420408 34.481633 24.555102 78.367347 24.555102 101.355102 0 18.285714-2.089796 61.126531-19.330612 74.187755-3.657143 2.612245-7.836735 4.179592-12.538776 4.179592h-4.70204c-27.167347 0-43.885714-25.077551-61.126531-51.2l-1.567347-2.089796c-9.404082 38.661224-27.689796 74.710204-53.812245 104.489796 28.734694 9.926531 87.24898 33.436735 79.934694 77.322449-4.702041 35.526531-57.469388 63.738776-119.640816 63.738776 0.522449 0 0 0 0 0z m-109.191837-87.24898c20.897959 24.032653 49.632653 39.706122 80.979592 43.363265h1.044898c8.881633 1.567347 18.285714 2.089796 27.689796 2.089796 50.677551 0 77.844898-21.942857 79.412245-28.734694 0.522449-2.089796-8.359184-16.718367-59.559184-33.436734l-23.510204-7.836735c-6.791837-2.089796-12.016327-7.836735-13.583674-14.628571s0-14.628571 5.22449-19.853062l17.240817-17.763265c26.122449-28.212245 43.885714-63.216327 50.677551-101.877551l5.746938-38.661224c1.044898-8.359184 7.836735-15.673469 16.195919-17.240817 8.359184-2.089796 17.240816 1.567347 21.942857 8.881633l30.82449 45.97551 0.522449 0.522449c5.22449 7.836735 12.538776 18.808163 18.285714 25.6 4.179592-25.6 4.702041-76.8-15.673469-109.191837l-2.612245-4.179591c-13.583673-21.942857-30.82449-49.110204-43.885715-66.351021l-9.92653-13.583673c-3.134694-4.179592-4.702041-9.926531-4.179592-15.67347 1.044898-5.746939 3.657143-10.44898 8.359184-13.583673l9.92653-7.314286c0-2.089796 0.522449-5.22449 0.522449-9.926531 0-12.016327-1.567347-14.628571-1.567347-14.628571-0.522449 0-2.612245-1.567347-4.179592-2.612245-0.522449-0.522449-1.044898-0.522449-1.567347-1.044898l-7.836734-5.22449c-6.791837-4.702041-9.926531-12.538776-8.881633-20.37551l1.567347-9.92653c1.044898-8.881633 1.044898-17.763265 1.044898-26.644898V360.489796c-1.044898-60.081633-26.644898-119.118367-69.485714-160.914286-43.885714-42.318367-101.355102-65.306122-161.959184-63.738775h-1.044898c-67.395918-2.089796-130.089796 26.122449-173.97551 76.277551-43.363265 50.677551-62.171429 117.55102-51.2 183.902041l1.567347 9.92653c1.044898 8.359184-2.612245 16.718367-9.404082 20.897959l-8.359183 5.22449c-0.522449 0-1.044898 0.522449-1.044898 0.522449-5.746939 3.134694-9.404082 8.881633-9.926531 15.151021 1.567347 8.881633 4.702041 17.240816 9.404082 25.077551 0.522449 0.522449 0.522449 1.044898 0.522449 1.567346l5.224489 9.926531c4.179592 7.836735 2.612245 17.240816-3.134694 23.510204L261.22449 516.702041l-0.522449 0.522449c-17.240816 17.240816-32.391837 37.093878-43.885714 59.036734-19.330612 39.183673-23.510204 82.546939-19.330613 107.62449 7.836735-8.359184 16.718367-19.853061 22.987755-27.167347l31.869388-39.183673c5.22449-6.791837 14.106122-9.404082 21.942857-6.791837s14.106122 9.404082 14.628572 17.763265l3.657143 36.571429c5.746939 38.138776 23.510204 73.665306 50.155102 100.832653l17.763265 18.285714c5.22449 5.22449 7.314286 12.538776 5.22449 19.853062s-7.314286 12.538776-14.106123 14.628571l-24.555102 7.314286c-44.408163 13.061224-62.693878 31.346939-64.261224 36.571428 2.612245 8.881633 42.318367 29.257143 106.579592 22.465306 39.183673-4.179592 72.097959-20.37551 86.72653-41.273469l4.702041-6.791837c3.657143-5.746939 10.44898-9.404082 17.763265-9.404081h12.016327c3.134694 0 6.269388 0.522449 8.881632 2.089796l4.179592 2.089796c4.179592 2.089796 9.404082 2.089796 13.583674 0l10.971428-5.746939c9.404082-5.22449 20.897959-2.612245 27.167347 5.746939l6.791837 10.971428z m-299.363265 19.853061z m263.314285-11.493877z m290.481633-147.330612z m-49.110204-248.163266z" fill="#333333" p-id="2318"></path></svg>
</a>
</li>
</ol></header>
<ol class="menu" id="main-menu">
<li >
<a href='/' target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-home" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<polyline points="5 12 3 12 12 3 21 12 19 12" />
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" />
<path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" />
</svg>
<span>Home</span>
</a>
</li>
<li >
<a href='/page/about/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-user" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="7" r="4" />
<path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
</svg>
<span>About</span>
</a>
</li>
<li >
<a href='/page/archives/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-archive" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<rect x="3" y="4" width="18" height="4" rx="2" />
<path d="M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10" />
<line x1="10" y1="12" x2="14" y2="12" />
</svg>
<span>Archives</span>
</a>
</li>
<li >
<a href='/page/links/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" />
<path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" />
</svg>
<span>Links</span>
</a>
</li>
<li >
<a href='/page/search/' >
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
<span>Search</span>
</a>
</li>
<li id="dark-mode-toggle">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-left" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="8" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-toggle-right" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="16" cy="12" r="2" />
<rect x="2" y="6" width="20" height="12" rx="6" />
</svg>
<span>Dark Mode</span>
</li>
</ol>
</aside>
<main class="main full-width">
<section class="article-list">
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E5%8D%81%E7%AB%A0_ct%E6%9C%BA/">第10章 CT 机</a>
</h2>
<h3 class="article-subtitle">
X 线会对人体有作用, 能量会损失, CT 机检测损失变量,然后成像.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E4%B9%9D%E7%AB%A0_%E8%87%AA%E5%8A%A8%E6%B4%97%E7%89%87%E6%9C%BA/">第9章 自动洗片机</a>
</h2>
<h3 class="article-subtitle">
自动洗片机是医学影像不可缺少的设备之一.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E5%85%AB%E7%AB%A0_b%E5%9E%8B%E8%B6%85%E5%A3%B0%E6%B3%A2%E8%AF%8A%E6%96%AD%E8%A3%85%E7%BD%AE/">第8章 B 型超声波诊断装置</a>
</h2>
<h3 class="article-subtitle">
B 型超声波诊断装置, 属于成像装置.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E4%BA%94%E7%AB%A0_%E9%AB%98%E9%A2%91%E7%94%B5%E5%88%80/">第5章 高频电刀</a>
</h2>
<h3 class="article-subtitle">
高频电刀可用于外科的各种手术, 是利用高频电流在组织中所产生的热效应来切开皮肤及组织, 能使肌肉收缩, 被切断的毛细血管, 其表面可立即封闭, 减少病人出血。.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E5%85%AD%E7%AB%A0_%E5%BF%83%E7%94%B5%E5%9B%BE%E6%9C%BA/">第6章 心电图机</a>
</h2>
<h3 class="article-subtitle">
心电图机能将微弱的生物电信号记录下来,这是由心脏的生理特征及心肌的生物电所决定的.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
2 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E4%B8%83%E7%AB%A0_%E5%8C%BB%E7%94%A8x%E7%BA%BF%E6%9C%BA/">第7章 医用X线机</a>
</h2>
<h3 class="article-subtitle">
X 线经过物质时会与物质相互作用, 其改变量携带者物理量,通过解析变量可得到物质结构。
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E5%9B%9B%E7%AB%A0_%E8%B6%85%E5%A3%B0%E9%9B%BE%E5%8C%96%E5%99%A8/">第4章 超声雾化器</a>
</h2>
<h3 class="article-subtitle">
一种改变给药途径最先进的雾化治疗仪器,它能在常温下把水溶性药物经过超声振荡形成微小的雾粒,供给患者作药物气溶胶吸入治疗.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E4%B8%89%E7%AB%A0_%E5%8C%BB%E7%94%A8%E7%A6%BB%E5%BF%83%E6%9C%BA/">第3章 医用离心机</a>
</h2>
<h3 class="article-subtitle">
离心机是利用离心力对混合溶液或血液进行快速分离及沉淀的一种专用设备.
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/medical/" >
Medical
</a>
</header>
<h2 class="article-title">
<a href="/post/%E5%B8%B8%E7%94%A8%E5%8C%BB%E7%96%97%E5%99%A8%E6%A2%B0%E5%8E%9F%E7%90%86%E4%B8%8E%E7%BB%B4%E4%BF%AE/%E7%AC%AC%E4%BA%8C%E7%AB%A0_%E7%94%B5%E5%8A%A8%E5%90%B8%E5%BC%95%E5%99%A8/">第2章 电动吸引器</a>
</h2>
<h3 class="article-subtitle">
电动吸引器多用于手术、急救和病房抽吸血、水、脓、痰等。
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Jan 04, 2025</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
1 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
<article class="">
<header class="article-header">
<div class="article-details">
<header class="article-category">
<a href="/categories/analog/" >
Analog
</a>
</header>
<h2 class="article-title">
<a href="/post/analog-circuit-design/">Analog Circuit Design</a>
</h2>
<h3 class="article-subtitle">
A Tutorial Guide to Applications and Solutions
</h3>
<footer class="article-time">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time" width="56" height="56" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<time class="article-time--published">Dec 19, 2024</time>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="12" cy="12" r="9" />
<polyline points="12 7 12 12 15 15" />
</svg>
<time class="article-time--reading">
6 minute read
</time>
</div>
</footer>
</div>
</header>
</article>
</section>
<nav class='pagination'>
<span class='page-link current'>1</span>
<a class='page-link' href='/page/2/'>2</a>
</nav>
<footer class="site-footer">
<section class="copyright">
©
2025 My Blog
</section>
<section class="powerby">
Built with <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> <br />
Theme <b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="3.5.0">Stack</a></b> designed by <a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>
</section>
</footer>
</main>
<aside class="sidebar right-sidebar sticky">
<form action="/page/search/" class="search-form widget" >
<p>
<label>Search</label>
<input name="keyword" required placeholder="Type something..." />
<button title="Search">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-search" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<circle cx="10" cy="10" r="7" />
<line x1="21" y1="21" x2="15" y2="15" />
</svg>
</button>
</p>
</form>
<section class="widget archives">
<div class="widget-icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-infinity" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z"/>
<path d="M9.828 9.172a4 4 0 1 0 0 5.656 a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828 a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" />
</svg>
</div>
<h2 class="widget-title section-title">Archives</h2>
<div class="widget-archive--list">
<div class="archives-year">
<a href="/page/archives/#2025">
<span class="year">2025</span>
<span class="count">9</span>
</a>
</div>
<div class="archives-year">
<a href="/page/archives/#2024">
<span class="year">2024</span>
<span class="count">2</span>
</a>
</div>
<div class="archives-year">
<a href="/page/archives/#2023">
<span class="year">2023</span>
<span class="count">1</span>
</a>
</div>
<div class="archives-year">
<a href="/page/archives/#2022">
<span class="year">2022</span>
<span class="count">2</span>
</a>
</div>
<div class="archives-year">
<a href="/page/archives/#2021">