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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>公告消息</title>
<meta name="description" content="公告消息"> <!-- css --> <?php include 'inc/headlinks.php'; ?> <!-- js --> <?php include 'inc/link-js.php'; ?> </head>
<body>
<!-- header --> <?php include 'inc/navbar.php'; ?> <!-- end of header-->
<!-- breadcrumb --> <div class="breadcrumb" style="background-image:url(../assets/images/breadcrumb_bg.jpg);">
<div class="breadcrumbWrapper"> <div class="container"> <p class="breadcrumbTitle text-center m-3 h3">公告消息</p>
<div class="breadcrumbLink">
<a href="index.php" class="whiteFont"> 主頁</a> / <a href="news.php" class="whiteFont"> 公告消息</a> / <span class="whiteFont">特別服務安排</span>
</div>
</div> </div>
</div> <section class="wrapper container">
<div class="cmsContent mb-4"> <h1 class="text-center">特別服務安排</h1> <p class="date text-center"> 公告日期:2022-04-01</p>
<br> <div class="row"> <div class="col-md-12"> <p> 鑑於近日新型冠狀病毒疫情發展,為守護客戶、商業夥伴及僱員的健康與安全, 我們已作出特別工作安排,大部分的僱員會在家工作。保單行政工作包括付款安排會於 2022年 3月 21日起作出以下特別安排,直至另行通知:</p>
<p></p>退保、提取及索償: 在此期間我們將不會簽發支票。 所有款項將直接存入保單持有人或索償人的銀行帳戶。 如果銀行帳戶資料與我們的記錄不符,保單持有人或索償人會被要求提供相關銀行帳號和帳單或存摺副本作為銀行帳戶證明。300港元的銀行手續費將獲豁免。</p> <p>支付保費(包括初始保費及定期保費) :</p> <ul> <li>我們強烈建議經由電子方式支付保費(例如: 電子銀行轉帳、PPS及FPS) 。支付金額上限會因應不同銀行而有所不同。</li> <li>如果以支票支付, 請經由滙豐銀行的分行或存票機支付至我們的滙豐銀行帳戶。請同時提供支票副本、存票證明、保單持有人姓名及保單號碼電郵給我們作核對之用。</li> </ul>
</div> </div> </div> <hr> <div class="d-flex justify-content-center gap-3 mb-4">
<button type="button" title="前一頁" class="button mainGoldBroderBtn mt-2" onclick="location.href='news_detail.php';"><i class="fas fa-arrow-left"></i> 前一頁</button> <button type="button" title="返回公告" class="button mainGoldBroderBtn mt-2" onclick="location.href='news.php';">返回公告</button> <button type="button" title="後一頁" class="button mainGoldBroderBtn mt-2" onclick="location.href='news_detail.php';">後一頁 <i class="fas fa-arrow-right"></i></button> </div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php'; ?>
</body>
</html>
|