-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path-sd-237-宁雨蝶-ning-yudie.html
1855 lines (1513 loc) · 171 KB
/
-sd-237-宁雨蝶-ning-yudie.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>SD 237 宁雨蝶 Ning Yudie – 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 » SD 237 宁雨蝶 Ning Yudie Dòng bình luận" href="https://yunxi211.com/?feed=rss2&p=17435">
<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-lazy-loading-css' href='static/css/opt-lazy-load.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='wd-woo-mod-quantity-css' href='static/css/woo-mod-quantity.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-base-css' href='static/css/woo-single-prod-el-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-mod-stock-status-css' href='static/css/woo-mod-stock-status.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-mod-shop-attributes-css' href='static/css/woo-mod-shop-attributes.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-header-search-css' href='static/css/header-el-search.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-header-search-form-css' href='static/css/header-el-search-form.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-wd-search-results-css' href='static/css/wd-search-results.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-wd-search-form-css' href='static/css/wd-search-form.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-wd-search-cat-css' href='static/css/wd-search-cat.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-woo-single-prod-predefined-css' href='static/css/woo-single-prod-predefined.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-and-quick-view-predefined-css' href='static/css/woo-single-prod-and-quick-view-predefined.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-tabs-predefined-css' href='static/css/woo-single-prod-el-tabs-predefined.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-photoswipe-css' href='static/css/lib-photoswipe.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-gallery-css' href='static/css/woo-single-prod-el-gallery.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-gallery-opt-thumb-left-desktop-css' href='static/css/woo-single-prod-el-gallery-opt-thumb-left-desktop.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-woo-single-prod-el-navigation-css' href='static/css/woo-single-prod-el-navigation.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-tabs-css' href='static/css/el-tabs.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-tabs-opt-layout-tabs-css' href='static/css/woo-single-prod-el-tabs-opt-layout-tabs.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-accordion-css' href='static/css/el-accordion.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-reviews-css' href='static/css/woo-single-prod-el-reviews.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-woo-single-prod-el-reviews-style-2-css' href='static/css/woo-single-prod-el-reviews-style-2.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-product-loop-css' href='static/css/woo-product-loop.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-product-loop-base-css' href='static/css/woo-product-loop-base.min.css' type='text/css' media='all'>
<link rel='stylesheet' id='wd-mod-more-description-css' href='static/css/mod-more-description.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-header_153799-css' href='static/css/xts-header_153799-1710074433.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" id="wc-single-product-js-extra">
/* <![CDATA[ */
var wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"","zoom_options":[],"photoswipe_enabled":"","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":""};
/* ]]> */
</script>
<script type="text/javascript" src="static/js/single-product.min.js" id="wc-single-product-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=product¤t_page_id=17435&search_query&page_uri=Lz9wcm9kdWN0PXNkLTIzNy0lRTUlQUUlODElRTklOUIlQTglRTglOUQlQjYtbmluZy15dWRpZQ=","keepOnlineRequestUrl":"https:\/\/yunxi211.com\/index.php?rest_route=%2Fwp-statistics%2Fv2%2Fonline&wp_statistics_hit_rest=yes&track_all=1¤t_page_type=product¤t_page_id=17435&search_query&page_uri=Lz9wcm9kdWN0PXNkLTIzNy0lRTUlQUUlODElRTklOUIlQTglRTglOUQlQjYtbmluZy15dWRpZQ=","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/product/17435"><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/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie">
<link rel='shortlink' href='https://yunxi211.com/?p=17435'>
<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%3Fproduct%3Dsd-237-%25e5%25ae%2581%25e9%259b%25a8%25e8%259d%25b6-ning-yudie">
<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%3Fproduct%3Dsd-237-%25e5%25ae%2581%25e9%259b%25a8%25e8%259d%25b6-ning-yudie&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="product-template-default single single-product postid-17435 theme-woodmart woocommerce woocommerce-page woocommerce-no-js wrapper-full-width woodmart-product-design-default catalog-mode-on categories-accordion-on woodmart-archive-shop 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-header_153799 whb-sticky-shadow whb-scroll-slide whb-sticky-clone whb-hide-on-scroll">
<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 fetchpriority="high" width="512" height="512" src="static/picture/cropped-0008500-scaled-1.jpg" class="attachment-full size-full" alt="" style="max-width:250px;" decoding="async" srcset="https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1.jpg 512w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-300x300.jpg 300w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-150x150.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-430x430.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-270x270.jpg 270w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-192x192.jpg 192w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-180x180.jpg 180w, https://yunxi211.com/wp-content/uploads/2024/02/cropped-0008500-scaled-1-32x32.jpg 32w" sizes="(max-width: 512px) 100vw, 512px"> </a>
</div>
<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 current_page_parent 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 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 id="wd-67640bf815272" class=" whb-pwkcwveehdo8zqntu8uf 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">
<div class="whb-space-element " style="width:200px;"></div><div class="wd-header-divider whb-divider-default "></div> <div class="wd-search-form wd-header-search-form wd-display-form whb-9x1ytaxq7aphtb3npidp">
<form role="search" method="get" class="searchform wd-with-cat wd-style-default wd-cat-style-bordered woodmart-ajax-search" action="https://yunxi211.com/" data-thumbnail="1" data-price="1" data-post_type="product" data-count="20" data-sku="0" data-symbols_count="3">
<input type="text" class="s" placeholder="Search for products" value="" name="s" aria-label="Search" title="Search for products" required>
<input type="hidden" name="post_type" value="product">
<div class="wd-search-cat wd-scroll">
<input type="hidden" name="product_cat" value="0">
<a href="#" rel="nofollow" data-val="0">
<span>
Select category </span>
</a>
<div class="wd-dropdown wd-dropdown-search-cat wd-dropdown-menu wd-scroll-content wd-design-default">
<ul class="wd-sub-menu">
<li style="display:none;"><a href="#" data-val="0">Select category</a></li>
<li class="cat-item cat-item-28"><a class="pf-value" href="-clocks.html" data-val="clocks" data-title="Battle Through the Heavens">Battle Through the Heavens</a>
</li>
<li class="cat-item cat-item-20"><a class="pf-value" href="-accessories.html" data-val="accessories" data-title="Perfect World">Perfect World</a>
</li>
<li class="cat-item cat-item-32"><a class="pf-value" href="-furniture.html" data-val="furniture" data-title="Soul Land 2">Soul Land 2</a>
</li>
<li class="cat-item cat-item-29"><a class="pf-value" href="-cooking.html" data-val="cooking" data-title="Throne of Seal">Throne of Seal</a>
</li>
<li class="cat-item cat-item-105"><a class="pf-value" href="-xian-ni.html" data-val="xian-ni" data-title="Xian Ni">Xian Ni</a>
</li>
</ul>
</div>
</div>
<button type="submit" class="searchsubmit">
<span>
Search </span>
</button>
</form>
<div class="search-results-wrapper">
<div class="wd-dropdown-results wd-scroll wd-dropdown">
<div class="wd-scroll-content"></div>
</div>
</div>
</div>
<div class="wd-header-divider whb-divider-default "></div><div class="whb-space-element " style="width:15px;"></div></div>
<div class="whb-column whb-col-right whb-visible-lg">
<div class="whb-space-element " style="width:200px;"></div></div>
<div class="whb-column whb-mobile-left whb-hidden-lg">
<div id="wd-67640bf816009" class=" whb-uccmrcwdqmcglmrjjgki 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-67640bf81608e" class=" whb-oc3mb1l84wrwm20t6gax 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">
<div class="wd-header-divider whb-divider-default "></div> <div class="wd-search-form wd-header-search-form-mobile wd-display-form whb-plrmqet10ausk490y99p">
<form role="search" method="get" class="searchform wd-style-default wd-cat-style-bordered woodmart-ajax-search" action="https://yunxi211.com/" data-thumbnail="1" data-price="1" data-post_type="any" data-count="20" data-sku="0" data-symbols_count="3">
<input type="text" class="s" placeholder="Search for posts" value="" name="s" aria-label="Search" title="Search for posts" required>
<input type="hidden" name="post_type" value="any">
<button type="submit" class="searchsubmit">
<span>
Search </span>
</button>
</form>
<div class="search-results-wrapper">
<div class="wd-dropdown-results wd-scroll wd-dropdown">
<div class="wd-scroll-content"></div>
</div>
</div>
</div>
</div>
<div class="whb-column whb-mobile-right whb-hidden-lg whb-empty-column">
</div>
</div>
</div>
</div>
</div>
</header>
<div class="main-page-wrapper">
<!-- MAIN CONTENT AREA -->
<div class="container-fluid">
<div class="row content-layout-wrapper align-items-start">
<div class="site-content shop-content-area col-12 breadcrumbs-location-summary wd-builder-off" role="main">
<div class="container">
</div>
<div class="container"><div class="row full-height-sidebar-wrap">
<div id="product-17435" class="single-product-page single-product-content product-design-default tabs-location-standard tabs-type-tabs meta-location-add_to_cart reviews-location-separate product-no-bg col-lg-9 col-12 col-md-9 product type-product post-17435 status-publish first instock product_cat-accessories product_tag-ning-yudie has-post-thumbnail shipping-taxable purchasable product-type-simple">
<div class="container-none">
<div class="woocommerce-notices-wrapper"></div>
<div class="row product-image-summary-wrap">
<div class="product-image-summary col-lg-12 col-md-12 col-12">
<div class="row product-image-summary-inner">
<div class="col-lg-6 col-12 col-md-6 product-images">
<div class="woocommerce-product-gallery woocommerce-product-gallery--with-images woocommerce-product-gallery--columns-4 images wd-has-thumb thumbs-position-left wd-thumbs-wrap images image-action-popup">
<div class="wd-carousel-container wd-gallery-images">
<div class="wd-carousel-inner">
<figure class="woocommerce-product-gallery__wrapper wd-carousel wd-grid" data-autoheight="yes" style="--wd-col-lg:1;--wd-col-md:1;--wd-col-sm:1;">
<div class="wd-carousel-wrap">
<div class="wd-carousel-item"><figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-3-150x225.jpg" class="woocommerce-product-gallery__image"><a data-elementor-open-lightbox="no" href="static/file/a-3-scaled.jpg"><img width="700" height="1050" src="static/picture/lazy.png" class="wp-post-image wd-lazy-load wd-lazy-fade wp-post-image" alt="" title="a (3)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-3-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-3-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-3-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-3-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-scaled.jpg 1707w"></a></figure></div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-1-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-1-scaled.jpg">
<img width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (1)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-1-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-1-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-1-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-2-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-2-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (2)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-2-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-2-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-2-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-6-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-6-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (6)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-6-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-6-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-6-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-6-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-4-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-4-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (4)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-4-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-4-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-4-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-4-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-5-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-5-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (5)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-5-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-5-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-5-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-5-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-12-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-12-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (12)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-12-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-12-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-12-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-12-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-scaled.jpg 1707w"> </a>
</figure>
</div>
<div class="wd-carousel-item">
<figure data-thumb="https://yunxi211.com/wp-content/uploads/2024/05/a-13-150x225.jpg" class="woocommerce-product-gallery__image">
<a data-elementor-open-lightbox="no" href="static/file/a-13-scaled.jpg">
<img loading="lazy" width="700" height="1050" src="static/picture/lazy.png" class=" wd-lazy-load wd-lazy-fade" alt="" title="a (13)" data-caption="" data-src="https://yunxi211.com/wp-content/uploads/2024/05/a-13-scaled.jpg" data-large_image="https://yunxi211.com/wp-content/uploads/2024/05/a-13-scaled.jpg" data-large_image_width="1707" data-large_image_height="2560" decoding="async" srcset="" sizes="(max-width: 700px) 100vw, 700px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-13-700x1050.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-13-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-scaled.jpg 1707w"> </a>
</figure>
</div>
</div></figure>
<div class="wd-nav-arrows wd-pos-sep wd-hover-1 wd-custom-style wd-icon-1">
<div class="wd-btn-arrow wd-prev wd-disabled">
<div class="wd-arrow-inner"></div>
</div>
<div class="wd-btn-arrow wd-next">
<div class="wd-arrow-inner"></div>
</div>
</div>
<div class="product-additional-galleries">
<div class="wd-show-product-gallery-wrap wd-action-btn wd-style-icon-bg-text wd-gallery-btn"><a href="#" rel="nofollow" class="woodmart-show-product-gallery"><span>Click to enlarge</span></a></div>
</div>
</div>
<div class="wd-nav-pagin-wrap text-center wd-style-shape wd-custom-style">
<ul class="wd-nav-pagin"></ul>
</div>
</div>
<div class="wd-carousel-container wd-gallery-thumb">
<div class="wd-carousel-inner">
<div class="wd-carousel wd-grid" style="--wd-col-lg:3;--wd-col-md:4;--wd-col-sm:3;">
<div class="wd-carousel-wrap">
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-3-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-3-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-3-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-1-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-1-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-2-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-2-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-6-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-6-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-6-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-4-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-4-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-4-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-5-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-5-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-5-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-12-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-12-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-12-scaled.jpg 1707w"> </div>
<div class="wd-carousel-item ">
<img loading="lazy" width="150" height="225" src="static/picture/lazy.png" class="attachment-150x0 size-150x0 wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 150px) 100vw, 150px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/a-13-150x225.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/a-13-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/a-13-scaled.jpg 1707w"> </div>
</div>
</div>
<div class="wd-nav-arrows wd-thumb-nav wd-custom-style wd-pos-sep wd-icon-1">
<div class="wd-btn-arrow wd-prev wd-disabled">
<div class="wd-arrow-inner"></div>
</div>
<div class="wd-btn-arrow wd-next">
<div class="wd-arrow-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-12 col-md-6 text-left summary entry-summary">
<div class="summary-inner set-mb-l reset-last-child">
<div class="single-breadcrumbs-wrapper">
<div class="single-breadcrumbs">
<div class="wd-breadcrumbs">
<nav class="woocommerce-breadcrumb" aria-label="Breadcrumb"> <a href="index.html" class="breadcrumb-link">
Home </a>
<a href="-accessories.html" class="breadcrumb-link breadcrumb-link-last">
Perfect World </a>
<span class="breadcrumb-last">
SD 237 宁雨蝶 Ning Yudie </span>
</nav> </div>
<div class="wd-products-nav">
<div class="wd-event-hover">
<a class="wd-product-nav-btn wd-btn-prev" href="-sd-236-yuan-yao-元瑶.html" aria-label="Previous product"></a>
<div class="wd-dropdown">
<a href="-sd-236-yuan-yao-元瑶.html" class="wd-product-nav-thumb">
<img loading="lazy" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-scaled.jpg 1707w"> </a>
<div class="wd-product-nav-desc">
<a href="-sd-236-yuan-yao-元瑶.html" class="wd-entities-title">
SD 236 Yuan Yao 元瑶 </a>
<span class="price">
<span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span> </span>
</div>
</div>
</div>
<a href="index.html" class="wd-product-nav-btn wd-btn-back">
<span>
Back to products </span>
</a>
<div class="wd-event-hover">
<a class="wd-product-nav-btn wd-btn-next" href="-sd-238-lu-xueqi.html" aria-label="Next product"></a>
<div class="wd-dropdown">
<a href="-sd-238-lu-xueqi.html" class="wd-product-nav-thumb">
<img loading="lazy" width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-2-scaled.jpg 1707w"> </a>
<div class="wd-product-nav-desc">
<a href="-sd-238-lu-xueqi.html" class="wd-entities-title">
SD 238 Lu Xueqi </a>
<span class="price">
<span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>2.00</span> </span>
</div>
</div>
</div>
</div>
</div>
</div>
<h1 class="product_title entry-title wd-entities-title">
SD 237 宁雨蝶 Ning Yudie
</h1>
<p class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></p>
<div class="product_meta">
<span class="posted_in"><span class="meta-label">Category:</span> <a href="-accessories.html" rel="tag">Perfect World</a></span>
<span class="tagged_as"><span class="meta-label">Tag:</span> <a href="-ning-yudie.html" rel="tag">Ning Yudie</a></span>
</div>
<div class=" wd-social-icons icons-design-default icons-size-small color-scheme-dark social-share social-form-circle product-share wd-layout-inline text-left">
<span class="wd-label share-title">Share:</span>
<a rel="noopener noreferrer nofollow" href="https://www.facebook.com/sharer/sharer.php?u=https://yunxi211.com/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie" 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/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie" 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/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie&media=https://yunxi211.com/wp-content/uploads/2024/05/a-3-scaled.jpg&description=SD+237+%E5%AE%81%E9%9B%A8%E8%9D%B6+Ning+Yudie" 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/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie" 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/?product=sd-237-%e5%ae%81%e9%9b%a8%e8%9d%b6-ning-yudie" target="_blank" class=" wd-social-icon social-tg" aria-label="Telegram social link">
<span class="wd-icon"></span>
</a>
</div>
</div>
</div>
</div><!-- .summary -->
</div>
</div>
</div>
<div class="product-tabs-wrapper">
<div class="container-none">
<div class="row">
<div class="col-12 poduct-tabs-inner">
<div class="woocommerce-tabs wc-tabs-wrapper tabs-layout-tabs" data-state="first" data-layout="tabs">
<div class="wd-nav-wrapper wd-nav-tabs-wrapper text-center">
<ul class="wd-nav wd-nav-tabs wd-icon-pos-left tabs wc-tabs wd-style-underline-reverse" role="tablist">
<li class="description_tab active" id="tab-title-description" role="tab" aria-controls="tab-description">
<a class="wd-nav-link" href="#tab-description">
<span class="nav-link-text wd-tabs-title">
Description </span>
</a>
</li>
</ul>
</div>
<div class="wd-accordion-item">
<div id="tab-item-title-description" class="wd-accordion-title wd-opener-pos-right tab-title-description wd-active" data-accordion-index="description">
<div class="wd-accordion-title-text">
<span>
Description </span>
</div>
<span class="wd-accordion-opener wd-opener-style-arrow"></span>
</div>
<div class="entry-content woocommerce-Tabs-panel woocommerce-Tabs-panel--description wd-active panel wc-tab" id="tab-description" role="tabpanel" aria-labelledby="tab-title-description" data-accordion-index="description">
<div class="wc-tab-inner">
<p>50pics</p>
<p>下载链接是google drive。</p>
<p>指定照片包代码 (SD…) 和电子邮件以接收链接</p>
<p>如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。</p>
<p><a class="fasc-button fasc-size-large fasc-type-flat" style="background-color: #33809e; color: #ffffff;" target="_blank" rel="noopener" href="https://afdian.net/order/create?user_id=d512e1068a2e11ee85155254001e7c00&remark=">Alipay – Wechat | 10 元</a></p>
<p><a class="fasc-button fasc-size-large fasc-type-flat" style="background-color: #bd1ea3; color: #ffffff;" href="-five-fairies.html">Quét Mã QR Momo Nhận Full Gói Ảnh</a><br>
<a class="fasc-button fasc-size-large fasc-type-flat" style="background-color: #2618c2; color: #ffffff;" target="_blank" rel="noopener" href="https://PayPal.Me/yunxi211">PayPal Payment</a><br>
When transferring money, clearly state the photo package code (SD…) and Email to receive the link.<br>
If after 30 minutes of transfer there is no link sent to your email, please message me and I will assist you as soon as possible.</p>
</div>
</div>
</div>
</div>
<div class="wd-single-reviews wd-layout-one-column">
<div id="reviews" class="woocommerce-Reviews" data-product-id="17435">
<div id="comments">
<div class="wd-reviews-heading">
<div class="wd-reviews-tools">
<h2 class="woocommerce-Reviews-title">
Reviews </h2>
</div>
</div>
<div class="wd-reviews-content wd-sticky">
<p class="woocommerce-noreviews">There are no reviews yet.</p>
</div>
<div class="wd-loader-overlay wd-fill"></div>
</div>
<div id="review_form_wrapper" class="wd-form-pos-after">
<div id="review_form">
<div id="respond" class="comment-respond">
<span id="reply-title" class="comment-reply-title">Be the first to review “SD 237 宁雨蝶 Ning Yudie” <small><a rel="nofollow" id="cancel-comment-reply-link" href="#respond" style="display:none;">Hủy</a></small></span><form action="https://yunxi211.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Email của bạn sẽ không được hiển thị công khai.</span> <span class="required-field-message">Các trường bắt buộc được đánh dấu <span class="required">*</span></span></p><div class="comment-form-rating"><label for="rating">Your rating <span class="required">*</span></label><select name="rating" id="rating" required>
<option value="">Rate…</option>
<option value="5">Perfect</option>
<option value="4">Good</option>
<option value="3">Average</option>
<option value="2">Not that bad</option>
<option value="1">Very poor</option>
</select></div><p class="comment-form-comment"><label for="comment">Your review <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label><input id="author" name="author" type="text" value="" size="30" required></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label><input id="email" name="email" type="email" value="" size="30" required></p>
<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"> <label for="wp-comment-cookies-consent">Lưu tên của tôi, email, và trang web trong trình duyệt này cho lần bình luận kế tiếp của tôi.</label></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Submit"> <input type='hidden' name='comment_post_ID' value='17435' id='comment_post_ID'>
<input type='hidden' name='comment_parent' id='comment_parent' value='0'>
</p></form> </div><!-- #respond -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-none related-and-upsells"> <div id="carousel-608" class="wd-carousel-container related-products with-title wd-products-element wd-products products">
<h4 class="wd-el-title title slider-title element-title">
<span>
Related products </span>
</h4>
<div class="wd-carousel-inner">
<div class=" wd-carousel wd-grid" data-scroll_per_page="yes" style="--wd-col-lg:6;--wd-col-md:4;--wd-col-sm:2;--wd-gap-lg:20px;--wd-gap-sm:10px;">
<div class="wd-carousel-wrap">
<div class="wd-carousel-item">
<div class="wd-product wd-hover-base wd-hover-with-fade wd-fade-off product-grid-item product product-no-swatches type-product post-17487 status-publish last instock product_cat-accessories product_tag-yun-luo has-post-thumbnail shipping-taxable purchasable product-type-simple" data-loop="1" data-id="17487">
<div class="product-wrapper">
<div class="content-product-imagin"></div>
<div class="product-element-top wd-quick-shop">
<a href="-sd-243-yun-luo.html" class="product-image-link">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-1-scaled.jpg 1707w"> </a>
<div class="hover-img">
<a href="-sd-243-yun-luo.html">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/06/yunxi211-5-scaled.jpg 1707w"> </a>
</div>
<div class="wrapp-swatches"></div>
</div>
<div class="product-element-bottom product-information">
<h3 class="wd-entities-title"><a href="-sd-243-yun-luo.html">SD 243 Yun Luo</a></h3> <div class="wd-product-cats">
<a href="-accessories.html" rel="tag">Perfect World</a> </div>
<div class="product-rating-price">
<div class="wrapp-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></span>
</div>
</div>
<div class="fade-in-block wd-scroll">
<div class="hover-content wd-more-desc">
<div class="hover-content-inner wd-more-desc-inner">
50pics 下载链接是google drive。tera box 指定照片包代码 (SD…) 和电子邮件以接收链接 如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。 Alipay – Wechat | 10 元 Quét Mã QR Momo Nhận Full </div>
<a href="#" rel="nofollow" class="wd-more-desc-btn" aria-label="Read more description"><span></span></a>
</div>
<div class=" wd-buttons wd-pos-r-t">
<div class="wrap-wishlist-button"></div>
<div class="wd-add-btn wd-action-btn wd-style-icon wd-add-cart-icon">
</div>
<div class="wrap-quickview-button"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wd-carousel-item">
<div class="wd-product wd-hover-base wd-hover-with-fade wd-fade-off product-grid-item product product-no-swatches type-product post-17465 status-publish first instock product_cat-accessories has-post-thumbnail shipping-taxable purchasable product-type-simple" data-loop="2" data-id="17465">
<div class="product-wrapper">
<div class="content-product-imagin"></div>
<div class="product-element-top wd-quick-shop">
<a href="-sd-241-lu-xueqi.html" class="product-image-link">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-27-scaled.jpg 1707w"> </a>
<div class="hover-img">
<a href="-sd-241-lu-xueqi.html">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211com-4-scaled.jpg 1707w"> </a>
</div>
<div class="wrapp-swatches"></div>
</div>
<div class="product-element-bottom product-information">
<h3 class="wd-entities-title"><a href="-sd-241-lu-xueqi.html">SD 241 Lu Xueqi</a></h3> <div class="wd-product-cats">
<a href="-accessories.html" rel="tag">Perfect World</a> </div>
<div class="product-rating-price">
<div class="wrapp-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></span>
</div>
</div>
<div class="fade-in-block wd-scroll">
<div class="hover-content wd-more-desc">
<div class="hover-content-inner wd-more-desc-inner">
50pics 下载链接是google drive。 指定照片包代码 (SD…) 和电子邮件以接收链接 如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。 Alipay – Wechat | 10 元 Quét Mã QR Momo Nhận Full Gói </div>
<a href="#" rel="nofollow" class="wd-more-desc-btn" aria-label="Read more description"><span></span></a>
</div>
<div class=" wd-buttons wd-pos-r-t">
<div class="wrap-wishlist-button"></div>
<div class="wd-add-btn wd-action-btn wd-style-icon wd-add-cart-icon">
</div>
<div class="wrap-quickview-button"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wd-carousel-item">
<div class="wd-product wd-hover-base wd-hover-with-fade wd-fade-off product-grid-item product product-no-swatches type-product post-17464 status-publish last instock product_cat-accessories product_tag-caier has-post-thumbnail shipping-taxable purchasable product-type-simple" data-loop="3" data-id="17464">
<div class="product-wrapper">
<div class="content-product-imagin"></div>
<div class="product-element-top wd-quick-shop">
<a href="-sd-240-采儿-caier.html" class="product-image-link">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-0.jpg 1024w"> </a>
<div class="hover-img">
<a href="-sd-240-采儿-caier.html">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-6-scaled.jpg 1707w"> </a>
</div>
<div class="wrapp-swatches"></div>
</div>
<div class="product-element-bottom product-information">
<h3 class="wd-entities-title"><a href="-sd-240-采儿-caier.html">SD 240 采儿 Caier</a></h3> <div class="wd-product-cats">
<a href="-accessories.html" rel="tag">Perfect World</a> </div>
<div class="product-rating-price">
<div class="wrapp-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></span>
</div>
</div>
<div class="fade-in-block wd-scroll">
<div class="hover-content wd-more-desc">
<div class="hover-content-inner wd-more-desc-inner">
50pics 下载链接是google drive。 指定照片包代码 (SD…) 和电子邮件以接收链接 如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。 Alipay – Wechat | 10 元 Quét Mã QR Momo Nhận Full Gói </div>
<a href="#" rel="nofollow" class="wd-more-desc-btn" aria-label="Read more description"><span></span></a>
</div>
<div class=" wd-buttons wd-pos-r-t">
<div class="wrap-wishlist-button"></div>
<div class="wd-add-btn wd-action-btn wd-style-icon wd-add-cart-icon">
</div>
<div class="wrap-quickview-button"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wd-carousel-item">
<div class="wd-product wd-hover-base wd-hover-with-fade wd-fade-off product-grid-item product product-no-swatches type-product post-17413 status-publish first instock product_cat-accessories has-post-thumbnail shipping-taxable purchasable product-type-simple" data-loop="4" data-id="17413">
<div class="product-wrapper">
<div class="content-product-imagin"></div>
<div class="product-element-top wd-quick-shop">
<a href="-sd-236-yuan-yao-元瑶.html" class="product-image-link">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-1-2-scaled.jpg 1707w"> </a>
<div class="hover-img">
<a href="-sd-236-yuan-yao-元瑶.html">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/05/yunxi211-2-scaled.jpg 1707w"> </a>
</div>
<div class="wrapp-swatches"></div>
</div>
<div class="product-element-bottom product-information">
<h3 class="wd-entities-title"><a href="-sd-236-yuan-yao-元瑶.html">SD 236 Yuan Yao 元瑶</a></h3> <div class="wd-product-cats">
<a href="-accessories.html" rel="tag">Perfect World</a> </div>
<div class="product-rating-price">
<div class="wrapp-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></span>
</div>
</div>
<div class="fade-in-block wd-scroll">
<div class="hover-content wd-more-desc">
<div class="hover-content-inner wd-more-desc-inner">
50pics 下载链接是google drive and Tera 指定照片包代码 (SD…) 和电子邮件以接收链接 如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。 Alipay – Wechat | 10 元 Quét Mã QR Momo Nhận </div>
<a href="#" rel="nofollow" class="wd-more-desc-btn" aria-label="Read more description"><span></span></a>
</div>
<div class=" wd-buttons wd-pos-r-t">
<div class="wrap-wishlist-button"></div>
<div class="wd-add-btn wd-action-btn wd-style-icon wd-add-cart-icon">
</div>
<div class="wrap-quickview-button"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wd-carousel-item">
<div class="wd-product wd-hover-base wd-hover-with-fade wd-fade-off product-grid-item product has-stars product-no-swatches type-product post-17160 status-publish last instock product_cat-accessories product_tag-perfectworld product_tag-ye-qingxian has-post-thumbnail shipping-taxable purchasable product-type-simple" data-loop="5" data-id="17160">
<div class="product-wrapper">
<div class="content-product-imagin"></div>
<div class="product-element-top wd-quick-shop">
<a href="-ye-qingxian-sd-223.html" class="product-image-link">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/000-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/000-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/000-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/000-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/000-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/000-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/000-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/000-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/000-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/000-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/000-scaled.jpg 1707w"> </a>
<div class="hover-img">
<a href="-ye-qingxian-sd-223.html">
<img width="430" height="645" src="static/picture/lazy.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail wd-lazy-load wd-lazy-fade" alt="" decoding="async" srcset="" sizes="(max-width: 430px) 100vw, 430px" data-wood-src="https://yunxi211.com/wp-content/uploads/2024/03/0000-430x645.jpg" data-srcset="https://yunxi211.com/wp-content/uploads/2024/03/0000-430x645.jpg 430w, https://yunxi211.com/wp-content/uploads/2024/03/0000-200x300.jpg 200w, https://yunxi211.com/wp-content/uploads/2024/03/0000-533x800.jpg 533w, https://yunxi211.com/wp-content/uploads/2024/03/0000-768x1152.jpg 768w, https://yunxi211.com/wp-content/uploads/2024/03/0000-1024x1536.jpg 1024w, https://yunxi211.com/wp-content/uploads/2024/03/0000-1365x2048.jpg 1365w, https://yunxi211.com/wp-content/uploads/2024/03/0000-860x1290.jpg 860w, https://yunxi211.com/wp-content/uploads/2024/03/0000-700x1050.jpg 700w, https://yunxi211.com/wp-content/uploads/2024/03/0000-150x225.jpg 150w, https://yunxi211.com/wp-content/uploads/2024/03/0000-scaled.jpg 1707w"> </a>
</div>
<div class="wrapp-swatches"></div>
</div>
<div class="product-element-bottom product-information">
<h3 class="wd-entities-title"><a href="-ye-qingxian-sd-223.html">SD 223 Ye Qingxian</a></h3> <div class="wd-product-cats">
<a href="-accessories.html" rel="tag">Perfect World</a> </div>
<div class="product-rating-price">
<div class="wrapp-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>2.00</bdi></span></span>
<div class="star-rating" role="img" aria-label="Rated 3.00 out of 5">
<span style="width:60%">
Rated <strong class="rating">3.00</strong> out of 5 </span>
</div>
</div>
</div>
<div class="fade-in-block wd-scroll">
<div class="hover-content wd-more-desc">
<div class="hover-content-inner wd-more-desc-inner">
40/66pics 196mp 下载链接是google drive。 请留下您的电子邮件以接收下载链接。 工作时间为每天下午 2 点至凌晨 3 点。 如果30分钟后您仍未收到链接,请给我留言,我会尽快为您提供帮助。 Alipay – Wechat | 10 元 Quét Mã QR </div>
<a href="#" rel="nofollow" class="wd-more-desc-btn" aria-label="Read more description"><span></span></a>
</div>
<div class=" wd-buttons wd-pos-r-t">
<div class="wrap-wishlist-button"></div>
<div class="wd-add-btn wd-action-btn wd-style-icon wd-add-cart-icon">
</div>
<div class="wrap-quickview-button"></div>
</div>
</div>
</div>
</div>