-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage6.html
1316 lines (1199 loc) · 68.2 KB
/
page6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="http://www.24hour.台灣">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="https://r.mobirisesite.com/528007/assets/images/gc6109df110120705e2ee3075b19c-h_lxx5ob8i.jpg" type="image/x-icon">
<meta name="description" content="">
<meta name="description" content="提供塔位帶看服務,專業殯葬禮儀公司,满足您的需求。">
<meta name="keywords" content="塔位, 帶看, 爭取價格, 殯葬服務, 禮儀公司, 回憶, 纪念">
<meta property="og:title" content="專業塔位帶看服務">
<meta property="og:description" content="提供專業塔位帶看服務,爭取優惠價格,满足您的需求。">
<meta property="og:url" content="http://www.24hour.台灣">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="專業塔位帶看服務">
<meta name="twitter:description" content="提供專業的塔位帶看服務,满足您的需求。">
<meta name="twitter:image" content="https://www.24hour.台灣/logo1.png">
<title>專業塔位帶看服務|祥安生命有限公司</title>
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap.min.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap-grid.min.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap-reboot.min.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/parallax/jarallax.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/web/assets/gdpr-plugin/gdpr-styles.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/dropdown/css/style.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/animatecss/animate.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/socicon/css/styles.css?rnd=1728893019780">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/theme/css/style.css?rnd=1728893019780">
<link rel="preload" href="https://fonts.googleapis.com/css?family=Kiwi+Maru:300,400,500&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Kiwi+Maru:300,400,500&display=swap">
</noscript>
<link rel="preload" href="https://fonts.googleapis.com/css?family=Karla:200,300,400,500,600,700,800,200i,300i,400i,500i,600i,700i,800i&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Karla:200,300,400,500,600,700,800,200i,300i,400i,500i,600i,700i,800i&display=swap">
</noscript>
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/css/mbr-additional.css?rnd=1728893019780" type="text/css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "祥安生命有限公司",
"url": "https://24hour.台灣",
"logo": "logo.png",
"sameAs": [
"https://www.facebook.com/shianganlife",
"https://www.google.com/maps?q=241新北市三重區永福街135巷13號祥安生命有限公司(禮儀公司)&ftid=0x3442a8c514e6ec07:0xbeb426d25d046c4&entry=gps&lucs=,94242616,94224825,94227247,94227248,47071704,47069508,94218641,94203019,47084304,94208458,94208447&g_ep=CAISDTYuMTM2LjAuODc4MzAYACCIJypjLDk0MjQyNjE2LDk0MjI0ODI1LDk0MjI3MjQ3LDk0MjI3MjQ4LDQ3MDcxNzA0LDQ3MDY5NTA4LDk0MjE4NjQxLDk0MjAzMDE5LDQ3MDg0MzA0LDk0MjA4NDU4LDk0MjA4NDQ3QgJUVw%3D%3D&g_st=ia"
]
}
</script>
<style>
.navbar-fixed-top {
top: auto;
}
#mobiriseBanner.container-banner {
height: 8rem;
opacity: 1;
-webkit-animation: 4s linear animationHeight;
-moz-animation: 4s linear animationHeight;
-o-animation: 4s linear animationHeight;
animation: 4s linear animationHeight;
transition: all 0.5s;
}
#mobiriseBanner.container-banner.container-banner-closing {
pointer-events: none;
height: 0;
opacity: 0;
-webkit-animation: 0.5s linear animationClosing;
-moz-animation: 0.5s linear animationClosing;
-o-animation: 0.5s linear animationClosing;
animation: 0.5s linear animationClosing;
}
#mobiriseBanner .banner {
min-height: 8rem;
position: fixed;
top: 0;
left: 0;
right: 0;
background: #fff;
padding: 10px;
opacity: 1;
-webkit-animation: 4s linear animationBanner;
-moz-animation: 4s linear animationBanner;
-o-animation: 4s linear animationBanner;
animation: 4s linear animationBanner;
z-index: 1031;
display: flex;
flex-direction: column;
justify-content: center;
}
#mobiriseBanner .banner p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
animation: none;
visibility: visible;
}
#mobiriseBanner .buy-license {
text-decoration: underline;
}
#mobiriseBanner .banner .btn {
margin: 0.3rem 0.5rem;
animation: none;
visibility: visible;
}
.navbar.opened {
z-index: 1032;
}
@-webkit-keyframes animationBanner {
0% {
opacity: 0;
top: -8rem;
}
75% {
opacity: 0;
top: -8rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-moz-keyframes animationBanner {
0% {
opacity: 0;
top: -8rem;
}
75% {
opacity: 0;
top: -8rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-o-keyframes animationBanner {
0% {
opacity: 0;
top: -8rem;
}
75% {
opacity: 0;
top: -8rem;
}
100% {
opacity: 1;
top: 0;
}
}
@keyframes animationBanner {
0% {
opacity: 0;
top: -8rem;
}
75% {
opacity: 0;
top: -8rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-webkit-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 8rem;
}
}
@-moz-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 8rem;
}
}
@-o-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 8rem;
}
}
@keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 8rem;
}
}
@-webkit-keyframes animationClosing {
0% {
height: 8rem;
opacity: 1;
}
30% {
height: 8rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@-moz-keyframes animationClosing {
0% {
height: 8rem;
opacity: 1;
}
30% {
height: 8rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@-o-keyframes animationClosing {
0% {
height: 8rem;
opacity: 1;
}
30% {
height: 8rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@keyframes animationClosing {
0% {
height: 8rem;
opacity: 1;
}
30% {
height: 8rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@media (max-width: 767px) {
#mobiriseBanner.container-banner {
height: 12rem;
}
#mobiriseBanner .banner {
min-height: 12rem;
}
@-webkit-keyframes animationBanner {
0% {
opacity: 0;
top: -12rem;
}
75% {
opacity: 0;
top: -12rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-moz-keyframes animationBanner {
0% {
opacity: 0;
top: -12rem;
}
75% {
opacity: 0;
top: -12rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-o-keyframes animationBanner {
0% {
opacity: 0;
top: -12rem;
}
75% {
opacity: 0;
top: -12rem;
}
100% {
opacity: 1;
top: 0;
}
}
@keyframes animationBanner {
0% {
opacity: 0;
top: -12rem;
}
75% {
opacity: 0;
top: -12rem;
}
100% {
opacity: 1;
top: 0;
}
}
@-webkit-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 12rem;
}
}
@-moz-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 12rem;
}
}
@-o-keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 12rem;
}
}
@keyframes animationHeight {
0% {
height: 0;
}
75% {
height: 0;
}
100% {
height: 12rem;
}
}
@-webkit-keyframes animationClosing {
0% {
height: 12rem;
opacity: 1;
}
30% {
height: 12rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@-moz-keyframes animationClosing {
0% {
height: 12rem;
opacity: 1;
}
30% {
height: 12rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@-o-keyframes animationClosing {
0% {
height: 12rem;
opacity: 1;
}
30% {
height: 12rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
@keyframes animationClosing {
0% {
height: 12rem;
opacity: 1;
}
30% {
height: 12rem;
opacity: 0.5;
}
100% {
height: 0;
opacity: 0;
}
}
}
</style>
</head>
<body>
<section data-bs-version="5.1" class="menu menu5 cid-ugTnEE6zPA" once="menu" id="menu05-2m">
<nav class="navbar navbar-dropdown navbar-fixed-top navbar-expand-lg">
<div class="container">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="index.html#top">
<img src="https://r.mobirisesite.com/528007/assets/images/gc6109df110120705e2ee3075b19c-h_lxx5ob8i.jpg" alt="Mobirise Website Builder" style="height: 2.6rem;">
</a>
</span>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbarSupportedContent" data-bs-target="#navbarSupportedContent" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown" data-app-modern-menu="true">
<li class="nav-item dropdown">
<a class="nav-link link text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">關於我們</font>
</font>
</a>
<div class="dropdown-menu" aria-labelledby="dropdown-396">
<a class="show text-black text-primary dropdown-item display-4" href="index.html#about-us-1-ugMgCjGe5h" aria-expanded="false">祥安生命核心</a>
<a class="show text-black text-primary dropdown-item display-4" href="index.html#people05-1v" aria-expanded="false">客戶好評</a>
<a class="show text-black text-primary dropdown-item display-4" href="index.html#contacts02-53" aria-expanded="false">聯繫我們</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link link dropdown-toggle text-black display-4" href="#" aria-expanded="false" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">禮儀服務</font>
</font>
</a>
<div class="dropdown-menu" aria-labelledby="dropdown-831">
<a class="dropdown-item text-black text-primary display-4" href="page2.html#article11-4e" aria-expanded="false" target="_blank">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">24H臨終諮詢</font>
</font>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page2.html#article11-4e" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">客製化禮儀服務</font>
</font>
</a>
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" target="_blank" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">中式禮儀服務</font>
</font>
</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-313">
<a class="dropdown-item text-black text-primary show display-4" href="page3.html" aria-expanded="false">中式禮儀服務流程</a>
<a class="dropdown-item text-black text-primary show display-4" href="page17.html" aria-expanded="false">中式禮儀包單內容</a>
</div>
</div>
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" target="_blank" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">西式禮儀服務</font>
</font>
</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-958">
<a class="dropdown-item text-black text-primary display-4" href="page41.html" aria-expanded="false">西式禮儀服務流程</a>
<a class="dropdown-item text-black text-primary display-4" href="page22.html" aria-expanded="false">西式禮儀包單內容</a>
</div>
</div>
<a class="dropdown-item text-black text-primary display-4" href="page26.html#menu05-48" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">日蓮正宗/創價學會禮儀服務</font>
</font>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page28.html#image01-7k" aria-expanded="false">契約比較表</a>
<a class="dropdown-item text-black text-primary display-4" href="page6.html#features06-71" aria-expanded="false" target="_blank">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">塔位帶看</font>
</font>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page1.html" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">雲端花禮訂購</font>
</font>
</a>
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">殯儀館介紹&規費計算</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-631">
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">台北懷愛館(第二殯儀館)</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-790">
<a class="dropdown-item text-black text-primary display-4" href="page1.html" aria-expanded="false">
蓮位堂(牌位區)
<br>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page1.html" aria-expanded="false">查看禮廳</a>
<a class="dropdown-item text-black text-primary display-4" href="page1.html" aria-expanded="false">殯儀館規費</a>
</div>
</div>
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-bs-auto-close="outside" data-toggle="dropdown-submenu" data-bs-toggle="dropdown">新北市殯儀館(板橋殯儀館)</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-162">
<a class="dropdown-item text-black text-primary show display-4" href="#" aria-expanded="false" data-bs-auto-close="outside">牌位區</a>
<a class="dropdown-item text-black text-primary show display-4" href="#" aria-expanded="false" data-bs-auto-close="outside">查看禮廳</a>
<a class="dropdown-item text-black text-primary show display-4" href="#" aria-expanded="false" data-bs-auto-close="outside">殯儀館規費</a>
</div>
</div>
<a class="dropdown-item text-black text-primary show display-4" href="#" aria-expanded="false" data-bs-auto-close="outside">基隆市立殯儀館(板橋殯儀館)</a>
</div>
</div>
<div class="dropdown">
<a class="dropdown-item text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-bs-auto-close="outside" data-toggle="dropdown-submenu" data-bs-toggle="dropdown">禮儀相關周邊服務</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-116">
<a class="dropdown-item text-black text-primary show display-4" href="#" aria-expanded="false" data-bs-auto-close="outside">尊體SPA</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link link dropdown-toggle text-black display-4" href="#" aria-expanded="false" data-bs-auto-close="outside" data-toggle="dropdown-submenu" data-bs-toggle="dropdown">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">喪葬津貼</font>
</font>
</a>
<div class="dropdown-menu" aria-labelledby="dropdown-468">
<a class="dropdown-item text-black text-primary show display-4" href="page10.html#article11-9x" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">公保喪葬補助</font>
</font>
</a>
<a class="show dropdown-item text-black text-primary display-4" href="page36.html#header01-9l" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">軍保喪葬補助</font>
</font>
</a>
<a class="dropdown-item text-black show text-primary display-4" href="page37.html#article11-a1" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">農保喪葬津貼</font>
</font>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page38.html#article11-a6" aria-expanded="false">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">勞保喪葬補助</font>
</font>
</a>
<a class="dropdown-item text-black text-primary display-4" href="page39.html#article11-ab" aria-expanded="false">國民年金補貼</a>
<div class="dropdown">
<a class="dropdown-item text-black dropdown-toggle display-4" href="#" aria-expanded="false" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">申請補助注意事項</font>
</font>
</a>
<div class="dropdown-menu dropdown-submenu" aria-labelledby="dropdown-409">
<a class="show dropdown-item text-black text-primary display-4" href="https://www.ntbt.gov.tw/multiplehtml/6e67d38ba777433e81ede9883cbc9212" aria-expanded="false" target="_blank">
遺產申報
<br>
</a>
<a class="show dropdown-item text-black text-primary display-4" href="https://www.land.moi.gov.tw/chhtml/content/64?mcid=3490" aria-expanded="false" target="_blank">
土地繼承
<br>
</a>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link link text-black show text-primary display-4" href="page6.html#features06-71" aria-expanded="false" data-bs-auto-close="outside">
<font style="vertical-align: inherit;">塔位帶看</font>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link link text-black text-primary dropdown-toggle display-4" href="#" aria-expanded="false" data-bs-auto-close="outside" data-toggle="dropdown-submenu" data-bs-toggle="dropdown">
<font style="vertical-align: inherit;">環保葬</font>
</a>
<div class="dropdown-menu" aria-labelledby="dropdown-983">
<a class="text-black show text-primary dropdown-item display-4" href="page34.html#article05-8l" aria-expanded="false" data-bs-auto-close="outside">植存</a>
<a class="text-black show text-primary dropdown-item display-4" href="page35.html#article05-92" aria-expanded="false" data-bs-auto-close="outside">樹(花)葬</a>
<a class="text-black show text-primary dropdown-item display-4" href="page48.html#article05-da" aria-expanded="false" data-bs-auto-close="outside">海葬</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link link text-black text-primary display-4" href="index.html#contacts02-53" data-bs-auto-close="outside" aria-expanded="false">
<br>
<font style="vertical-align: inherit;">
<br>
</font>
</a>
</li>
</ul>
<div class="navbar-buttons mbr-section-btn">
<a class="btn btn-black-outline display-4" href="tel:+886938179858">
24H 禮儀專線
<br>
0938-179-858
<br>
</a>
</div>
</div>
</div>
</nav>
</section>
<section data-bs-version="5.1" class="features6 start cid-uqkxkdw6np" id="features06-71">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-12 content-head">
<div class="mbr-section-head mb-5">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-5">
<strong>塔位諮詢</strong>
<br>
<strong>
<br>
</strong>
</h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-4 display-2">
<p>墓園專業導覽/專車帶堪服務/ 晉塔車輛/專業客觀建議</p>
<br>
<p>
<em>提供合法納骨塔位墓園導覽,</em>
</p>
<p>
<em>購塔應注意事項說明,詳細的合法塔位產權。</em>
</p>
<p>
<br>
</p>
</h5>
</div>
</div>
</div>
<div class="row">
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/images/2443320687321.jpg" alt="Mobirise Website Builder" data-slide-to="0">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>金華山</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
金華山長青孝園位於新北市石門區與金山區交界,山間蟬鳴鳥叫的清幽環境,眺望海天一線絕美景色,依偎山巒走勢,維護山林景觀,堅持水土保持、永續發展之理念。
<br>
<br>
別於傳統墓園給人的沉悶印象,明亮、舒適的園區讓您像回到家中庭院般自在放鬆。
<br>
細心完整的規劃,不僅是對山林豐稔的尊重,更是天地人合而為一的體現。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/2443320687322-h_m1w4wcwu.jpg" alt="Mobirise Website Builder" data-slide-to="1">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>金寶山</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
日光苑
<br>
日光,萬物生息延續的泉源。日光苑,讓生息延續匯集的地方。延續思念與愛,一切終將再出發
<br>
塔頂的「心靈之光」雕塑,象徵不同宗教的博愛包容,具體演繹日光苑超越宗教的信念
<br>
<br>
萬佛塔
<br>
萬佛如來,心念自在。白石巨牆,洗塵為淨。在此歸於平靜,萬物合而為一
<br>
國際雕塑大師朱銘歷經多年規劃設計,塔外萬佛護持
<br>
塔內精雕細琢,處處佛光普照,是金寶山將殯葬提昇為文創的代表作
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/gallery02-h_m1w4dxq3.jpg" alt="Mobirise Website Builder" data-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>北海福座</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
北海岸第一 風水福地
<br>
<br>
位於北海岸依山傍海的三芝地區,由風水大師堪輿欽點的絕佳風水。
<br>
寶塔建築融合宗教、文化、藝術,龍高虎低環繞,福蔭綿澤祐世代。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/images/24433206873216.jpg" alt="" data-slide-to="3">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>懷恩聖地</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
懷恩聖地位於新北市三芝區,其地理位置居圓山之頂,左有觀音、面天、大屯等山,右有七星山之延伸為屏障,後有大屯、七星山系為靠,山勢由左至右漸低,其中觀音山狀似筆架、馬鞍,象徵古代官居高位,能庇蔭子孫攖文武之職,執一朝之牛耳,而群山環抱,宛如雄鷹展翅攫物,地形彷彿十八羅漢在旁護衛一般。為前有照、後有靠、左青龍、右白虎的格局,是堪輿學上真正的『狀元鼎』。
<br>
正前方面臨台灣海峽有兩條活水(淡水河、基隆河)在前方交匯,狀似漏斗,又如雙龍吐珠進入聚寶盆中,如風水地理所云“山管丁,靠山則人旺;水管才,面河則財聚”,懷恩聖地有此堪码一流的優美風水,若將祖靈奉厝安息於此的後代子孫,不僅有皇帝、宰相命,更可大富大貴。目前已有各界名要選擇在此安息,更證明此處風水堪稱一流,唯有風水好的福地才可旺財、旺運、旺身。
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/2443320687325-h_m25zb7yh.jpg" alt="Mobirise Website Builder" data-slide-to="4">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>三芝龍巖</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
真龍殿之基本造型採宮殿式寶塔望樓。全區基地面積長達350公尺,寬平均約100公尺,主建築物高103.5公尺,並以海拔364公尺的建物高度傲視北台灣。
<br>
<br>
由日本青木公司建造設計,品質優良有保障。全區採鋼骨SRC結構為主,具防震性(防震係數1.6)及耐久性。在安全考量上採階梯形設計,邊坡防土牆加排樁及地錨穩固,整體架構更加完整。為提升管理之效率與品質,內部管理採用高科技電腦化設備,24小時中央監控,使管理品質呈現最佳狀況。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/g1ffad2320e7b65eab3c502f8f8c0-h_m25yfz53.jpg" alt="Mobirise Website Builder" data-slide-to="5">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>觀音山福園</strong>
<strong>
<br>
</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
觀音山,狀若臥佛、山形端秀,龍脈延綿、河海環抱,藏風聚氣,可謂天寶物華地靈人傑,位於盆地西方,是外圍三大板塊中磁場最強、最適宜安置陰宅的地區。
<br>
觀音山福園位居觀音山龍降之處,龍脈結穴,四周沙環,河海圍繞,明堂聚氣,對岸寬展,得水藏風,天地靈氣在此接納蓄積,形成最佳的風水寶地,西方極樂世界,適宜先人安居、庇蔭造福後代。
<br>
<br>
林正義老師親自為福園寶塔堪輿地理、點穴奠基、規劃設計、監工指導、與觀音山福園共同建造一座天人共榮祥和安樂的寶塔。寶塔結構氣勢宏偉 ,左右護法相應得宜。位居龍穴,天寶地靈匯集於此 ,明堂聚氣、伸手觸岸、四砂環繞、外水遠朗,藏之得以乘利生氣,造福子孫庇蔭後代,是北台灣最佳的安居福園。
<br>
<br>
交通便利
<br>
國道一號五股交流道下,十分鐘車程即可抵達,給親人更多的陪伴。64快速道路 五股交流道下,約八分鐘車程就可以到達,既快速又方便。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/images/2443320687324.jpg" alt="Mobirise Website Builder" data-slide-to="6">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>基隆金寶塔</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
全國唯一景觀電梯寶塔、塔區公園化
<br>
<br>
基隆金寶塔致力於殯葬文化的改革,提供「最人性的關懷、最體貼的態度,
<br>
最實在的回饋」,創造一個值得客戶信賴、滿足客戶「安心」及
<br>
「幸福」的企業體,服務全人類,都在「合法」的基隆金寶塔。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/2443320687327-h_m25xlxft.jpg" alt="Mobirise Website Builder" data-slide-to="7">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>關渡龍園</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
寶塔在興建之初,分別敦請三位不同派別的大師,精通三元、三合、九星的地理師,勘察此一基地,一致認為這是一塊不可多得的風水佳穴。 整個格局是「青龍重重抱,白虎低頭繞,玄武山有靠,朱雀水來到」 至上地理,風水寶地。
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/images/24433206873210.jpg" alt="Mobirise Website Builder" data-slide-to="8">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>台北聖城</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
台北聖城使用【速皮型阻尼器】指配【×型合金阻尼器】二項消能元件,耐震係數可達七級(等同921地震的最大震度),若有七級強烈地震,台北聖城生俞紀念館依舊巍巍聳立。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/2443320687326-h_m1w58a3h.jpg" alt="Mobirise Website Builder" data-slide-to="9">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>龍巖福田</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
三面環山的龍巖福田,青龍峻高,白虎沉闊。右前方的山形,宛如獅象供拜龍主般。園區前方山巒起伏,彷彿案桌上擺置數顆大小不同之玉璽與玉筆,象徵著掌握了「權位官位」,前有員潭溪彎延繞過,恰似宰相玉帶環腰際,為「富貴無邊」、「貴人倍出」之表象。
<br>
<br>
員潭溪流入東海,東海形同一天然庫池,鎖口氣聚,可聚財氣入寶庫,象徵「財庫源源不絕」。環境除了風景優美之外,更符合了中國人自古以來對於陰宅寶地的講究——「藏風得水,福廕子孫」。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/2443320687328-h_m1w53mb7.jpg" alt="Mobirise Website Builder" data-slide-to="10">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">
<strong>慈恩園</strong>
</h5>
<p class="mbr-text mbr-fonts-style display-4">
慈恩園生命紀念館位居芳蘭山、福州山、四獸山等山脈龍脈之首。慈恩園生命紀念館所居處素有勘輿學上所稱左青龍、右白虎、前朱雀,後玄武之風水佳地。依晉朝郭璞璅著葬經:葬者乘生氣也,企如葬乘風則散,氣如是水則止,所以是謂之風水。換句話說"風水"就是指能夠藏風,能夠聚氣,前頭以水為界。慈恩園之風水除有四獸山筑龍脈為靠外,更居高臨下俯視大台北盆地,並以淡水河為界,既有藏風之地理,更能聚氣成形,實為風水家絕佳之寶地。
<br>
<br>
臥龍之地一直是世人所追求的風水佳穴,慈恩園生命紀念館山勢自然天成,已是佳穴靈地,館區四周環山抱氣,放眼望去龍脈相延、靈氣相連,風水得天獨厚。加上環境清幽、藏風納氣為絕佳風水之地。復有慈恩園塔內地藏王菩薩、阿彌陀佛、觀世音菩薩及三寶佛,佛光長照,不但居者福祉長存,愛後代亦世代亨通,時時風生水起。
<br>
</p>
</div>
</div>
</div>
<div class="item features-image col-12 col-md-6 col-lg-4">
<div class="item-wrapper">
<div class="item-img">
<img src="https://r.mobirisesite.com/528007/assets/images/24433206873217-h_m1w5iee6.jpg" alt="Mobirise Website Builder" data-slide-to="11">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5">