forked from chungyuicheung/taichimaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
942 lines (880 loc) · 60.1 KB
/
index.html
File metadata and controls
942 lines (880 loc) · 60.1 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
<!DOCTYPE html>
<html lang="zh-HK">
<head>
<script>
(function(){
var d=window.location.origin+window.location.pathname;
var b=window.location.origin;
var c=document.querySelector('link[rel="canonical"]');
if(c)c.href=d;
var og=document.querySelectorAll('meta[property="og:url"]');
og.forEach(function(m){m.content=d;});
var ogi=document.querySelectorAll('meta[property="og:image"]');
ogi.forEach(function(m){if(m.content&&m.content.indexOf("chungyuicheung")>-1)m.content=b+"/class.png";});
var twi=document.querySelectorAll('meta[name="twitter:image"]');
twi.forEach(function(m){if(m.content&&m.content.indexOf("chungyuicheung")>-1)m.content=b+"/class.png";});
// Fix JSON-LD schemas
document.querySelectorAll('script[type="application/ld+json"]').forEach(function(s){
try{
var j=JSON.parse(s.textContent);
var fix=function(o){
if(typeof o==="string"&&o.indexOf("chungyuicheung")>-1){
return o.replace(/https:\/\/chungyuicheung\.github\.io\/taichimaster/g,b);
}
if(Array.isArray(o))return o.map(fix);
if(typeof o==="object"&&o!==null){Object.keys(o).forEach(function(k){o[k]=fix(o[k]);});}
return o;
};
s.textContent=JSON.stringify(fix(j),null,0);
}catch(e){}
});
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>林燦平太極學會 | 油塘太極班招生 | 教授太極拳、刀劍扇 | 改善肩頸痛與強身健體</title>
<meta name="description" content="位於油塘小童群益會前空地,林燦平師傅親自教授太極拳、刀、劍、扇及鞭桿。歡迎任何年齡及初學者,設有早班及晚班,可即場報名。立即 WhatsApp 6098 5742 查詢,透過太極重拾身心健康!">
<meta name="keywords" content="油塘太極班, 觀塘區太極, 將軍澳太極, 太極拳班, 太極劍班, 太極扇教學, 鞭桿課程, 初學者運動班, 退休人士興趣班, 養生氣功, 東九龍武術班, 楊氏太極拳">
<meta name="author" content="林燦平太極學會">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://chungyuicheung.github.io/taichimaster/">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://chungyuicheung.github.io/taichimaster/">
<meta property="og:title" content="林燦平太極學會 | 油塘太極班招生 | 歡迎初學者">
<meta property="og:description" content="林燦平師傅親自教授太極拳、刀、劍、扇及鞭桿。油塘區實體課程,歡迎任何年齡人士參加。">
<meta property="og:image" content="https://chungyuicheung.github.io/taichimaster/class.png">
<meta property="og:locale" content="zh_HK">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="林燦平太極學會 | 油塘太極班招生">
<meta name="twitter:description" content="林燦平師傅親自教授太極拳、刀、劍、扇及鞭桿。油塘區實體課程,歡迎任何年齡人士參加。">
<meta name="twitter:image" content="https://chungyuicheung.github.io/taichimaster/class.png">
<!-- LocalBusiness Schema Markup (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SportsActivityLocation",
"name": "林燦平太極學會 - 油塘太極班",
"description": "林燦平師傅親自教授太極拳、刀、劍、扇及鞭桿。歡迎任何年齡及初學者參加。",
"url": "https://chungyuicheung.github.io/taichimaster/",
"telephone": "+852-6098-5742",
"address": {
"@type": "PostalAddress",
"addressLocality": "油塘",
"addressRegion": "香港",
"addressCountry": "HK"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 22.3108,
"longitude": 114.2378
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Wednesday", "Friday", "Saturday", "Sunday"],
"opens": "09:00",
"closes": "13:00",
"name": "早班"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
"opens": "19:00",
"closes": "22:00",
"name": "晚班"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Tuesday", "Thursday"],
"opens": "10:00",
"closes": "13:00",
"name": "早班(二、四)"
}
],
"priceRange": "$$",
"currenciesAccepted": "HKD",
"paymentAccepted": "Cash",
"image": "https://chungyuicheung.github.io/taichimaster/class.png",
"sameAs": []
}
</script>
<!-- FAQ Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "太極拳適合什麼年齡的人學習?",
"acceptedAnswer": {
"@type": "Answer",
"text": "太極拳適合任何年齡人士學習。無論您是年輕人、中年人還是長者,初學者還是有經驗者,林燦平太極學會都有適合您的課程。"
}
},
{
"@type": "Question",
"name": "油塘太極班如何報名?",
"acceptedAnswer": {
"@type": "Answer",
"text": "歡迎直接在上課時間到小童群益會前空地即場報名,或致電/WhatsApp 6098 5742 查詢。亦可隨時親臨觀課,滿意才報名。"
}
},
{
"@type": "Question",
"name": "太極拳對肩頸痛有幫助嗎?",
"acceptedAnswer": {
"@type": "Answer",
"text": "太極拳透過緩慢柔和的動作配合呼吸法,能有效放鬆肩頸肌肉,改善長期坐辦公室引起的腰背疼痛。許多學員在練習數個月後反映痛症明顯減輕。"
}
},
{
"@type": "Question",
"name": "太極班教授什麼內容?",
"acceptedAnswer": {
"@type": "Answer",
"text": "本會教授太極拳、太極刀、太極劍、太極扇及鞭桿。由基本樁功步法開始,循序漸進學習傳統套路,適合初學者入門。"
}
}
]
}
</script>
<!-- Review Schema -->
<script type="application/ld+json">{"@context": "https://schema.org", "@type": "LocalBusiness", "name": "林燦平太極學會", "aggregateRating": {"@type": "AggregateRating", "ratingValue": "4.9", "reviewCount": "128", "bestRating": "5", "worstRating": "1"}, "review": [{"@type": "Review", "reviewRating": {"@type": "Rating", "ratingValue": "5", "bestRating": "5"}, "author": {"@type": "Person", "name": "林小姐"}, "reviewBody": "以前長期坐寫字樓,腰背好痛。跟林師傅學左三個月,學識放鬆膊頭,背痛真係好左好多,夜晚都好訓左!"}, {"@type": "Review", "reviewRating": {"@type": "Rating", "ratingValue": "5", "bestRating": "5"}, "author": {"@type": "Person", "name": "張先生"}, "reviewBody": "師傅教得好細心,每一個動作都會解釋原理,除左拳仲學識用扇,非常好玩又實用!"}, {"@type": "Review", "reviewRating": {"@type": "Rating", "ratingValue": "5", "bestRating": "5"}, "author": {"@type": "Person", "name": "Mike Wong"}, "reviewBody": "原本以為太極好悶,試左一堂之後發現原來好多學問。上堂氣氛好好,每次上完堂都覺得成身鬆哂。"}]}</script>
<!-- 引入 Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- 引入 Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<style>
html { scroll-behavior: smooth; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.fade-visible { opacity: 1; transform: translateY(0); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; opacity: 1; }
.faq-icon { transition: transform 0.3s ease; }
.schedule-card { transition: opacity 0.3s ease; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); } 70% { box-shadow: 0 0 0 10px rgba(5,150,105,0); } 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); } }
.pulse-cta { animation: pulse-ring 2s infinite; }
</style>
</head>
<body class="font-sans text-gray-800 bg-stone-50">
<!-- 導航欄 (Navigation) -->
<nav class="fixed w-full bg-white/95 backdrop-blur-sm shadow-md z-50">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between items-center h-20">
<!-- Logo / 名字 -->
<div class="flex-shrink-0 flex items-center cursor-pointer" onclick="window.scrollTo(0,0)">
<span class="text-2xl font-bold text-emerald-800 tracking-wider border-2 border-emerald-800 p-1 rounded">林師傅</span>
<span class="ml-3 text-lg font-medium text-gray-600 hidden sm:block">林燦平太極學會</span>
</div>
<!-- 電腦版選單 -->
<div class="hidden md:flex space-x-8">
<a href="#about" class="text-gray-600 hover:text-emerald-700 transition py-2">關於師傅</a>
<a href="#classes" class="text-gray-600 hover:text-emerald-700 transition py-2">課程內容</a>
<a href="blog.html" class="text-gray-600 hover:text-emerald-700 transition py-2">養生專欄</a>
<a href="#schedule" class="text-gray-600 hover:text-emerald-700 transition py-2">上課地點</a>
<a href="#reviews" class="text-gray-600 hover:text-emerald-700 transition py-2">學員見證</a>
<a href="#contact" class="bg-emerald-700 text-white px-5 py-2 rounded-full hover:bg-emerald-800 transition shadow-lg pulse-cta">
致電查詢
</a>
</div>
<!-- 手機版選單按鈕 -->
<div class="md:hidden flex items-center">
<button id="mobile-menu-btn" class="text-gray-600 focus:outline-none">
<i data-lucide="menu" id="menu-icon"></i>
<i data-lucide="x" id="close-icon" class="hidden"></i>
</button>
</div>
</div>
</div>
<!-- 手機版下拉選單 -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 text-center">
<a href="#about" class="mobile-link block w-full px-3 py-3 text-gray-600 hover:bg-stone-100">關於師傅</a>
<a href="#classes" class="mobile-link block w-full px-3 py-3 text-gray-600 hover:bg-stone-100">課程內容</a>
<a href="blog.html" class="mobile-link block w-full px-3 py-3 text-gray-600 hover:bg-stone-100">養生專欄</a>
<a href="#schedule" class="mobile-link block w-full px-3 py-3 text-gray-600 hover:bg-stone-100">時間表</a>
<a href="#contact" class="mobile-link block w-full px-3 py-3 text-emerald-700 font-bold bg-stone-50">致電查詢</a>
</div>
</div>
</nav>
<!-- 1. 首頁焦點區 (Hero Section) -->
<header class="relative pt-20 pb-16 md:pt-32 md:pb-24 flex items-center min-h-[80vh] bg-stone-900">
<!-- 背景圖片 -->
<div class="absolute inset-0 overflow-hidden">
<img
src="class.png"
alt="林燦平師傅於油塘教授太極拳班上課實況"
class="w-full h-full object-cover opacity-60"
/>
<div class="absolute inset-0 bg-gradient-to-t from-stone-900 via-stone-900/40 to-transparent"></div>
</div>
<div class="relative max-w-6xl mx-auto px-4 w-full text-center md:text-left">
<div class="md:w-2/3">
<span class="inline-block py-1 px-3 rounded bg-emerald-700/80 text-white text-sm font-tracking-widest mb-4">
林燦平太極學會 主辦
</span>
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 leading-tight">
油塘太極班現正招生<br/><span class="text-emerald-400">歡迎任何年齡及初學者</span>
</h1>
<p class="text-lg md:text-xl text-stone-200 mb-8 max-w-lg leading-relaxed">
教授拳、刀、劍、扇、鞭桿。<br/>
位於油塘,服務觀塘、將軍澳及東九龍區學員。<br/>
歡迎到場參觀或致電查詢。
</p>
<div class="flex flex-col md:flex-row gap-4 justify-center md:justify-start">
<a href="tel:60985742" class="bg-emerald-600 hover:bg-emerald-700 text-white text-lg px-8 py-4 rounded-lg shadow-lg flex items-center justify-center transition transform hover:-translate-y-1">
<i data-lucide="phone" class="mr-2 w-5 h-5"></i>
致電 6098 5742
</a>
<a href="#schedule" class="bg-white/10 hover:bg-white/20 backdrop-blur-md text-white border border-white/30 text-lg px-8 py-4 rounded-lg transition flex items-center justify-center">
查看上課時間
</a>
</div>
</div>
</div>
</header>
<!-- 2. 關於師傅 (About) -->
<section id="about" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="flex flex-col md:flex-row items-center gap-12">
<!-- 師傅照片 -->
<div class="w-full md:w-1/2 relative">
<div class="aspect-[3/4] rounded-2xl overflow-hidden shadow-2xl">
<img
src="solo.jpg"
alt="林燦平師傅示範楊氏太極拳"
loading="lazy"
class="w-full h-full object-cover hover:scale-105 transition duration-700"
/>
</div>
<div class="absolute -bottom-6 -right-6 bg-stone-100 p-6 rounded-xl shadow-xl border-l-4 border-emerald-600 hidden md:block">
<div class="text-4xl font-bold text-emerald-800 mb-1">30+</div>
<div class="text-gray-600">年習武經驗</div>
</div>
</div>
<!-- 介紹文字 -->
<div class="w-full md:w-1/2 space-y-6">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">
關於 <span class="text-emerald-700">林燦平</span> 師傅
</h2>
<div class="w-20 h-1 bg-emerald-600"></div>
<p class="text-gray-600 leading-relaxed text-lg">
大家好,我是林燦平。致力於推廣太極運動,成立「林燦平太極學會」。
多年來,我們歡迎不同年齡的朋友加入,無論您是完全沒有基礎的初學者,還是希望深造的習武之人,我們都有適合您的課程。
</p>
<p class="text-gray-600 leading-relaxed text-lg">
我們的教學內容豐富,涵蓋拳術及各類器械(刀、劍、扇、鞭桿),
旨在透過傳統武術,幫助學員強身健體,修身養性。
本會位於油塘區,方便觀塘、將軍澳及東九龍居民參與。
</p>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 pt-4">
<div class="flex items-center space-x-3 bg-stone-50 p-3 rounded-lg">
<i data-lucide="users" class="text-emerald-600 w-5 h-5"></i>
<span class="font-medium text-gray-800">歡迎初學者參加</span>
</div>
<div class="flex items-center space-x-3 bg-stone-50 p-3 rounded-lg">
<i data-lucide="award" class="text-emerald-600 w-5 h-5"></i>
<span class="font-medium text-gray-800">多種類課程選擇</span>
</div>
<div class="flex items-center space-x-3 bg-stone-50 p-3 rounded-lg">
<i data-lucide="map-pin" class="text-emerald-600 w-5 h-5"></i>
<span class="font-medium text-gray-800">可即場報名</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 信任徽章 -->
<section class="py-12 bg-emerald-50">
<div class="max-w-6xl mx-auto px-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
<div class="fade-in">
<div class="text-4xl font-bold text-emerald-800 mb-1">30+</div>
<div class="text-gray-600 text-sm">年教學經驗</div>
</div>
<div class="fade-in" style="transition-delay:0.1s">
<div class="text-4xl font-bold text-emerald-800 mb-1">200+</div>
<div class="text-gray-600 text-sm">學員人數</div>
</div>
<div class="fade-in" style="transition-delay:0.2s">
<div class="text-4xl font-bold text-emerald-800 mb-1">7</div>
<div class="text-gray-600 text-sm">天每週課程</div>
</div>
<div class="fade-in" style="transition-delay:0.3s">
<div class="text-4xl font-bold text-emerald-800 mb-1">5⭐</div>
<div class="text-gray-600 text-sm">學員滿意度</div>
</div>
</div>
</div>
</section>
<!-- 3. 為什麼學太極 (Benefits) -->
<section class="py-16 bg-emerald-900 text-white">
<div class="max-w-6xl mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-12">太極拳與器械的益處</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="p-6 border border-emerald-700 rounded-xl hover:bg-emerald-800 transition fade-in">
<div class="w-14 h-14 bg-emerald-500 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl">💪</div>
<h3 class="text-xl font-bold mb-3">全面鍛鍊</h3>
<p class="text-emerald-100">除拳術外,透過練習刀、劍、扇等器械,能更全面地鍛鍊身體協調性與專注力。適合辦公室人士改善肩頸僵硬。<a href="articles/tai-chi-neck-pain-relief.html" class="text-emerald-300 underline text-sm">了解詳情 →</a></p>
</div>
<div class="p-6 border border-emerald-700 rounded-xl hover:bg-emerald-800 transition fade-in" style="transition-delay:0.1s">
<div class="w-14 h-14 bg-emerald-500 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl">🧘</div>
<h3 class="text-xl font-bold mb-3">舒緩壓力</h3>
<p class="text-emerald-100">配合呼吸法,能有效降低皮質醇水平,改善焦慮與失眠,讓大腦徹底放鬆。對長期伏案工作引起的腰背痛有顯著幫助。<a href="articles/tai-chi-lower-back-pain.html" class="text-emerald-300 underline text-sm">科學實證 →</a></p>
</div>
<div class="p-6 border border-emerald-700 rounded-xl hover:bg-emerald-800 transition fade-in" style="transition-delay:0.2s">
<div class="w-14 h-14 bg-emerald-500 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl">🔋</div>
<h3 class="text-xl font-bold mb-3">適合任何年齡</h3>
<p class="text-emerald-100">課程設計循序漸進,無論男女老幼,有無經驗,均可輕鬆入門。長者練習可強化下肢力量,預防跌倒。<a href="articles/tai-chi-fall-prevention.html" class="text-emerald-300 underline text-sm">研究數據 →</a></p>
</div>
</div>
</div>
</section>
<!-- 4. 課程介紹 (Classes) -->
<section id="classes" class="py-20 bg-stone-50">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">本會設有多種類課程</h2>
<p class="text-gray-600 max-w-2xl mx-auto">教授項目包括:拳、刀、劍、扇、鞭桿</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- 課程卡片 1 -->
<div class="bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl transition group fade-in">
<div class="h-48 bg-stone-200 relative overflow-hidden">
<img src="class_hall.jpg" alt="油塘太極拳入門班上課環境" loading="lazy" class="w-full h-full object-cover group-hover:scale-110 transition duration-500"/>
<div class="absolute top-4 right-4 bg-emerald-600 text-white text-xs font-bold px-3 py-1 rounded-full">適合初學者</div>
</div>
<div class="p-8">
<h3 class="text-2xl font-bold text-gray-800 mb-2">太極拳班</h3>
<p class="text-gray-500 mb-4">打好根基,修身養性</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 基本樁功與步法</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 傳統太極拳套路</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 適合任何年齡人士</li>
</ul>
</div>
</div>
<!-- 課程卡片 2 -->
<div class="bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl transition group fade-in" style="transition-delay:0.1s">
<div class="h-48 bg-stone-200 relative overflow-hidden">
<img src="class_8year.JPG" alt="油塘太極器械班學員上課實況" loading="lazy" class="w-full h-full object-cover group-hover:scale-110 transition duration-500"/>
</div>
<div class="p-8">
<h3 class="text-2xl font-bold text-gray-800 mb-2">太極器械班</h3>
<p class="text-gray-500 mb-4">剛柔並濟,豐富多變</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 太極刀、太極劍</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 太極扇</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 鞭桿</li>
</ul>
</div>
</div>
<!-- 課程卡片 3 -->
<div class="bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl transition group border-2 border-emerald-100 fade-in" style="transition-delay:0.2s">
<div class="h-48 bg-stone-200 relative overflow-hidden">
<img src="solo2.jpg" alt="林燦平師傅示範太極劍與太極扇" loading="lazy" class="w-full h-full object-cover group-hover:scale-110 transition duration-500"/>
</div>
<div class="p-8">
<h3 class="text-2xl font-bold text-gray-800 mb-2">報名與查詢</h3>
<p class="text-gray-500 mb-4">隨時歡迎加入</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 歡迎隨時親臨觀課,滿意再報名!</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 零基礎可旁聽,無需預約</li>
<li class="flex items-center text-gray-600"><i data-lucide="chevron-right" class="text-emerald-500 mr-2 w-4 h-4"></i> 歡迎致電或 WhatsApp 查詢詳情</li>
</ul>
<div class="border-t pt-4">
<p class="text-emerald-700 font-bold text-xl">電話:6098 5742</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 收費資訊 -->
<section class="py-16 bg-white">
<div class="max-w-4xl mx-auto px-4">
<div class="text-center mb-10">
<h2 class="text-3xl font-bold text-gray-900 mb-4">收費詳情</h2>
<p class="text-gray-600">透明收費,無隱藏費用</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-stone-50 rounded-2xl p-8 border border-stone-200 text-center fade-in">
<div class="text-3xl mb-3">🥋</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">太極拳班</h3>
<p class="text-gray-600 mb-4">基本拳術課程</p>
<div class="text-3xl font-bold text-emerald-800 mb-2">歡迎查詢</div>
<p class="text-gray-500 text-sm mb-6">按月收費,詳情請致電或 WhatsApp</p>
<a href="https://wa.me/85260985742?text=%E4%BD%A0%E5%A5%BD%EF%BC%8C%E6%88%91%E6%83%B3%E6%9F%A5%E8%A9%A2%E5%A4%AA%E6%A5%B5%E6%8B%B3%E7%8F%AD%E6%94%B6%E8%B2%BB%E3%80%82" target="_blank" class="inline-block bg-emerald-700 text-white px-6 py-2 rounded-full hover:bg-emerald-800 transition text-sm font-bold">查詢收費</a>
</div>
<div class="bg-stone-50 rounded-2xl p-8 border border-stone-200 text-center fade-in" style="transition-delay:0.1s">
<div class="text-3xl mb-3">⚔️</div>
<h3 class="text-xl font-bold text-gray-900 mb-2">太極器械班</h3>
<p class="text-gray-600 mb-4">刀、劍、扇、鞭桿</p>
<div class="text-3xl font-bold text-emerald-800 mb-2">歡迎查詢</div>
<p class="text-gray-500 text-sm mb-6">按月收費,詳情請致電或 WhatsApp</p>
<a href="https://wa.me/85260985742?text=%E4%BD%A0%E5%A5%BD%EF%BC%8C%E6%88%91%E6%83%B3%E6%9F%A5%E8%A9%A2%E5%A4%AA%E6%A5%B5%E5%99%A8%E6%A2%B0%E7%8F%AD%E6%94%B6%E8%B2%BB%E3%80%82" target="_blank" class="inline-block bg-emerald-700 text-white px-6 py-2 rounded-full hover:bg-emerald-800 transition text-sm font-bold">查詢收費</a>
</div>
</div>
<div class="mt-6 text-center text-gray-500 text-sm fade-in">
<p>✅ 可即場報名 ✅ 歡迎隨時觀課 ✅ 滿意才報名</p>
</div>
</div>
</section>
<!-- 5. 上課地點 (Location & Schedule) -->
<section id="schedule" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="flex flex-col md:flex-row gap-12">
<!-- 左側:文字資訊 -->
<div class="w-full md:w-1/2">
<h2 class="text-3xl font-bold text-gray-900 mb-6">上課地點與時間</h2>
<div class="flex gap-2 mb-6">
<button class="schedule-filter bg-emerald-700 text-white px-4 py-1.5 rounded-full text-sm font-medium transition" data-filter="all">全部</button>
<button class="schedule-filter bg-white text-gray-700 px-4 py-1.5 rounded-full text-sm font-medium border border-stone-200 transition" data-filter="morning">早上班</button>
<button class="schedule-filter bg-white text-gray-700 px-4 py-1.5 rounded-full text-sm font-medium border border-stone-200 transition" data-filter="evening">晚上班</button>
</div>
<p class="text-emerald-700 font-bold mb-4 text-lg">歡迎隨時親臨觀課,滿意再報名!</p>
<p class="text-gray-500 mb-2">零基礎亦可旁聽,無需預約。</p>
<div class="space-y-6">
<!-- 地點與時間 -->
<div class="flex gap-4">
<div class="mt-1 bg-emerald-100 p-3 rounded-full h-12 w-12 flex items-center justify-center text-emerald-700">
<i data-lucide="map-pin" class="w-6 h-6"></i>
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-gray-800">小童群益會前空地</h3>
<p class="text-gray-600 mt-1 mb-4">環境開揚舒適,適合練習。</p>
<!-- 時間表 1 -->
<div class="schedule-card bg-stone-50 p-4 rounded-lg border border-stone-200 mb-3" data-period="morning">
<div class="flex items-center mb-2">
<i data-lucide="calendar" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="font-bold text-gray-700">逢星期一、三、五、六、日</span>
</div>
<div class="flex flex-col ml-6 space-y-1">
<div class="flex items-center">
<i data-lucide="clock" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="text-gray-600">上午 09:00 - 下午 01:00</span>
</div>
</div>
</div>
<!-- 時間表 2 -->
<div class="schedule-card bg-stone-50 p-4 rounded-lg border border-stone-200" data-period="morning">
<div class="flex items-center mb-2">
<i data-lucide="calendar" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="font-bold text-gray-700">逢星期二、四</span>
</div>
<div class="flex flex-col ml-6 space-y-1">
<div class="flex items-center">
<i data-lucide="clock" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="text-gray-600">上午 10:00 - 下午 01:00</span>
</div>
<div class="flex items-center">
<i data-lucide="clock" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="text-gray-600">晚上 07:00 - 晚上 10:00</span>
</div>
</div>
</div>
<!-- 晚上班 -->
<div class="schedule-card bg-stone-50 p-4 rounded-lg border border-stone-200 mb-3" data-period="evening">
<div class="flex items-center mb-2">
<i data-lucide="calendar" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="font-bold text-gray-700">逢星期一至日</span>
</div>
<div class="flex flex-col ml-6 space-y-1">
<div class="flex items-center">
<i data-lucide="clock" class="text-gray-400 mr-2 w-4 h-4"></i>
<span class="text-gray-600">晚上 07:00 - 晚上 10:00</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 右側:地圖模擬 -->
<div class="w-full md:w-1/2 h-80 md:h-auto min-h-[400px] bg-stone-200 rounded-2xl overflow-hidden shadow-lg relative">
<iframe
width="100%"
height="100%"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
src="https://maps.google.com/maps?q=香港小童群益會賽馬會油塘青少年綜合服務中心&t=&z=17&ie=UTF8&iwloc=&output=embed"
title="Google Maps Location"
class="absolute inset-0 w-full h-full"
></iframe>
</div>
</div>
</div>
</section>
<!-- 6. 學員見證 (Testimonials) -->
<section id="reviews" class="py-20 bg-stone-100">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-900 mb-12">學員真實分享</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- 見證 1 -->
<div class="bg-white p-8 rounded-2xl shadow-sm relative fade-in">
<div class="absolute -top-4 left-8 text-6xl text-emerald-200 font-serif">"</div>
<p class="text-gray-600 italic mb-6 relative z-10">
以前長期坐寫字樓,腰背好痛。跟林師傅學左三個月,學識放鬆膊頭,背痛真係好左好多,夜晚都好訓左!
</p>
<div class="flex items-center">
<div class="w-10 h-10 bg-emerald-100 rounded-full flex items-center justify-center text-emerald-700 font-bold mr-3">L</div>
<div>
<h4 class="font-bold text-gray-900">林小姐 (35歲)</h4>
<p class="text-xs text-gray-500">會計師 • 學員</p>
</div>
</div>
<div class="flex text-yellow-400 mt-4 space-x-1">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
<!-- 見證 2 -->
<div class="bg-white p-8 rounded-2xl shadow-sm relative fade-in" style="transition-delay:0.1s">
<div class="absolute -top-4 left-8 text-6xl text-emerald-200 font-serif">"</div>
<p class="text-gray-600 italic mb-6 relative z-10">
師傅教得好細心,每一個動作都會解釋原理,除左拳仲學識用扇,非常好玩又實用!
</p>
<div class="flex items-center">
<div class="w-10 h-10 bg-emerald-100 rounded-full flex items-center justify-center text-emerald-700 font-bold mr-3">K</div>
<div>
<h4 class="font-bold text-gray-900">張先生 (62歲)</h4>
<p class="text-xs text-gray-500">退休人士 • 學員</p>
</div>
</div>
<div class="flex text-yellow-400 mt-4 space-x-1">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
<!-- 見證 3 -->
<div class="bg-white p-8 rounded-2xl shadow-sm relative md:hidden lg:block fade-in" style="transition-delay:0.2s">
<div class="absolute -top-4 left-8 text-6xl text-emerald-200 font-serif">"</div>
<p class="text-gray-600 italic mb-6 relative z-10">
原本以為太極好悶,試左一堂之後發現原來好多學問。上堂氣氛好好,每次上完堂都覺得成身鬆哂。
</p>
<div class="flex items-center">
<div class="w-10 h-10 bg-emerald-100 rounded-full flex items-center justify-center text-emerald-700 font-bold mr-3">M</div>
<div>
<h4 class="font-bold text-gray-900">Mike Wong</h4>
<p class="text-xs text-gray-500">IT 從業員 • 學員</p>
</div>
</div>
<div class="flex text-yellow-400 mt-4 space-x-1">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
</div>
</section>
<!-- 7. 常見問題 (FAQ) -->
<section class="py-20 bg-white">
<div class="max-w-4xl mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">常見問題</h2>
<p class="text-gray-600">點擊展開答案,了解更多詳情</p>
</div>
<div class="space-y-3">
<div class="faq-item open bg-stone-50 rounded-xl border border-stone-200 overflow-hidden fade-in" style="transition-delay:0.0s">
<button class="faq-toggle w-full text-left p-5 flex items-center justify-between cursor-pointer hover:bg-stone-100 transition">
<span class="font-bold text-gray-900 pr-4">太極拳適合什麼年齡的人學習?</span>
<i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-emerald-600 flex-shrink-0" style="transform:rotate(180deg)"></i>
</button>
<div class="faq-answer px-5 pb-5" style="max-height:500px;opacity:1">
<p class="text-gray-600 leading-relaxed">太極拳適合<strong>任何年齡</strong>人士學習。無論您是年輕人、中年人還是長者,初學者還是有經驗者,林燦平太極學會都有適合您的課程。長者練習太極更能強化下肢力量,預防跌倒。</p>
<a href="articles/tai-chi-age-guide.html" class="inline-flex items-center text-emerald-700 hover:text-emerald-800 text-sm font-medium mt-2">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></a>
</div>
</div>
<div class="faq-item bg-stone-50 rounded-xl border border-stone-200 overflow-hidden fade-in" style="transition-delay:0.08s">
<button class="faq-toggle w-full text-left p-5 flex items-center justify-between cursor-pointer hover:bg-stone-100 transition">
<span class="font-bold text-gray-900 pr-4">油塘太極班如何報名?</span>
<i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-emerald-600 flex-shrink-0" style="transform:rotate(0deg)"></i>
</button>
<div class="faq-answer px-5 pb-5" style="max-height:0;opacity:0">
<p class="text-gray-600 leading-relaxed">歡迎直接在上課時間到<strong>小童群益會前空地</strong>即場報名,或致電/WhatsApp 6098 5742 查詢。亦可隨時親臨觀課,滿意才報名,無需預約。</p>
<a href="articles/how-to-choose-tai-chi-class.html" class="inline-flex items-center text-emerald-700 hover:text-emerald-800 text-sm font-medium mt-2">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></a>
</div>
</div>
<div class="faq-item bg-stone-50 rounded-xl border border-stone-200 overflow-hidden fade-in" style="transition-delay:0.16s">
<button class="faq-toggle w-full text-left p-5 flex items-center justify-between cursor-pointer hover:bg-stone-100 transition">
<span class="font-bold text-gray-900 pr-4">太極拳對肩頸痛、腰背痛有幫助嗎?</span>
<i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-emerald-600 flex-shrink-0" style="transform:rotate(0deg)"></i>
</button>
<div class="faq-answer px-5 pb-5" style="max-height:0;opacity:0">
<p class="text-gray-600 leading-relaxed">太極拳透過緩慢柔和的動作配合呼吸法,能有效放鬆肩頸肌肉,改善長期坐辦公室引起的腰背疼痛。許多學員在練習數個月後反映痛症明顯減輕,睡眠質素亦有改善。</p>
<a href="articles/tai-chi-neck-pain-relief.html" class="inline-flex items-center text-emerald-700 hover:text-emerald-800 text-sm font-medium mt-2">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></a>
</div>
</div>
<div class="faq-item bg-stone-50 rounded-xl border border-stone-200 overflow-hidden fade-in" style="transition-delay:0.24s">
<button class="faq-toggle w-full text-left p-5 flex items-center justify-between cursor-pointer hover:bg-stone-100 transition">
<span class="font-bold text-gray-900 pr-4">太極班教授什麼內容?</span>
<i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-emerald-600 flex-shrink-0" style="transform:rotate(0deg)"></i>
</button>
<div class="faq-answer px-5 pb-5" style="max-height:0;opacity:0">
<p class="text-gray-600 leading-relaxed">本會教授<strong>太極拳、太極刀、太極劍、太極扇及鞭桿</strong>。由基本樁功步法開始,循序漸進學習傳統套路,適合初學者入門。器械班適合已掌握基本拳法的學員。</p>
<a href="articles/tai-chi-beginner-guide.html" class="inline-flex items-center text-emerald-700 hover:text-emerald-800 text-sm font-medium mt-2">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></a>
</div>
</div>
<div class="faq-item bg-stone-50 rounded-xl border border-stone-200 overflow-hidden fade-in" style="transition-delay:0.32s">
<button class="faq-toggle w-full text-left p-5 flex items-center justify-between cursor-pointer hover:bg-stone-100 transition">
<span class="font-bold text-gray-900 pr-4">觀塘、將軍澳居民方便來上課嗎?</span>
<i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-emerald-600 flex-shrink-0" style="transform:rotate(0deg)"></i>
</button>
<div class="faq-answer px-5 pb-5" style="max-height:0;opacity:0">
<p class="text-gray-600 leading-relaxed">非常適合!本會位於油塘,交通便捷,觀塘區、將軍澳及東九龍居民均可輕鬆到達。上課地點在小童群益會賽馬會油塘青少年綜合服務中心前空地,環境開揚舒適。</p>
<a href="kwun-tong.html" class="inline-flex items-center text-emerald-700 hover:text-emerald-800 text-sm font-medium mt-2">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- 服務地區 -->
<section class="py-12 bg-stone-50">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-8">
<h2 class="text-2xl font-bold text-gray-900 mb-2">服務地區</h2>
<p class="text-gray-600">歡迎油塘及東九龍各區學員參加</p>
</div>
<div class="flex flex-wrap gap-3 justify-center">
<a href="kwun-tong.html" class="px-5 py-2.5 bg-white rounded-full border border-stone-200 text-gray-700 hover:border-emerald-500 hover:text-emerald-700 transition text-sm font-medium shadow-sm">觀塘太極班</a>
<a href="lam-tin.html" class="px-5 py-2.5 bg-white rounded-full border border-stone-200 text-gray-700 hover:border-emerald-500 hover:text-emerald-700 transition text-sm font-medium shadow-sm">藍田太極班</a>
<a href="tseung-kwan-o.html" class="px-5 py-2.5 bg-white rounded-full border border-stone-200 text-gray-700 hover:border-emerald-500 hover:text-emerald-700 transition text-sm font-medium shadow-sm">將軍澳太極班</a>
<a href="kowloon-city.html" class="px-5 py-2.5 bg-white rounded-full border border-stone-200 text-gray-700 hover:border-emerald-500 hover:text-emerald-700 transition text-sm font-medium shadow-sm">九龍城太極班</a>
<a href="wong-tai-sin.html" class="px-5 py-2.5 bg-white rounded-full border border-stone-200 text-gray-700 hover:border-emerald-500 hover:text-emerald-700 transition text-sm font-medium shadow-sm">黃大仙太極班</a>
</div>
</div>
</section>
<!-- 養生專欄精選 -->
<section class="py-20 bg-stone-50">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">養生專欄精選</h2>
<p class="text-gray-600 max-w-2xl mx-auto">100篇太極健康知識文章,助你深入了解太極拳的益處</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<a href="articles/tai-chi-beginner-guide.html" class="fade-in bg-white rounded-2xl shadow-sm p-6 hover:shadow-lg transition group">
<span class="inline-block py-0.5 px-2 rounded-full bg-emerald-100 text-emerald-800 text-xs font-medium mb-3">太極入門</span>
<h3 class="text-lg font-bold text-gray-900 mb-2 group-hover:text-emerald-700 transition">太極拳入門指南:初學者必讀的10個基本概念</h3>
<p class="text-gray-600 text-sm mb-3">從零開始學習太極拳,了解基本步法、呼吸法、身型要求等核心概念。</p>
<span class="text-emerald-700 text-sm font-medium inline-flex items-center">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></span>
</a>
<a href="articles/tai-chi-neck-pain-relief.html" class="fade-in bg-white rounded-2xl shadow-sm p-6 hover:shadow-lg transition group" style="transition-delay:0.1s">
<span class="inline-block py-0.5 px-2 rounded-full bg-emerald-100 text-emerald-800 text-xs font-medium mb-3">肩頸腰背</span>
<h3 class="text-lg font-bold text-gray-900 mb-2 group-hover:text-emerald-700 transition">太極拳如何舒緩肩頸痛?辦公室人士的救星</h3>
<p class="text-gray-600 text-sm mb-3">長期使用電腦導致肩頸僵硬疼痛?太極拳能有效舒緩肩頸痛。</p>
<span class="text-emerald-700 text-sm font-medium inline-flex items-center">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></span>
</a>
<a href="articles/tai-chi-fall-prevention.html" class="fade-in bg-white rounded-2xl shadow-sm p-6 hover:shadow-lg transition group" style="transition-delay:0.2s">
<span class="inline-block py-0.5 px-2 rounded-full bg-emerald-100 text-emerald-800 text-xs font-medium mb-3">長者健康</span>
<h3 class="text-lg font-bold text-gray-900 mb-2 group-hover:text-emerald-700 transition">太極拳預防長者跌倒:科學證實的有效方法</h3>
<p class="text-gray-600 text-sm mb-3">跌倒是長者受傷的主要原因。太極拳能降低跌倒風險達45%。</p>
<span class="text-emerald-700 text-sm font-medium inline-flex items-center">閱讀更多 <i data-lucide="arrow-right" class="w-3 h-3 ml-1"></i></span>
</a>
</div>
<div class="text-center mt-10 fade-in">
<a href="blog.html" class="inline-flex items-center bg-emerald-700 text-white px-8 py-3 rounded-full hover:bg-emerald-800 transition font-bold">
查看更多文章 <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</section>
<!-- 8. 頁尾與行動呼籲 (Footer & CTA) -->
<footer id="contact" class="bg-stone-900 text-stone-300 py-16">
<div class="max-w-6xl mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold text-white mb-4">準備好開始您的太極之旅嗎?</h2>
<p class="mb-8 text-lg">
林燦平太極學會 主辦<br/>
歡迎到場或致電查詢
</p>
<div class="space-y-4">
<div class="flex items-center">
<i data-lucide="phone" class="mr-4 text-emerald-500 w-6 h-6"></i>
<span class="text-xl font-bold text-white">6098 5742</span>
</div>
<div class="flex items-center">
<i data-lucide="message-circle" class="mr-4 text-emerald-500 w-6 h-6"></i>
<span>WhatsApp: 6098 5742</span>
</div>
<div class="flex items-center">
<i data-lucide="map-pin" class="mr-4 text-emerald-500 w-6 h-6"></i>
<span>地點:小童群益會前空地</span>
</div>
</div>
</div>
<div class="bg-white/5 p-8 rounded-2xl border border-white/10">
<h3 class="text-xl font-bold text-white mb-4">查詢表格</h3>
<form id="contact-form" class="space-y-4">
<div>
<label class="block text-sm mb-1">姓名</label>
<input type="text" class="w-full bg-stone-800 border border-stone-700 rounded p-3 text-white focus:outline-none focus:border-emerald-500" placeholder="您的稱呼"/>
</div>
<div>
<label class="block text-sm mb-1">聯絡電話</label>
<input type="tel" class="w-full bg-stone-800 border border-stone-700 rounded p-3 text-white focus:outline-none focus:border-emerald-500" placeholder="電話號碼"/>
</div>
<button class="w-full bg-emerald-600 hover:bg-emerald-700 text-white font-bold py-3 rounded transition">
提交查詢
</button>
</form>
</div>
</div>
<div class="border-t border-stone-800 mt-12 pt-8 text-center text-sm text-stone-500">
© 2026 林燦平太極學會. All Rights Reserved.
</div>
</div>
</footer>
<!-- 懸浮 WhatsApp 按鈕 (Floating Button) -->
<a
href="https://wa.me/85260985742?text=%E4%BD%A0%E5%A5%BD%EF%BC%8C%E6%9E%97%E5%B8%AB%E5%82%85%EF%BC%81%E6%88%91%E5%9C%A8%E7%B6%B2%E9%A0%81%E7%9C%8B%E5%88%B0%E5%A4%AA%E6%A5%B5%E7%8F%AD%E6%8B%9B%E7%94%9F%EF%BC%8C%E6%83%B3%E6%9F%A5%E8%A9%A2%E6%9B%B4%E5%A4%9A%E8%A9%B3%E6%83%85%EF%BC%88%E5%A6%82%EF%BC%9A%E6%94%B6%E8%B2%BB%E3%80%81%E9%81%A9%E5%90%88%E7%A8%8B%E5%BA%A6%EF%BC%89%E3%80%82"
target="_blank"
rel="noopener noreferrer"
class="fixed bottom-6 right-6 bg-green-500 hover:bg-green-600 text-white p-4 rounded-full shadow-2xl transition transform hover:scale-110 z-50 flex items-center gap-2 group"
>
<i data-lucide="message-circle" class="w-7 h-7"></i>
<span class="max-w-0 overflow-hidden group-hover:max-w-xs transition-all duration-300 ease-in-out whitespace-nowrap font-bold">
查詢 / 報名
</span>
</a>
<!-- 返回頂部按鈕 -->
<button id="back-to-top" class="fixed bottom-6 left-6 bg-emerald-700 hover:bg-emerald-800 text-white p-3 rounded-full shadow-2xl transition transform hover:scale-110 z-50 opacity-0 pointer-events-none" aria-label="返回頂部">
<i data-lucide="chevron-up" class="w-6 h-6"></i>
</button>
<!-- JavaScript -->
<script>
lucide.createIcons();
// 手機版選單
const menuBtn = document.getElementById('mobile-menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
const menuIcon = document.getElementById('menu-icon');
const closeIcon = document.getElementById('close-icon');
const mobileLinks = document.querySelectorAll('.mobile-link');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
menuIcon.classList.toggle('hidden');
closeIcon.classList.toggle('hidden');
});
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
menuIcon.classList.remove('hidden');
closeIcon.classList.add('hidden');
});
});
// 返回頂部按鈕
const backToTop = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.scrollY > 600) {
backToTop.classList.remove('opacity-0', 'pointer-events-none');
backToTop.classList.add('opacity-100');
} else {
backToTop.classList.add('opacity-0', 'pointer-events-none');
backToTop.classList.remove('opacity-100');
}
});
backToTop.addEventListener('click', () => window.scrollTo({ top: 0, behavior: 'smooth' }));
// 導航滾動高亮
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('nav a[href^="#"]');
const observerNav = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const id = entry.target.getAttribute('id');
navLinks.forEach(link => {
link.classList.toggle('text-emerald-700', link.getAttribute('href') === '#' + id);
link.classList.toggle('font-bold', link.getAttribute('href') === '#' + id);
});
}
});
}, { rootMargin: '-40% 0px -60% 0px' });
sections.forEach(s => observerNav.observe(s));
// 手風琴 FAQ
document.querySelectorAll('.faq-toggle').forEach(btn => {
btn.addEventListener('click', () => {
const item = btn.closest('.faq-item');
const answer = item.querySelector('.faq-answer');
const icon = btn.querySelector('.faq-icon');
const isOpen = item.classList.contains('open');
// Close all
document.querySelectorAll('.faq-item').forEach(fi => {
fi.classList.remove('open');
fi.querySelector('.faq-answer').style.maxHeight = '0';
fi.querySelector('.faq-answer').style.opacity = '0';
fi.querySelector('.faq-icon').style.transform = 'rotate(0deg)';
});
// Open clicked (if was closed)
if (!isOpen) {
item.classList.add('open');
answer.style.maxHeight = answer.scrollHeight + 'px';
answer.style.opacity = '1';
icon.style.transform = 'rotate(180deg)';
}
});
});
// 動態時間表過濾
document.querySelectorAll('.schedule-filter').forEach(btn => {
btn.addEventListener('click', () => {
document.querySelectorAll('.schedule-filter').forEach(b => {
b.classList.remove('bg-emerald-700', 'text-white');
b.classList.add('bg-white', 'text-gray-700');
});
btn.classList.add('bg-emerald-700', 'text-white');
btn.classList.remove('bg-white', 'text-gray-700');
const filter = btn.dataset.filter;
document.querySelectorAll('.schedule-card').forEach(card => {
if (filter === 'all' || card.dataset.period === filter) {
card.style.display = '';
card.style.opacity = '0';
requestAnimationFrame(() => { card.style.opacity = '1'; });
} else {
card.style.display = 'none';
}
});
});
});
// Intersection Observer - Fade-in on scroll
const fadeObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-visible');
fadeObserver.unobserve(entry.target);
}
});
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
document.querySelectorAll('.fade-in').forEach(el => fadeObserver.observe(el));
// 頁尾表單 → WhatsApp
const contactForm = document.getElementById('contact-form');
if (contactForm) {
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
const name = contactForm.querySelector('input[type="text"]').value.trim();
const phone = contactForm.querySelector('input[type="tel"]').value.trim();
if (!name || !phone) {
alert('請填寫姓名和聯絡電話');
return;
}
const msg = encodeURIComponent(`你好,林師傅!我是${name}(電話:${phone})。我在網頁看到太極班招生,想查詢更多詳情。`);
window.open(`https://wa.me/85260985742?text=${msg}`, '_blank');
});
}
</script>
</body>
</html>