-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
982 lines (880 loc) · 43.8 KB
/
page2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="祥安生命有限公司">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="https://24hour.xn--kpry57d/path/to/logo.png" type="image/x-icon">
<link rel="icon" type="image/png" sizes="32x32" href="https://24hour.xn--kpry57d/path/to/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://24hour.xn--kpry57d/path/to/logo.png">
<!-- SEO Meta Tags -->
<meta name="description" content="醫生請我要有心理準備,還要先聯絡好禮儀公司?">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<link rel="canonical" href="https://24hour.台灣.page2" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:type" content="website" />
<meta property="og:title" content="推薦禮儀公司|祥安生命有限公司|專業禮儀人員|合法葬儀社|價格實惠|24H免費諮詢|專業禮儀服務" />
<meta property="og:description" content="祥安禮儀公司提供溫馨、專業的殯葬服務,價格透明化,值得信賴。提供佛教、道教、基督教、日蓮正宗、創價學會等多種宗教禮儀。" />
<meta name="keywords" content="先行準備的好處,與我們詳談後都會有一份正式禮儀包單,免費預談,價格透明化,免費諮詢,喪禮,心裡準備,合法禮儀公司, 專業, 隆重, 喪事, 葬儀社, 禮儀公司, 推薦葬儀社, 基督教, 天主教, 佛道教, 一般習俗, 日蓮正宗, 創價學會, 告別式, 禮儀服務, 殯葬禮儀, 客制化追思會, 花籃訂購, 24小時禮儀服務, 台北市推薦禮儀, 新北市生命禮儀" />
<meta property="og:url" content="https://24hour.台灣" />
<meta property="og:image" content="https://24hour.xn--kpry57d/path/to/logo.png" />
<meta property="og:locale" content="zh_TW" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="推薦禮儀公司|祥安生命有限公司|價格實惠|24H免費諮詢" />
<meta name="twitter:description" content="提供專業葬禮服務,客製化禮儀包單,佛道教等宗教儀式,值得信賴的禮儀公司。" />
<title>24H免費臨終諮詢|推薦|祥安生命有限公司|</title>
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap.min.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap-grid.min.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/bootstrap/css/bootstrap-reboot.min.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/parallax/jarallax.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/web/assets/gdpr-plugin/gdpr-styles.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/dropdown/css/style.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/animatecss/animate.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/socicon/css/styles.css?rnd=1728889666989">
<link rel="stylesheet" href="https://r.mobirisesite.com/528007/assets/theme/css/style.css?rnd=1728889666989">
<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=1728889666989" type="text/css">
<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-2e">
<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="page27.html" 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="article11 cid-ugY2iZbtYr mbr-parallax-background" id="article11-4e">
<div class="mbr-overlay" style="opacity: 0.9; background-color: rgb(255, 255, 255);"></div>
<div class="container">
<div class="row justify-content-center">
<div class="title col-md-12 col-lg-4">
<h3 class="mbr-section-title mbr-fonts-style align-center mt-0 mb-0 display-5">
<strong>24H 臨終諮詢</strong>
</h3>
<h4 class="mbr-section-subtitle align-center mbr-fonts-style mt-4 display-4">
以愛與尊重,為摯愛的親人,
<br>
安排完美的告別規劃
<br>
-
<br>
在我們生命的旅程中,
<br>
每一段相伴的時光都彌足珍貴。
<br>
當我們最愛的人
<br>
準備走向生命的另一端,
<br>
為他們提前規劃一場
<br>
完美的告別儀式,
<br>
是我們表達最後敬意的方式。
<div>
<br>
</div>
</h4>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features030 cid-uqrbHVyxak mbr-parallax-background" id="features030-7d">
<div class="mbr-overlay" style="opacity: 0.9; background-color: rgb(237, 239, 235);"></div>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-md-12 content-head mb-5">
<h1 class="mbr-section-title mbr-fonts-style mb-0 display-5">
<strong>臨終諮詢關懷</strong>
</h1>
</div>
</div>
<div class="row justify-content-center blockContent">
<div class="col-12 col-lg">
<div class="item-wrapper align-left">
<div class="mbr-text counter-container mbr-fonts-style display-2">
<ol>
<p>一、 臨終諮詢,代表人在尚未往生之前,就需事前做好規劃及準備,而不是往生時在匆忙的選擇不信任的禮儀公司或由醫院太平間承辦,因為這樣會使契約價格沒辦法透明化,所以親屬代表請盡速撥打24小時服務專線0938-179-858,公司禮儀師儘快趕赴醫院或現場協助初終等相關事宜。</p>
<p>
<br>
</p>
</ol>
<ol>
<p>二、 人在即將過逝往生時,會有脫糞的情形產生,請親屬準備好成人紙尿布,並準備寬鬆輕便衣物替親人更換。</p>
</ol>
<ol>
<p>
<br>
</p>
</ol>
<ol>
<p>三、 禮儀師會以最短的時間內抵達現場,協助大體接引至殯儀館安置或於自宅搭設水舖,依各地不同禮俗辦理,讓家屬安心、放心,因各地禮俗有所不同,若需腳尾飯等請提前準備。</p>
<p>
<br>
</p>
</ol>
<ol>
<p>四、孝眷親屬填寫基本資料,由師父引領親屬進行引魂、開冥路法事,並將牌位安置於公司安靈室,若於自宅即需搭設豎靈堂。</p>
<p>
<br>
</p>
</ol>
<ol>
<p>五、 公司將提供孝眷親屬【祥安生命有限公司契約書】及【治喪流程規劃書】供家屬參考及使用,並請審慎核對契約書明細表及服務 內容,若有不對或服務不周到等情形發生,請撥打0938-179-858,公司將盡快為您處理。</p>
<p>
<br>
</p>
</ol>
<ol>
<p>六、 公司將提供【治喪禮儀須知】供家屬參考使用。</p>
<p>
<br>
</p>
</ol>
<ol>
七、 死亡證明書須開立約12~15張,若返家斷氣者,可請合格法醫或衛生所代為開立。
<br>
<br>
</ol>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="image-wrapper mb-4">
<img class="w-100" src="https://r.mobirisesite.com/528007/assets/images/background4-h_lxytpq2m.jpg" alt="Mobirise Website Builder">
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="article18 cid-uqOeGyU0Hj" id="article18-am">
<div class="container">
<div class="row justify-content-center">
<div class="counter-container col-md-12 col-lg-6">
<div class="row mb-5 justify-content-center">
<div class="col-12 content-head">
<h3 class="mbr-section-title mbr-fonts-style align-center mb-0 display-5">
<strong>溫馨提醒</strong>
</h3>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-4 display-2">
<strong>預先準備項目</strong>
</h5>
</div>
</div>
<div class="mbr-text mbr-fonts-style display-1">
<ul>
<li>1. 死亡證明書建議申請 12-15 份</li>
<li>2. 病患照片、身分證及健保卡、直系親屬身分證件</li>
<li>3. 臨終護理時換穿之乾淨衣物(包括:內衣褲、外衣褲、鞋子、襪子)</li>
<li>4. 手尾錢(視家庭宗教信仰,例如:$3600、$6600 ,凡吉祥數字即可)</li>
<li>5. 臨終前說出您的:道謝、道愛、道別。</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="footer1 cid-uqYZviHvly mbr-parallax-background" once="footers" id="footer01-cr">
<div class="mbr-overlay" style="opacity: 0.9; background-color: rgb(237, 239, 235);"></div>
<div class="container">
<div class="row mbr-white">
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-2">
<strong>祥安生命有限公司</strong>
</h5>
<ul class="list mbr-fonts-style display-1">
<li class="mbr-text item-wrap">
<span style="font-size: 1rem;">新北市三重區永福街135巷13號</span>
<br>
</li>
<li class="mbr-text item-wrap">
<br>
</li>
<li class="mbr-text item-wrap">24H禮儀服務專線</li>
<li class="mbr-text item-wrap">0938-179-858</li>
<li class="mbr-text item-wrap">
<br>
</li>
<li class="mbr-text item-wrap">祥安生命,</li>
<li class="mbr-text item-wrap">用心服務,陪伴您</li>
<li class="mbr-text item-wrap">『道謝.道別. 道愛』</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-2">
<strong>關於祥安生命</strong>
<br>
<br>
<br>
</h5>
<ul class="list mbr-fonts-style display-4">
<li class="mbr-text item-wrap">
<a href="index.html#about-us-1-ugMgCjGe5h" class="text-primary">公司介紹</a>
</li>
<li class="mbr-text item-wrap">
<a href="index.html#contacts02-53" class="text-primary">預約諮詢</a>
</li>
<li class="mbr-text item-wrap">
<a href="page1.html#menu05-1r" class="text-primary">花籃訂購</a>
</li>
<li class="mbr-text item-wrap">
<a href="index.html" class="text-primary">最新消息</a>
</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-2">
<strong>禮儀服務</strong>
<br>
<br>
</h5>
<ul class="list mbr-fonts-style display-4">
<li class="mbr-text item-wrap">
<a href="page3.html" class="text-primary">中式禮儀</a>
</li>
<li class="mbr-text item-wrap">
<a href="page41.html" class="text-primary">西式禮儀</a>
</li>
<li class="mbr-text item-wrap">
<a href="page27.html" class="text-primary">創價學會&日蓮正宗</a>
</li>
<li class="mbr-text item-wrap">
<a href="page6.html" class="text-primary">塔位帶看</a>
</li>
<li class="mbr-text item-wrap">
<a href="index.html#contacts02-53" class="text-primary">撿骨服務</a>
</li>
<li class="mbr-text item-wrap">
<a href="page35.html#menu05-93" class="text-primary">多元環保葬</a>
</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-2">
<strong>相關資訊</strong>
<br>
<br>
<br>
</h5>
<ul class="list mbr-fonts-style display-4">
<li class="mbr-text item-wrap">
<a href="page38.html" class="text-primary">社會福利補助</a>
</li>
<li class="mbr-text item-wrap">
<a href="page7.html" class="text-primary">禮儀百科</a>
</li>
<li class="mbr-text item-wrap">
<a href="index.html#contacts02-53" class="text-primary">相關連結</a>
</li>
<li class="mbr-text item-wrap">
<a href="page8.html#menu05-2q" class="text-primary">殯儀館規費試算</a>
</li>
</ul>
</div>
<div class="col-12 mt-4">
<p class="mbr-text mb-0 mbr-fonts-style copyright align-center display-1">
<br>
<br>
© 祥安生命有限公司 版權所有
</p>
</div>
</div>
</div>
</section>
<script src="https://r.mobirisesite.com/528007/assets/web/assets/jquery/jquery.min.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/bootstrap/js/bootstrap.bundle.min.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/parallax/jarallax.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/web/assets/cookies-alert-plugin/cookies-alert-core.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/web/assets/cookies-alert-plugin/cookies-alert-script.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/smoothscroll/smooth-scroll.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/ytplayer/index.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/dropdown/js/navbar-dropdown.js?rnd=1728889666989"></script>
<script src="https://r.mobirisesite.com/528007/assets/theme/js/script.js?rnd=1728889666989"></script>
</body>
</html>