-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path-17309.html
1532 lines (1177 loc) · 131 KB
/
-17309.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="vi">
<head>
<meta charset="UTF-8">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="pingback" href="https://yunxi211.com/xmlrpc.php">
<title>Xiao Yi Xian 4K Battle Through the Heavens – YunXi211</title>
<meta name='robots' content='max-image-preview:large'>
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<link rel='dns-prefetch' href='//fonts.googleapis.com'>
<link rel='dns-prefetch' href='//pagead2.googlesyndication.com'>
<link rel="alternate" type="application/rss+xml" title="Dòng thông tin YunXi211 »" href="https://yunxi211.com/?feed=rss2">
<link rel="alternate" type="application/rss+xml" title="YunXi211 » Dòng bình luận" href="https://yunxi211.com/?feed=comments-rss2">
<link rel="alternate" type="application/rss+xml" title="YunXi211 » Xiao Yi Xian 4K Battle Through the Heavens Dòng bình luận" href="https://yunxi211.com/?feed=rss2&p=17309">
<link rel='stylesheet' id='wp-block-library-css' href='static/css/style.min.css' type='text/css' media='all'>
<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
.safe-svg-cover{text-align:center}.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
</style>
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='forget-about-shortcode-buttons-css' href='static/css/button-styles.css' type='text/css' media='all'>
<link rel='stylesheet' id='elementor-frontend-css' href='static/css/custom-frontend-lite.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='swiper-css' href='static/css/swiper.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='elementor-post-7-css' href='static/css/post-7.css' type='text/css' media='all'>
<link rel='stylesheet' id='bootstrap-css' href='static/css/bootstrap-light.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='woodmart-style-css' href='static/css/base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-widget-recent-post-comments-css' href='static/css/widget-recent-post-comments.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-widget-wd-recent-posts-css' href='static/css/widget-wd-recent-posts.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-widget-nav-css' href='static/css/widget-nav.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-widget-product-list-css' href='static/css/woo-widget-product-list.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-blog-single-base-css' href='static/css/blog-single-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-lazy-loading-css' href='static/css/opt-lazy-load.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-blog-base-css' href='static/css/blog-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-wp-gutenberg-css' href='static/css/wp-gutenberg.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-wpcf7-css' href='static/css/int-wpcf7.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-revolution-slider-css' href='static/css/int-rev-slider.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-elementor-base-css' href='static/css/int-elem-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woocommerce-base-css' href='static/css/woocommerce-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-star-rating-css' href='static/css/mod-star-rating.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-el-track-order-css' href='static/css/woo-el-track-order.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woocommerce-block-notices-css' href='static/css/woo-mod-block-notices.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-gutenberg-css' href='static/css/woo-gutenberg.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='child-style-css' href='static/css/style.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-header-base-css' href='static/css/header-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-tools-css' href='static/css/mod-tools.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-header-elements-base-css' href='static/css/header-el-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-page-title-css' href='static/css/page-title.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-social-icons-css' href='static/css/el-social-icons.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-page-navigation-css' href='static/css/mod-page-navigation.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-blog-loop-base-old-css' href='static/css/blog-loop-base-old.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-blog-loop-design-masonry-css' href='static/css/blog-loop-design-masonry.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-swiper-css' href='static/css/lib-swiper.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-swiper-arrows-css' href='static/css/lib-swiper-arrows.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-swiper-pagin-css' href='static/css/lib-swiper-pagin.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-comments-css' href='static/css/mod-comments.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-off-canvas-sidebar-css' href='static/css/opt-off-canvas-sidebar.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-footer-base-css' href='static/css/footer-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-nav-menu-label-css' href='static/css/mod-nav-menu-label.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-header-banner-css' href='static/css/opt-header-banner.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-sticky-social-buttons-css' href='static/css/opt-sticky-social.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-sticky-sidebar-opener-css' href='static/css/mod-sticky-sidebar-opener.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-bottom-toolbar-css' href='static/css/opt-bottom-toolbar.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='xts-style-default_header-css' href='static/css/xts-default_header-1710074449.css' type='text/css' media='all'>
<link rel='stylesheet' id='xts-style-theme_settings_default-css' href='static/css/xts-theme_settings_default-1715709332.css' type='text/css' media='all'>
<link rel='stylesheet' id='xts-google-fonts-css' href='static/css/css-Lato400700Poppins400600500_7.4.3.css' type='text/css' media='all'>
<link rel='stylesheet' id='google-fonts-1-css' href='static/css/css-Roboto100100italic200200italic300300italic400400italic500500italic600600italic700700italic800800italic900900italicRobotoSlab100100italic200200italic30030066307d0c2f8585324be10d0c811fe538.css.css' type='text/css' media='all'>
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="static/js/jquery.min.js" id="jquery-core-js"></script>
<script type="text/javascript" src="static/js/jquery-migrate.min.js" id="jquery-migrate-js"></script>
<script type="text/javascript" src="static/js/jquery.blockUI.min.js" id="jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="wc-add-to-cart-js-extra">
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/yunxi211.com\/?page_id=10","is_cart":"","cart_redirect_after_add":"no"};
/* ]]> */
</script>
<script type="text/javascript" src="static/js/add-to-cart.min.js" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" src="static/js/js.cookie.min.js" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="woocommerce-js-extra">
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type="text/javascript" src="static/js/woocommerce.min.js" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="wp-statistics-tracker-js-extra">
/* <![CDATA[ */
var WP_Statistics_Tracker_Object = {"hitRequestUrl":"https:\/\/yunxi211.com\/index.php?rest_route=%2Fwp-statistics%2Fv2%2Fhit&wp_statistics_hit_rest=yes&track_all=1¤t_page_type=post¤t_page_id=17309&search_query&page_uri=Lz9wPTE3MzA5","keepOnlineRequestUrl":"https:\/\/yunxi211.com\/index.php?rest_route=%2Fwp-statistics%2Fv2%2Fonline&wp_statistics_hit_rest=yes&track_all=1¤t_page_type=post¤t_page_id=17309&search_query&page_uri=Lz9wPTE3MzA5","option":{"dntEnabled":true,"cacheCompatibility":false}};
/* ]]> */
</script>
<script type="text/javascript" src="static/js/tracker.js" id="wp-statistics-tracker-js"></script>
<script type="text/javascript" src="static/js/device.min.js" id="wd-device-library-js"></script>
<script type="text/javascript" src="static/js/scrollBar.min.js" id="wd-scrollbar-js"></script>
<link rel="https://api.w.org/" href="https://yunxi211.com/index.php?rest_route=/"><link rel="alternate" title="JSON" type="application/json" href="https://yunxi211.com/index.php?rest_route=/wp/v2/posts/17309"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://yunxi211.com/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.7.1">
<meta name="generator" content="WooCommerce 8.6.1">
<link rel="canonical" href="https://yunxi211.com/?p=17309">
<link rel='shortlink' href='https://yunxi211.com/?p=17309'>
<link rel="alternate" title="oNhúng (JSON)" type="application/json+oembed" href="https://yunxi211.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fyunxi211.com%2F%3Fp%3D17309">
<link rel="alternate" title="oNhúng (XML)" type="text/xml+oembed" href="https://yunxi211.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fyunxi211.com%2F%3Fp%3D17309&format=xml">
<meta name="generator" content="Site Kit by Google 1.121.0"><!-- Analytics by WP Statistics v14.5 - https://wp-statistics.com/ -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<meta name="google-site-verification" content="2nhR1Lgiqv-K44WaunSv7Eg0RF_PA68OTGemwCrnwzU">
<!-- Google AdSense meta tags added by Site Kit -->
<meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236">
<meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com">
<!-- End Google AdSense meta tags added by Site Kit -->
<meta name="generator" content="Elementor 3.19.4; features: e_optimized_assets_loading, e_optimized_css_loading, e_font_icon_svg, additional_custom_breakpoints, block_editor_assets_optimize, e_image_loading_optimization; settings: css_print_method-external, google_font-enabled, font_display-swap">
<!-- Google AdSense snippet added by Site Kit -->
<script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9691818386908060&host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script>
<!-- End Google AdSense snippet added by Site Kit -->
<meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.">
<link rel="icon" href="https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-32x32.jpg" sizes="32x32">
<link rel="icon" href="https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-192x192.jpg" sizes="192x192">
<link rel="apple-touch-icon" href="https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-180x180.jpg">
<meta name="msapplication-TileImage" content="https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-270x270.jpg">
<script>function setREVStartSize(e){
//window.requestAnimationFrame(function() {
window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
try {
var pw = document.getElementById(e.c).parentNode.offsetWidth,
newh;
pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
if(e.layout==="fullscreen" || e.l==="fullscreen")
newh = Math.max(e.mh,window.RSIH);
else{
e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
var nl = new Array(e.rl.length),
ix = 0,
sl;
e.tabw = e.tabhide>=pw ? 0 : e.tabw;
e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
e.tabh = e.tabhide>=pw ? 0 : e.tabh;
e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
sl = nl[0];
for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
}
var el = document.getElementById(e.c);
if (el!==null && el) el.style.height = newh+"px";
el = document.getElementById(e.c+"_wrapper");
if (el!==null && el) {
el.style.height = newh+"px";
el.style.display = "block";
}
} catch(e){
console.log("Failure at Presize of Slider:" + e)
}
//});
};</script>
<style>
</style></head>
<body class="post-template-default single single-post postid-17309 single-format-standard theme-woodmart woocommerce-no-js wrapper-full-width catalog-mode-on categories-accordion-on header-banner-enabled offcanvas-sidebar-mobile offcanvas-sidebar-tablet sticky-toolbar-on elementor-default elementor-kit-7">
<script type="text/javascript" id="wd-flicker-fix">// Flicker fix.</script>
<style class="wd-preloader-style">
html {
/* overflow: hidden; */
overflow-y: scroll;
}
html body {
overflow: hidden;
max-height: calc(100vh - var(--wd-admin-bar-h));
}
</style>
<div class="wd-preloader color-scheme-dark">
<style>
.wd-preloader {
background-color: #ffffff }
@keyframes wd-preloader-Rotate {
0%{
transform:scale(1) rotate(0deg);
}
50%{
transform:scale(0.8) rotate(360deg);
}
100%{
transform:scale(1) rotate(720deg);
}
}
.wd-preloader-img:before {
content: "";
display: block;
width: 50px;
height: 50px;
border: 2px solid #BBB;
border-top-color: #000;
border-radius: 50%;
animation: wd-preloader-Rotate 2s cubic-bezier(0.63, 0.09, 0.26, 0.96) infinite ;
}
.color-scheme-light .wd-preloader-img:before {
border-color: rgba(255,255,255,0.2);
border-top-color: #fff;
}
@keyframes wd-preloader-fadeOut {
from {
visibility: visible;
}
to {
visibility: hidden;
}
}
.wd-preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 1;
visibility: visible;
z-index: 2500;
display: flex;
justify-content: center;
align-items: center;
animation: wd-preloader-fadeOut 20s ease both;
transition: opacity .4s ease;
}
.wd-preloader.preloader-hide {
pointer-events: none;
opacity: 0 !important;
}
.wd-preloader-img {
max-width: 300px;
max-height: 300px;
}
</style>
<div class="wd-preloader-img">
</div>
</div>
<div class="website-wrapper">
<header class="whb-header whb-default_header whb-sticky-shadow whb-scroll-stick whb-sticky-real">
<div class="whb-main-header">
<div class="whb-row whb-general-header whb-not-sticky-row whb-without-bg whb-border-fullwidth whb-color-dark whb-flex-flex-middle">
<div class="container">
<div class="whb-flex-row whb-general-header-inner">
<div class="whb-column whb-col-left whb-visible-lg">
<div class="site-logo">
<a href="index.html" class="wd-logo wd-main-logo" rel="home">
<img src="static/picture/cropped-0008500-scaled-1.jpg" alt="YunXi211" style="max-width: 250px;"> </a>
</div>
<div id="wd-6763bd3f83f3e" class=" whb-ne9v13o387d0wn6j4c8c wd-button-wrapper text-center"><a href="https://www.facebook.com/yunxi2111" title="" class="btn btn-scheme-light btn-scheme-hover-light btn-style-default btn-style-semi-round btn-size-default">Facebook</a></div></div>
<div class="whb-column whb-col-center whb-visible-lg whb-empty-column">
</div>
<div class="whb-column whb-col-right whb-visible-lg whb-empty-column">
</div>
<div class="whb-column whb-mobile-left whb-hidden-lg">
<div id="wd-6763bd3f8ee0f" class=" whb-p0jep64199mk2uimpsqh wd-button-wrapper text-center"><a href="index.html" title="" class="btn btn-scheme-light btn-scheme-hover-light btn-style-default btn-style-semi-round btn-size-default">Home</a></div><div id="wd-6763bd3f8eece" class=" whb-eokibrazfysc584ltgtk wd-button-wrapper text-center"><a href="-38.html" title="" class="btn btn-scheme-light btn-scheme-hover-light btn-style-default btn-style-semi-round btn-size-default">Free</a></div></div>
<div class="whb-column whb-mobile-center whb-hidden-lg whb-empty-column">
</div>
<div class="whb-column whb-mobile-right whb-hidden-lg whb-empty-column">
</div>
</div>
</div>
</div>
<div class="whb-row whb-header-bottom whb-not-sticky-row whb-without-bg whb-without-border whb-color-dark whb-hidden-mobile whb-flex-flex-middle">
<div class="container">
<div class="whb-flex-row whb-header-bottom-inner">
<div class="whb-column whb-col-left whb-visible-lg">
<div class="wd-header-nav wd-header-main-nav text-left wd-design-1" role="navigation" aria-label="Main navigation">
<ul id="menu-main-navigation" class="menu wd-nav wd-nav-main wd-style-default wd-gap-s"><li id="menu-item-15530" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-15530 item-level-0 menu-simple-dropdown wd-event-hover dropdown-load-ajax"><a href="index.html" class="woodmart-nav-link"><span class="nav-link-text">Home</span></a></li>
<li id="menu-item-15872" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-15872 item-level-0 menu-simple-dropdown wd-event-hover"><a href="-38.html" class="woodmart-nav-link"><span class="nav-link-text">New</span></a></li>
</ul></div><!--END MAIN-NAV-->
</div>
<div class="whb-column whb-col-center whb-visible-lg whb-empty-column">
</div>
<div class="whb-column whb-col-right whb-visible-lg whb-empty-column">
</div>
<div class="whb-column whb-col-mobile whb-hidden-lg whb-empty-column">
</div>
</div>
</div>
</div>
</div>
</header>
<div class="main-page-wrapper">
<div class="page-title page-title-default title-size-default title-design-default color-scheme-light title-blog" style="">
<div class="container">
<h3 class="entry-title title">New</h3>
</div>
</div>
<!-- MAIN CONTENT AREA -->
<div class="container">
<div class="row content-layout-wrapper align-items-start">
<div class="site-content col-lg-9 col-12 col-md-9" role="main">
<article id="post-17309" class="post-single-page post-17309 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-perfect-world tag-xiao-yi-xian">
<div class="article-inner">
<div class="meta-post-categories wd-post-cat wd-style-with-bg"><a href="-90.html" rel="category">New</a></div>
<h1 class="wd-entities-title title post-title">Xiao Yi Xian 4K Battle Through the Heavens</h1>
<div class="entry-meta wd-entry-meta">
<ul class="entry-meta-list">
<li class="modified-date">
<time class="updated" datetime="2024-03-14T10:38:27+00:00">
Tháng ba 14, 2024 </time>
</li>
<li class="meta-author">
<span>Posted by</span>
<img alt='author-avatar' src="static/picture/lazy.png" data-wood-src='https://secure.gravatar.com/avatar/e95ea8180f4d3b7d523306347cc5f630?s=32&d=mm&r=g' srcset="" data-srcset='https://secure.gravatar.com/avatar/e95ea8180f4d3b7d523306347cc5f630?s=64&d=mm&r=g 2x' class='wd-lazy-load wd-lazy-fade avatar avatar-32 photo' height='32' width='32' decoding='async'>
<a href="-1.html" rel="author">
<span class="vcard author author_name">
<span class="fn">admin</span>
</span>
</a>
</li>
</ul>
</div><!-- .entry-meta -->
<header class="entry-header">
<figure id="carousel-811" class="entry-thumbnail">
<img fetchpriority="high" width="1707" height="2560" src="static/picture/lazy.png" class="attachment-post-thumbnail size-post-thumbnail wd-lazy-load wd-lazy-fade wp-post-image" alt="" decoding="async" srcset="" sizes="(max-width: 1707px) 100vw, 1707px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-scaled.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-scaled.jpg 1707w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-150x225.jpg 150w">
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
14 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
<div class="entry-content wd-entry-content">
<p></p>
<h2 class="wp-block-heading has-text-align-center">Xiao Yi Xian 4K</h2>
<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="533" height="800" src="static/picture/yunxi211-com-2-9-533x800.jpg" alt="" class="wp-image-17315" srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-scaled.jpg 1707w" sizes="(max-width: 533px) 100vw, 533px"></figure></div>
<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="533" height="800" src="static/picture/yunxi211-com-3-6-533x800.jpg" alt="" class="wp-image-17316" srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-3-6-scaled.jpg 1707w" sizes="(max-width: 533px) 100vw, 533px"></figure></div>
<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="533" height="800" src="static/picture/yunxi211-com-4-5-533x800.jpg" alt="" class="wp-image-17317" srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-4-5-scaled.jpg 1707w" sizes="(max-width: 533px) 100vw, 533px"></figure></div>
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1200" height="800" src="static/picture/yunxi211-com-1-8-1200x800.jpg" alt="" class="wp-image-17314" srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-1200x800.jpg 1200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-400x267.jpg 400w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-768x512.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-1536x1024.jpg 1536w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-2048x1365.jpg 2048w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-700x467.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-8-150x100.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px"></figure>
<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link has-vivid-red-background-color has-background wp-element-button" href="https://drive.google.com/file/d/1ckh9CMcguthPowlbWNOyrSW4Kp0JMCPz/view?usp=sharing" target="_blank" rel="noreferrer noopener">Dowload</a></div>
</div>
<div data-block-name="woocommerce/product-new" class="wc-block-grid wp-block-product-new wc-block-product-new has-3-columns has-multiple-rows"><ul class="wc-block-grid__products"><li class="wc-block-grid__product">
<a href="-唐火儿-tang-huoer-sd-278.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="唐火儿 Tang Huo'er SD 278" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-8-2-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">唐火儿 Tang Huo’er SD 278</div>
</a>
<div class="wc-block-grid__product-price price"></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-唐火儿-tang-huoer-sd-278.html" aria-label="Read more about “唐火儿 Tang Huo'er SD 278”" data-quantity="1" data-product_id="17797" data-product_sku="" data-price="0" rel="nofollow" class="wp-block-button__link add_to_cart_button">Read more</a></div>
</li><li class="wc-block-grid__product">
<a href="-liu-fei-sd-277.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="Liu Fei SD 277" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-11-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">Liu Fei SD 277</div>
</a>
<div class="wc-block-grid__product-price price"></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-liu-fei-sd-277.html" aria-label="Read more about “Liu Fei SD 277”" data-quantity="1" data-product_id="17788" data-product_sku="" data-price="0" rel="nofollow" class="wp-block-button__link add_to_cart_button">Read more</a></div>
</li><li class="wc-block-grid__product">
<a href="-陆雪琪-lu-xueqi-sd-276.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="陆雪琪 Lu Xueqi SD 276" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-2-2-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">陆雪琪 Lu Xueqi SD 276</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17780.html" aria-label="Add to cart: “陆雪琪 Lu Xueqi SD 276”" data-quantity="1" data-product_id="17780" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-唐火儿-tang-huoer-sd-275.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="唐火儿 Tang Huo'er SD 275" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/14-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/14-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/14-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/14-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/14-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/14-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/14-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/14-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/14-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/14-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/14-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">唐火儿 Tang Huo’er SD 275</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17771.html" aria-label="Add to cart: “唐火儿 Tang Huo'er SD 275”" data-quantity="1" data-product_id="17771" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-bai-yuerong-sd-274.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="Bai Yuerong SD 274" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">Bai Yuerong SD 274</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17764.html" aria-label="Add to cart: “Bai Yuerong SD 274”" data-quantity="1" data-product_id="17764" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-陆雪琪-lu-xueqi-sd-273.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="陆雪琪 Lu Xueqi SD 273" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/08/yunxi211-1-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">陆雪琪 Lu Xueqi SD 273</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17757.html" aria-label="Add to cart: “陆雪琪 Lu Xueqi SD 273”" data-quantity="1" data-product_id="17757" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-小白-xiao-bai-sd-272.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="小白 Xiao Bai SD 272" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-14-1-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">小白 Xiao Bai SD 272</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17748.html" aria-label="Add to cart: “小白 Xiao Bai SD 272”" data-quantity="1" data-product_id="17748" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-月婵-yuechan-sd-271.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="月婵 YueChan SD 271" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-1-7-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">月婵 YueChan SD 271</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17734.html" aria-label="Add to cart: “月婵 YueChan SD 271”" data-quantity="1" data-product_id="17734" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li><li class="wc-block-grid__product">
<a href="-风情儿-feng-qinger-sd-270.html" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img loading="lazy" decoding="async" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="风情儿 Feng Qinger SD 270" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/07/yunxi211-2-1-scaled.jpg 1707w"></div>
<div class="wc-block-grid__product-title">风情儿 Feng Qinger SD 270</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span></div>
<div class="wp-block-button wc-block-grid__product-add-to-cart"><a href="-17733.html" aria-label="Add to cart: “风情儿 Feng Qinger SD 270”" data-quantity="1" data-product_id="17733" data-product_sku="" data-price="2" rel="nofollow" class="wp-block-button__link add_to_cart_button ajax_add_to_cart">Add to cart</a></div>
</li></ul></div>
<p>Once upon a time, in a kingdom nestled amidst misty mountains and lush forests, there lived a young maiden named Linh. She possessed a heart as pure as a crystal spring and beauty that rivaled the blooming of cherry blossoms in springtime. Linh lived a simple life in her village, spending her days helping her family tend to their rice fields and weaving delicate silk fabrics.</p>
<p>However, Linh harbored a secret within her heart—a love that burned brighter than the sun but was buried deep within her soul. Her affection was reserved for Trung, a gallant warrior who had been her childhood friend. Trung was the son of the village’s esteemed general, renowned for his bravery in battle and his unwavering loyalty to the kingdom.</p>
<p>From the moment Linh laid eyes on Trung, she knew that her heart belonged to him and him alone. Yet, she dared not speak of her feelings, for she feared rejection and the potential consequences it might bring. Instead, she watched from afar as Trung embarked on perilous missions to defend their land, his silhouette fading into the horizon like a fleeting dream.</p>
<p>Seasons passed, and Linh’s love for Trung only deepened, like the roots of an ancient tree stretching ever further into the earth. She found solace in weaving dreams into the silk threads that passed through her nimble fingers, creating intricate patterns that mirrored the labyrinth of her heart.</p>
<p>One fateful day, news arrived that the kingdom was under threat from a neighboring realm, led by a tyrant hell-bent on conquest. Trung was called upon to lead the defense, his valor needed now more than ever. Linh’s heart clenched with worry as she watched him don his armor and mount his steed, his figure resolute against the backdrop of a crimson sunset.</p>
<p>Days turned into weeks, and still, there was no word from the battlefield. Linh prayed fervently for Trung’s safe return, her days consumed by a restless longing that gnawed at her soul. Then, on a misty morning shrouded in uncertainty, a lone rider approached the village, his armor battered and his spirit weary.</p>
<p>It was Trung, returned from the throes of war, his face etched with the marks of countless battles. Linh rushed to his side, her heart bursting with relief and joy at his survival. Yet, her elation was short-lived, for she saw in his eyes a shadow of sorrow that pierced her to the core.</p>
<p>Trung spoke of the hardships endured on the battlefield, of the comrades lost and the sacrifices made in the name of duty. But amidst the tales of valor and strife, there was a truth that he dared not utter—a truth that Linh could sense in the depths of his gaze.</p>
<p>With trembling hands, she reached out to him, her voice a whisper in the wind. “Trung, my love, do you not feel the same?” she asked, her heart laid bare before him like a fragile blossom quivering in the breeze.</p>
<p>For a moment, there was silence, the world holding its breath as Trung beheld the woman who had loved him with unwavering devotion. Then, with a tenderness as gentle as the first light of dawn, he reached out and cradled her face in his hands.</p>
<p>“Linh,” he murmured, his voice a melody woven from the threads of their shared dreams, “since the day we met, you have been the light that guides me through the darkness. Though my path may be fraught with danger and uncertainty, know that your love has been my steadfast anchor, my reason to endure.”</p>
<p>In that fleeting moment, amidst the echoes of a kingdom at war, Linh and Trung found solace in each other’s embrace, their love transcending the boundaries of time and space. And as they stood together, united in heart and spirit, they knew that no force in the heavens or on earth could ever tear them apart.</p>
<p>For theirs was a love that defied all odds—a love that would endure for all eternity, like a timeless tale whispered on the lips of the wind, echoing through the annals of history for generations to come. And in the kingdom of their hearts, they reigned as sovereigns of a love that knew no bounds—a love as boundless and eternal as the heavens above.</p>
</div><!-- .entry-content -->
</div>
</div>
</article><!-- #post -->
<div class="wd-single-footer"> <div class="single-meta-tags">
<span class="tags-title">Tags:</span>
<div class="tags-list">
<a href="-battle-through-the-heavens-battle-through-the-heavens.html" rel="tag">Battle Through The Heavens</a>, <a href="-perfect-world.html" rel="tag">Perfect World</a>, <a href="-xiao-yi-xian-xiao-yi-xian.html" rel="tag">Xiao Yi Xian</a> </div>
</div>
<div class="single-post-social">
<div class=" wd-social-icons icons-design-colored icons-size-default color-scheme-dark social-share social-form-circle text-center">
<a rel="noopener noreferrer nofollow" href="https://www.facebook.com/sharer/sharer.php?u=https://yunxi211.com/?p=17309" target="_blank" class=" wd-social-icon social-facebook" aria-label="Facebook social link">
<span class="wd-icon"></span>
</a>
<a rel="noopener noreferrer nofollow" href="https://x.com/share?url=https://yunxi211.com/?p=17309" target="_blank" class=" wd-social-icon social-twitter" aria-label="X social link">
<span class="wd-icon"></span>
</a>
<a rel="noopener noreferrer nofollow" href="https://pinterest.com/pin/create/button/?url=https://yunxi211.com/?p=17309&media=https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-2-9-scaled.jpg&description=Xiao+Yi+Xian+4K+Battle+Through+the+Heavens" target="_blank" class=" wd-social-icon social-pinterest" aria-label="Pinterest social link">
<span class="wd-icon"></span>
</a>
<a rel="noopener noreferrer nofollow" href="https://www.linkedin.com/shareArticle?mini=true&url=https://yunxi211.com/?p=17309" target="_blank" class=" wd-social-icon social-linkedin" aria-label="Linkedin social link">
<span class="wd-icon"></span>
</a>
<a rel="noopener noreferrer nofollow" href="https://telegram.me/share/url?url=https://yunxi211.com/?p=17309" target="_blank" class=" wd-social-icon social-tg" aria-label="Telegram social link">
<span class="wd-icon"></span>
</a>
</div>
</div>
</div>
<div class="wd-page-nav">
<div class="wd-page-nav-btn prev-btn">
<a href="-17334.html">
<span class="wd-label">Newer</span>
<span class="wd-entities-title">Meidusha Battle Through the Heavens</span>
<span class="wd-page-nav-icon"></span>
</a>
</div>
<a href="-38.html" class="back-to-archive wd-tooltip">Back to list</a>
<div class="wd-page-nav-btn next-btn">
<a href="-17140.html">
<span class="wd-label">Older</span>
<span class="wd-entities-title">Li Muwan</span>
<span class="wd-page-nav-icon"></span>
</a>
</div>
</div>
<div id="carousel-948" class="wd-carousel-container related-posts-slider wd-posts wd-blog-element">
<h4 class="wd-el-title title slider-title element-title">
<span>
Related Posts </span>
</h4>
<div class="wd-carousel-inner">
<div class=" wd-carousel wd-grid" data-scroll_per_page="yes" style="--wd-col-lg:2;--wd-col-md:2;--wd-col-sm:1;--wd-gap-lg:20px;--wd-gap-sm:10px;">
<div class="wd-carousel-wrap">
<div class="wd-carousel-item">
<article id="post-17505" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17505 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-perfect-world">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17505.html">
<img width="1200" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 1200px) 100vw, 1200px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-1200x800.png" data-srcset="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-1200x800.png 1200w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-400x267.png 400w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-768x512.png 768w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-700x467.png 700w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20-150x100.png 150w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-20.png 1536w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
04 </span>
<span class="post-date-month">
Th6 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17334" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17334 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17334.html">
<img width="533" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 533px) 100vw, 533px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-533x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-22-3-scaled.jpg 1707w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
17 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17140" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17140 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-li-muwan tag-perfect-world">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17140.html">
<img width="1200" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 1200px) 100vw, 1200px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-1200x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-1200x800.jpg 1200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-400x267.jpg 400w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-768x512.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-1536x1024.jpg 1536w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-2048x1365.jpg 2048w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-700x467.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-6-150x100.jpg 150w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
09 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17068" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17068 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-perfect-world tag-yun-yun">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17068.html">
<img width="533" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 533px) 100vw, 533px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-533x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-5-scaled.jpg 1707w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
09 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17054" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17054 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-huo-linger tag-perfect-world">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17054.html">
<img width="533" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 533px) 100vw, 533px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-533x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-1-4-scaled.jpg 1707w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
09 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17036" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17036 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world tag-xiao-yi-xian tag-xuner tag-yue-chan tag-yun-yun">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17036.html">
<img width="422" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 422px) 100vw, 422px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-422x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-422x800.jpg 422w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-158x300.jpg 158w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-768x1456.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-810x1536.jpg 810w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-1080x2048.jpg 1080w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-700x1327.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-150x284.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-55-scaled.jpg 1350w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
08 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-17020" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-17020 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world tag-xiao-yi-xian tag-xuner tag-yue-chan">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-17020.html">
<img width="422" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 422px) 100vw, 422px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-422x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-422x800.jpg 422w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-158x300.jpg 158w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-768x1456.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-810x1536.jpg 810w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-1080x2048.jpg 1080w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-700x1327.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-150x284.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-26-scaled.jpg 1350w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
07 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-16994" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-16994 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world tag-xiao-yi-xian tag-xuner tag-yue-chan">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-16994.html">
<img width="533" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 533px) 100vw, 533px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-533x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-25-1-scaled.jpg 1707w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
06 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-16969" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-16969 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world tag-xiao-yi-xian tag-xuner tag-yue-chan">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-16969.html">
<img width="422" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 422px) 100vw, 422px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-422x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-422x800.jpg 422w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-158x300.jpg 158w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-768x1456.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-810x1536.jpg 810w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-1080x2048.jpg 1080w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-700x1327.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-150x284.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-36-scaled.jpg 1350w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
05 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-16957" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-16957 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-battle-through-the-heavens tag-meidusha tag-perfect-world tag-xiao-yi-xian tag-xuner tag-yue-chan">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-16957.html">
<img width="422" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 422px) 100vw, 422px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-422x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-422x800.jpg 422w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-158x300.jpg 158w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-768x1456.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-810x1536.jpg 810w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-1080x2048.jpg 1080w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-700x1327.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-150x284.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-17-1-scaled.jpg 1350w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">
<span class="post-date-day">
04 </span>
<span class="post-date-month">
Th3 </span>
</div>
</header><!-- .entry-header -->
<div class="article-body-container">
</div>
</div>
</article><!-- #post -->
</div>
<div class="wd-carousel-item">
<article id="post-16943" class="wd-post blog-post-loop blog-design-masonry blog-style-bg post-16943 post type-post status-publish format-standard has-post-thumbnail hentry category-new tag-xiao-yi-xian tag-xuner tag-yue-chan">
<div class="article-inner">
<header class="entry-header">
<figure class="entry-thumbnail">
<div class="post-img-wrapp">
<a href="-16943.html">
<img width="422" height="800" src="static/picture/lazy.png" class="attachment-large size-large wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 422px) 100vw, 422px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-422x800.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-422x800.jpg 422w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-158x300.jpg 158w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-768x1456.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-810x1536.jpg 810w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-1080x2048.jpg 1080w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-700x1327.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-150x284.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/yunxi211-com-43-scaled.jpg 1350w"> </a>
</div>
<div class="post-image-mask">
<span></span>
</div>
</figure>
<div class="post-date wd-post-date wd-style-with-bg">