-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1246 lines (1227 loc) · 104 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="icon" type="image/x-icon" href="https://i.pinimg.com/474x/6d/b9/31/6db931827443a7455a4b805fe5829820.jpg">
<!-- stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/grid.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<!-- font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<!-- icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/brands.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/regular.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/solid.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/js/all.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<div class="app">
<!------------- HEADER ------------->
<header class="header">
<div class="top-nav hide-on-tablet-mobile">
<div class="grid">
<nav class="navbar">
<ul class="navbar__list">
<li class="navbar__item navbar__item--separate">
<a href="" class="navbar__link">Kênh Người Bán</a>
</li>
<li class="navbar__item navbar__item--separate">
<a href="" class="navbar__link">Trở thành Người bán Shopee</a>
</li>
<li class="navbar__item navbar__item--separate navbar__item--has-qr-code">
<a href="" class="navbar__link">Tải ứng dụng</a>
<div class="navbar-code">
<img src="./assets/img/qr.png" alt="" class="navbar-code__img-qr">
<div class="navbar-code__apps-qr">
<img src="./assets/img/app.png" alt="app1" class="navbar-code__img-app">
<img src="./assets/img/ch-play.png" alt="ch-play-store" class="navbar-code__img-app">
<img src="./assets/img/app-.png" alt="app2" class="navbar-code__img-app">
</div>
</div>
</li>
<li class="navbar__item">
<span class="navbar__title--no-pointer">Kết nối</span>
<a href="" class="navbar__icon navbar__icon--link "><i class="fa-brands fa-facebook"></i></a>
<a href="" class="navbar__icon navbar__icon--link "><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
<ul class="navbar__list">
<li class="navbar__item navbar__item--has-notification">
<span class="navbar__icon navbar__icon--pull-left"><i class="far fa-bell"></i></span>
Thông Báo
<div class="navbar-notification">
<!-- There is notification -->
<div class="notify">
<header class="notify-header">
<p class="notify-header__title">Thông báo mới nhận</p>
</header>
<ul class="notify__list">
<li class="notify__item">
<a href="" class="notify__link">
<img src="./assets/img/notification__warn.png" alt="notification image" class="notify__img">
<div class="notify__info">
<span class="notify__name">
Cảnh báo: Yêu cầu đăng nhập mới
</span>
<span class="notify__desc">
Tài khoản của bạn vừa được phát hiện đăng nhập vào lúc Aug 08, 2022.
</span>
</div>
</a>
</li>
<li class="notify__item notify__item--viewed">
<a href="" class="notify__link">
<img src="https://cf.shopee.vn/file/31cf9072502871ebf6e5a2f11eb16529_tn" alt="notification image" class="notify__img">
<div class="notify__info">
<span class="notify__name">
Giao kiện hàng thành công. Bạn đã đánh giá sản phẩm chưa?
</span>
<span class="notify__desc">
Kiện hàng AB123 đã được giao thành công.
14:57 27-07-2022
</span>
</div>
</a>
</li>
<li class="notify__item">
<a href="" class="notify__link">
<img src="https://cf.shopee.vn/file/31cf9072502871ebf6e5a2f11eb16529_tn" alt="notification image" class="notify__img">
<div class="notify__info">
<span class="notify__name">
Giao kiện hàng thành công. Bạn đã đánh giá sản phẩm chưa?
</span>
<span class="notify__desc">
Kiện hàng AB123 đã được giao thành công.
14:57 27-07-2022
</span>
</div>
</a>
</li>
<li class="notify__item">
<a href="" class="notify__link">
<img src="https://cf.shopee.vn/file/31cf9072502871ebf6e5a2f11eb16529_tn" alt="notification image" class="notify__img">
<div class="notify__info">
<span class="notify__name">
Giao kiện hàng thành công. Bạn đã đánh giá sản phẩm chưa?
</span>
<span class="notify__desc">
Kiện hàng AB123 đã được giao thành công.
14:57 27-07-2022
</span>
</div>
</a>
</li>
</ul>
<footer class="notify-footer">
<a href="" class="notify-footer__link">Xem tất cả</a>
</footer>
</div>
<!-- There isn't notification -->
<!-- <div class="no-notify">
<div class="no-notify__img-wrapper">
<img src="./assets/img/notication.png" alt="" class="no-notify__img">
<span class="no-notify__label">Đăng nhập để xem thông tin</span>
</div>
<div class="no-notify__btns-list">
<div class="no-notify__btn">Đăng Ký</div>
<div class="no-notify__btn">Đăng Nhập</div>
</div>
</div> -->
</div>
</li>
<li class="navbar__item">
<span class="navbar__icon navbar__icon--pull-left"><i class="far fa-circle-question"></i></span>
Hỗ Trợ
</li>
<li class="navbar__item navbar__item--has-language">
<span class="navbar__icon navbar__icon--pull-left"><i class="fa-solid fa-earth-africa"></i></span>
Tiếng Việt
<span class="navbar__icon navbar__icon--pull-right"><i class="fa-solid fa-angle-down"></i></span>
<div class="navbar-language">
<span class="navbar-language__text">Tiếng Việt</span>
<span class="navbar-language__text">English</span>
</div>
</li>
<!-- Access as an incognito -->
<!-- <li class="navbar__item navbar__item--separate">
<span class="navbar__link " onclick="openRegisterForm()">Đăng Ký</span>
</li>
<li class="navbar__item">
<span class="navbar__link" onclick="openLoginForm()">Đăng Nhập</span>
</li> -->
<!-- Login -->
<li class="navbar__item navbar__item--has-account-dropdown">
<img src="./assets/img/avatar.jpg" alt="" class="navbar__avatar-img">
<span class="navbar__user-name">Mi Phạm</span>
<div class="account-dropdown">
<ul class="account-dropdown__menu">
<li class="account-dropdown__item">
<a href="" class="account-dropdown__link">Tài khoản của tôi</a>
</li>
<li class="account-dropdown__item">
<a href="" class="account-dropdown__link">Đơn mua</a>
</li>
<li class="account-dropdown__item">
<a href="" class="account-dropdown__link">Đăng xuất</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
</div>
</div>
<div class="header-with-search">
<div class="grid">
<div class="header-with-search-inner">
<div class="header-mobile-control">
<label class="mobile-menu-bar" for="mobile-sidebar">
<i class="mobile-menu-bar__icon fa-solid fa-bars"></i>
</label>
<label for="mobile-search-checkbox" class="mobile-search-mobile">
<i class="mobile-search-mobile__icon fas fa-search"></i>
</label>
</div>
<div class="header-logo hide-on-tablet">
<a class="header-logo__link" href="/">
<svg viewBox="0 0 192 65" class="shopee-svg-icon header-with-search__shopee-logo icon-shopee-logo">
<g fill="#fff" fill-rule="evenodd"><path d="M35.6717403 44.953764c-.3333497 2.7510509-2.0003116 4.9543414-4.5823845 6.0575984-1.4379707.6145919-3.36871.9463856-4.896954.8421628-2.3840266-.0911143-4.6237865-.6708937-6.6883352-1.7307424-.7375522-.3788551-1.8370513-1.1352759-2.6813095-1.8437757-.213839-.1790053-.239235-.2937577-.0977428-.4944671.0764015-.1151823.2172535-.3229831.5286218-.7791994.45158-.6616533.5079208-.7446018.5587128-.8221779.14448-.2217688.3792333-.2411091.6107855-.0588804.0243289.0189105.0243289.0189105.0426824.0333083.0379873.0294402.0379873.0294402.1276204.0990653.0907002.0706996.14448.1123887.166248.1287205 2.2265285 1.7438508 4.8196989 2.7495466 7.4376251 2.8501162 3.6423042-.0496401 6.2615109-1.6873341 6.7308041-4.2020035.5160305-2.7675977-1.6565047-5.1582742-5.9070334-6.4908212-1.329344-.4166762-4.6895175-1.7616869-5.3090528-2.1250697-2.9094471-1.7071043-4.2697358-3.9430584-4.0763845-6.7048539.296216-3.8283059 3.8501677-6.6835796 8.340785-6.702705 2.0082079-.004083 4.0121475.4132378 5.937338 1.2244562.6816382.2873109 1.8987274.9496089 2.3189359 1.2633517.2420093.1777159.2898136.384872.1510957.60836-.0774686.12958-.2055158.3350171-.4754821.7632974l-.0029878.0047276c-.3553311.5640922-.3664286.5817134-.447952.7136572-.140852.2144625-.3064598.2344475-.5604202.0732783-2.0600669-1.3839063-4.3437898-2.0801572-6.8554368-2.130442-3.126914.061889-5.4706057 1.9228561-5.6246892 4.4579402-.0409751 2.2896772 1.676352 3.9613243 5.3858811 5.2358503 7.529819 2.4196871 10.4113092 5.25648 9.869029 9.7292478M26.3725216 5.42669372c4.9022893 0 8.8982174 4.65220288 9.0851664 10.47578358H17.2875686c.186949-5.8235807 4.1828771-10.47578358 9.084953-10.47578358m25.370857 11.57065968c0-.6047069-.4870064-1.0948761-1.0875481-1.0948761h-11.77736c-.28896-7.68927544-5.7774923-13.82058185-12.5059489-13.82058185-6.7282432 0-12.2167755 6.13130641-12.5057355 13.82058185l-11.79421958.0002149c-.59136492.0107446-1.06748731.4968309-1.06748731 1.0946612 0 .0285807.00106706.0569465.00320118.0848825H.99995732l1.6812605 37.0613963c.00021341.1031483.00405483.2071562.01173767.3118087.00170729.0236381.003628.0470614.00554871.0704847l.00362801.0782207.00405483.004083c.25545428 2.5789222 2.12707837 4.6560709 4.67201764 4.7519129l.00576212.0055872h37.4122078c.0177132.0002149.0354264.0004298.0531396.0004298.0177132 0 .0354264-.0002149.0531396-.0004298h.0796027l.0017073-.0015043c2.589329-.0706995 4.6867431-2.1768587 4.9082648-4.787585l.0012805-.0012893.0017073-.0350275c.0021341-.0275062.0040548-.0547975.0057621-.0823037.0040548-.065757.0068292-.1312992.0078963-.1964115l1.8344904-37.207738h-.0012805c.001067-.0186956.0014939-.0376062.0014939-.0565167M176.465457 41.1518926c.720839-2.3512494 2.900423-3.9186779 5.443734-3.9186779 2.427686 0 4.739107 1.6486899 5.537598 3.9141989l.054826.1556978h-11.082664l.046506-.1512188zm13.50267 3.4063683c.014933.0006399.014933.0006399.036906.0008531.021973-.0002132.021973-.0002132.044372-.0008531.53055-.0243144.950595-.4766911.950595-1.0271786 0-.0266606-.000853-.0496953-.00256-.0865936.000427-.0068251.000427-.020262.000427-.0635588 0-5.1926268-4.070748-9.4007319-9.09145-9.4007319-5.020488 0-9.091235 4.2081051-9.091235 9.4007319 0 .3871116.022399.7731567.067838 1.1568557l.00256.0204753.01408.1013102c.250022 1.8683731 1.047233 3.5831812 2.306302 4.9708108-.00064-.0006399.00064.0006399.007253.0078915 1.396026 1.536289 3.291455 2.5833031 5.393601 2.9748936l.02752.0053321v-.0027727l.13653.0228215c.070186.0119439.144211.0236746.243409.039031 2.766879.332724 5.221231-.0661182 7.299484-1.1127057.511777-.2578611.971928-.5423827 1.37064-.8429007.128211-.0968312.243622-.1904632.34346-.2781231.051412-.0452164.092372-.083181.114131-.1051493.468898-.4830897.498124-.6543572.215249-1.0954297-.31146-.4956734-.586228-.9179769-.821744-1.2675504-.082345-.1224254-.154023-.2267215-.214396-.3133151-.033279-.0475624-.033279-.0475624-.054399-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.00256-.0038391c-.256208-.3188605-.431565-.3480805-.715933-.0970445-.030292.0268739-.131624.1051493-.14997.1245582-1.999321 1.775381-4.729508 2.3465571-7.455854 1.7760208-.507724-.1362888-.982595-.3094759-1.419919-.5184948-1.708127-.8565509-2.918343-2.3826022-3.267563-4.1490253l-.02752-.1394881h13.754612zM154.831964 41.1518926c.720831-2.3512494 2.900389-3.9186779 5.44367-3.9186779 2.427657 0 4.739052 1.6486899 5.537747 3.9141989l.054612.1556978h-11.082534l.046505-.1512188zm13.502512 3.4063683c.015146.0006399.015146.0006399.037118.0008531.02176-.0002132.02176-.0002132.044159-.0008531.530543-.0243144.950584-.4766911.950584-1.0271786 0-.0266606-.000854-.0496953-.00256-.0865936.000426-.0068251.000426-.020262.000426-.0635588 0-5.1926268-4.070699-9.4007319-9.091342-9.4007319-5.020217 0-9.091343 4.2081051-9.091343 9.4007319 0 .3871116.022826.7731567.068051 1.1568557l.00256.0204753.01408.1013102c.250019 1.8683731 1.04722 3.5831812 2.306274 4.9708108-.00064-.0006399.00064.0006399.007254.0078915 1.396009 1.536289 3.291417 2.5833031 5.393538 2.9748936l.027519.0053321v-.0027727l.136529.0228215c.070184.0119439.144209.0236746.243619.039031 2.766847.332724 5.22117-.0661182 7.299185-1.1127057.511771-.2578611.971917-.5423827 1.370624-.8429007.128209-.0968312.243619-.1904632.343456-.2781231.051412-.0452164.09237-.083181.11413-.1051493.468892-.4830897.498118-.6543572.215246-1.0954297-.311457-.4956734-.586221-.9179769-.821734-1.2675504-.082344-.1224254-.154022-.2267215-.21418-.3133151-.033492-.0475624-.033492-.0475624-.054612-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.002346-.0038391c-.256419-.3188605-.431774-.3480805-.716138-.0970445-.030292.0268739-.131623.1051493-.149969.1245582-1.999084 1.775381-4.729452 2.3465571-7.455767 1.7760208-.507717-.1362888-.982582-.3094759-1.419902-.5184948-1.708107-.8565509-2.918095-2.3826022-3.267311-4.1490253l-.027733-.1394881h13.754451zM138.32144123 49.7357905c-3.38129629 0-6.14681004-2.6808521-6.23169343-6.04042014v-.31621743c.08401943-3.35418649 2.85039714-6.03546919 6.23169343-6.03546919 3.44242097 0 6.23320537 2.7740599 6.23320537 6.1960534 0 3.42199346-2.7907844 6.19605336-6.23320537 6.19605336m.00172791-15.67913203c-2.21776751 0-4.33682838.7553485-6.03989586 2.140764l-.19352548.1573553V34.6208558c0-.4623792-.0993546-.56419733-.56740117-.56419733h-2.17651376c-.47409424 0-.56761716.09428403-.56761716.56419733v27.6400724c0 .4539841.10583425.5641973.56761716.5641973h2.17651376c.46351081 0 .56740117-.1078454.56740117-.5641973V50.734168l.19352548.1573553c1.70328347 1.3856307 3.82234434 2.1409792 6.03989586 2.1409792 5.27140956 0 9.54473746-4.2479474 9.54473746-9.48802964 0-5.239867-4.2733279-9.48781439-9.54473746-9.48781439M115.907646 49.5240292c-3.449458 0-6.245805-2.7496948-6.245805-6.1425854 0-3.3928907 2.79656-6.1427988 6.245805-6.1427988 3.448821 0 6.24538 2.7499081 6.24538 6.1427988 0 3.3926772-2.796346 6.1425854-6.24538 6.1425854m.001914-15.5438312c-5.28187 0-9.563025 4.2112903-9.563025 9.4059406 0 5.1944369 4.281155 9.4059406 9.563025 9.4059406 5.281657 0 9.562387-4.2115037 9.562387-9.4059406 0-5.1946503-4.280517-9.4059406-9.562387-9.4059406M94.5919049 34.1890939c-1.9281307 0-3.7938902.6198995-5.3417715 1.7656047l-.188189.1393105V23.2574169c0-.4254677-.1395825-.5643476-.5649971-.5643476h-2.2782698c-.4600414 0-.5652122.1100273-.5652122.5643476v29.2834155c0 .443339.1135587.5647782.5652122.5647782h2.2782698c.4226187 0 .5649971-.1457701.5649971-.5647782v-9.5648406c.023658-3.011002 2.4931278-5.4412923 5.5299605-5.4412923 3.0445753 0 5.516841 2.4421328 5.5297454 5.4630394v9.5430935c0 .4844647.0806524.5645628.5652122.5645628h2.2726775c.481764 0 .565212-.0824666.565212-.5645628v-9.5710848c-.018066-4.8280677-4.0440197-8.7806537-8.9328471-8.7806537M62.8459442 47.7938061l-.0053397.0081519c-.3248668.4921188-.4609221.6991347-.5369593.8179812-.2560916.3812097-.224267.551113.1668119.8816949.91266.7358184 2.0858968 1.508535 2.8774525 1.8955369 2.2023021 1.076912 4.5810275 1.646045 7.1017886 1.6975309 1.6283921.0821628 3.6734936-.3050536 5.1963734-.9842376 2.7569891-1.2298679 4.5131066-3.6269626 4.8208863-6.5794607.4985136-4.7841067-2.6143125-7.7747902-10.6321784-10.1849709l-.0021359-.0006435c-3.7356476-1.2047686-5.4904836-2.8064071-5.4911243-5.0426086.1099976-2.4715346 2.4015793-4.3179454 5.4932602-4.4331449 2.4904317.0062212 4.6923065.6675996 6.8557356 2.0598624.4562232.2767364.666607.2256796.9733188-.172263.035242-.0587797.1332787-.2012238.543367-.790093l.0012815-.0019308c.3829626-.5500403.5089793-.7336731.5403767-.7879478.258441-.4863266.2214903-.6738208-.244985-1.0046173-.459427-.3290803-1.7535544-1.0024722-2.4936356-1.2978721-2.0583439-.8211991-4.1863175-1.2199998-6.3042524-1.1788111-4.8198184.1046878-8.578747 3.2393171-8.8265087 7.3515337-.1572005 2.9703036 1.350301 5.3588174 4.5000778 7.124567.8829712.4661613 4.1115618 1.6865902 5.6184225 2.1278667 4.2847814 1.2547527 6.5186944 3.5630343 6.0571315 6.2864205-.4192725 2.4743234-3.0117991 4.1199394-6.6498372 4.2325647-2.6382344-.0549182-5.2963324-1.0217793-7.6043603-2.7562084-.0115337-.0083664-.0700567-.0519149-.1779185-.1323615-.1516472-.1130543-.1516472-.1130543-.1742875-.1300017-.4705335-.3247898-.7473431-.2977598-1.0346184.1302162-.0346012.0529875-.3919333.5963776-.5681431.8632459"></path>
</g>
</svg>
</a>
</div>
<input type="checkbox" name="" id="mobile-search-checkbox" class="mobile-search-checkbox" hidden>
<div class="header-search">
<div class="search-bar">
<div class="search-bar__top">
<input type="text" class="search-bar__input" placeholder="Nhập từ bạn muốn tìm kiếm">
<div class="search-bar-history">
<span class="search-bar-history__heading">Lịch sử tìm kiếm</span>
<ul class="search-bar-history__list">
<li class="search-bar-history__item">
<a href="" class="search-bar-history__link">Mỹ phẩm</a>
<span class="search-bar-history__icon"><i class="fa-solid fa-xmark"></i></span>
</li>
<li class="search-bar-history__item">
<a href="" class="search-bar-history__link">Đồ chơi trẻ em</a>
<span class="search-bar-history__icon"><i class="fa-solid fa-xmark"></i></span>
</li>
<li class="search-bar-history__item">
<a href="" class="search-bar-history__link">Đồ gia dụng</a>
<span class="search-bar-history__icon"><i class="fa-solid fa-xmark"></i></span>
</li>
</ul>
</div>
</div>
<div class="search-bar-select">
<span class="search-bar-select__label">Trong shop</span>
<span class="search-bar-select__arrow-down">
<i class="fa-solid fa-angle-down"></i>
</span>
<div class="search-bar-select__options">
<div class="search-bar-select__option-item search-bar-select__option-item--selected">
Trong shop
<i class="fa-solid fa-check"></i>
</div>
<div class="search-bar-select__option-item">
Ngoài shop
</div>
</div>
</div>
<button class="btn btn--primary">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<div class="search-suggest hide-on-mobile">
<ul class="search-suggest__list">
<li class="search-suggest__item">Dép</li>
<li class="search-suggest__item">Áo Phông</li>
<li class="search-suggest__item">Balo</li>
<li class="search-suggest__item">Sách</li>
<li class="search-suggest__item">Voucher</li>
</ul>
</div>
</div>
<div class="header-cart">
<div class="header-cart-inner">
<div class="header-cart__button">
<span class="header-cart__icon">
<i class="fa-solid fa-cart-shopping"></i>
</span>
<span class="header-cart__subtotal">34</span>
</div>
<div class="cart-wrap">
<!-- cart--no-product -->
<div class="cart">
<div class="cart-with-no-product">
<img src="./assets/img/cart.png" alt="" class="cart__img">
<span class="cart__label">Chưa có sản phẩm</span>
</div>
<div class="cart-with-has-product">
<span class="cart__heading">Sản phẩm thêm mới</span>
<ul class="cart-body">
<li class="cart-product">
<img src="./assets/img/cart__product.jpg" alt="" class="cart-product__img">
<div class="cart-product__info">
<div class="cart-product__header">
<span class="cart-product__name">Bộ kem đặc trị vùng mắt</span>
<div class="cart-product__price-wrap">
<span class="cart-product__price">2.000.000đ</span>
<span class="cart-product__multiply">x</span>
<span class="cart-product__quanlity">2</span>
</div>
</div>
<div class="cart-product__body">
<span class="cart-product__classify-text">Phân loại: Bạc</span>
<span class="cart-product__delete-btn"><i class="far fa-trash-alt"></i></span>
</div>
</div>
</li>
<li class="cart-product">
<img src="./assets/img/cart__product.jpg" alt="" class="cart-product__img">
<div class="cart-product__info">
<div class="cart-product__header">
<span class="cart-product__name">Bộ kem đặc trị vùng mắt</span>
<div class="cart-product__price-wrap">
<span class="cart-product__price">2.000.000đ</span>
<span class="cart-product__multiply">x</span>
<span class="cart-product__quanlity">2</span>
</div>
</div>
<div class="cart-product__body">
<span class="cart-product__classify-text">Phân loại: Bạc</span>
<span class="cart-product__delete-btn"><i class="far fa-trash-alt"></i></span>
</div>
</div>
</li>
<li class="cart-product">
<img src="./assets/img/cart__product.jpg" alt="" class="cart-product__img">
<div class="cart-product__info">
<div class="cart-product__header">
<span class="cart-product__name">Bộ kem đặc trị vùng mắt</span>
<div class="cart-product__price-wrap">
<span class="cart-product__price">2.000.000đ</span>
<span class="cart-product__multiply">x</span>
<span class="cart-product__quanlity">2</span>
</div>
</div>
<div class="cart-product__body">
<span class="cart-product__classify-text">Phân loại: Bạc</span>
<span class="cart-product__delete-btn"><i class="far fa-trash-alt"></i></span>
</div>
</div>
</li>
<li class="cart-product">
<img src="./assets/img/cart__product.jpg" alt="" class="cart-product__img">
<div class="cart-product__info">
<div class="cart-product__header">
<span class="cart-product__name">Bộ kem đặc trị vùng mắt</span>
<div class="cart-product__price-wrap">
<span class="cart-product__price">2.000.000đ</span>
<span class="cart-product__multiply">x</span>
<span class="cart-product__quanlity">2</span>
</div>
</div>
<div class="cart-product__body">
<span class="cart-product__classify-text">Phân loại: Bạc</span>
<span class="cart-product__delete-btn"><i class="far fa-trash-alt"></i></span>
</div>
</div>
</li>
</ul>
<footer class="cart-footer">
<span class="cart-footer__text">29 thêm vào giỏ hàng</span>
<a href="" class="btn btn--primary">Xem giỏ hàng</a>
</footer>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<ul class="header-sort-bar__list">
<li class="header-sort-bar__item"><a href="" class="header-sort-bar__link">Liên quan</a></li>
<li class="header-sort-bar__item header-sort-bar__item--active"><a href="" class="header-sort-bar__link">Mới nhất</a></li>
<li class="header-sort-bar__item"><a href="" class="header-sort-bar__link">Bán chạy</a></li>
<li class="header-sort-bar__item"><a href="" class="header-sort-bar__link">Giá</a></li>
</ul>
<input type="checkbox" name="" id="mobile-sidebar" class="mobile-sidebar-checkbox" hidden>
<div class="mobile-sidebar">
<label class="mobile-sidebar__overlay" for="mobile-sidebar"></label>
<div class="mobile-user-account">
<label class="mobile-user-account__close-btn" for="mobile-sidebar"><i class="fa-solid fa-xmark"></i></label>
<span class="mobile-user-account__label">Account</span>
<img src="./assets/img/avatar.jpg" alt="" class="mobile-user-account__avatar">
<h3 class="mobile-user-account__name">Mi Phạm</h3>
<ul class="mobile-user-account__list">
<li class="mobile-user-account__item">
<a href="" class="mobile-user-account__link">
<img src="./assets/img/user-account__icon1.png" alt="" class="mobile-user-account__icon">
Tài khoản của tôi
</a>
</li>
<li class="mobile-user-account__item">
<a href="" class="mobile-user-account__link">
<img src="./assets/img/user-account__icon.png" alt="" class="mobile-user-account__icon">
Đơn mua
</a>
</li>
<li class="mobile-user-account__item">
<a href="" class="mobile-user-account__link">
<img src="./assets/img/user-account__icon2.png" alt="" class="mobile-user-account__icon">
Đăng xuất
</a>
</li>
</ul>
</div>
</div>
</header>
<!------------- MAIN ------------->
<div class="container">
<div class="grid">
<div class="row">
<div class="col l-2 m-0 c-0">
<div class="category">
<h4 class="category__heading">
<i class="category__heading-icon fa-solid fa-list"></i>
Tất cả danh mục
</h4>
<ul class="category-list">
<li class="category-item category-item--active">
<a href="" class="category-item__link">Thời trang nữ</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">Quần</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">Quần đùi</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">Chân váy</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">Thêm<i class="category-item__arrow-down fa-solid fa-angle-down"></i></a>
</li>
</ul>
</div>
</div>
<div class="col l-10 m-12 c-12">
<div class="main">
<div class="sort-bar hide-on-tablet-mobile">
<span class="sort-bar__label">Sắp xếp theo</span>
<button class="btn btn--third btn--primary">Phổ biến</button>
<button class="btn btn--third">Mới nhất</button>
<button class="btn btn--third">Bán chạy</button>
<div class="sort-bar-select">
<span class="sort-bar-select__label">Giá</span>
<i class="sort-bar-select__down-arrow fa-solid fa-angle-down"></i>
<div class="sort-bar-select-options">
<span class="sort-bar-select-option__item">Giá: Thấp đến cao</span>
<span class="sort-bar-select-option__item">Giá: Cao đến thấp</span>
</div>
</div>
<div class="sort-bar-pagination">
<span class="sort-bar-pagination__number">
<span class="sort-bar-pagination__current-page">1</span>/50
</span>
<div class="sort-bar-pagination-controls">
<span class="sort-bar-pagination-control__btn sort-bar-pagination-control__btn--end"><i class="fa-solid fa-chevron-left"></i></span>
<span class="sort-bar-pagination-control__btn"><i class="fa-solid fa-chevron-right"></i></span>
</div>
</div>
</div>
<div class="home-products">
<!-- category on mobile -->
<nav class="mobile-category">
<ul class="mobile-category__list">
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
<li class="mobile-category__item"><a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện ích</a></li>
</ul>
</nav>
<div class="row">
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
<div class="col l-10-2 m-4 c-6">
<a href="" class="home-product-link">
<div class="home-product-item" href="">
<div class="home-product-item__product-img" style="background-image: url('https://cf.shopee.vn/file/08c6c04835052b2509a6123eba662273');">
<span class="home-product-item__favorite-label">
<span>Yêu thích</span>
</span>
<div class="home-product-item-sale-off-label">
<span class="home-product-item-sale-off-label__percent">25%</span>
<span class="home-product-item-sale-off-label__text">Giảm</span>
</div>
<span class="home-product-item__img-event"></span>
</div>
<div class="home-product-item-content">
<p class="home-product-item__desc">Dép chống trượt kiểu dáng đám mây dễ thương thời trang tại nhà dành cho nữ</p>
<div class="home-product-item-offers">
<span class="home-product-item-offers__price">Giảm <span class="home-product-item-offers__unit">đ</span>8k </span>
<span class="home-product-item-offers__percent">Mua 2 & giảm 5%</span>
</div>
<div class="home-product-item-price">
<span class="home-product-item-price__unit">đ</span> 59.250
<span class="home-product-item-price__dash-sign">-</span>
<span class="home-product-item-price__unit">đ</span> 94.500
</div>
<div class="home-product-item-rating">
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star"></i>
<i class="home-product-item-rating__icon fa-solid fa-star-half-stroke"></i>
<span class="home-product-item-rating__label">Đã bán 1,1k</span>
</div>
<span class="home-product-item__origin">Nước ngoài</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="home-pagination">
<ul class="home-pagination__list">
<li class="home-pagination__item">
<span class="home-pagination__arrow-icon"><i class="fa-solid fa-angle-left"></i></span>
</li>
<li class="home-pagination__item home-pagination__item--active"><a href="" class="home-pagination__link">1</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">2</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">3</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">4</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">5</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">...</a></li>
<li class="home-pagination__item"><a href="" class="home-pagination__link">300</a></li>
<li class="home-pagination__item">
<span class="home-pagination__arrow-icon"><i class="fa-solid fa-angle-right"></i></span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!------------- FOOTER ------------->
<footer class="footer">
<div class="footer-top hide-on-mobile">
<div class="grid">
<div class="footer__content">
<h3 class="footer__heading">Shopee - gì cũng có, mua hết ở shopee</h3>
<p class="footer__desc">
Shopee - ứng dụng mua sắm trực tuyến thú vị, tin cậy, an toàn và miễn phí!
Shopee là nền tảng giao dịch trực tuyến hàng đầu ở Đông Nam Á, có trụ sở chính ở Singapore,
đã có mặt ở khắp các khu vực
<span class="footer__text-underscore">Singapore</span>,
<span class="footer__text-underscore">Malaysia</span>,
<span class="footer__text-underscore">Indonesia</span>.
Với sự đảm bảo của Shopee, bạn sẽ mua hàng trực tuyến an tâm và nhanh chóng hơn bao giờ hết!
</p>
<h4 class="footer__heading">MUA SẮM VÀ BÁN HÀNG ONLINE ĐƠN GIẢN, NHANH CHÓNG VÀ AN TOÀN</h4>
<p class="footer__desc ">
Nếu bạn đang tìm kiếm một trang web để mua và bán hàng trực tuyến thì Shopee.vn
là một sự lựa chọn tuyệt vời dành cho bạn. Bản chất của Shopee là một social E-commerce platform -
nền tảng trang web thương mại điện tử tích hợp mạng xã hội. Điều này cho phép người mua và người bán
hàng dễ dàng tương tác, trao đổi thông tin về sản phẩm và chương trình khuyến mãi của shop.
Nhờ nền tảng đó, việc mua bán trên Shopee trở nên nhanh chóng và đơn giản hơn. Bạn có thể trò
chuyện trực tiếp với nhà bán hàng để hỏi trực tiếp về mặt hàng cần mua. Còn nếu bạn muốn tìm mua
những dòng sản phẩm chính hãng, uy tín, <a href="" class="footer__link-home-page">Shopee Mall</a> chính là sự lựa chọn lí tưởng dành cho bạn.
Để bạn có thể dễ dàng khi tìm hiểu và sử dụng sản phẩm, <a href="" class="footer__link-home-page">Shopee Blog- trang blog thông tin chính
thức của Shopee</a> - sẽ giúp bạn có thể tìm được cho mình các kiến thức về xu hướng thời trang,
review công nghệ, mẹo làm đẹp, tin tức tiêu dùng và deal giá tốt bất ngờ.
</p>
<span class="footer__more-button">Xem thêm <i class="footer__more-button-icon fa-solid fa-chevron-right"></i></span>
<span class="footer__separate "></span>
<h5 class="footer__heading">Danh Mục</h5>
<div class="footer-categories">
<div class="row">
<div class="col l-10-2 m-4 c-12">
<div class="footer-category__content">
<h6 class="footer-category__heading">Thời trang nam</h6>
<ul class="footer-categories__list">
<li class="footer-category__item">
<a href="" class="footer-category__link">Áo khoác</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Áo Vest và Blazer</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Quần Jeans</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Quần short</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ bộ</a>
</li>
</ul>
</div>
</div>
<div class="col l-10-2 m-4 c-12">
<div class="footer-category__content">
<h6 class="footer-category__heading">Thời trang nữ</h6>
<ul class="footer-categories__list">
<li class="footer-category__item">
<a href="" class="footer-category__link">Váy</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ ngủ</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Quần đùi</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Áo len & Cardigan</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ truyền thống</a>
</li>
</ul>
</div>
</div>
<div class="col l-10-2 m-4 c-12">
<div class="footer-category__content">
<h6 class="footer-category__heading">Nhà cửa và đời sống</h6>
<ul class="footer-categories__list">
<li class="footer-category__item">
<a href="" class="footer-category__link">Chăn, Ga, Gối & Nệm</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ nội thất</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Trang trí nhà cửa</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ dùng phòng tắm</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Đồ trang trí tiệc</a>
</li>
</ul>
</div>
</div>
<div class="col l-10-2 m-4 c-12">
<div class="footer-category__content">
<h6 class="footer-category__heading">Máy tính & laptop</h6>
<ul class="footer-categories__list">
<li class="footer-category__item">
<a href="" class="footer-category__link">Máy tình bàn</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Máy In, máy scan</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Phụ kiện máy tính</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Gaming</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Thiết bị mạng</a>
</li>
</ul>
</div>
</div>
<div class="col l-10-2 m-4 c-12">
<div class="footer-category__content">
<h6 class="footer-category__heading">Giày dép</h6>
<ul class="footer-categories__list">
<li class="footer-category__item">
<a href="" class="footer-category__link">Bốt</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Giày thể thao</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Giày đế bằng</a>
</li>
<li class="footer-category__item">
<a href="" class="footer-category__link">Giày đế xuồng</a>
</li>
<li class="footer-category__item">