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
|
<footer class="grayBgColor wrapper"> <div class="container"> <div class="row"> <div class="col-lg-3">
<a href="index.php" class="footerLogo logoImg mr-2"><img src="../assets/images/footerlogo.svg" class="img-fluid"></a> <div class="footerMenu"> <a href="#"><i class="fab fa-facebook-square"></i></a> <a href="#"><i class="fab fa-youtube"></i></a> </div>
</div> <div class="col-lg-2 mb-4 pl-4"> <p class="blod fontUppercase">關於我們</p> <a href="investment.php" class="d-block small">投資理念</a> <a href="team.php" class="d-block small" title="專業團隊">專業團隊</a> <a href="login.php" class="d-block small" title="客戶登入">客戶登入</a> <a href="contact.php" class="d-block small" title="聯絡我們">聯絡我們</a>
</div> <div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase">最新消息</p> <a href="news.php" class="d-block small">活動消息</a>
<a href="news.php" class="d-block small">公告消息</a> <a href="news.php" class="d-block small">商品列表</a>
</div> <div class="col-lg-2 mobileBorderTop mb-4 pl-4"> <p class="blod fontUppercase">產品及服務</p> <a href="product_detail01.php" class="d-block small">英明伙伴絕對回報基金 </a> <a href="product_detail02.php" class="d-block small">柏寧頓高收益債券基金
</a> <a href="product_detail03.php" class="d-block small">全權委託戶口 </a>
</div> <div class="col-lg-3"> <p class="blod fontUppercase">聯絡我們</p> <ul class="iconList"> <li class="small"><i class="fas fa-map-marker-alt"></i> 中環德輔道中135號華懋廣場二期15樓A及D室
</li> </ul>
</div> </div> </div> </footer>
<div class="container"> <div class="ci"> <p class="small mb-2"> © <script> document.write(new Date().getFullYear()) </script>黃國英資產管理有限公司. 版權所有,保留一切權利。 </p> <p class="mb-2"><a href="legal.php" class="small blackFont">法律聲明</a> | <a href="privacy.php" class="small blackFont">私隱聲明</a> </p> </div> </div>
<a href="javascript:void(0);" class="scrollToTop" title="To Top"><i class="fas fa-chevron-up"></i></a> <script type="text/javascript" src="../assets/js/custom.js?<?= rand(1, 10000) / 7; ?>"></script> <!-- custom JS -->
<script> $(window).scroll(function() { if ($(this).scrollTop() >= 100) { $(".menuWrap").addClass("greenDeepBgColor"); // If page is scrolled more than 50px $(".scrollToTop").fadeIn(200); // Fade in the arrow } else { $(".menuWrap").removeClass("greenDeepBgColor");
$(".scrollToTop").fadeOut(200); // Else fade out the arrow } }); $(window).scroll(function() { if ($(this).scrollTop() >= 200) { $(".menuWrap").addClass("greenDeepBgColor"); // If page is scrolled more than 50px
} else { $(".menuWrap").removeClass("greenDeepBgColor");
} }); $(".scrollToTop").click(function() { $("html, body").animate({ scrollTop: 0 }, 800); return false; }); </script>
|