439 lines
18 KiB
HTML
439 lines
18 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>价格方案 - 听泉科技</title>
|
||
<link rel="stylesheet" href="css/style.css">
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||
<style>
|
||
.pricing-section {
|
||
padding: 160px 0 80px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.pricing-tabs {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 2rem;
|
||
margin: 3rem 0;
|
||
}
|
||
.pricing-tab {
|
||
padding: 1rem 2rem;
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 0.75rem;
|
||
cursor: pointer;
|
||
background: var(--glass-background);
|
||
backdrop-filter: blur(10px);
|
||
-webkit-backdrop-filter: blur(10px);
|
||
transition: all 0.3s ease;
|
||
font-weight: 500;
|
||
}
|
||
.pricing-tab.active {
|
||
background: var(--gradient-1);
|
||
color: white;
|
||
border-color: transparent;
|
||
}
|
||
.pricing-tab:hover:not(.active) {
|
||
border-color: var(--primary-color);
|
||
transform: translateY(-2px);
|
||
}
|
||
.pricing-content {
|
||
display: none;
|
||
}
|
||
.pricing-content.active {
|
||
display: block;
|
||
animation: fadeIn 0.5s ease;
|
||
}
|
||
@keyframes fadeIn {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
.pricing-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
gap: 2rem;
|
||
margin-top: 2rem;
|
||
}
|
||
.pricing-card {
|
||
background: var(--glass-background);
|
||
backdrop-filter: blur(10px);
|
||
-webkit-backdrop-filter: blur(10px);
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 1.5rem;
|
||
padding: 3rem 2rem;
|
||
text-align: center;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.pricing-card::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: var(--gradient-1);
|
||
opacity: 0;
|
||
transition: opacity 0.3s ease;
|
||
z-index: 0;
|
||
}
|
||
.pricing-card:hover {
|
||
transform: translateY(-10px);
|
||
box-shadow: var(--shadow-xl);
|
||
}
|
||
.pricing-card:hover::before {
|
||
opacity: 0.05;
|
||
}
|
||
.pricing-card.popular {
|
||
border: 2px solid transparent;
|
||
background-image: linear-gradient(var(--glass-background), var(--glass-background)), var(--gradient-1);
|
||
background-origin: border-box;
|
||
background-clip: padding-box, border-box;
|
||
position: relative;
|
||
}
|
||
.popular-tag {
|
||
position: absolute;
|
||
top: 1rem;
|
||
right: 1rem;
|
||
background: var(--gradient-1);
|
||
color: white;
|
||
padding: 0.5rem 1rem;
|
||
border-radius: 2rem;
|
||
font-size: 0.875rem;
|
||
font-weight: 500;
|
||
}
|
||
.pricing-card h3 {
|
||
font-size: 1.8rem;
|
||
margin-bottom: 1rem;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.pricing-card .price {
|
||
font-size: 3rem;
|
||
font-weight: bold;
|
||
margin: 1.5rem 0;
|
||
background: var(--gradient-1);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.pricing-card .price small {
|
||
font-size: 1rem;
|
||
font-weight: normal;
|
||
}
|
||
.pricing-card ul {
|
||
list-style: none;
|
||
margin: 2rem 0;
|
||
text-align: left;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.pricing-card ul li {
|
||
margin-bottom: 1rem;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.75rem;
|
||
}
|
||
.pricing-card ul li i {
|
||
color: var(--primary-color);
|
||
font-size: 1.2rem;
|
||
}
|
||
.pricing-card .btn {
|
||
width: 100%;
|
||
justify-content: center;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.pricing-note {
|
||
text-align: center;
|
||
margin-top: 4rem;
|
||
padding: 2rem;
|
||
background: var(--glass-background);
|
||
backdrop-filter: blur(10px);
|
||
-webkit-backdrop-filter: blur(10px);
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 1.5rem;
|
||
}
|
||
.pricing-note h3 {
|
||
font-size: 1.5rem;
|
||
margin-bottom: 1rem;
|
||
background: var(--gradient-1);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.pricing-tabs {
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
.pricing-tab {
|
||
text-align: center;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="overlay"></div>
|
||
<!-- 导航栏 -->
|
||
<header>
|
||
<div class="container">
|
||
<div class="logo">
|
||
<h1>听泉科技</h1>
|
||
</div>
|
||
<nav>
|
||
<ul>
|
||
<li><a href="index.html">首页</a></li>
|
||
<li><a href="products.html">产品</a></li>
|
||
<li><a href="pricing.html" class="active">价格</a></li>
|
||
<li><a href="contact.html">联系我们</a></li>
|
||
</ul>
|
||
</nav>
|
||
<button class="menu-button">
|
||
<span class="menu-icon"></span>
|
||
</button>
|
||
</div>
|
||
</header>
|
||
|
||
<section class="pricing-section">
|
||
<div class="container">
|
||
<h2 class="section-title">价格方案</h2>
|
||
|
||
<div class="pricing-tabs">
|
||
<div class="pricing-tab active" data-target="tingquan">听泉助手</div>
|
||
<div class="pricing-tab" data-target="cursor">Cursor账号池API</div>
|
||
</div>
|
||
|
||
<!-- 听泉助手价格 -->
|
||
<div class="pricing-content active" id="tingquan">
|
||
<div class="pricing-grid">
|
||
<div class="pricing-card">
|
||
<h3>天卡</h3>
|
||
<div class="price">¥2.9<small>/天</small></div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 24小时无限使用</li>
|
||
<li><i class="fas fa-check-circle"></i> 全球动态IP支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 基础技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合短期体验</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
|
||
<div class="pricing-card popular">
|
||
<div class="popular-tag">最受欢迎</div>
|
||
<h3>周卡</h3>
|
||
<div class="price">¥12.9<small>/周</small></div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 7天无限使用</li>
|
||
<li><i class="fas fa-check-circle"></i> 全球动态IP支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 优先技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 每天仅需¥1.8</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合项目开发</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
|
||
<div class="pricing-card">
|
||
<h3>月卡</h3>
|
||
<div class="price">¥42.8<small>/月</small></div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 30天无限使用</li>
|
||
<li><i class="fas fa-check-circle"></i> 全球动态IP支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 24小时技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 每天仅需¥1.4</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合长期使用</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Cursor账号池API价格 -->
|
||
<div class="pricing-content" id="cursor">
|
||
<div class="pricing-grid">
|
||
<div class="pricing-card">
|
||
<h3>免费版</h3>
|
||
<div class="price">免费</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 每日免费使用1次</li>
|
||
<li><i class="fas fa-check-circle"></i> 需运行我们的开源项目</li>
|
||
<li><i class="fas fa-check-circle"></i> 社区技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合个人学习使用</li>
|
||
</ul>
|
||
<a href="https://github.com/maticarmy/free_cursor_pro.git" target="_blank" class="btn btn-primary">
|
||
<i class="fab fa-github"></i> 开始使用
|
||
</a>
|
||
</div>
|
||
|
||
<div class="pricing-card">
|
||
<h3>体验版</h3>
|
||
<div class="price">¥10</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 10元测试额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 等同于10次使用额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 基础技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合功能体验</li>
|
||
</ul>
|
||
<a href="javascript:void(0)" onclick="showWechatModal()" class="btn btn-primary">联系开通</a>
|
||
</div>
|
||
|
||
<div class="pricing-card">
|
||
<h3>基础版</h3>
|
||
<div class="price">¥100</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 100次使用额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 单价1.00元/次</li>
|
||
<li><i class="fas fa-check-circle"></i> 基础技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合个人开发者</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
|
||
<div class="pricing-card">
|
||
<h3>进阶版</h3>
|
||
<div class="price">¥800</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 1000次使用额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 单价0.80元/次</li>
|
||
<li><i class="fas fa-check-circle"></i> 8折优惠</li>
|
||
<li><i class="fas fa-check-circle"></i> 技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合小型团队</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
|
||
<div class="pricing-card">
|
||
<h3>专业版</h3>
|
||
<div class="price">¥3500</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 5000次使用额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 单价0.70元/次</li>
|
||
<li><i class="fas fa-check-circle"></i> 7折优惠</li>
|
||
<li><i class="fas fa-check-circle"></i> 优先技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合中型团队</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
|
||
<div class="pricing-card popular">
|
||
<div class="popular-tag">性价比最高</div>
|
||
<h3>企业版</h3>
|
||
<div class="price">¥6000</div>
|
||
<ul>
|
||
<li><i class="fas fa-check-circle"></i> 10000次使用额度</li>
|
||
<li><i class="fas fa-check-circle"></i> 单价0.60元/次</li>
|
||
<li><i class="fas fa-check-circle"></i> 6折优惠</li>
|
||
<li><i class="fas fa-check-circle"></i> 7*24小时技术支持</li>
|
||
<li><i class="fas fa-check-circle"></i> 适合大型企业</li>
|
||
</ul>
|
||
<a href="https://shop.taobao.com/" target="_blank" class="btn btn-primary">立即购买</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div style="margin-top: 2rem; padding: 1.5rem; background: rgba(79, 70, 229, 0.1); border-radius: 1rem;">
|
||
<h3 style="color: #4F46E5;">开始使用</h3>
|
||
<div style="margin-top: 1rem; line-height: 1.6;">
|
||
<p><i class="fas fa-gift"></i> <strong>免费体验:</strong>运行我们的开源项目即可每天免费使用1次,适合个人学习使用。</p>
|
||
<p><i class="fas fa-rocket"></i> <strong>快速测试:</strong>联系客服开通10元测试额度,体验完整功能。</p>
|
||
<p><i class="fas fa-crown"></i> <strong>正式使用:</strong>选择适合您的套餐,享受完整的服务支持。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="pricing-note">
|
||
<h3>灵活的价格方案</h3>
|
||
<p>我们提供多种价格方案以满足不同需求,您可以随时升级或降级您的计划。如果您需要更多定制化的解决方案,请联系我们的销售团队。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 页脚 -->
|
||
<footer>
|
||
<div class="container">
|
||
<div class="footer-grid">
|
||
<div class="footer-col">
|
||
<h3>听泉科技</h3>
|
||
<p>专注于智能软件解决方案</p>
|
||
</div>
|
||
<div class="footer-col">
|
||
<h3>快速链接</h3>
|
||
<ul>
|
||
<li><a href="index.html">首页</a></li>
|
||
<li><a href="products.html">产品</a></li>
|
||
<li><a href="pricing.html">价格</a></li>
|
||
<li><a href="contact.html">联系我们</a></li>
|
||
<li><a href="api-docs.html">API文档</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="footer-col">
|
||
<h3>联系我们</h3>
|
||
<p><i class="fas fa-envelope"></i> maticarmy@gmail.com</p>
|
||
<div class="social-links">
|
||
<a href="https://github.com/maticarmy/free_cursor_pro.git" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
|
||
<a href="javascript:void(0)" onclick="showWechatModal()" title="微信"><i class="fab fa-weixin"></i></a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="copyright">
|
||
<p>© 2024 听泉科技. 保留所有权利.</p>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
<!-- 微信弹窗 -->
|
||
<div id="wechatModal" class="modal" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000;">
|
||
<div style="position: relative; background: white; max-width: 400px; margin: 100px auto; padding: 2rem; border-radius: 1rem; text-align: center;">
|
||
<span onclick="closeWechatModal()" style="position: absolute; right: 1rem; top: 1rem; cursor: pointer; font-size: 1.5rem;">×</span>
|
||
<img src="img/wechat_qr.png" alt="微信二维码" style="width: 200px; border-radius: 0.5rem;">
|
||
<p style="margin-top: 1rem; font-weight: bold;">
|
||
<i class="fab fa-weixin"></i> 微信号:behikcigar
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="js/main.js"></script>
|
||
<script>
|
||
// 价格标签切换
|
||
const tabs = document.querySelectorAll('.pricing-tab');
|
||
const contents = document.querySelectorAll('.pricing-content');
|
||
|
||
tabs.forEach(tab => {
|
||
tab.addEventListener('click', () => {
|
||
// 移除所有active类
|
||
tabs.forEach(t => t.classList.remove('active'));
|
||
contents.forEach(c => c.classList.remove('active'));
|
||
|
||
// 添加active类到当前选中的标签
|
||
tab.classList.add('active');
|
||
document.getElementById(tab.dataset.target).classList.add('active');
|
||
});
|
||
});
|
||
|
||
// 微信弹窗功能
|
||
function showWechatModal() {
|
||
document.getElementById('wechatModal').style.display = 'block';
|
||
document.body.style.overflow = 'hidden';
|
||
}
|
||
|
||
function closeWechatModal() {
|
||
document.getElementById('wechatModal').style.display = 'none';
|
||
document.body.style.overflow = 'auto';
|
||
}
|
||
|
||
// 点击空白处关闭弹窗
|
||
document.getElementById('wechatModal').addEventListener('click', function(e) {
|
||
if (e.target === this) {
|
||
closeWechatModal();
|
||
}
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |