-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
executable file
·176 lines (175 loc) · 11.1 KB
/
pricing.html
File metadata and controls
executable file
·176 lines (175 loc) · 11.1 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>授权方案 - Walminer</title>
<link rel="icon" type="image/jpeg" href="image/logo.jpg">
<style>
:root {
--bg-primary: #0a0a0a;
--bg-secondary: rgba(20, 20, 20, 0.9);
--bg-card: rgba(255, 255, 255, 0.03);
--bg-card-hover: rgba(255, 255, 255, 0.05);
--border-color: rgba(255, 255, 255, 0.08);
--border-light: rgba(255, 255, 255, 0.1);
--text-primary: #e4e4e7;
--text-secondary: #a1a1aa;
--text-muted: #71717a;
--text-title: #f4f4f5;
--text-gradient-start: #fafafa;
--text-gradient-end: #a1a1aa;
--grid-opacity: 0.1;
--orb-opacity: 0.5;
}
body.light-mode {
--bg-primary: #ffffff;
--bg-secondary: rgba(255, 255, 255, 0.95);
--bg-card: rgba(0, 0, 0, 0.02);
--bg-card-hover: rgba(0, 0, 0, 0.04);
--border-color: rgba(0, 0, 0, 0.08);
--border-light: rgba(0, 0, 0, 0.1);
--text-primary: #18181b;
--text-secondary: #52525b;
--text-muted: #71717a;
--text-title: #27272a;
--text-gradient-start: #18181b;
--text-gradient-end: #52525b;
--grid-opacity: 0.06;
--orb-opacity: 0.3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; transition: background 0.3s, color 0.3s; }
.grid-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(120, 119, 198, var(--grid-opacity)) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 119, 198, var(--grid-opacity)) 1px, transparent 1px); background-size: 50px 50px; animation: gridMove 20s linear infinite; pointer-events: none; z-index: 0; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 50px 50px; } }
.orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: var(--orb-opacity); pointer-events: none; z-index: 1; transition: opacity 0.3s; }
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, #6366f1 0%, transparent 70%); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); bottom: 10%; left: -100px; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
nav { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100; width: 1200px; max-width: calc(100vw - 40px); padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-secondary); backdrop-filter: blur(20px); border: 1px solid var(--border-light); border-radius: 50px; box-shadow: 0 8px 32px var(--shadow-color); transition: background 0.3s, border-color 0.3s; }
.logo { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.theme-toggle { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-light); background: var(--bg-card); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s; }
.theme-toggle:hover { background: var(--bg-card-hover); transform: scale(1.05); }
.container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 150px 30px 80px; }
.header { text-align: center; margin-bottom: 60px; }
.header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; background: linear-gradient(135deg, var(--text-gradient-start), var(--text-gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.header p { color: var(--text-muted); font-size: 1.1rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 60px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 35px; position: relative; transition: all 0.3s; }
.pricing-card.featured { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); border-color: rgba(99, 102, 241, 0.3); }
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.4); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #6366f1, #8b5cf6); padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; color: white; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-title); }
.pricing-price { font-size: 2.5rem; font-weight: 800; margin: 20px 0; }
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin: 25px 0; }
.pricing-features li { padding: 10px 0; color: var(--text-secondary); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: #10b981; font-weight: bold; }
.pricing-btn { width: 100%; padding: 12px; border-radius: 10px; text-align: center; font-weight: 500; transition: all 0.3s; text-decoration: none; display: block; }
.pricing-btn.primary { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: white; border: none; }
.pricing-btn.secondary { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-primary); }
.pricing-btn:hover { transform: translateY(-2px); }
.contact-box { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 20px; padding: 40px; text-align: center; }
.contact-box h3 { font-size: 1.5rem; margin-bottom: 15px; }
.contact-info { display: flex; justify-content: center; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); }
.note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 30px; padding: 20px; background: var(--bg-card); border-radius: 12px; }
footer { border-top: 1px solid var(--border-light); padding: 40px 20px; text-align: center; color: var(--text-muted); }
@media (max-width: 768px) {
nav { padding: 15px 20px; }
.container { padding: 150px 20px 60px; }
.header h1 { font-size: 1.8rem; }
.pricing-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="grid-bg"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<nav>
<a href="index.html" class="logo">Walminer</a>
<div class="nav-links">
<a href="index.html">首页</a>
<a href="faq.html">常见问题</a>
<button class="theme-toggle" id="themeToggle" title="切换主题">🌙</button>
</div>
</nav>
<div class="container">
<div class="header">
<h1>授权方案</h1>
<p>选择适合您的授权类型,开启专业的 PostgreSQL WAL 解析体验</p>
</div>
<div class="pricing-grid">
<div class="pricing-card">
<h3>限时版</h3>
<div class="pricing-price">999<span>元</span></div>
<ul class="pricing-features">
<li>全功能一周限时</li>
<li>无解析限速</li>
<li>开放任意场景使用</li>
</ul>
<a href="#contact" class="pricing-btn secondary">获取授权</a>
</div>
<div class="pricing-card">
<h3>企业版-DB绑定</h3>
<div class="pricing-price">2999<span>元</span></div>
<ul class="pricing-features">
<li>永久使用授权</li>
<li>绑定数据库 ID</li>
<li>提供专业咨询</li>
</ul>
<a href="#contact" class="pricing-btn secondary">获取授权</a>
</div>
<div class="pricing-card featured">
<div class="pricing-badge">推荐</div>
<h3>企业版-机器绑定</h3>
<div class="pricing-price">4999<span>元</span></div>
<ul class="pricing-features">
<li>永久使用授权</li>
<li>绑定机器 ID</li>
<li>提供专业咨询</li>
</ul>
<a href="#contact" class="pricing-btn primary">获取授权</a>
</div>
</div>
<div class="contact-box" id="contact">
<h3>联系我们</h3>
<p style="color: #a1a1aa;">获取 Walminer 授权、定制功能或大量企业版安装优惠咨询</p>
<div class="contact-info">
<div class="contact-item"><span>📧</span> lchch1990@sina.cn</div>
<div class="contact-item"><span>💬</span> QQ群: 811105058</div>
<div class="contact-item"><span>💬</span> 微信: L974466845</div>
</div>
</div>
</div>
<footer>
<p>Walminer - 专业 PostgreSQL WAL 解析工具</p>
<p style="margin-top: 10px; font-size: 0.85rem;">Copyright 2024</p>
</footer>
<script>
(function() {
const themeToggle = document.getElementById('themeToggle');
const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)');
const currentTheme = localStorage.getItem('theme');
let isDark = currentTheme === 'dark' || (!currentTheme && prefersDarkScheme.matches);
function applyTheme(dark) {
if (dark) {
document.body.classList.remove('light-mode');
themeToggle.textContent = '🌙';
localStorage.setItem('theme', 'dark');
} else {
document.body.classList.add('light-mode');
themeToggle.textContent = '☀️';
localStorage.setItem('theme', 'light');
}
}
applyTheme(isDark);
themeToggle.addEventListener('click', function() { isDark = !isDark; applyTheme(isDark); });
})();
</script>
</body>
</html>