-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall-services.html
More file actions
522 lines (495 loc) · 20.7 KB
/
all-services.html
File metadata and controls
522 lines (495 loc) · 20.7 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
<!DOCTYPE html>
<html lang="zh">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>天地银行 - 所有服务</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<head>
<!-- 引入 Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css ">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com "></script>
<!-- 公共样式 -->
<style>
/* 从主界面复制过来的公共样式 */
@keyframes float {
0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}
}
@keyframes shine {
0%,100%{background-position:0% 50%}100%{background-position:100% 50%}
}
.gold-gradient {
background:linear-gradient(90deg,#FFD700,#FFEC8B,#FFD700);
background-size:200% 100%;
animation:shine 3s linear infinite;
}
.float-animation { animation: float 6s ease-in-out infinite; }
.bank-card {
transform-style: preserve-3d;
transition: all 0.5s ease;
}
.bank-card:hover {
transform: rotateY(15deg) rotateX(5deg);
box-shadow: 0 20px 30px rgba(255, 215, 0, 0.4);
}
.yin-yang {
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background: linear-gradient(90deg, #000 50%, #fff 50%);
}
.yin-yang::before, .yin-yang::after {
content: '';
position: absolute;
border-radius: 50%;
animation: rotate 10s linear infinite;
}
.yin-yang::before {
width: 50px;
height: 50px;
background: #000;
border: 15px solid #fff;
top: 0;
left: 25px;
}
.yin-yang::after {
width: 50px;
height: 50px;
background: #fff;
border: 15px solid #000;
bottom: 0;
left: 25px;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.ghost {
position: relative;
width: 80px;
height: 100px;
background: rgba(255, 255, 255, 0.8);
border-radius: 50% 50% 0 0;
animation: ghostFloat 4s ease-in-out infinite;
}
.ghost::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: #000;
border-radius: 50%;
top: 40px;
left: 20px;
box-shadow: 30px 0 0 #000;
}
.ghost::after {
content: '';
position: absolute;
width: 60px;
height: 30px;
border-radius: 0 0 50% 50%;
background: rgba(255, 255, 255, 0.8);
top: 80px;
left: 10px;
}
@keyframes ghostFloat {
0%,100%{transform:translateY(0)}50%{transform:translateY(-15px)}
}
.fade-in {
animation: fadeIn 1.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* 整合样式 */
.login-box {
background: rgba(20, 20, 20, 0.95);
border: 1px solid #d4af37;
border-radius: 4px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
width: 220px;
position: fixed;
top: 100px;
right: 20px;
z-index: 1000;
}
.login-tit {
background: #d4af37;
color: #000;
padding: 10px;
font-weight: bold;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}
.login-close {
cursor: pointer;
font-size: 18px;
}
.login-list ul {
list-style: none;
}
.login-list ul li {
padding: 10px 15px;
border-bottom: 1px solid #333;
}
.login-list ul li:last-child {
border-bottom: none;
}
.login-list ul li a {
color: #e0d0a0;
text-decoration: none;
display: block;
padding-left: 25px;
position: relative;
transition: all 0.3s;
}
.login-list ul li a:before {
content: "»";
position: absolute;
left: 0;
color: #d4af37;
}
.login-list ul li a:hover {
color: #d4af37;
padding-left: 30px;
}
.news-section {
background: rgba(10, 10, 10, 0.9);
border-top: 2px solid #d4af37;
padding: 20px;
margin: 40px auto;
max-width: 1200px;
border-radius: 8px;
}
.news-title {
color: #d4af37;
font-size: 24px;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #333;
display: flex;
justify-content: space-between;
align-items: center;
}
.news-lists {
color: #e0d0a0;
padding: 12px 0;
border-bottom: 1px dashed #444;
}
.news-lists a {
color: #d4af37;
text-decoration: none;
transition: all 0.3s;
display: block;
}
.news-lists a:hover {
color: #ffec8b;
padding-left: 5px;
}
.btn-more {
color: #d4af37;
text-decoration: none;
float: right;
margin-top: 10px;
transition: all 0.3s;
}
.btn-more:hover {
color: #ffec8b;
}
.services-section {
background: rgba(10, 10, 10, 0.9);
border: 1px solid #d4af37;
padding: 30px 20px;
margin: 40px auto;
max-width: 1200px;
border-radius: 8px;
}
.services-title {
color: #d4af37;
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-item {
background: rgba(20, 20, 20, 0.8);
padding: 20px;
border-radius: 8px;
text-align: center;
transition: all 0.3s;
}
.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.service-icon {
font-size: 40px;
color: #d4af37;
margin-bottom: 15px;
}
.service-name {
font-weight: bold;
color: #d4af37;
margin-bottom: 10px;
font-size: 18px;
}
.service-desc {
color: #e0d0a0;
font-size: 14px;
}
.feature-box {
transition: all 0.3s ease;
}
.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
@media (max-width: 768px) {
.login-box {
top: 80px;
right: 10px;
width: 180px;
}
.news-section, .services-section {
margin: 20px 10px;
}
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<!-- 浮动幽灵背景 -->
<div class="fixed inset-0 overflow-hidden pointer-events-none z-0">
<div class="ghost absolute top-1/4 left-1/6 opacity-30" style="animation-delay: 0.5s;"></div>
<div class="ghost absolute top-1/3 right-1/5 opacity-20" style="animation-delay: 1s;"></div>
<div class="ghost absolute bottom-1/4 left-1/4 opacity-25" style="animation-delay: 1.5s;"></div>
<div class="ghost absolute bottom-1/3 right-1/6 opacity-15" style="animation-delay: 2s;"></div>
</div>
<!-- 登录框 -->
<div class="login-box">
<div class="login-tit">
天地银行服务通道
</div>
<div class="login-list">
<ul>
<li><a href="./personal-login.html" title="个人客户登录">个人客户登录</a></li>
<li><a href="./family-login.html" title="家族账户登录">家族账户登录</a></li>
<li><a href="./underworld-login.html" title="地府机构登录">地府机构登录</a></li>
<li><a href="./afterlife-service.html" title="往生者服务">往生者服务</a></li>
<li><a href="./currency-exchange.html" title="冥币兑换">冥币兑换</a></li>
<li><a href="./yin-yang-transfer.html" title="阴阳转账">阴阳转账</a></li>
</ul>
</div>
</div>
<!-- 导航栏 -->
<header class="gold-gradient py-6 shadow-lg relative z-10">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center justify-between">
<div class="flex items-center mb-4 md:mb-0">
<div class="yin-yang mr-4"></div>
<h1 class="text-3xl md:text-4xl font-bold text-black">
天地银行 <span class="text-sm block md:inline">阴阳两界金融服务</span>
</h1>
</div>
<nav class="flex space-x-1 md:space-x-4">
<a href="./index.html" class="px-3 py-2 rounded-lg bg-black bg-opacity-20 hover:bg-opacity-40 transition text-black font-semibold">首页</a>
<a href="#services" class="px-3 py-2 rounded-lg bg-black bg-opacity-20 hover:bg-opacity-40 transition text-black font-semibold">服务项目</a>
<a href="#about" class="px-3 py-2 rounded-lg bg-black bg-opacity-20 hover:bg-opacity-40 transition text-black font-semibold">关于我们</a>
<a href="#contact" class="px-3 py-2 rounded-lg bg-black bg-opacity-20 hover:bg-opacity-40 transition text-black font-semibold">联系我们</a>
</nav>
</div>
</header>
<!-- 所有服务主体内容 -->
<section id="services" class="py-20 bg-gray-800">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-yellow-400">全部金融服务项目</h2>
<div class="w-24 h-1 bg-yellow-500 mx-auto mb-4"></div>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
天地银行提供跨越阴阳两界的全方位金融服务,满足不同维度的财务需求
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- 服务卡片 1 -->
<a href="./yin-yang-transfer.html" class="service-item">
<div class="service-icon"><i class="fas fa-money-bill-wave"></i></div>
<div class="service-name">阴阳转账</div>
<div class="service-desc">轻松实现现世与冥界之间的资金转移</div>
</a>
<!-- 服务卡片 2 -->
<a href="./underworld-savings.html" class="service-item">
<div class="service-icon"><i class="fas fa-piggy-bank"></i></div>
<div class="service-name">冥界储蓄</div>
<div class="service-desc">专为冥界设计的储蓄方案,利率远高于人间银行</div>
</a>
<!-- 服务卡片 3 -->
<a href="./ancestor-loan.html" class="service-item">
<div class="service-icon"><i class="fas fa-hand-holding-usd"></i></div>
<div class="service-name">祖先贷款</div>
<div class="service-desc">向已故祖先申请贷款,以冥界资产担保</div>
</a>
<!-- 服务卡片 4 -->
<a href="./yin-yang-insurance.html" class="service-item">
<div class="service-icon"><i class="fas fa-shield-alt"></i></div>
<div class="service-name">阴阳保险</div>
<div class="service-desc">全面保障阴阳两界资产安全</div>
</a>
<!-- 服务卡片 5 -->
<a href="./open-account.html" class="service-item">
<div class="service-icon"><i class="fas fa-university"></i></div>
<div class="service-name">开设账户</div>
<div class="service-desc">为阴阳客户提供专属金融账户</div>
</a>
<!-- 服务卡片 6 -->
<a href="./personal-login.html" class="service-item">
<div class="service-icon"><i class="fas fa-user-circle"></i></div>
<div class="service-name">个人客户登录</div>
<div class="service-desc">阳间用户访问您的阴阳账户</div>
</a>
<!-- 服务卡片 7 -->
<a href="./family-login.html" class="service-item">
<div class="service-icon"><i class="fas fa-users"></i></div>
<div class="service-name">家族账户登录</div>
<div class="service-desc">家族成员共享的阴阳账户系统</div>
</a>
<!-- 服务卡片 8 -->
<a href="./underworld-login.html" class="service-item">
<div class="service-icon"><i class="fas fa-building"></i></div>
<div class="service-name">地府机构登录</div>
<div class="service-desc">地府单位专用账户访问入口</div>
</a>
<!-- 服务卡片 9 -->
<a href="./afterlife-service.html" class="service-item">
<div class="service-icon"><i class="fas fa-skull-crossbones"></i></div>
<div class="service-name">往生者服务</div>
<div class="service-desc">为已故人士提供专属金融支持</div>
</a>
<!-- 服务卡片 10 -->
<a href="./currency-exchange.html" class="service-item">
<div class="service-icon"><i class="fas fa-coins"></i></div>
<div class="service-name">冥币兑换</div>
<div class="service-desc">阳间货币与冥币即时转换</div>
</a>
<!-- 服务卡片 11 -->
<a href="./history.html" class="service-item">
<div class="service-icon"><i class="fas fa-history"></i></div>
<div class="service-name">历史介绍</div>
<div class="service-desc">了解天地银行千年传承</div>
</a>
<!-- 服务卡片 12 -->
<a href="./about.html" class="service-item">
<div class="service-icon"><i class="fas fa-info-circle"></i></div>
<div class="service-name">关于我们</div>
<div class="service-desc">了解更多天地银行背景信息</div>
</a>
<!-- 服务卡片 13 -->
<a href="./news.html" class="service-item">
<div class="service-icon"><i class="fas fa-newspaper"></i></div>
<div class="service-name">新闻列表</div>
<div class="service-desc">查看最新冥府金融动态</div>
</a>
<!-- 服务卡片 14 -->
<a href="./news-detail.html" class="service-item">
<div class="service-icon"><i class="fas fa-newspaper"></i></div>
<div class="service-name">新闻详情</div>
<div class="service-desc">阅读冥界最新政策与通知</div>
</a>
<!-- 服务卡片 15 -->
<a href="./announcements.html" class="service-item">
<div class="service-icon"><i class="fas fa-bullhorn"></i></div>
<div class="service-name">冥府公告</div>
<div class="service-desc">地府最新政策与通知</div>
</a>
<!-- 服务卡片 16 -->
<a href="./ghost-contact.html" class="service-item">
<div class="service-icon"><i class="fas fa-landmark"></i></div>
<div class="service-name">特殊联系方式</div>
<div class="service-desc">查找最近的天地银行联系方式</div>
</a>
<!-- 服务卡片 17 -->
<a href="./branches.html" class="service-item">
<div class="service-icon"><i class="fas fa-chart-line"></i></div>
<div class="service-name">汇率查询</div>
<div class="service-desc">查看实时阴阳货币兑换率</div>
</a>
<!-- 服务卡片 18 -->
<a href="./fees.html" class="service-item">
<div class="service-icon"><i class="fas fa-receipt"></i></div>
<div class="service-name">资费标准</div>
<div class="service-desc">天地银行各项服务费用明细</div>
</a>
</div>
</div>
</section>
<!-- 底部 -->
<footer class="bg-gray-900 py-12 border-t border-gray-800">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<div class="yin-yang mr-4"></div>
<h2 class="text-2xl font-bold text-yellow-500">天地银行</h2>
</div>
<p class="text-gray-500 mt-2">© 618-2023 天地银行 版权所有</p>
</div>
<div class="flex space-x-6">
<a href="./wechat.html" class="text-gray-400 hover:text-yellow-500 transition text-2xl">
<i class="fab fa-weixin"></i>
</a>
<a href="./weibo.html" class="text-gray-400 hover:text-yellow-500 transition text-2xl">
<i class="fab fa-weibo"></i>
</a>
<a href="./qq.html" class="text-gray-400 hover:text-yellow-500 transition text-2xl">
<i class="fab fa-qq"></i>
</a>
<a href="./ghost-contact.html" class="text-gray-400 hover:text-yellow-500 transition text-2xl">
<i class="fas fa-ghost"></i>
</a>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-500">
<p>重要提示:天地银行受天庭金融管理局和地府财政司共同监管,存款安全有保障。</p>
<p class="mt-2">冥币与人民币兑换汇率每日浮动,请以当日阎王殿公告为准。</p>
</div>
</div>
</footer>
<!-- 快捷按钮 -->
<div class="fixed bottom-8 right-8 z-50">
<a href="./online-service.html" class="bg-yellow-500 hover:bg-yellow-600 text-black w-14 h-14 rounded-full flex items-center justify-center shadow-lg transform transition hover:scale-110">
<i class="fas fa-ghost text-2xl"></i>
</a>
</div>
<!-- 脚本 -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const fadeElements = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
}
});
}, { threshold: 0.1 });
fadeElements.forEach(el => {
el.style.opacity = 0;
observer.observe(el);
});
// Login close button
const closeBtn = document.querySelector('.login-close');
if (closeBtn) {
closeBtn.addEventListener('click', function() {
this.closest('.login-box').style.display = 'none';
});
}
});
</script>
</body>
</html>