-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfees.html
More file actions
383 lines (374 loc) · 14.4 KB
/
fees.html
File metadata and controls
383 lines (374 loc) · 14.4 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
<!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 class="py-20"> <div class="container mx-auto px-4"> <h2 class="text-3xl font-bold mb-10 text-yellow-400">天地银行服务资费标准</h2> <div class="bg-gray-800 p-8 rounded-xl max-w-3xl mx-auto"> <table class="w-full text-left text-gray-300"> <thead> <tr class="border-b border-gray-700"> <th class="pb-4">服务项目</th> <th class="pb-4">费用</th> </tr> </thead> <tbody> <tr class="border-b border-gray-700"> <td class="py-4">开户手续费</td> <td class="py-4">100阳间元 / 10,000,000冥币</td> </tr> <tr> <td class="py-4">阴阳转账</td> <td class="py-4">转账金额的0.5%</td> </tr> </tbody> </table> </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>