-
Notifications
You must be signed in to change notification settings - Fork 0
/
0_index.php
executable file
·2184 lines (2033 loc) · 170 KB
/
0_index.php
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
<?php
session_start();
$pageName = 'index';
$title = 'The light of Luxiem 首頁';
require './parts/connect-db.php';
?>
<?php include __DIR__ . '/parts/html-head.php' ?>
<!-- 這邊會放該頁需要的css 如同下面 -->
<!-- <link rel="stylesheet" href="./css/shopping_cart.css"> -->
<link rel="stylesheet" href="./css/index.css" />
<?php include __DIR__ . '/parts/html-navbar.php' ?>
<!-- 這邊會放該頁需要的html -->
<div class="index_whole_body">
<!-- index -->
<div class="container">
<div class="row">
<div class="col">
<!-- index_Bigtitle -->
<div class="index_Bigtitle d-flex justify-content-center">
<img class="index_Bigtitle_img" src="./imgs/index/Luxiem.png" alt="" />
</div>
<!-- index_visual -->
<div class="index_visual">
<!-- width="560" height="315" -->
<!-- <iframe class="index_visual_video" src="https://www.youtube.com/embed/bdABx8gOhSs"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen >
</iframe> -->
<!-- index_visual_bc -->
<div class="index_visual_bc_wrap">
<div class="index_visual_bc"></div>
<!-- index_visual_video -->
<video class="index_visual_video" width="100%" src="./video/NIJISANJI EN_1080p.mp4" autoplay loop muted></video>
</div>
<!-- index_visual_chat -->
<div class="index_visual_chat">
<h3>聊天室</h3>
<p><span class="mr-3">Casai卡特</span>好期待~終於要出道了!</p>
<p><span class="mr-3">瑄瑄</span>這是新的團嗎?</p>
<p><span class="mr-3">恩摁ㄣ</span>OMG 等好久了!</p>
<p><span class="mr-3">Tonny</span>FINALLY 終於終於</p>
<p><span class="mr-3">Enna 奇異鳥</span>聽起來不錯的公關團</p>
<div class="Spinner_img_wrap">
<img src="./imgs/index/Spinner.png" alt="">
</div>
</div>
</div>
<!-- index_text -->
<div class="index_text KaiseiOpti d-flex">
<p class="index_text_up text-white">in the</p>
<p class="index_text_dn fakegold">Dark</p>
</div>
<!-- index_circle_btn1 -->
<div class="index_circle_btn1">
<div class="index_circle_btn_wrap">
<div class="index_circle_btn_circle">
<a href="psychological-home.php">
<div class="index_arrow_1">
<div class="index_arrow_text Primary">
<p>誰是你的靈魂伴侶?</p>
<svg viewBox="0 0 93 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M92.7071 8.09821C93.0976 7.70769 93.0976 7.07452 92.7071 6.684L86.3431 0.320037C85.9526 -0.0704874 85.3194 -0.0704874 84.9289 0.320037C84.5384 0.710561 84.5384 1.34373 84.9289 1.73425L90.5858 7.3911L84.9289 13.048C84.5384 13.4385 84.5384 14.0716 84.9289 14.4622C85.3195 14.8527 85.9526 14.8527 86.3431 14.4622L92.7071 8.09821ZM7.71589e-08 8.39111L92 8.3911L92 6.3911L-7.71589e-08 6.39111L7.71589e-08 8.39111Z" fill="#D3B572" />
</svg>
</div>
</div>
<img class="vox_bg" src="./imgs/index/VOX-BG.png" alt="" />
</a>
</div>
</div>
</div>
<!-- index_circle_btn2 -->
<div class="index_circle_btn2">
<div class="index_circle_btn_wrap">
<div class="index_circle_btn_circle">
<a href="psychological-home.php">
<div class="index_arrow_2">
<div class="index_arrow_text Primary">
<p>你是Luxiem裡面的誰?</p>
<svg viewBox="0 0 93 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M92.7071 8.09821C93.0976 7.70769 93.0976 7.07452 92.7071 6.684L86.3431 0.320037C85.9526 -0.0704874 85.3194 -0.0704874 84.9289 0.320037C84.5384 0.710561 84.5384 1.34373 84.9289 1.73425L90.5858 7.3911L84.9289 13.048C84.5384 13.4385 84.5384 14.0716 84.9289 14.4622C85.3195 14.8527 85.9526 14.8527 86.3431 14.4622L92.7071 8.09821ZM7.71589e-08 8.39111L92 8.3911L92 6.3911L-7.71589e-08 6.39111L7.71589e-08 8.39111Z" fill="#D3B572" />
</svg>
</div>
</div>
<img class="ike_bg" src="./imgs/index/IKE_BG.png" alt="" />
</a>
</div>
</div>
</div>
<!-- index_intro_Bigtrain_wrap -->
<div class="index_intro_Bigtrain_wrap">
<!-- index_intro_count -->
<div class="index_intro_count">
<div class="index_intro_count_wrap KaiseiOpti text-white">
<p class="fakegold numerator">1</p>
<p>/</p>
<p class="denominator">5</p>
</div>
</div>
<!-- index_text_2 -->
<div class="index_text_2">
<p class="index_text_2_up KaiseiOpti fakegold">Who?</p>
<p class="index_text_2_dn text-white NotoSans">是誰?</p>
</div>
<!-- index_intro_Bigtrain -->
<div class="index_intro_Bigtrain d-flex">
<!-- index_intro_Ike_outwrap -->
<div class="index_intro_Ike_outwrap">
<!-- index_IKE_body -->
<div class="index_IKE_body">
<div class="index_IKE_body_wrap">
<img class="ike_body" src="./imgs/index/Ike_whole body.png" alt="" />
</div>
<img class="ike_shadow" src="./imgs/index/Ike_shadow.png" alt="" />
</div>
<!-- index_IKE_intro -->
<div class="index_IKE_intro">
<div class="index_IKE_head">
<img src="./imgs/index/Ike.png" alt="" />
<p>
<span class="color_ike index_IKE_head_title">
Ike Eveland
</span>
</p>
<p class="text-white">
來自過去的小說家,似乎有些自閉,當他有下一部作品的想法時,就會變成完全不同的人。
</p>
<a class="see_more fakegold" href="">See more</a>
<div class="svg_link">
<!-- YT-icon -->
<a href="https://www.youtube.com/channel/UC4yNIKGvy-YUrwYupVdLDXA">
<svg class="YT-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.54 6.42C22.4212 5.94541 22.1793 5.51057 21.8386 5.15941C21.498 4.80824 21.0707 4.55318 20.6 4.42C18.88 4 12 4 12 4C12 4 5.11999 4 3.39999 4.46C2.92924 4.59318 2.50197 4.84824 2.16134 5.19941C1.82071 5.55057 1.57878 5.98541 1.45999 6.46C1.14521 8.20556 0.991228 9.97631 0.999992 11.75C0.988771 13.537 1.14276 15.3213 1.45999 17.08C1.59095 17.5398 1.8383 17.9581 2.17814 18.2945C2.51797 18.6308 2.93881 18.8738 3.39999 19C5.11999 19.46 12 19.46 12 19.46C12 19.46 18.88 19.46 20.6 19C21.0707 18.8668 21.498 18.6118 21.8386 18.2606C22.1793 17.9094 22.4212 17.4746 22.54 17C22.8524 15.2676 23.0063 13.5103 23 11.75C23.0112 9.96295 22.8572 8.1787 22.54 6.42Z" fill="#D3B572" />
<path d="M9.75 15.02L15.5 11.75L9.75 8.47998V15.02Z" fill="black" />
</svg>
</a>
<!-- TW-icon -->
<a href="https://twitter.com/ike_eveland">
<svg class="TW-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 3.00005C22.0424 3.67552 20.9821 4.19216 19.86 4.53005C19.2577 3.83756 18.4573 3.34674 17.567 3.12397C16.6767 2.90121 15.7395 2.95724 14.8821 3.2845C14.0247 3.61176 13.2884 4.19445 12.773 4.95376C12.2575 5.71308 11.9877 6.61238 12 7.53005V8.53005C10.2426 8.57561 8.50127 8.18586 6.93101 7.39549C5.36074 6.60513 4.01032 5.43868 3 4.00005C3 4.00005 -1 13 8 17C5.94053 18.398 3.48716 19.099 1 19C10 24 21 19 21 7.50005C20.9991 7.2215 20.9723 6.94364 20.92 6.67005C21.9406 5.66354 22.6608 4.39276 23 3.00005Z" fill="#D3B572" />
</svg>
</a>
<!-- ST-icon -->
<a href="https://streamlabs.com/ikeevelandnijisanjien/tip">
<svg class="ST-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 1V23" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 5H9.5C8.57174 5 7.6815 5.36875 7.02513 6.02513C6.36875 6.6815 6 7.57174 6 8.5C6 9.42826 6.36875 10.3185 7.02513 10.9749C7.6815 11.6313 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3687 16.9749 13.0251C17.6313 13.6815 18 14.5717 18 15.5C18 16.4283 17.6313 17.3185 16.9749 17.9749C16.3185 18.6313 15.4283 19 14.5 19H6" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
<!-- index_square_btn -->
<div class="index_square_btn d-flex">
<div class="index_square_btn_wrap">
<p id="ike_voice_bt_01" onclick="playike01()">voice 1</p>
<p id="ike_voice_bt_02" onclick="playike02()">voice 2</p>
<p id="ike_voice_bt_03" onclick="playike03()">voice 3</p>
<p id="ike_voice_bt_04" onclick="playike04()">voice 4</p>
</div>
</div>
<audio id="ike_voice_01" src="./voice/ike/ike出道.mp3"></audio>
<audio id="ike_voice_02" src="./voice/ike/ike笑.mp3"></audio>
<audio id="ike_voice_03" src="./voice/ike/ike氣噗噗.mp3"></audio>
<audio id="ike_voice_04" src="./voice/ike/ike驚呼.mp3"></audio>
<!-- see_more_ph -->
<div class="see_more_ph">
<a class="see_more fakegold" href="https://wikiwiki.jp/nijisanji/Ike%20Eveland"> See more </a>
</div>
<!-- index_SC_rank -->
<div class="index_SC_rank">
<div class="index_SC_rank_wrap">
<div class="index_SC_rank_title d-flex align-items-lg-baseline">
<p class="fakegold">SC Vtuber 排名</p>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 6L13.5 15.5L8.5 10.5L1 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 6H23V12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_SC_rank_info">
<div class="index_SC_rank_info_number d-flex align-items-lg-baseline justify-content-between">
<p class="text-white SC_rank_number ike_rank_nb">No. 17</p>
<p class="fakegold SC_rank_money ike_rank_m">+ NT 1,077,677</p>
</div>
<div class="index_SC_rank_info_btn d-flex align-items-lg-baseline">
<p class="mr-4 active ike_monthly">當月</p>
<p class="ike_weekly">當周</p>
<a class="index_SC_rank_link" href="https://playboard.co/en/channel/UC4yNIKGvy-YUrwYupVdLDXA">
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.91667 19H30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19 7.91663L30.0833 19L19 30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- index_livenow_timezone -->
<div class="index_livenow_timezone">
<div class="index_livenow_timezone_wrap">
<div class="index_livenow_title d-flex align-items-baseline">
<svg class="mr-3" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="6" fill="#E73D48" />
<circle cx="10" cy="10" r="9.5" stroke="#E73D48" />
</svg>
<p>LIVE NOW</p>
</div>
<div class="index_livenow_img">
<img src="./imgs/index/Ike_Witness.png" alt="" />
<svg class="video_play_icon" width="91" height="90" viewBox="0 0 91 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M85.4642 24.075C85.0138 22.2953 84.0964 20.6646 82.8049 19.3478C81.5133 18.0309 79.8933 17.0744 78.1083 16.575C71.5867 15 45.5 15 45.5 15C45.5 15 19.4133 15 12.8917 16.725C11.1067 17.2244 9.48665 18.1809 8.1951 19.4978C6.90354 20.8146 5.98623 22.4453 5.53582 24.225C4.34226 30.7708 3.75843 37.4112 3.79166 44.0625C3.74911 50.7639 4.33298 57.4549 5.53582 64.05C6.03238 65.7744 6.97024 67.343 8.25879 68.6043C9.54734 69.8656 11.143 70.7768 12.8917 71.25C19.4133 72.975 45.5 72.975 45.5 72.975C45.5 72.975 71.5867 72.975 78.1083 71.25C79.8933 70.7506 81.5133 69.7941 82.8049 68.4772C84.0964 67.1604 85.0138 65.5297 85.4642 63.75C86.6485 57.2535 87.2323 50.6638 87.2083 44.0625C87.2509 37.3611 86.667 30.6701 85.4642 24.075V24.075Z" fill="white" fill-opacity="0.5" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M36.9688 56.3251L58.7708 44.0625L36.9688 31.8V56.3251Z" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_timezone">
<div class="index_timezone_wrap d-flex align-items-start">
<!-- index_timezone_flag -->
<!-- <div class="dropdown index_timezone_flag">
<a class="btn btn-sm dropdown-toggle" href="#" role="button" id="dropdownMenuLink"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="./imgs/index/flag/TW.png" alt="">
</a>
<div class="dropdown-menu index_timezone_flag_list"
aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/TW.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/JP.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/GB.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/CA.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/SE.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/US.png" alt="">
</a>
<a class="dropdown-item" href="#">
<img src="./imgs/index/flag/AU.png" alt="">
</a>
</div>
</div> -->
<div class="index_timezome_flag_dropdown_menu_wrap">
<ul class="index_timezome_flag_dropdown_menu mr-3">
<li class="flag_wrap_top">
<a class="flag_wrap">
<img class="flag_top" src="./imgs/index/flag/TW.png" alt="" />
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 9L12 15L18 9" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
<ul>
<li>
<a class="flag_wrap flag_TW">
<img src="./imgs/index/flag/TW.png" alt="" />
</li>
<li>
<a class="flag_wrap flag_JP">
<img src="./imgs/index/flag/JP.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_GB">
<img src="./imgs/index/flag/GB.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_AU">
<img src="./imgs/index/flag/AU.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_US">
<img src="./imgs/index/flag/US.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_SE">
<img src="./imgs/index/flag/SE.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_CA">
<img src="./imgs/index/flag/CA.png" alt="" />
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="TimezoneInfo_wrap d-flex pt-2">
<p id="TimezoneInfo" class="TimezoneInfo mr-3"></p>
<p id="TimezoneInfoCount" class="TimezoneInfoCount mr-2 d-flex align-items-center"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- index_intro_Vox_outwrap -->
<div class="index_intro_Ike_outwrap">
<!-- index_Vox_body -->
<div class="index_IKE_body">
<div class="index_IKE_body_wrap">
<img class="ike_body" src="./imgs/index/Vox_whole body.png" alt="" />
</div>
<img class="ike_shadow" src="./imgs/index/Vox_shadow.png" alt="" />
</div>
<!-- index_Vox_intro -->
<div class="index_IKE_intro">
<div class="index_IKE_head">
<img src="./imgs/index/Vox.png" alt="" />
<p>
<span class="color_vox index_IKE_head_title">
Vox Akuma
</span>
</p>
<p class="text-white">
一個來自過去的惡魔,擁有強大的力量。雖然對自己的強大能力很有自信,但也會照顧那些對他忠誠的人。
</p>
<a class="see_more fakegold" href="">See more</a>
<div class="svg_link">
<!-- YT-icon -->
<svg class="YT-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.54 6.42C22.4212 5.94541 22.1793 5.51057 21.8386 5.15941C21.498 4.80824 21.0707 4.55318 20.6 4.42C18.88 4 12 4 12 4C12 4 5.11999 4 3.39999 4.46C2.92924 4.59318 2.50197 4.84824 2.16134 5.19941C1.82071 5.55057 1.57878 5.98541 1.45999 6.46C1.14521 8.20556 0.991228 9.97631 0.999992 11.75C0.988771 13.537 1.14276 15.3213 1.45999 17.08C1.59095 17.5398 1.8383 17.9581 2.17814 18.2945C2.51797 18.6308 2.93881 18.8738 3.39999 19C5.11999 19.46 12 19.46 12 19.46C12 19.46 18.88 19.46 20.6 19C21.0707 18.8668 21.498 18.6118 21.8386 18.2606C22.1793 17.9094 22.4212 17.4746 22.54 17C22.8524 15.2676 23.0063 13.5103 23 11.75C23.0112 9.96295 22.8572 8.1787 22.54 6.42Z" fill="#D3B572" />
<path d="M9.75 15.02L15.5 11.75L9.75 8.47998V15.02Z" fill="black" />
</svg>
<!-- TW-icon -->
<svg class="TW-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 3.00005C22.0424 3.67552 20.9821 4.19216 19.86 4.53005C19.2577 3.83756 18.4573 3.34674 17.567 3.12397C16.6767 2.90121 15.7395 2.95724 14.8821 3.2845C14.0247 3.61176 13.2884 4.19445 12.773 4.95376C12.2575 5.71308 11.9877 6.61238 12 7.53005V8.53005C10.2426 8.57561 8.50127 8.18586 6.93101 7.39549C5.36074 6.60513 4.01032 5.43868 3 4.00005C3 4.00005 -1 13 8 17C5.94053 18.398 3.48716 19.099 1 19C10 24 21 19 21 7.50005C20.9991 7.2215 20.9723 6.94364 20.92 6.67005C21.9406 5.66354 22.6608 4.39276 23 3.00005Z" fill="#D3B572" />
</svg>
<!-- ST-icon -->
<svg class="ST-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 1V23" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 5H9.5C8.57174 5 7.6815 5.36875 7.02513 6.02513C6.36875 6.6815 6 7.57174 6 8.5C6 9.42826 6.36875 10.3185 7.02513 10.9749C7.6815 11.6313 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3687 16.9749 13.0251C17.6313 13.6815 18 14.5717 18 15.5C18 16.4283 17.6313 17.3185 16.9749 17.9749C16.3185 18.6313 15.4283 19 14.5 19H6" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
<!-- index_square_btn -->
<div class="index_square_btn d-flex">
<div class="index_square_btn_wrap">
<p id="vox_voice_bt_01" onclick="playike05()">voice 1</p>
<p id="vox_voice_bt_02" onclick="playike06()">voice 2</p>
<p id="vox_voice_bt_03" onclick="playike07()">voice 3</p>
<p id="vox_voice_bt_04" onclick="playike08()">voice 4</p>
</div>
</div>
<audio id="vox_voice_01" src="./voice/vox/vox出道.mp3"></audio>
<audio id="vox_voice_02" src="./voice/vox/vox笑聲.mp3"></audio>
<audio id="vox_voice_03" src="./voice/vox/vox賣萌.mp3"></audio>
<audio id="vox_voice_04" src="./voice/vox/vox驚.mp3"></audio>
<!-- see_more_ph -->
<div class="see_more_ph">
<a class="see_more fakegold" href=""> See more </a>
</div>
<!-- index_SC_rank -->
<div class="index_SC_rank">
<div class="index_SC_rank_wrap">
<div class="index_SC_rank_title d-flex align-items-lg-baseline">
<p class="fakegold">SC Vtuber 排名</p>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 6L13.5 15.5L8.5 10.5L1 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 6H23V12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_SC_rank_info">
<div class="index_SC_rank_info_number d-flex align-items-lg-baseline justify-content-between">
<p class="text-white SC_rank_number vox_rank_nb">No. 3</p>
<p class="fakegold SC_rank_money vox_rank_m">+NT 2,918,080</p>
</div>
<div class="index_SC_rank_info_btn d-flex align-items-lg-baseline">
<p class="mr-4 active vox_monthly">當月</p>
<p class="vox_weekly">當周</p>
<a class="index_SC_rank_link" href="">
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.91667 19H30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19 7.91663L30.0833 19L19 30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- index_livenow_timezone -->
<div class="index_livenow_timezone">
<div class="index_livenow_timezone_wrap">
<div class="index_livenow_title d-flex align-items-baseline">
<svg class="mr-3" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="6" fill="#E73D48" />
<circle cx="10" cy="10" r="9.5" stroke="#E73D48" />
</svg>
<p>LIVE NOW</p>
</div>
<div class="index_livenow_img">
<img src="./imgs/index/Vox_OUTLAST.png" alt="" />
<svg class="video_play_icon" width="91" height="90" viewBox="0 0 91 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M85.4642 24.075C85.0138 22.2953 84.0964 20.6646 82.8049 19.3478C81.5133 18.0309 79.8933 17.0744 78.1083 16.575C71.5867 15 45.5 15 45.5 15C45.5 15 19.4133 15 12.8917 16.725C11.1067 17.2244 9.48665 18.1809 8.1951 19.4978C6.90354 20.8146 5.98623 22.4453 5.53582 24.225C4.34226 30.7708 3.75843 37.4112 3.79166 44.0625C3.74911 50.7639 4.33298 57.4549 5.53582 64.05C6.03238 65.7744 6.97024 67.343 8.25879 68.6043C9.54734 69.8656 11.143 70.7768 12.8917 71.25C19.4133 72.975 45.5 72.975 45.5 72.975C45.5 72.975 71.5867 72.975 78.1083 71.25C79.8933 70.7506 81.5133 69.7941 82.8049 68.4772C84.0964 67.1604 85.0138 65.5297 85.4642 63.75C86.6485 57.2535 87.2323 50.6638 87.2083 44.0625C87.2509 37.3611 86.667 30.6701 85.4642 24.075V24.075Z" fill="white" fill-opacity="0.5" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M36.9688 56.3251L58.7708 44.0625L36.9688 31.8V56.3251Z" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_timezone">
<div class="index_timezone_wrap d-flex align-items-start">
<!-- index_timezone_flag -->
<div class="index_timezome_flag_dropdown_menu_wrap">
<ul class="index_timezome_flag_dropdown_menu mr-3">
<li class="flag_wrap_top">
<a class="flag_wrap">
<img class="flag_top" src="./imgs/index/flag/TW.png" alt="" />
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 9L12 15L18 9" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
<ul>
<li>
<a class="flag_wrap flag_TW">
<img src="./imgs/index/flag/TW.png" alt="" />
</li>
<li>
<a class="flag_wrap flag_JP">
<img src="./imgs/index/flag/JP.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_GB">
<img src="./imgs/index/flag/GB.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_AU">
<img src="./imgs/index/flag/AU.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_US">
<img src="./imgs/index/flag/US.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_SE">
<img src="./imgs/index/flag/SE.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_CA">
<img src="./imgs/index/flag/CA.png" alt="" />
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="TimezoneInfo_wrap d-flex pt-2">
<p id="" class="TimezoneInfo mr-3"></p>
<p id="" class="TimezoneInfoCount mr-2 d-flex align-items-center"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- index_intro_Mysta_outwrap -->
<div class="index_intro_Ike_outwrap">
<!-- index_Mysta_body -->
<div class="index_IKE_body">
<div class="index_IKE_body_wrap">
<img class="ike_body" src="./imgs/index/Mysta_whole body.png" alt="" />
</div>
<img class="ike_shadow" src="./imgs/index/Mysta_shadow.png" alt="" />
</div>
<!-- index_Mysta_intro -->
<div class="index_IKE_intro">
<div class="index_IKE_head">
<img src="./imgs/index/Mysta.png" alt="" />
<p>
<span class="color_mysta index_IKE_head_title">
Mysta Rias
</span>
</p>
<p class="text-white">
一個來自過去的古怪的偵探。
作為一個天生的天才,他以其敏銳的觀察力和無與倫比的推理能力解開了無數的謎團。
</p>
<a class="see_more fakegold" href="">See more</a>
<div class="svg_link">
<!-- YT-icon -->
<svg class="YT-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.54 6.42C22.4212 5.94541 22.1793 5.51057 21.8386 5.15941C21.498 4.80824 21.0707 4.55318 20.6 4.42C18.88 4 12 4 12 4C12 4 5.11999 4 3.39999 4.46C2.92924 4.59318 2.50197 4.84824 2.16134 5.19941C1.82071 5.55057 1.57878 5.98541 1.45999 6.46C1.14521 8.20556 0.991228 9.97631 0.999992 11.75C0.988771 13.537 1.14276 15.3213 1.45999 17.08C1.59095 17.5398 1.8383 17.9581 2.17814 18.2945C2.51797 18.6308 2.93881 18.8738 3.39999 19C5.11999 19.46 12 19.46 12 19.46C12 19.46 18.88 19.46 20.6 19C21.0707 18.8668 21.498 18.6118 21.8386 18.2606C22.1793 17.9094 22.4212 17.4746 22.54 17C22.8524 15.2676 23.0063 13.5103 23 11.75C23.0112 9.96295 22.8572 8.1787 22.54 6.42Z" fill="#D3B572" />
<path d="M9.75 15.02L15.5 11.75L9.75 8.47998V15.02Z" fill="black" />
</svg>
<!-- TW-icon -->
<svg class="TW-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 3.00005C22.0424 3.67552 20.9821 4.19216 19.86 4.53005C19.2577 3.83756 18.4573 3.34674 17.567 3.12397C16.6767 2.90121 15.7395 2.95724 14.8821 3.2845C14.0247 3.61176 13.2884 4.19445 12.773 4.95376C12.2575 5.71308 11.9877 6.61238 12 7.53005V8.53005C10.2426 8.57561 8.50127 8.18586 6.93101 7.39549C5.36074 6.60513 4.01032 5.43868 3 4.00005C3 4.00005 -1 13 8 17C5.94053 18.398 3.48716 19.099 1 19C10 24 21 19 21 7.50005C20.9991 7.2215 20.9723 6.94364 20.92 6.67005C21.9406 5.66354 22.6608 4.39276 23 3.00005Z" fill="#D3B572" />
</svg>
<!-- ST-icon -->
<svg class="ST-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 1V23" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 5H9.5C8.57174 5 7.6815 5.36875 7.02513 6.02513C6.36875 6.6815 6 7.57174 6 8.5C6 9.42826 6.36875 10.3185 7.02513 10.9749C7.6815 11.6313 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3687 16.9749 13.0251C17.6313 13.6815 18 14.5717 18 15.5C18 16.4283 17.6313 17.3185 16.9749 17.9749C16.3185 18.6313 15.4283 19 14.5 19H6" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
<!-- index_square_btn -->
<div class="index_square_btn d-flex">
<div class="index_square_btn_wrap">
<p id="mysta_voice_bt_01" onclick="playike09()">voice 1</p>
<p id="mysta_voice_bt_02" onclick="playike10()">voice 2</p>
<p id="mysta_voice_bt_03" onclick="playike11()">voice 3</p>
<p id="mysta_voice_bt_04" onclick="playike12()">voice 4</p>
</div>
</div>
<audio id="mysta_voice_01" src="./voice/mysta/mysta出道.mp3"></audio>
<audio id="mysta_voice_02" src="./voice/mysta/mysta大叫.mp3"></audio>
<audio id="mysta_voice_03" src="./voice/mysta/mysta早安.mp3"></audio>
<audio id="mysta_voice_04" src="./voice/mysta/mysta笑聲.mp3"></audio>
<!-- see_more_ph -->
<div class="see_more_ph">
<a class="see_more fakegold" href=""> See more </a>
</div>
<!-- index_SC_rank -->
<div class="index_SC_rank">
<div class="index_SC_rank_wrap">
<div class="index_SC_rank_title d-flex align-items-lg-baseline">
<p class="fakegold">SC Vtuber 排名</p>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 6L13.5 15.5L8.5 10.5L1 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 6H23V12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_SC_rank_info">
<div class="index_SC_rank_info_number d-flex align-items-lg-baseline ">
<p class="text-white SC_rank_number mysta_rank_nb">No. 16</p>
<p class="fakegold SC_rank_money mysta_rank_m">+ NT 1,089,279</p>
</div>
<div class="index_SC_rank_info_btn d-flex align-items-lg-baseline">
<p class="mr-4 active mysta_monthly">當月</p>
<p class="mysta_weekly">當周</p>
<a class="index_SC_rank_link" href="">
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.91667 19H30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19 7.91663L30.0833 19L19 30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- index_livenow_timezone -->
<div class="index_livenow_timezone">
<div class="index_livenow_timezone_wrap">
<div class="index_livenow_title d-flex align-items-baseline">
<svg class="mr-3" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="6" fill="#E73D48" />
<circle cx="10" cy="10" r="9.5" stroke="#E73D48" />
</svg>
<p>LIVE NOW</p>
</div>
<div class="index_livenow_img">
<img src="./imgs/index/Mysta_KUUKIYOMI.png" alt="" />
<svg class="video_play_icon" width="91" height="90" viewBox="0 0 91 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M85.4642 24.075C85.0138 22.2953 84.0964 20.6646 82.8049 19.3478C81.5133 18.0309 79.8933 17.0744 78.1083 16.575C71.5867 15 45.5 15 45.5 15C45.5 15 19.4133 15 12.8917 16.725C11.1067 17.2244 9.48665 18.1809 8.1951 19.4978C6.90354 20.8146 5.98623 22.4453 5.53582 24.225C4.34226 30.7708 3.75843 37.4112 3.79166 44.0625C3.74911 50.7639 4.33298 57.4549 5.53582 64.05C6.03238 65.7744 6.97024 67.343 8.25879 68.6043C9.54734 69.8656 11.143 70.7768 12.8917 71.25C19.4133 72.975 45.5 72.975 45.5 72.975C45.5 72.975 71.5867 72.975 78.1083 71.25C79.8933 70.7506 81.5133 69.7941 82.8049 68.4772C84.0964 67.1604 85.0138 65.5297 85.4642 63.75C86.6485 57.2535 87.2323 50.6638 87.2083 44.0625C87.2509 37.3611 86.667 30.6701 85.4642 24.075V24.075Z" fill="white" fill-opacity="0.5" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M36.9688 56.3251L58.7708 44.0625L36.9688 31.8V56.3251Z" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_timezone">
<div class="index_timezone_wrap d-flex align-items-start">
<!-- index_timezone_flag -->
<div class="index_timezome_flag_dropdown_menu_wrap">
<ul class="index_timezome_flag_dropdown_menu mr-3">
<li class="flag_wrap_top">
<a class="flag_wrap">
<img class="flag_top" src="./imgs/index/flag/TW.png" alt="" />
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 9L12 15L18 9" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
<ul>
<li>
<a class="flag_wrap flag_TW">
<img src="./imgs/index/flag/TW.png" alt="" />
</li>
<li>
<a class="flag_wrap flag_JP">
<img src="./imgs/index/flag/JP.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_GB">
<img src="./imgs/index/flag/GB.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_AU">
<img src="./imgs/index/flag/AU.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_US">
<img src="./imgs/index/flag/US.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_SE">
<img src="./imgs/index/flag/SE.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_CA">
<img src="./imgs/index/flag/CA.png" alt="" />
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="TimezoneInfo_wrap d-flex pt-2">
<p id="" class="TimezoneInfo mr-3"></p>
<p id="" class="TimezoneInfoCount mr-2 d-flex align-items-center"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- index_intro_Luca_outwrap -->
<div class="index_intro_Ike_outwrap">
<!-- index_Luca_body -->
<div class="index_IKE_body">
<div class="index_IKE_body_wrap">
<img class="ike_body" src="./imgs/index/Luca_whole body.png" alt="" />
</div>
<img class="ike_shadow" src="./imgs/index/Luca_shadow.png" alt="" />
</div>
<!-- index_Mysta_intro -->
<div class="index_IKE_intro">
<div class="index_IKE_head">
<img src="./imgs/index/Luca.png" alt="" />
<p>
<span class="color_luca index_IKE_head_title">
Luca Kaneshiro
</span>
</p>
<p class="text-white">
一個來自過去沒什麼脾氣的黑手黨老大。無論是展現自己的力量,或是保護弱者,總是為了戰鬥而倒下。
</p>
<a class="see_more fakegold" href="">See more</a>
<div class="svg_link">
<!-- YT-icon -->
<svg class="YT-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.54 6.42C22.4212 5.94541 22.1793 5.51057 21.8386 5.15941C21.498 4.80824 21.0707 4.55318 20.6 4.42C18.88 4 12 4 12 4C12 4 5.11999 4 3.39999 4.46C2.92924 4.59318 2.50197 4.84824 2.16134 5.19941C1.82071 5.55057 1.57878 5.98541 1.45999 6.46C1.14521 8.20556 0.991228 9.97631 0.999992 11.75C0.988771 13.537 1.14276 15.3213 1.45999 17.08C1.59095 17.5398 1.8383 17.9581 2.17814 18.2945C2.51797 18.6308 2.93881 18.8738 3.39999 19C5.11999 19.46 12 19.46 12 19.46C12 19.46 18.88 19.46 20.6 19C21.0707 18.8668 21.498 18.6118 21.8386 18.2606C22.1793 17.9094 22.4212 17.4746 22.54 17C22.8524 15.2676 23.0063 13.5103 23 11.75C23.0112 9.96295 22.8572 8.1787 22.54 6.42Z" fill="#D3B572" />
<path d="M9.75 15.02L15.5 11.75L9.75 8.47998V15.02Z" fill="black" />
</svg>
<!-- TW-icon -->
<svg class="TW-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 3.00005C22.0424 3.67552 20.9821 4.19216 19.86 4.53005C19.2577 3.83756 18.4573 3.34674 17.567 3.12397C16.6767 2.90121 15.7395 2.95724 14.8821 3.2845C14.0247 3.61176 13.2884 4.19445 12.773 4.95376C12.2575 5.71308 11.9877 6.61238 12 7.53005V8.53005C10.2426 8.57561 8.50127 8.18586 6.93101 7.39549C5.36074 6.60513 4.01032 5.43868 3 4.00005C3 4.00005 -1 13 8 17C5.94053 18.398 3.48716 19.099 1 19C10 24 21 19 21 7.50005C20.9991 7.2215 20.9723 6.94364 20.92 6.67005C21.9406 5.66354 22.6608 4.39276 23 3.00005Z" fill="#D3B572" />
</svg>
<!-- ST-icon -->
<svg class="ST-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 1V23" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 5H9.5C8.57174 5 7.6815 5.36875 7.02513 6.02513C6.36875 6.6815 6 7.57174 6 8.5C6 9.42826 6.36875 10.3185 7.02513 10.9749C7.6815 11.6313 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3687 16.9749 13.0251C17.6313 13.6815 18 14.5717 18 15.5C18 16.4283 17.6313 17.3185 16.9749 17.9749C16.3185 18.6313 15.4283 19 14.5 19H6" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
<!-- index_square_btn -->
<div class="index_square_btn d-flex">
<div class="index_square_btn_wrap">
<p id="luca_voice_bt_01" onclick="playike13()">voice 1</p>
<p id="luca_voice_bt_02" onclick="playike14()">voice 2</p>
<p id="luca_voice_bt_03" onclick="playike15()">voice 3</p>
<p id="luca_voice_bt_04" onclick="playike16()">voice 4</p>
</div>
</div>
<audio id="luca_voice_01" src="./voice/luca/luca出道.mp3"></audio>
<audio id="luca_voice_02" src="./voice/luca/luca早安.mp3"></audio>
<audio id="luca_voice_03" src="./voice/luca/luca笑.mp3"></audio>
<audio id="luca_voice_04" src="./voice/luca/luca驚.mp3"></audio>
<!-- see_more_ph -->
<div class="see_more_ph">
<a class="see_more fakegold" href=""> See more </a>
</div>
<!-- index_SC_rank -->
<div class="index_SC_rank">
<div class="index_SC_rank_wrap">
<div class="index_SC_rank_title d-flex align-items-lg-baseline">
<p class="fakegold">SC Vtuber 排名</p>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 6L13.5 15.5L8.5 10.5L1 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 6H23V12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_SC_rank_info">
<div class="index_SC_rank_info_number d-flex align-items-lg-baseline justify-content-between">
<p class="text-white SC_rank_number luca_rank_nb">No. 13</p>
<p class="fakegold SC_rank_money luca_rank_m">+ NT 1,404,636</p>
</div>
<div class="index_SC_rank_info_btn d-flex align-items-lg-baseline">
<p class="mr-4 active luca_monthly">當月</p>
<p class="luca_weekly">當周</p>
<a class="index_SC_rank_link" href="">
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.91667 19H30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19 7.91663L30.0833 19L19 30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- index_livenow_timezone -->
<div class="index_livenow_timezone">
<div class="index_livenow_timezone_wrap">
<div class="index_livenow_title d-flex align-items-baseline">
<svg class="mr-3" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="6" fill="#E73D48" />
<circle cx="10" cy="10" r="9.5" stroke="#E73D48" />
</svg>
<p>LIVE NOW</p>
</div>
<div class="index_livenow_img">
<img src="./imgs/index/Luca_Mincraft.png" alt="" />
<svg class="video_play_icon" width="91" height="90" viewBox="0 0 91 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M85.4642 24.075C85.0138 22.2953 84.0964 20.6646 82.8049 19.3478C81.5133 18.0309 79.8933 17.0744 78.1083 16.575C71.5867 15 45.5 15 45.5 15C45.5 15 19.4133 15 12.8917 16.725C11.1067 17.2244 9.48665 18.1809 8.1951 19.4978C6.90354 20.8146 5.98623 22.4453 5.53582 24.225C4.34226 30.7708 3.75843 37.4112 3.79166 44.0625C3.74911 50.7639 4.33298 57.4549 5.53582 64.05C6.03238 65.7744 6.97024 67.343 8.25879 68.6043C9.54734 69.8656 11.143 70.7768 12.8917 71.25C19.4133 72.975 45.5 72.975 45.5 72.975C45.5 72.975 71.5867 72.975 78.1083 71.25C79.8933 70.7506 81.5133 69.7941 82.8049 68.4772C84.0964 67.1604 85.0138 65.5297 85.4642 63.75C86.6485 57.2535 87.2323 50.6638 87.2083 44.0625C87.2509 37.3611 86.667 30.6701 85.4642 24.075V24.075Z" fill="white" fill-opacity="0.5" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M36.9688 56.3251L58.7708 44.0625L36.9688 31.8V56.3251Z" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_timezone">
<div class="index_timezone_wrap d-flex align-items-start">
<!-- index_timezone_flag -->
<div class="index_timezome_flag_dropdown_menu_wrap">
<ul class="index_timezome_flag_dropdown_menu mr-3">
<li class="flag_wrap_top">
<a class="flag_wrap">
<img class="flag_top" src="./imgs/index/flag/TW.png" alt="" />
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 9L12 15L18 9" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
<ul>
<li>
<a class="flag_wrap flag_TW">
<img src="./imgs/index/flag/TW.png" alt="" />
</li>
<li>
<a class="flag_wrap flag_JP">
<img src="./imgs/index/flag/JP.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_GB">
<img src="./imgs/index/flag/GB.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_AU">
<img src="./imgs/index/flag/AU.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_US">
<img src="./imgs/index/flag/US.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_SE">
<img src="./imgs/index/flag/SE.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_CA">
<img src="./imgs/index/flag/CA.png" alt="" />
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="TimezoneInfo_wrap d-flex pt-2">
<p id="" class="TimezoneInfo mr-3"></p>
<p id="" class="TimezoneInfoCount mr-2 d-flex align-items-center"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- index_intro_Shu_outwrap -->
<div class="index_intro_Ike_outwrap">
<!-- index_Shu_body -->
<div class="index_IKE_body">
<div class="index_IKE_body_wrap">
<img class="ike_body" src="./imgs/index/Shu_whole body.png" alt="" />
</div>
<img class="ike_shadow" src="./imgs/index/Shu_shadow.png" alt="" />
</div>
<!-- index_Shu_intro -->
<div class="index_IKE_intro">
<div class="index_IKE_head">
<img src="./imgs/index/Shu.png" alt="" />
<p>
<span class="color_shu index_IKE_head_title">
Shu Yamino
</span>
</p>
<p class="text-white">
一個擁有來自過去的神秘力量的咒術師。雖然溫和善良,但對任何試圖傷害他的人,會毫不留情地施以詛咒。
</p>
<a class="see_more fakegold" href="">See more</a>
<div class="svg_link">
<!-- YT-icon -->
<svg class="YT-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.54 6.42C22.4212 5.94541 22.1793 5.51057 21.8386 5.15941C21.498 4.80824 21.0707 4.55318 20.6 4.42C18.88 4 12 4 12 4C12 4 5.11999 4 3.39999 4.46C2.92924 4.59318 2.50197 4.84824 2.16134 5.19941C1.82071 5.55057 1.57878 5.98541 1.45999 6.46C1.14521 8.20556 0.991228 9.97631 0.999992 11.75C0.988771 13.537 1.14276 15.3213 1.45999 17.08C1.59095 17.5398 1.8383 17.9581 2.17814 18.2945C2.51797 18.6308 2.93881 18.8738 3.39999 19C5.11999 19.46 12 19.46 12 19.46C12 19.46 18.88 19.46 20.6 19C21.0707 18.8668 21.498 18.6118 21.8386 18.2606C22.1793 17.9094 22.4212 17.4746 22.54 17C22.8524 15.2676 23.0063 13.5103 23 11.75C23.0112 9.96295 22.8572 8.1787 22.54 6.42Z" fill="#D3B572" />
<path d="M9.75 15.02L15.5 11.75L9.75 8.47998V15.02Z" fill="black" />
</svg>
<!-- TW-icon -->
<svg class="TW-icon mr-3" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 3.00005C22.0424 3.67552 20.9821 4.19216 19.86 4.53005C19.2577 3.83756 18.4573 3.34674 17.567 3.12397C16.6767 2.90121 15.7395 2.95724 14.8821 3.2845C14.0247 3.61176 13.2884 4.19445 12.773 4.95376C12.2575 5.71308 11.9877 6.61238 12 7.53005V8.53005C10.2426 8.57561 8.50127 8.18586 6.93101 7.39549C5.36074 6.60513 4.01032 5.43868 3 4.00005C3 4.00005 -1 13 8 17C5.94053 18.398 3.48716 19.099 1 19C10 24 21 19 21 7.50005C20.9991 7.2215 20.9723 6.94364 20.92 6.67005C21.9406 5.66354 22.6608 4.39276 23 3.00005Z" fill="#D3B572" />
</svg>
<!-- ST-icon -->
<svg class="ST-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 1V23" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 5H9.5C8.57174 5 7.6815 5.36875 7.02513 6.02513C6.36875 6.6815 6 7.57174 6 8.5C6 9.42826 6.36875 10.3185 7.02513 10.9749C7.6815 11.6313 8.57174 12 9.5 12H14.5C15.4283 12 16.3185 12.3687 16.9749 13.0251C17.6313 13.6815 18 14.5717 18 15.5C18 16.4283 17.6313 17.3185 16.9749 17.9749C16.3185 18.6313 15.4283 19 14.5 19H6" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
<!-- index_square_btn -->
<div class="index_square_btn d-flex">
<div class="index_square_btn_wrap">
<p id="shu_voice_bt_01" onclick="playike17()">voice 1</p>
<p id="shu_voice_bt_02" onclick="playike18()">voice 2</p>
<p id="shu_voice_bt_03" onclick="playike19()">voice 3</p>
<p id="shu_voice_bt_04" onclick="playike20()">voice 4</p>
</div>
</div>
<audio id="shu_voice_01" src="./voice/shu/shu出道.mp3"></audio>
<audio id="shu_voice_02" src="./voice/shu/shu笑聲.mp3"></audio>
<audio id="shu_voice_03" src="./voice/shu/shu賣萌.mp3"></audio>
<audio id="shu_voice_04" src="./voice/shu/shu驚呼.mp3"></audio>
<!-- see_more_ph -->
<div class="see_more_ph">
<a class="see_more fakegold" href=""> See more </a>
</div>
<!-- index_SC_rank -->
<div class="index_SC_rank">
<div class="index_SC_rank_wrap">
<div class="index_SC_rank_title d-flex align-items-lg-baseline">
<p class="fakegold">SC Vtuber 排名</p>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23 6L13.5 15.5L8.5 10.5L1 18" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M17 6H23V12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_SC_rank_info">
<div class="index_SC_rank_info_number d-flex align-items-lg-baseline justify-content-between">
<p class="text-white SC_rank_number shu_rank_nb">No. 7</p>
<p class="fakegold SC_rank_money shu_rank_m">+ NT 1,758,527</p>
</div>
<div class="index_SC_rank_info_btn d-flex align-items-lg-baseline">
<p class="mr-4 active shu_monthly">當月</p>
<p class="shu_weekly">當周</p>
<a class="index_SC_rank_link" href="">
<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.91667 19H30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19 7.91663L30.0833 19L19 30.0833" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- index_livenow_timezone -->
<div class="index_livenow_timezone">
<div class="index_livenow_timezone_wrap">
<div class="index_livenow_title d-flex align-items-baseline">
<svg class="mr-3" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="6" fill="#E73D48" />
<circle cx="10" cy="10" r="9.5" stroke="#E73D48" />
</svg>
<p>LIVE NOW</p>
</div>
<div class="index_livenow_img">
<img src="./imgs/index/Shu_VALORANT.png" alt="" />
<svg class="video_play_icon" width="91" height="90" viewBox="0 0 91 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M85.4642 24.075C85.0138 22.2953 84.0964 20.6646 82.8049 19.3478C81.5133 18.0309 79.8933 17.0744 78.1083 16.575C71.5867 15 45.5 15 45.5 15C45.5 15 19.4133 15 12.8917 16.725C11.1067 17.2244 9.48665 18.1809 8.1951 19.4978C6.90354 20.8146 5.98623 22.4453 5.53582 24.225C4.34226 30.7708 3.75843 37.4112 3.79166 44.0625C3.74911 50.7639 4.33298 57.4549 5.53582 64.05C6.03238 65.7744 6.97024 67.343 8.25879 68.6043C9.54734 69.8656 11.143 70.7768 12.8917 71.25C19.4133 72.975 45.5 72.975 45.5 72.975C45.5 72.975 71.5867 72.975 78.1083 71.25C79.8933 70.7506 81.5133 69.7941 82.8049 68.4772C84.0964 67.1604 85.0138 65.5297 85.4642 63.75C86.6485 57.2535 87.2323 50.6638 87.2083 44.0625C87.2509 37.3611 86.667 30.6701 85.4642 24.075V24.075Z" fill="white" fill-opacity="0.5" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M36.9688 56.3251L58.7708 44.0625L36.9688 31.8V56.3251Z" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="index_timezone">
<div class="index_timezone_wrap d-flex align-items-start">
<!-- index_timezone_flag -->
<div class="index_timezome_flag_dropdown_menu_wrap">
<ul class="index_timezome_flag_dropdown_menu mr-3">
<li class="flag_wrap_top">
<a class="flag_wrap">
<img class="flag_top" src="./imgs/index/flag/TW.png" alt="" />
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 9L12 15L18 9" stroke="#D3B572" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
<ul>
<li>
<a class="flag_wrap flag_TW">
<img src="./imgs/index/flag/TW.png" alt="" />
</li>
<li>
<a class="flag_wrap flag_JP">
<img src="./imgs/index/flag/JP.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_GB">
<img src="./imgs/index/flag/GB.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_AU">
<img src="./imgs/index/flag/AU.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_US">
<img src="./imgs/index/flag/US.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_SE">
<img src="./imgs/index/flag/SE.png" alt="" />
</a>
</li>
<li>
<a class="flag_wrap flag_CA">
<img src="./imgs/index/flag/CA.png" alt="" />
</a>
</li>