-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1342 lines (1232 loc) · 85.8 KB
/
index.html
File metadata and controls
1342 lines (1232 loc) · 85.8 KB
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>Cửa hàng đồ phụ kiện điện tử</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap">
<link rel="stylesheet" href="./assect/css/main.css">
<link rel="stylesheet" href="./assect/css/base.css">
<link rel="stylesheet" href="./assect/font/fontawesome-free-6.0.0-web/css/all.min.css">
</head>
<body>
<div class="app">
<header class="header">
<nav class="header__navbar">
<ul class="header__navbar-list">
<li class="header__navbar-items header__navbar-items-qr header__navbar-items-separate">
</span>
Vào cửa hàng trên ứng dụng
<span>
<div class="header__qr">
<img src="./assect/picture/imagen-qr-code-leader-barcode-scanner-0thumb.png" alt="QR code" class="header__qr-img">
<div class="header__qr-apps">
<a href="" class="header__qr-link">
<img src="./assect/picture/google-play.png" alt="Google Play" class="header__qr-download">
</a>
<a href="" class="header__qr-link">
<img src="./assect/picture/app-store.png" alt="App Store" class="hearder__qr-download">
</a>
</div>
</div>
</li>
<li class="header__navbar-items">
<span class="header__navbar-items-no-pointer">Kết nối</span>
<a href="" class="header__navbar-icon-link">
<i class="header__navbar-icon fa-brands fa-facebook"></i>
</a>
<a href="" class="header__navbar-icon-link">
<i class="header__navbar-icon fa-brands fa-instagram"></i>
</li>
</ul>
<ul class="header__navbar-list">
<li class="header__navbar-items header__navbar-items--open-noti">
<a href="" class="header__navbar-items-link">
<i class="header__navbar-icon fa-regular fa-bell"></i>
Thông báo
</a>
<div class="header__noti">
<header class="header__noti-header">
<h3>Thông báo mới nhận</h3>
</header>
<ul class="header__noti-list">
<li class="header__noti-items .header__noti-items-readed">
<a href="" class="header__noti-links">
<img src="./assect/picture/sạc dự phòng.jpg" alt="" class="header__noti-img">
<div class="header__noti-infor">
<span class="header__noti-name">Pin sạc dự phòng 22.5w BASEUS adaman 10000MAH</span>
<span class="header__noti-detail">500,000đ</span>
</div>
</a>
</li>
<li class="header__noti-items">
<a href="" class="header__noti-links">
<img src="./assect/picture/củ sạc nhanh.jpg" alt="" class="header__noti-img">
<div class="header__noti-infor">
<span class="header__noti-name">Củ sạc nhanh BASEUS Mirro Lake màu đen hàng chính hãng Bh 24 tháng</span>
<span class="header__noti-detail">300.000đ</span>
</div>
</a>
</li>
<li class="header__noti-items">
<a href="" class="header__noti-links">
<img src="./assect/picture/sạc nhanh Iphone.jpg" alt="" class="header__noti-img">
<div class="header__noti-infor">
<span class="header__noti-name">Bộ sạc nhanh cho Iphone Hoca</span>
<span class="header__noti-detail">230.000đ</span>
</div>
</a>
</li>
<li class="header__noti-items">
<a href="" class="header__noti-links">
<img src="./assect/picture/cáp sạc.jpg" alt="" class="header__noti-img">
<div class="header__noti-infor">
<span class="header__noti-name">Cáp sạc Mcdodo CA-6220 Armor(3 in 1)</span>
<span class="header__noti-detail">250.000đ</span>
</div>
</a>
</li>
</ul>
<div class="header__noti-footer">
<a href="" class="header__noti-footer-btn">Xem tất cả</a>
</div>
</div>
</li>
<li class="header__navbar-items">
<a href="" class="header__navbar-items-link">
<i class="header__navbar-icon fa-regular fa-circle-question"></i>
Trợ giúp</a>
</li>
<button class="header__navbar-items js-user1 js-btn-register header__navbar-items--strong header__navbar-items-separate">Đăng ký</button>
<button class="header__navbar-items js-user2 js-btn-join header__navbar-items--strong">Đăng nhập</button>
<li class="header__navbar-items header__navbar-user js-navbar-user off">
<img src="./assect/picture/121151004_1318923551774152_6373939365139328572_n.jpg" alt="" class="header__navbar-user-img">
<span class="header__navbar-user-name">duke boi</span>
<ul class="header__navbar-user-menu">
<li class="header__navbar-user-items">
<a href="">Tài khoản của tôi</a>
</li>
<li class="header__navbar-user-items">
<a href="">Địa chỉ</a>
</li>
<li class="header__navbar-user-items">
<a href="">Đơn mua</a>
</li>
<li class="header__navbar-user-items header__navbar-user-items--separate">
<a href="">Đăng xuất</a>
</li>
</ul>
</li>
</ul>
</nav>
<!-- header with search thiếu logo -->
<div class="header-with-search">
<div class="header__logo">
<a href="/" class="header__logo-link">
<!-- logo ở đây -->
</a>
</div>
<div class="header__search">
<div class="header__search-input-warp">
<input type="text" class="header__search-input" placeholder="Tìm kiếm tại đây">
<!-- Search histoty -->
<div class="header__search-history">
<h3 class="heading-history">Lịch sử tìm kiếm </h3>
<ul class="header__search-history-list">
<li class="header__search-history-items">
<a href="">Tai nghe gaming</a>
</li>
<li class="header__search-history-items">
<a href="">Giá đỡ máy tính</a>
</li>
<li class="header__search-history-items">
<a href="">Bàn phím gaming</a>
</li>
<li class="header__search-history-items">
<a href="">Đèn led RGBA</a>
</li>
<li class="header__search-history-items">
<a href="">Đồ dùng decor</a>
</li>
</ul>
</div>
</div>
<div class="header__search-selects">
<span class="header__search-selects-label">Trong shop</span>
<i class="header__search-selects-icon fa-solid fa-chevron-down"></i>
<ul class="header__search-option">
<li class="header__search-option-items header__search-option-items--active">
<span>Trong shop</span>
<i class="fa-solid fa-check"></i>
</li>
<li class="header__search-option-items">
<span>Ngoài shop</span>
<i class="fa-solid fa-check"></i>
</li>
</ul>
</div>
<button class="header__search-btn">
<i class="header__search-btn-lop fa-solid fa-magnifying-glass"></i>
</button>
</div>
<!-- Cart layout -->
<div class="header__cart">
<div class="header__cart-wrap">
<i class="header__cart-icon fa-solid fa-cart-shopping"></i>
<!-- Has Cart -->
<span class="header__cart-notice header__cart-user js-cart-user1">5</span>
<!-- No Cart: header__cart-list--no-cart -->
<div class="header__cart-list">
<div class="header__cart-list--no-cart-place js-cart-place">
<img src="./assect/picture/no-cart.png" alt="" class="header__cart-no-cart-img">
<div class="header__cart-list-no-cart-text">Chưa có sản phẩm</div>
</div>
<!-- cart items -->
<h4 class="header__cart-heading header__cart-user">Sản phẩm đã thêm vào giỏ hàng</h4>
<ul class="header__cart-list-items header__cart-user js-cart-user2">
<li class="header__cart-items">
<img src="./assect/picture/icon-1.jpg" alt="Sản phẩm" class="header__cart-img">
<div class="header__cart-items-infor">
<div class="header__cart-items-head">
<h5 class="header__cart-items-name">cái nịt</h5>
<div class="header__card-items-wrap">
<span class="header__cart-items-prices">2.000.000đ</span>
<span class="header__cart-items-multi">x</span>
<span class="header__cart-items-quantity">2</span>
</div>
</div>
<div class="header__cart-items-body">
<span class="header__cart-items-description">Phân loại: Hàng đặc biệt</span>
<span class="header__cart-items-remove">Xóa</span>
</div>
</div>
</li>
<li class="header__cart-items">
<img src="./assect/picture/icon-1.jpg" alt="Sản phẩm" class="header__cart-img">
<div class="header__cart-items-infor">
<div class="header__cart-items-head">
<h5 class="header__cart-items-name">cái nịt</h5>
<div class="header__card-items-wrap">
<span class="header__cart-items-prices">2.000.000đ</span>
<span class="header__cart-items-multi">x</span>
<span class="header__cart-items-quantity">2</span>
</div>
</div>
<div class="header__cart-items-body">
<span class="header__cart-items-description">Phân loại: Hàng đặc biệt</span>
<span class="header__cart-items-remove">Xóa</span>
</div>
</div>
</li>
<li class="header__cart-items">
<img src="./assect/picture/icon-1.jpg" alt="Sản phẩm" class="header__cart-img">
<div class="header__cart-items-infor">
<div class="header__cart-items-head">
<h5 class="header__cart-items-name">cái nịt</h5>
<div class="header__card-items-wrap">
<span class="header__cart-items-prices">2.000.000đ</span>
<span class="header__cart-items-multi">x</span>
<span class="header__cart-items-quantity">2</span>
</div>
</div>
<div class="header__cart-items-body">
<span class="header__cart-items-description">Phân loại: Hàng đặc biệt</span>
<span class="header__cart-items-remove">Xóa</span>
</div>
</div>
</li>
<li class="header__cart-items">
<img src="./assect/picture/icon-1.jpg" alt="Sản phẩm" class="header__cart-img">
<div class="header__cart-items-infor">
<div class="header__cart-items-head">
<h5 class="header__cart-items-name">cái nịt</h5>
<div class="header__card-items-wrap">
<span class="header__cart-items-prices">2.000.000đ</span>
<span class="header__cart-items-multi">x</span>
<span class="header__cart-items-quantity">2</span>
</div>
</div>
<div class="header__cart-items-body">
<span class="header__cart-items-description">Phân loại: Hàng đặc biệt</span>
<span class="header__cart-items-remove">Xóa</span>
</div>
</div>
</li>
<li class="header__cart-items">
<img src="./assect/picture/icon-1.jpg" alt="Sản phẩm" class="header__cart-img">
<div class="header__cart-items-infor">
<div class="header__cart-items-head">
<h5 class="header__cart-items-name">cái nịt</h5>
<div class="header__card-items-wrap">
<span class="header__cart-items-prices">2.000.000đ</span>
<span class="header__cart-items-multi">x</span>
<span class="header__cart-items-quantity">2</span>
</div>
</div>
<div class="header__cart-items-body">
<span class="header__cart-items-description">Phân loại: Hàng đặc biệt</span>
<span class="header__cart-items-remove">Xóa</span>
</div>
</div>
</li>
</ul>
<a href="#"class="header__cart-check btn btn--primary">Xem giỏ hàng</a>
</div>
</div>
</div>
</div>
</header>
<div class="app__container">
<div class="grid">
<div class="grid__row app__content">
<div class="grid__column-2">
<nav class="category">
<h3 class="category__heading">
<i class="category__heading-icon fas fa-list-ul"></i>
Danh sách
</h3>
<ul class="category-list">
<li class="category-item category-item--active">
<a href="#" class="category-item__links">phụ kiện</a>
</li>
<li class="category-item">
<a href="#" class="category-item__links">tai nghe</a>
</li>
<li class="category-item">
<a href="#" class="category-item__links">sạc dự phòng</a>
</li>
<li class="category-item">
<a href="#" class="category-item__links">chuột</a>
</li>
<li class="category-item">
<a href="#" class="category-item__links">bàn phím</a>
</li>
<li class="category-item">
<a href="#" class="category-item__links">dây sạc</a>
</li>
</ul>
</nav>
</div>
<div class="grid__column-10">
<div class="Home-filter">
<span class="Home-filter__title">Sắp xếp theo</span>
<button class="Home-filter__btn btn">Phổ biến</button>
<button class="Home-filter__btn btn btn--primary">Mới nhất</button>
<button class="Home-filter__btn btn">Bán chạy</button>
<div class="select-sort select-input">
<span class="select-sort__label">Giá</span>
<i class="select-sort__label-icon fa-solid fa-chevron-down"></i>
<!-- list option -->
<ul class="select-input__list">
<li class="select-input-items">
<a href="#" class="select-input-links">Giá thấp đến cao</a>
</li>
<li class="select-input-items">
<a href="#" class="select-input-links">Giá cao đến thấp</a>
</li>
</ul>
</div>
<div class="Home-filter__page">
<span class="Home-filter__page-number">
<span class="Home-filter__page-current">1</span>/12</span>
<div class="Home-filter__page-control">
<a href="" class="Home-filter__page-btn Home-filter__page-btn--disable">
<i class="Home-filter__page-icon fa-solid fa-chevron-left"></i>
</a>
<a href="" class="Home-filter__page-btn">
<i class="Home-filter__page-icon fa-solid fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="home-products">
<div class="grid__row">
<!-- product items -->
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/cáp\ sạc.jpg);"></div>
<h4 class="home-product-item__name">Cáp sạc Mcdodo CA-6220 Armor ( 3in1)</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">325.000đ</span>
<span class="home-product-item__price-current">243.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">300 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">25%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/daay\ sacpng.png);"></div>
<h4 class="home-product-item__name">Cáp Sạc Nhanh Knight Seires Micro USB</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">150.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">200 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i> -->
<!-- Yêu thích -->
<!-- </div> -->
<!-- <div class="home-product-item__sale-off"> -->
<!-- <span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/củ\ sạc\ nhanh.jpg);"></div>
<h4 class="home-product-item__name">Củ sạc nhanh BASEUS Mirro Lake màu đen hàng chính hãng Bh 24 tháng</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000</span> -->
<span class="home-product-item__price-current">300.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<!-- <i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">130 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<i class="fas fa-check"></i>
Yêu thích
<!-- </div> -->
<!-- <div class="home-product-item__sale-off"> -->
<!-- <span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/sạc\ nhanh\ Iphone.jpg);"></div>
<h4 class="home-product-item__name">BỘ #SẠC #NHANH CHO IPHONE Hoco</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">230.000đ</span>
<span class="home-product-item__price-current">207.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">60 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i> -->
<!-- Yêu thích -->
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/sạc\ dự\ phòng.jpg);"></div>
<h4 class="home-product-item__name">Pin sạc dự phòng 22.5w BASEUS adaman 10000MAH</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">600.000</span>
<span class="home-product-item__price-current">490.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<!-- <i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">150 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">18%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/tai-nghe-chup-tai-havit-i62-4.webp);"></div>
<h4 class="home-product-item__name">Tai nghe chụp tai Havit i62</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">590.000đ</span>
<span class="home-product-item__price-current">410.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<!-- <i class="fas fa-star"></i>
<i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">500 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">30%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/02_1_3.webp);"></div>
<h4 class="home-product-item__name">Tai nghe Bluetooth Earbuds Soundpeats True Air 2</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">1.200.000đ</span>
<span class="home-product-item__price-current">845.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<!-- <i class="fas fa-star"></i> -->
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">320 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">35%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project//assect/picture/2.webp);"></div>
<h4 class="home-product-item__name">Chuột không dây Logitech M590</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">800.000đ</span>
<span class="home-product-item__price-current">600.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<!-- <i class="fas fa-star"></i>
<i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">550 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">25%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/banphimlogitechden.jpg);"></div>
<h4 class="home-product-item__name">Combo bàn phím + Chuột không dây Logitech MK240</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">600.000đ</span> -->
<span class="home-product-item__price-current">580.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">30 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i> -->
<!-- Yêu thích -->
<!-- </div> -->
<!-- <div class="home-product-item__sale-off"> -->
<!-- <span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/chuot-gaming-msi-m99-1.jpg);"></div>
<h4 class="home-product-item__name">chuột gaming msi m99</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">500.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<!-- <i class="fas fa-star"></i>
<i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">400 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<i class="fas fa-check"></i>
Yêu thích
<!-- </div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/gearvn-ban-phim-dareu-ek1280s-pink-white-666_f630c7228ecb4b60a90d3a290c8c1979.webp);"></div>
<h4 class="home-product-item__name">Bàn phím cơ có dây Dareu EK1280S</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">690.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<!-- <i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i> -->
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">6 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/picture7.webp);"></div>
<h4 class="home-product-item__name">Tai nghe Bluetooth kiêm sạc dự phòng Energizer UB2609</h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">1.300.000đ</span>
<span class="home-product-item__price-current">700.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<!-- <i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold">330 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite">
<i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">46%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/combo-3-mon.jpg);"></div>
<h4 class="home-product-item__name">Combo 3 món gồm Pin dự phòng Aukey PB-N83S 10.000mAh, Đế sạc Aukey LC-A1 và Củ sạc Aukey PA-B1 Pro PD 20W</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">1.660.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold">20 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/sac_khong_day_10k_xiaomi_0_dea9a5b6b10b496ca0c666591c6747ca_1024x1024.jpg);"></div>
<h4 class="home-product-item__name">Pin dự phòng Xiaomi 10000mAh tích hợp Sạc không dây 10W</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">HẾT HÀNG</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<!-- <i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i> -->
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="home-product-item__rating-sold"> 0 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
<div class="grid__column-2-4">
<a class="home-product-items" href="#">
<div class="home-product-item__img" style="background-image: url(/project/assect/picture/37e3b4255beb424bbc0a98098cb9ec09.jpeg);"></div>
<h4 class="home-product-item__name">Cáp sạc cho iPhone 11 pro Max USB Type-C sang Lightning</h4>
<div class="home-product-item__price">
<!-- <span class="home-product-item__price-old">1.000.000đ</span> -->
<span class="home-product-item__price-current">420.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-emty far fa-heart"></i>
<i class="home-product-item__like-icon-fill fas fa-heart"></i>
<!-- <i class="fas fa-heart"></i> -->
</span>
<div class="home-product-item__rating">
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="home-product-item--star fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<!-- <i class="fas fa-star"></i> -->
</div>
<span class="home-product-item__rating-sold"> 50 đã bán</span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tại gia</span>
<span class="home-product-item__origin-name">Việt Nam</span>
</div>
<div class="home-product-item__favourite none">
<!-- <i class="fas fa-check"></i>
Yêu thích
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span> -->
</div>
</a>
</div>
</div>
<ul class="pagination home-products__pagination">
<li class="pagination-item">
<a href="" class="pagination-item__links">
<i class="pagination-item__icon fa-solid fa-chevron-left"></i>
</a>
</li>
<li class="pagination-item pagination-item--active">
<a href="" class="pagination-item__links">1</a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__links">2</a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__links">3</a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__links">4</a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__links">5</a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__links">...</a>