-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4239 lines (3633 loc) · 148 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="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>全球国家/地区旗帜图库</title>
<meta name="description" content="由 一鲸整编">
<meta property="og:title" content="全球国家/地区旗帜图库">
<meta property="og:description" content="由 一鲸整编">
<meta name="twitter:card" content="summary">
<style type="text/css">
html {
--textsize: 16px;
--textcolor: #eee;
--backcolor: #0e0e0f;
--margin: calc(0.8em + 1vw);
--thumbsize: 156px; /* size M */
--slide-transition: auto; /* smooth or auto */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
scroll-behavior: smooth;
}
body {
font: var(--textsize) / 1.4 -apple-system, BlinkMacSystemFont, 'Segoe UI', Noto, Roboto, Oxygen-Sans, Cantarell, 'Helvetica Neue', Arial, sans-serif;
color: var(--textcolor);
background: var(--backcolor);
padding: var(--margin) var(--margin) 0;
overscroll-behavior: contain;
-webkit-tap-highlight-color: transparent;
}
footer {
position: sticky;
top: 100vh;
padding: calc(var(--margin) * 2.5) 0 var(--margin) 0;
font-size: 0.85em;
opacity: 0.3;
}
h1 {
font-size: 1em;
}
h1 span {
font-weight: normal;
display: inline-block;
}
a {
color: currentColor;
}
img {
display: block;
max-width: 100%;
height: auto;
user-select: none;
}
/* -- Images grid -- */
.grid {
clear: both;
display: grid;
grid-auto-flow: dense;
grid-template-columns: repeat(auto-fill, minmax(var(--thumbsize), 1fr));
grid-gap: calc(var(--margin) * 1.33) var(--margin);
padding-top: calc(var(--margin) * 2);
}
.grid figure {
position: relative;
}
.grid a {
display: block;
position: relative;
scroll-margin: 20vh 0;
}
.grid a img {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: contain;
}
.grid a::before {
content: "";
display: block;
padding-top: 100%;
}
.grid figcaption {
font-size: 0.85em;
margin-top: calc(var(--margin) / 2);
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
opacity: 0.4;
}
.grid figure a:focus {
outline: 0 none;
border-radius: 1px;
box-shadow: 0 0 0 4px;
background: currentColor;
}
.grid figure a:target {
outline: 1px solid;
border-radius: 4px;
}
.grid figure a:hover + figcaption,
.grid figure a:focus + figcaption {
opacity: 1;
}
/* Thumbnails S M L XL */
input {
appearance: none;
-webkit-appearance: none;
width: 0;
height: 0;
overflow: hidden;
direction: rtl;
}
label {
user-select: none;
cursor: pointer;
opacity: 0.5;
padding: 0.05em 0.45em;
margin-top: -0.05em;
float: right;
display: none;
}
label:hover,
input:focus + label {
opacity: 1;
}
input:focus + label,
input:checked + label:hover {
outline: 1px solid;
border-radius: 1px;
}
input:checked + label {
opacity: 1;
font-weight: bold;
}
/* Show only on bigger screens */
@media (min-width: 820px) {
label {
display: inline-block;
}
h1 {
display: inline-block;
float: left;
width: calc(100% - 20ch);
}
}
input#small:checked ~ .grid {
grid-template-columns: repeat(auto-fill, minmax(calc(var(--thumbsize) / 2), 1fr));
grid-gap: var(--margin);
}
input#large:checked ~ .grid {
grid-template-columns: repeat(auto-fill, minmax(calc(var(--thumbsize) * 1.5), 1fr));
grid-gap: calc(var(--margin) * 1.5);
}
input#x-large:checked ~ .grid {
grid-template-columns: repeat(auto-fill, minmax(calc(var(--thumbsize) * 2), 1fr));
grid-gap: calc(var(--margin) * 1.5);
}
/* -- Lightbox -- */
.lightbox {
display:none;
}
.fixed .lightbox {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
overflow-x: scroll;
scroll-snap-type: x mandatory;
overscroll-behavior: contain;
z-index: 5;
}
.lightbox:hover {
scroll-behavior: var(--slide-transition);
}
.lightbox figure {
background: var(--backcolor);
position: relative;
scroll-snap-align: center;
flex: none;
display: flex;
width: 100vw;
align-items: center;
justify-content: center;
}
/* fix for #permalinks to work…
.lightbox:not(:focus-within) figure:target {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
}
*/
.lightbox figure:focus {
outline: none;
}
.lightbox figure a.image {
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
cursor: default;
}
.lightbox figure a.image img {
width: auto;
height: auto;
max-width: 100vw;
max-height: 100vh;
z-index: 2;
opacity: 0;
}
.lightbox:focus-within figure a.image img,
.lightbox:not(:focus-within) figure:target a.image img {
opacity: 1;
transition: 0.35s opacity ease-out;
}
/* -- Prev / Next -- */
.lightbox figure a.image::before,
.lightbox figure a.image::after {
cursor: pointer;
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
width: 33vw;
z-index: 3;
}
.lightbox figure a.image::before {
left: -33vw;
}
.lightbox figure a.image::after {
right: -33vw;
}
.lightbox figure:first-of-type a.image::before,
.lightbox figure:last-of-type a.image::after {
display: none;
}
/* -- Counter -- */
.lightbox {
counter-reset: currentStep 0 remainder 0 totalStep 0;
}
.lightbox figure {
counter-increment: totalStep;
}
.lightbox figure::before {
content: "";
counter-increment: currentStep;
}
.lightbox figure:focus ~ figure::before {
counter-increment: remainder;
}
.counter {
font-variant-numeric: tabular-nums;
opacity: 0.3;
text-shadow: 1px 1px 2px var(--backcolor);
z-index: 2;
position: fixed;
bottom: var(--margin);
right: var(--margin);
}
.lightbox:focus-within .counter::before {
content: counter(currentStep) "/" counter(totalStep);
}
/* -- Close button -- */
a.close {
position: absolute;
display: block;
top: 0;
right: 0;
z-index: 20;
color: transparent;
user-select: none;
width: 10vmax;
height: 10vmax;
}
a.close:focus-visible {
outline: 0;
}
a.close:hover::before,
a.close:hover::after,
.lightbox:focus-within::before,
.lightbox:focus-within::after {
top: 0;
right: 0;
padding: calc(var(--margin) / 4) calc(var(--margin) / 2) 10vmax 10vmax;
display: block;
line-height: 1;
content: "\00d7";
font-size: 2.4em;
font-weight: 200;
position: fixed;
pointer-events: none;
}
.lightbox:focus-within::before,
.lightbox:focus-within::after {
z-index: 2;
opacity:.3;
}
@media (hover:hover) and (pointer:fine) {
a.close:hover::before,
a.close:hover::after {
color: var(--textcolor);
}
}
/* -- Loading spinner -- */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.lightbox figure::before {
content: "";
height: 1.5em;
width: 1.5em;
animation: spin 0.8s infinite linear;
border: 1px solid;
border-right-color: transparent;
border-radius: 50%;
display: block;
position: absolute;
transform: translateX(-50%);
opacity: 0.25;
}
</style>
</head>
<body>
<main>
<h1>全球国家/地区旗帜图库(270) <span>由 一鲸整编</span></h1>
<input type="radio" name="size" id="x-large">
<label for="x-large">XL</label>
<input type="radio" name="size" id="large">
<label for="large">L</label>
<input checked type="radio" name="size" id="medium">
<label for="medium">M</label>
<input type="radio" name="size" id="small">
<label for="small">S</label>
<div class="grid">
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/不丹.png" alt="不丹">
</a>
<figcaption>不丹</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/东帝汶.png" alt="东帝汶">
</a>
<figcaption>东帝汶</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/东非共同体.png" alt="东非共同体">
</a>
<figcaption>东非共同体</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中国.png" alt="中国">
</a>
<figcaption>中国</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中国台湾.png" alt="中国台湾">
</a>
<figcaption>中国台湾</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中国澳门.png" alt="中国澳门">
</a>
<figcaption>中国澳门</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中国香港特别行政区.png" alt="中国香港特别行政区">
</a>
<figcaption>中国香港特别行政区</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中欧自由贸易协定.png" alt="中欧自由贸易协定">
</a>
<figcaption>中欧自由贸易协定</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/中非共和国.png" alt="中非共和国">
</a>
<figcaption>中非共和国</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/丹麦.png" alt="丹麦">
</a>
<figcaption>丹麦</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/乌克兰.png" alt="乌克兰">
</a>
<figcaption>乌克兰</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/乌兹别克斯坦.png" alt="乌兹别克斯坦">
</a>
<figcaption>乌兹别克斯坦</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/乌干达.png" alt="乌干达">
</a>
<figcaption>乌干达</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/乌拉圭.png" alt="乌拉圭">
</a>
<figcaption>乌拉圭</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/乍得.png" alt="乍得">
</a>
<figcaption>乍得</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/也门.png" alt="也门">
</a>
<figcaption>也门</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/亚美尼亚.png" alt="亚美尼亚">
</a>
<figcaption>亚美尼亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/以色列.png" alt="以色列">
</a>
<figcaption>以色列</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/伊拉克.png" alt="伊拉克">
</a>
<figcaption>伊拉克</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/伊朗.png" alt="伊朗">
</a>
<figcaption>伊朗</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/伯利兹.png" alt="伯利兹">
</a>
<figcaption>伯利兹</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/佛得角.png" alt="佛得角">
</a>
<figcaption>佛得角</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/俄罗斯.png" alt="俄罗斯">
</a>
<figcaption>俄罗斯</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/保加利亚.png" alt="保加利亚">
</a>
<figcaption>保加利亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/克利珀顿岛.png" alt="克利珀顿岛">
</a>
<figcaption>克利珀顿岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/克罗地亚.png" alt="克罗地亚">
</a>
<figcaption>克罗地亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/关岛.png" alt="关岛">
</a>
<figcaption>关岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/冈比亚.png" alt="冈比亚">
</a>
<figcaption>冈比亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/冰岛.png" alt="冰岛">
</a>
<figcaption>冰岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/几内亚.png" alt="几内亚">
</a>
<figcaption>几内亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/几内亚比索.png" alt="几内亚比索">
</a>
<figcaption>几内亚比索</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/列支敦士登.png" alt="列支敦士登">
</a>
<figcaption>列支敦士登</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/刚果.png" alt="刚果">
</a>
<figcaption>刚果</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/刚果民主共和国.png" alt="刚果民主共和国">
</a>
<figcaption>刚果民主共和国</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/利比亚.png" alt="利比亚">
</a>
<figcaption>利比亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/利比里亚.png" alt="利比里亚">
</a>
<figcaption>利比里亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加利西亚.png" alt="加利西亚">
</a>
<figcaption>加利西亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加拿大.png" alt="加拿大">
</a>
<figcaption>加拿大</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加泰罗尼亚.png" alt="加泰罗尼亚">
</a>
<figcaption>加泰罗尼亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加纳.png" alt="加纳">
</a>
<figcaption>加纳</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加蓬.png" alt="加蓬">
</a>
<figcaption>加蓬</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/加那利群岛.png" alt="加那利群岛">
</a>
<figcaption>加那利群岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/匈牙利.png" alt="匈牙利">
</a>
<figcaption>匈牙利</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/北爱尔兰.png" alt="北爱尔兰">
</a>
<figcaption>北爱尔兰</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/北马其顿.png" alt="北马其顿">
</a>
<figcaption>北马其顿</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/北马里亚纳群岛.png" alt="北马里亚纳群岛">
</a>
<figcaption>北马里亚纳群岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/南乔治亚岛.png" alt="南乔治亚岛">
</a>
<figcaption>南乔治亚岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/南极洲.png" alt="南极洲">
</a>
<figcaption>南极洲</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/南苏丹.png" alt="南苏丹">
</a>
<figcaption>南苏丹</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/南非.png" alt="南非">
</a>
<figcaption>南非</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/博茨瓦纳.png" alt="博茨瓦纳">
</a>
<figcaption>博茨瓦纳</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/卡塔尔.png" alt="卡塔尔">
</a>
<figcaption>卡塔尔</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/卢旺达.png" alt="卢旺达">
</a>
<figcaption>卢旺达</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/卢森堡.png" alt="卢森堡">
</a>
<figcaption>卢森堡</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/印度.png" alt="印度">
</a>
<figcaption>印度</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/印度尼西亚.png" alt="印度尼西亚">
</a>
<figcaption>印度尼西亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/危地马拉.png" alt="危地马拉">
</a>
<figcaption>危地马拉</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/厄瓜多尔.png" alt="厄瓜多尔">
</a>
<figcaption>厄瓜多尔</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/厄立特里亚.png" alt="厄立特里亚">
</a>
<figcaption>厄立特里亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/叙利亚.png" alt="叙利亚">
</a>
<figcaption>叙利亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/古巴.png" alt="古巴">
</a>
<figcaption>古巴</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/吉尔吉斯坦.png" alt="吉尔吉斯坦">
</a>
<figcaption>吉尔吉斯坦</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/吉布提.png" alt="吉布提">
</a>
<figcaption>吉布提</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/哈萨克斯坦.png" alt="哈萨克斯坦">
</a>
<figcaption>哈萨克斯坦</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/哥伦比亚.png" alt="哥伦比亚">
</a>
<figcaption>哥伦比亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/哥斯达黎加.png" alt="哥斯达黎加">
</a>
<figcaption>哥斯达黎加</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/喀麦隆.png" alt="喀麦隆">
</a>
<figcaption>喀麦隆</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/图瓦卢.png" alt="图瓦卢">
</a>
<figcaption>图瓦卢</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/土库曼斯坦.png" alt="土库曼斯坦">
</a>
<figcaption>土库曼斯坦</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/土耳其.png" alt="土耳其">
</a>
<figcaption>土耳其</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣卢西亚.png" alt="圣卢西亚">
</a>
<figcaption>圣卢西亚</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣基茨和尼维斯.png" alt="圣基茨和尼维斯">
</a>
<figcaption>圣基茨和尼维斯</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣多美和普林西比.png" alt="圣多美和普林西比">
</a>
<figcaption>圣多美和普林西比</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣尤斯特歇斯岛.png" alt="圣尤斯特歇斯岛">
</a>
<figcaption>圣尤斯特歇斯岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣巴泰勒米.png" alt="圣巴泰勒米">
</a>
<figcaption>圣巴泰勒米</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣文森特岛.png" alt="圣文森特岛">
</a>
<figcaption>圣文森特岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣皮埃尔和密克隆群岛.png" alt="圣皮埃尔和密克隆群岛">
</a>
<figcaption>圣皮埃尔和密克隆群岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣诞岛.png" alt="圣诞岛">
</a>
<figcaption>圣诞岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣赫勒拿.png" alt="圣赫勒拿">
</a>
<figcaption>圣赫勒拿</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣赫勒拿岛.png" alt="圣赫勒拿岛">
</a>
<figcaption>圣赫勒拿岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣马丁岛.png" alt="圣马丁岛">
</a>
<figcaption>圣马丁岛</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圣马力诺.png" alt="圣马力诺">
</a>
<figcaption>圣马力诺</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/圭亚那.png" alt="圭亚那">
</a>
<figcaption>圭亚那</figcaption>
</figure>
<figure class="landscape">
<a href="#" id="-thumb">
<img class="open" loading="lazy" width="640" height="480" src="img/falg-icon/坦桑尼亚.png" alt="坦桑尼亚">