-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-3.shopping_cart_fin.html
939 lines (800 loc) · 37.3 KB
/
5-3.shopping_cart_fin.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
<!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>配件購物車_完成頁</title>
<!-- 連結主要的css檔 -->
<link rel="stylesheet" href="./css/shopping_cart.css">
<link rel="stylesheet" href="./css/0.navbar_footer.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Kaisei+Opti:wght@400;500;700&family=Noto+Sans+TC:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="./fontawesome/css/all.css">
</head>
<style>
/* fin_title */
.fin_title{
margin-top:20px;
color:white;
font-size:16px;
display:flex;
}
.fin_title_left{
width:30px;
height:30px;
margin-top:10px;
margin-bottom: 10px;
margin-right:20px;
}
/* fin_title */
.order_number{
margin-top:20px;
color:#D3B572;
font-size:20px;
display:flex;
}
/* order taotal amount PC */
.ordertotal{
background-color:hsla(41, 53%, 64%, 0.5);
width: 1140px;
height:50px;
display:flex;
justify-content:end;
margin-right:65px;
margin-top:35px;
}
.ordertotal div{
font-family: 'Noto Sans TC', sans-serif;
/* border:red 1px solid; */
display:flex;
align-items:center;
font-size:24px;
color: white;
padding: 5px 20px;
}
.ordertotal p{
margin:0 0 0 5px;
}
/* #cart-total{
display: flex;
align-items: center;
} */
.far_right_space{
width:12px;
}
@media screen and (min-width: 376px){
.container_mobile{
display:none;
}
}
@media screen and (max-width: 375px){
.container_pc{
display:none;
}
/* .container_mobile{
width:375px;
margin-left: 20px;
margin-top:0;
} */
/* progress mobile */
.progress{
padding-left:-40px ;
}
.container_mobile .progress li{
width:100px;
}
.container_mobile .progress{
margin-top:20px;
margin-bottom: 0;
}
/* item mobile */
.underline{
margin-top: 20px;
width: 327px;
border-top: #D3B572 solid 1px;
}
.item_body{
width:327px;
height: 81px;
display: flex;
justify-content: space-between;
}
.item_img_wrap img{
width: 75px;
height: 75px;
border: #667080 solid 1px;
border-radius: 5px;
display: flex;
float: left;
object-fit: contain;
}
.item_detail{
margin-left: 6px;;
width: 270px;
height: 80px;
/* display: flex;
justify-content: space-between; */
/* border: 1px red solid; */
}
.item_upper{
height:56px;
display: flex;
justify-content: space-between;
/* border: 1px red solid; */
}
.item_upper> .name{
font-family:'Noto Sans TC', sans-serif;
font-size:14px;
color:#fff;
margin-left:0;
margin-top:0;
text-align: start;
}
.item_upper> .buynexttime{
font-family:'Noto Sans TC', sans-serif;
font-size:14px;
color:#fff;
text-align:start;
}
.item_under{
height:24px;
color:#fff;
display: flex;
justify-content: space-between;
padding-right:2px
}
.item_under > .price{
font-family:'Noto Sans TC', sans-serif;
font-size:14px;
color:#D3B572;
width: 30%;
display: flex;
align-items: center;
}
.item_under p {
margin:0 0 0 5px;
}
.item_under > .delete .count{
font-family:'Noto Sans TC', sans-serif;
width: 100px;
font-size:14px;
color:#fff;
text-align: start;
width:30%;
}
/* Totals section */
.totals{
margin:20px auto 0 auto;
width:375px;
}
.totals .totals-item{
font-size:12px;
margin: 2px auto;
display: flex;
clear: both;
width: 375px;
}
.totals label {
color: white;
float: right;
clear: both;
width: 200px;
text-align: right;
}
.totals-value {
/* border:1px solid red; */
color: #D3B572;
float: right;
width:125px;
text-align: right;
display: flex;
align-items: center;
justify-content: end;
}
.totals p{
margin:0 0 0 5px;
}
.totals-item-total {
font-weight: 900;
}
/* checkout button */
/* .checkout{
width: 327px;
margin-right: 0;
display: flex;
justify-content:space-between;
}
.checkout button {
flex-grow:1;
font-family: 'Noto Sans TC', sans-serif;
height: auto;
border: 0;
margin-top: 20px;
margin-left: 10px;
padding: 13px 0;
background-color: #D3B572;
color: #fff;
font-size: 14px;
border-radius: 6px;
width: 100px;
}
.checkout .button_far_right{
margin-right:10px;
}
.checkout button:hover {
background-color:#667080;
} */
/* token holding */
.tokenholding{
background-color:hsla(41, 53%, 64%, 0.5);
width: 330px;
height:50px;
display:flex;
justify-content:end;
margin-right:65px;
margin-top:20px;
}
.tokenholding div{
font-family: 'Noto Sans TC', sans-serif;
/* border:red 1px solid; */
font-size:14px;
color: white;
padding: 11px 5px;
}
.far_right_space{
width:0px;
}
.tokenholding i{
color:#D3B572;
margin-right:5px
}
.fin_title_right{
width: 70%;
}
.fin_title_left{
padding:20px 50px 20px 0;
}
/* order taotal amount PC */
.ordertotal{
background-color:hsla(41, 53%, 64%, 0.5);
width: 327px;
height:50px;
display:flex;
/* justify-content:flex-start */
/* margin-right:65px; */
margin-top:35px;
}
.ordertotal div{
font-family: 'Noto Sans TC', sans-serif;
/* border:red 1px solid; */
display:flex;
align-items:center;
font-size:24px;
color: white;
padding: 5px 20px;
}
.ordertotal p{
margin:0 0 0 5px;
}
}
</style>
<body>
<!-- Navbar -->
<nav>
<div class="desktop-menu-list">
<div class="logo">
<a href="#" class="logo-link">
<img src="./imgs/Navbar/logo_Luxiem.png" alt="">
</a>
</div>
<div class="mobile-btn">
<span class="mobilebtn-1"></span>
<span class="mobilebtn-2"></span>
<span class="mobilebtn-3"></span>
</div>
<div class="nav-right">
<ul class="list-unstyled d-flex align-items-center">
<li>
<a href="#">首頁</a>
</li>
<li class="nav__listitem">
<a href="#">人物介紹</a>
<ul class="nav__listitemdrop">
<li>
<a class="mobile-menu-subtitle" href="#">心理測驗</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">人物介紹</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">粉絲創作</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">出道歷程</a>
</li>
</ul>
</li>
<li class="nav__listitem">
<a href="#">迷因配件</a>
<ul class="nav__listitemdrop">
<li>
<a class="mobile-menu-subtitle" href="#">配件購物</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">代幣商店</a>
</li>
</ul>
</li>
<li class="nav__listitem">
<a href="#">直播首頁</a>
<ul class="nav__listitemdrop">
<li>
<a class="mobile-menu-subtitle" href="#">直播間</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">烤肉區</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">抖內區</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">時差換算</a>
</li>
</ul>
</li>
<li class="nav__listitem">
<a href="#">會員中心</a>
<ul class="nav__listitemdrop">
<li>
<a class="mobile-menu-subtitle" href="#">資料修改</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">訂單查詢</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">喜好收藏</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">持有配件</a>
</li>
</ul>
</li>
<li class="nav__listitem">
<a href="#">討論區</a>
<ul class="nav__listitemdrop">
<li>
<a class="mobile-menu-subtitle" href="#">文章列表</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">發表文章</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="desktop-user">
<div class="desktop-user-nav">
<div class="user-info">
<div class="user-imgwrap">
<img src="./imgs/Navbar/user_img.png" alt="">
</div>
<div class="user-name">Allen</div>
<div class="user-login">登出</div>
<div class="log-icon">
<i class="fa-solid fa-right-to-bracket"></i>
</div>
</div>
<div class="user-cart">
<div class="user-login">購物車</div>
<div class="log-icon">
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="nav-links d-flex align-items-center mr-auto ml-4 border-left pl-4">
<ul class="list-unstyled d-flex align-items-center mb-0" >
<li>
<a href="#" class="text-dark">探索</a>
</li>
<li class="ml-3" >
<a href="#" class="text-dark"></a>提案</a>
</li>
</ul>
</div> -->
</nav>
<!-- 漢堡夾清單mobile_menu_list -->
<div class="mobile-menu">
<div class="user-info">
<div class="user-imgwrap">
<img src="./imgs/Navbar/user_img.png" alt="">
</div>
<div class="user-name">Allen</div>
<div class="user-login">登出</div>
</div>
<div class="mobile-menu-list">
<ul>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">首頁</a>
</li>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">人物介紹</a>
<ul>
<li>
<a class="mobile-menu-subtitle" href="#">心理測驗</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">人物介紹</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">粉絲創作</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">出道歷程</a>
</li>
</ul>
</li>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">迷因配件</a>
<ul>
<li>
<a class="mobile-menu-subtitle" href="#">配件購物</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">代幣商店</a>
</li>
</ul>
</li>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">直播首頁</a>
<ul>
<li>
<a class="mobile-menu-subtitle" href="#">直播間</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">烤肉區</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">抖內區</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">時差換算</a>
</li>
</ul>
</li>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">會員中心</a>
<ul>
<li>
<a class="mobile-menu-subtitle" href="#">資料修改</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">訂單查詢</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">喜好收藏</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">持有配件</a>
</li>
</ul>
</li>
<li class="mobile-menu-title-all">
<a class="mobile-menu-maintitle" href="#">討論區</a>
<ul>
<li>
<a class="mobile-menu-subtitle" href="#">文章列表</a>
</li>
<li>
<a class="mobile-menu-subtitle" href="#">發表文章</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="mobile-menu-footer">
Copyright © 2022 Design by Team3rd. All Rights Reserved. <br>
此網站僅用於資策會專題發表
</div>
</div>
<!-- shopping cart PC -->
<div class="container_pc">
<div class="shopping_cart_title">
<div class="main_title">Fin</div>
<div class="sub_title">購物完成</div>
</div>
</div>
<!-- shopping cart mobile -->
<div class="container_mobile">
<div class="shopping_cart_title">
<div class="main_title" style="font-size:24px">Fin</div>
<div class="sub_title style="font-size:14px">購物完成</div>
</div>
</div>
<!-- fin title pc -->
<div class="container_pc">
<div class="fin_title">
<!-- -->
<div class="fin_title_left">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.5 13.8498V14.9998C27.4985 17.6954 26.6256 20.3182 25.0117 22.4771C23.3977 24.6361 21.1291 26.2154 18.5442 26.9797C15.9593 27.744 13.1966 27.6522 10.6681 26.7181C8.1396 25.7839 5.98082 24.0575 4.5137 21.7962C3.04658 19.5349 2.34974 16.8599 2.5271 14.1702C2.70445 11.4805 3.74651 8.92024 5.49785 6.87117C7.24919 4.8221 9.61598 3.39406 12.2452 2.80001C14.8745 2.20597 17.6253 2.47775 20.0875 3.57483" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.5 5L15 17.5125L11.25 13.7625" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<!-- -->
<div class="fin_title_right">
您已經完成本筆交易的訂購程序,感謝您的訂購。</br>
訂單確認信已寄到 [email protected]
</div>
</div>
</div>
<!-- fin title mobile -->
<div class="container_mobile">
<div class="fin_title">
<!-- -->
<div class="fin_title_left">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.5 13.8498V14.9998C27.4985 17.6954 26.6256 20.3182 25.0117 22.4771C23.3977 24.6361 21.1291 26.2154 18.5442 26.9797C15.9593 27.744 13.1966 27.6522 10.6681 26.7181C8.1396 25.7839 5.98082 24.0575 4.5137 21.7962C3.04658 19.5349 2.34974 16.8599 2.5271 14.1702C2.70445 11.4805 3.74651 8.92024 5.49785 6.87117C7.24919 4.8221 9.61598 3.39406 12.2452 2.80001C14.8745 2.20597 17.6253 2.47775 20.0875 3.57483" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.5 5L15 17.5125L11.25 13.7625" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<!-- -->
<div class="fin_title_right">
您已經完成本筆交易的訂購程序,感謝您的訂購。
訂單確認信已寄到 [email protected]
</div>
</div>
</div>
<!-- order number pc -->
<div class="container_pc">
<div class="order_number">
訂單編號:#0123456789
</div>
</div>
<!-- order number mobile -->
<div class="container_mobile">
<div class="order_number">
訂單編號:#0123456789
</div>
</div>
<!-- item list PC -->
<div class="container_pc">
<div class="item_header item_header_pc">
<div class="item_detail">商品資訊</div>
<div class="count">數量</div>
<div class="price">價格</div>
<div class="totalprice">小計</div>
</div>
<div class="underline"></div>
<div class="item_header item_body">
<div class="item_detail">
<img src="imgs/Shoppingcard/shu mic.png" alt="">
<div class="name">Shu 麥克風</div>
</div>
<div class="count">
1
</div>
<div class="price"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
<div class="totalprice"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
</div>
<div class="item_header item_body">
<div class="item_detail">
<img src="imgs/Shoppingcard/shu mic.png" alt="">
<div class="name">Shu 麥克風</div>
</div>
<div class="count">
1
</div>
<div class="price"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
<div class="totalprice"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
</div>
<div class="item_header item_body">
<div class="item_detail">
<img src="imgs/Shoppingcard/shu mic.png" alt="">
<div class="name">Shu 麥克風</div>
</div>
<div class="count">
1
</div>
<div class="price"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
<div class="totalprice"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p style=" color: #D3B572;">100</p>
</div>
</div>
<!-- <div class="topline"></div> -->
</div>
</div>
<!-- item list mobile -->
<div class="container_mobile">
<div class="container_mobile_product">
<div class="underline"></div>
<div class="item_body">
<div class="item_img_wrap">
<img src="imgs/Shoppingcard/shu mic.png" alt="">
</div>
<div class="item_detail">
<div class="item_upper">
<div class="name">Shu 麥克風</div>
</div>
<div class="item_under">
<div class="price"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>100</p>
</div>
<div class="count"> x1 </div>
</div>
</div>
</div>
<div class="item_body">
<div class="item_img_wrap">
<img src="imgs/Shoppingcard/shu mic.png" alt="">
</div>
<div class="item_detail">
<div class="item_upper">
<div class="name">Shu 麥克風</div>
</div>
<div class="item_under">
<div class="price"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>100</p>
</div>
<div class="count"> x1 </div>
</div>
</div>
</div>
<div class="underline"></div>
</div>
</div>
<!-- Totals section PC -->
<!-- <div class="container_pc">
<div class="totals">
<div class="totals-item">
<label>商品總金額</label>
<div class="totals-value" id="cart-subtotal">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66669C17.4997 6.37442 17.4225 6.08736 17.2763 5.83432C17.13 5.58128 16.9198 5.37116 16.6667 5.22502L10.8333 1.89169C10.58 1.74541 10.2926 1.6684 10 1.6684C9.70744 1.6684 9.42003 1.74541 9.16667 1.89169L3.33333 5.22502C3.08022 5.37116 2.86998 5.58128 2.72372 5.83432C2.57745 6.08736 2.5003 6.37442 2.5 6.66669V13.3334C2.5003 13.6256 2.57745 13.9127 2.72372 14.1657C2.86998 14.4188 3.08022 14.6289 3.33333 14.775L9.16667 18.1084C9.42003 18.2546 9.70744 18.3316 10 18.3316C10.2926 18.3316 10.58 18.2546 10.8333 18.1084L16.6667 14.775C16.9198 14.6289 17.13 14.4188 17.2763 14.1657C17.4225 13.9127 17.4997 13.6256 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>200</p>
</div>
</div>
<div class="totals-item">
<label>加購總金額</label>
<div class="totals-value" id="cart-shipping">0</div>
</div>
<div class="totals-item totals-item-total">
<label>應付總金額</label>
<div class="totals-value" id="cart-total">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66669C17.4997 6.37442 17.4225 6.08736 17.2763 5.83432C17.13 5.58128 16.9198 5.37116 16.6667 5.22502L10.8333 1.89169C10.58 1.74541 10.2926 1.6684 10 1.6684C9.70744 1.6684 9.42003 1.74541 9.16667 1.89169L3.33333 5.22502C3.08022 5.37116 2.86998 5.58128 2.72372 5.83432C2.57745 6.08736 2.5003 6.37442 2.5 6.66669V13.3334C2.5003 13.6256 2.57745 13.9127 2.72372 14.1657C2.86998 14.4188 3.08022 14.6289 3.33333 14.775L9.16667 18.1084C9.42003 18.2546 9.70744 18.3316 10 18.3316C10.2926 18.3316 10.58 18.2546 10.8333 18.1084L16.6667 14.775C16.9198 14.6289 17.13 14.4188 17.2763 14.1657C17.4225 13.9127 17.4997 13.6256 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>200</p>
</div>
</div>
</div>
</div> -->
<!-- Totals section mobile -->
<!-- <div class="container_mobile">
<div class="totals">
<div class="totals-item">
<label>商品總金額</label>
<div class="totals-value" id="cart-subtotal">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66669C17.4997 6.37442 17.4225 6.08736 17.2763 5.83432C17.13 5.58128 16.9198 5.37116 16.6667 5.22502L10.8333 1.89169C10.58 1.74541 10.2926 1.6684 10 1.6684C9.70744 1.6684 9.42003 1.74541 9.16667 1.89169L3.33333 5.22502C3.08022 5.37116 2.86998 5.58128 2.72372 5.83432C2.57745 6.08736 2.5003 6.37442 2.5 6.66669V13.3334C2.5003 13.6256 2.57745 13.9127 2.72372 14.1657C2.86998 14.4188 3.08022 14.6289 3.33333 14.775L9.16667 18.1084C9.42003 18.2546 9.70744 18.3316 10 18.3316C10.2926 18.3316 10.58 18.2546 10.8333 18.1084L16.6667 14.775C16.9198 14.6289 17.13 14.4188 17.2763 14.1657C17.4225 13.9127 17.4997 13.6256 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>200</p>
</div>
</div>
<div class="totals-item">
<label>加購總金額</label>
<div class="totals-value" id="cart-shipping">0</div>
</div>
<div class="totals-item totals-item-total">
<label>應付總金額</label>
<div class="totals-value" id="cart-total">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66669C17.4997 6.37442 17.4225 6.08736 17.2763 5.83432C17.13 5.58128 16.9198 5.37116 16.6667 5.22502L10.8333 1.89169C10.58 1.74541 10.2926 1.6684 10 1.6684C9.70744 1.6684 9.42003 1.74541 9.16667 1.89169L3.33333 5.22502C3.08022 5.37116 2.86998 5.58128 2.72372 5.83432C2.57745 6.08736 2.5003 6.37442 2.5 6.66669V13.3334C2.5003 13.6256 2.57745 13.9127 2.72372 14.1657C2.86998 14.4188 3.08022 14.6289 3.33333 14.775L9.16667 18.1084C9.42003 18.2546 9.70744 18.3316 10 18.3316C10.2926 18.3316 10.58 18.2546 10.8333 18.1084L16.6667 14.775C16.9198 14.6289 17.13 14.4188 17.2763 14.1657C17.4225 13.9127 17.4997 13.6256 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>200</p>
</div>
</div>
</div>
</div> -->
<!-- order taotal amount PC -->
<div class="container_pc">
<div class="ordertotal">
<div>
訂單總金額
</div>
<div class="" id="cart-total">
<svg width="24" height="24" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p class="icon_left_price" style=" color: #D3B572;">300</p>
</div>
<div class="far_right_space"></div>
</div>
</div>
<!-- order taotal amount mobile -->
<div class="container_mobile">
<div class="ordertotal">
<div>
訂單總金額
</div>
<div class="" id="cart-total">
<svg width="24" height="24" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 13.3334V6.66675C17.4997 6.37448 17.4225 6.08742 17.2763 5.83438C17.13 5.58134 16.9198 5.37122 16.6667 5.22508L10.8333 1.89175C10.58 1.74547 10.2926 1.66846 10 1.66846C9.70744 1.66846 9.42003 1.74547 9.16667 1.89175L3.33333 5.22508C3.08022 5.37122 2.86998 5.58134 2.72372 5.83438C2.57745 6.08742 2.5003 6.37448 2.5 6.66675V13.3334C2.5003 13.6257 2.57745 13.9127 2.72372 14.1658C2.86998 14.4188 3.08022 14.6289 3.33333 14.7751L9.16667 18.1084C9.42003 18.2547 9.70744 18.3317 10 18.3317C10.2926 18.3317 10.58 18.2547 10.8333 18.1084L16.6667 14.7751C16.9198 14.6289 17.13 14.4188 17.2763 14.1658C17.4225 13.9127 17.4997 13.6257 17.5 13.3334Z" fill="#D3B572" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p class="icon_left_price" style=" color: #D3B572;">300</p>
</div>
</div>
</div>
<!-- checkout button pc-->
<div class="container_pc">
<div class="checkout">
<button class="">觀看持有配件</button>
<button class="">我的訂單</button>
<button class="">回到商品頁</button>
</div>
</div>
<!-- checkout button mobile -->
<div class="container_mobile">
<div class="checkout">
<!-- <button class="">回到商品頁</button>
<button class="">我的訂單</button>
<button class="button_far_right">觀看持有配件</button> -->
<button class="">回到商品頁</button>
<button class="">我的訂單</button>
<button class="">觀看持有配件</button>
</div>
</div>
<!-- footer -->
<footer>
<div class="desktop-footer">
<div class="desktop-footer-team3rd">
Copyright © 2022 Design by Team3rd. All Rights Reserved. <br>
此網站僅用於資策會專題發表
</div>
</div>
</footer>
<script src="./js/jquery-3.6.0.js"></script>
<script src="./bootstrap-4.2.1-dist/js/bootstrap.bundle.js"></script>
<!-- Navbar/Footer js -->
<script src="./js/0.navbar_footer.js"></script>
<!-- 下面是 導覽列套用scroll滑動效果 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.2/jquery.scrollTo.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>