update folder name

This commit is contained in:
2025-08-25 15:18:47 +08:00
parent 7f7bb6d8bb
commit f8976ee045
10 changed files with 1 additions and 1 deletions

View File

@@ -1,41 +0,0 @@
{% extends "base.html" %}
{% block title %}关于我们{% endblock %}
{% block content %}
<section class="about">
<div class="container">
<h2>关于捌壹智能</h2>
<p>{{ company.about }}</p>
<h3>我们的使命</h3>
<p>通过创新技术推动企业数字化转型,为客户创造长期价值。</p>
<h3>我们的愿景</h3>
<p>成为全球领先的数字技术解决方案提供商,用科技改变世界。</p>
</div>
</section>
<section class="team">
<div class="container">
<h2>领导团队</h2>
<div class="team-grid">
<div class="team-member">
<h3>张明</h3>
<p class="position">创始人 & CEO</p>
<p>人工智能专家拥有15年行业经验。</p>
</div>
<div class="team-member">
<h3>李华</h3>
<p class="position">技术总监</p>
<p>大数据和云计算领域专家。</p>
</div>
<div class="team-member">
<h3>王芳</h3>
<p class="position">市场总监</p>
<p>数字营销和品牌战略专家。</p>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,102 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ company.name }} - {% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1>
<a href="{{ url_for('index') }}" class="logo">
<img src="{{ url_for('static', filename='images/logo1.png') }}" alt="{{ t('company_name') }}"
class="logo-img">
<!-- {{ t('company_name') }} -->
</a>
</h1>
<button class="mobile-menu-toggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<nav class="nav-menu">
<ul>
<li><a href="{{ url_for('index') }}">{{ t('home') }}</a></li>
<li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li>
<li><a href="{{ url_for('pricing') }}">{{ t('pricing') if t('pricing') else '收费' }}</a></li>
<li><a href="{{ url_for('download') }}">{{ t('download') if t('download') else '下载' }}</a></li>
<li><a href="{{ url_for('help') }}">{{ t('help') if t('help') else '帮助' }}</a></li>
<li><a href="{{ url_for('contact') }}">{{ t('contact') }}</a></li>
<li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li>
</ul>
<div class="language-switcher">
<select id="language-dropdown" onchange="changeLanguage(this.value)">
<option value="" disabled selected>{{ t('language') if t('language') else 'Language' }}</option>
{% for lang_code, lang_name in languages.items() %}
<option value="{{ lang_code }}" {% if lang==lang_code %}selected{% endif %}>{{ lang_name }}
</option>
{% endfor %}
</select>
</div>
</nav>
</div>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
<div class="container">
<div class="footer-brand">
<h3>{{ t('company_name') }}</h3>
<p>{{ t('slogan') }}</p>
</div>
<div class="footer-links">
<h4>{{ t('quick_links') if t('quick_links') else '快速链接' }}</h4>
<ul>
<li><a href="{{ url_for('index') }}">{{ t('home') }}</a></li>
<li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li>
<li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li>
<li><a href="{{ url_for('contact') }}">{{ t('contact') }}</a></li>
</ul>
</div>
<div class="footer-links">
<h4>{{ t('services') }}</h4>
<ul>
{% for service in company.services %}
<li><a href="{{ url_for('services') }}">{{ service.name }}</a></li>
{% endfor %}
</ul>
</div>
<div class="footer-links">
<h4>{{ t('contact_us') if t('contact_us') else '联系我们' }}</h4>
<ul>
<li>{{ company.contact.address }}</li>
<li>{{ t('tel') }}: {{ company.contact.Tel }}</li>
<li>{{ t('fax') }}: {{ company.contact.Fax }}</li>
<li>{{ t('email') }}: {{ company.contact.Email }}</li>
</ul>
</div>
<div class="footer-bottom">
<p>&copy; 2024 {{ company.name }}. {{ t('all_rights_reserved') }}</p>
<div class="footer-links">
<a href="#">{{ t('privacy_policy') }}</a>
<a href="#">{{ t('terms_of_use') }}</a>
</div>
</div>
</div>
</footer>
<script src="{{ url_for('static', filename='js/mobile-menu.js') }}"></script>
<script src="{{ url_for('static', filename='js/tabs.js') }}"></script>
<script src="{{ url_for('static', filename='js/market-ticker.js') }}"></script>
</body>
</html>

View File

@@ -1,51 +0,0 @@
{% extends "base.html" %}
{% block title %}联系我们{% endblock %}
{% block content %}
<section class="contact">
<div class="container">
<h2>联系我们</h2>
{% if success %}
<div class="success-message">
<p>感谢您的留言!我们会尽快与您联系。</p>
</div>
{% endif %}
<div class="contact-grid">
<div class="contact-info">
<h3>联系方式</h3>
<p><strong>地址:</strong>{{ company.contact.address }}</p>
<p><strong>电话:</strong>{{ company.contact.Tel }}</p>
<p><strong>邮箱:</strong>{{ company.contact.Email }}</p>
<h3>工作时间</h3>
<p>周一至周五: 9:00 - 18:00</p>
<p>周六至周日: 休息</p>
</div>
<div class="contact-form">
<h3>发送消息</h3>
<form method="POST" action="{{ url_for('contact') }}">
<div class="form-group">
<label for="name">姓名</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">邮箱</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">消息</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">发送消息</button>
</form>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,87 +0,0 @@
{% extends "base.html" %}
{% block title %}{{ t('download') if t('download') else '下载' }}{% endblock %}
{% block content %}
<section class="hero">
<div class="container">
<h2>{{ t('download_clients') if t('download_clients') else '客户端下载' }}</h2>
<p>{{ t('download_description') if t('download_description') else '下载我们的客户端,体验更便捷的服务' }}</p>
</div>
</section>
<section class="services">
<div class="container">
<div class="section-title">
<h2>{{ t('available_downloads') if t('available_downloads') else '可用下载' }}</h2>
<p>{{ t('choose_platform') if t('choose_platform') else '选择适合您设备的客户端版本' }}</p>
</div>
<div class="feature-grid">
<div class="feature">
<div class="feature-icon">💻</div>
<h3>{{ t('pc_client') if t('pc_client') else '电脑客户端' }}</h3>
<p>{{ t('pc_client_desc') if t('pc_client_desc') else '适用于Windows系统的桌面客户端提供完整功能体验' }}</p>
<a href="{{ url_for('serve_download_file', filename='pc_client_setup_v2.1.0.exe') }}" class="btn"
download>{{ t('download_now') if t('download_now') else '立即下载' }}</a>
<div class="download-info">
<p><strong>{{ t('version') if t('version') else '版本' }}:</strong> v2.1.0</p>
<p><strong>{{ t('file_size') if t('file_size') else '文件大小' }}:</strong> 85.6 MB</p>
<p><strong>{{ t('system_requirements') if t('system_requirements') else '系统要求' }}:</strong> Windows
10+</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">📱</div>
<h3>{{ t('android_client') if t('android_client') else '安卓手机客户端' }}</h3>
<p>{{ t('android_client_desc') if t('android_client_desc') else '适用于Android手机的移动客户端随时随地管理您的账户' }}</p>
<a href="{{ url_for('serve_download_file', filename='hkfuze-online-release_4.60.0_2025-06-20.apk') }}"
class="btn" download>{{ t('download_now') if t('download_now') else '立即下载' }}</a>
<div class="download-info">
<p><strong>{{ t('version') if t('version') else '版本' }}:</strong> v4.60.0</p>
<p><strong>{{ t('file_size') if t('file_size') else '文件大小' }}:</strong> 103.2 MB</p>
<p><strong>{{ t('system_requirements') if t('system_requirements') else '系统要求' }}:</strong> Android
8.0+</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">🖼️</div>
<h3>{{ t('image_download') if t('image_download') else '图片下载' }}</h3>
<p>{{ t('image_download_desc') if t('image_download_desc') else '下载公司标志或相关图片' }}</p>
<a href="{{ url_for('serve_log_file', filename='1024.jpg') }}" class="btn" download>{{
t('download_image')
if t('download_image') else '下载图片' }}</a>
<div class="download-info">
<p><strong>{{ t('file_format') if t('file_format') else '文件格式' }}:</strong> JPG</p>
<p><strong>{{ t('file_size') if t('file_size') else '文件大小' }}:</strong> 约 50 KB</p>
<p><strong>{{ t('resolution') if t('resolution') else '分辨率' }}:</strong> 80x80 pixels</p>
</div>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<div class="section-title">
<h2>{{ t('features') if t('features') else '客户端特色功能' }}</h2>
</div>
<div class="feature-grid">
<div class="feature">
<h3>{{ t('real_time_quotes') if t('real_time_quotes') else '实时行情' }}</h3>
<p>{{ t('real_time_quotes_desc') if t('real_time_quotes_desc') else '提供全球市场的实时行情数据,及时掌握市场动态' }}</p>
</div>
<div class="feature">
<h3>{{ t('secure_transaction') if t('secure_transaction') else '安全交易' }}</h3>
<p>{{ t('secure_transaction_desc') if t('secure_transaction_desc') else '多重加密保护,确保您的交易安全和资金安全' }}</p>
</div>
<div class="feature">
<h3>{{ t('multi_device_sync') if t('multi_device_sync') else '多设备同步' }}</h3>
<p>{{ t('multi_device_sync_desc') if t('multi_device_sync_desc') else '支持电脑和手机客户端数据同步,随时随地继续操作' }}</p>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,87 +0,0 @@
{% extends "base.html" %}
{% block title %}{{ t('help') if t('help') else '帮助' }}{% endblock %}
{% block content %}
<section class="hero">
<div class="container">
<h2>{{ t('help') if t('help') else '帮助中心' }}</h2>
<p>{{ t('help_description') if t('help_description') else '获取使用指南和常见问题解答' }}</p>
</div>
</section>
<section class="services">
<div class="container">
<div class="section-title">
<h2>{{ t('frequently_asked_questions') if t('frequently_asked_questions') else '常见问题' }}</h2>
<p>{{ t('faq_subtitle') if t('faq_subtitle') else '找到您需要的答案' }}</p>
</div>
<div class="feature-grid">
<div class="feature">
<h3>{{ t('faq1_question') if t('faq1_question') else '如何注册账户?' }}</h3>
<p>{{ t('faq1_answer') if t('faq1_answer') else '访问注册页面,填写基本信息并完成身份验证即可创建账户。' }}</p>
</div>
<div class="feature">
<h3>{{ t('faq2_question') if t('faq2_question') else '如何下载客户端?' }}</h3>
<p>{{ t('faq2_answer') if t('faq2_answer') else '在下载页面选择适合您设备的版本,点击下载按钮即可获取安装文件。' }}</p>
</div>
<div class="feature">
<h3>{{ t('faq3_question') if t('faq3_question') else '交易费用如何计算?' }}</h3>
<p>{{ t('faq3_answer') if t('faq3_answer') else '交易费用根据您的套餐类型和交易量计算,具体标准请参考收费页面。' }}</p>
</div>
<div class="feature">
<h3>{{ t('faq4_question') if t('faq4_question') else '如何联系客服?' }}</h3>
<p>{{ t('faq4_answer') if t('faq4_answer') else '您可以通过联系页面提交问题,或直接拨打客服电话获取帮助。' }}</p>
</div>
<div class="feature">
<h3>{{ t('faq5_question') if t('faq5_question') else '支持哪些支付方式?' }}</h3>
<p>{{ t('faq5_answer') if t('faq5_answer') else '我们支持银行转账、信用卡、支付宝和微信支付等多种支付方式。' }}</p>
</div>
<div class="feature">
<h3>{{ t('faq6_question') if t('faq6_question') else '如何查看交易记录?' }}</h3>
<p>{{ t('faq6_answer') if t('faq6_answer') else '登录账户后,在交易记录页面可以查看所有的历史交易明细。' }}</p>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<div class="section-title">
<h2>{{ t('contact_support') if t('contact_support') else '联系支持' }}</h2>
<p>{{ t('support_description') if t('support_description') else '如果您的问题未在常见问题中找到答案,请联系我们的支持团队' }}</p>
</div>
<div class="feature-grid">
<div class="feature">
<div class="feature-icon">📧</div>
<h3>{{ t('email_support') if t('email_support') else '邮件支持' }}</h3>
<p>{{ t('email_support_desc') if t('email_support_desc') else '发送邮件至 Sec.Info@fuzsec.com我们将在24小时内回复' }}
</p>
<a href="mailto:support@fuzsec.com" class="btn">{{ t('send_email') if t('send_email') else '发送邮件' }}</a>
</div>
<div class="feature">
<div class="feature-icon">📞</div>
<h3>{{ t('phone_support') if t('phone_support') else '电话支持' }}</h3>
<p>{{ t('phone_support_desc') if t('phone_support_desc') else '拨打客服热线 +852 35856298工作日9:00-18:00' }}
</p>
<a href="tel:+85235856298" class="btn">{{ t('call_now') if t('call_now') else '立即拨打' }}</a>
</div>
<div class="feature">
<div class="feature-icon">💬</div>
<h3>{{ t('live_chat') if t('live_chat') else '在线聊天' }}</h3>
<p>{{ t('live_chat_desc') if t('live_chat_desc') else '通过网站右下角的聊天窗口与客服实时沟通' }}</p>
<a href="{{ url_for('contact') }}" class="btn">{{ t('start_chat') if t('start_chat') else '开始聊天' }}</a>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,129 +0,0 @@
{% extends "base.html" %}
{% block title %}{{ t('home') }}{% endblock %}
{% block content %}
<!-- Hero Section with Market Ticker -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>{{ t('slogan') }}</h1>
<p class="hero-subtitle">{{ t('hero_subtitle') if t('hero_subtitle') else '专业证券交易与投资平台' }}</p>
<p class="hero-description">{{ t('hero_description') if t('hero_description') else
'提供全球市场股票、期货、期权交易,智能投顾服务,助力您的财富增长' }}</p>
<div class="hero-buttons">
<a href="{{ url_for('download') }}" class="btn btn-primary">{{ t('download_app') if t('download_app')
else '下载客户端' }}</a>
<a href="{{ url_for('services') }}" class="btn btn-outline">{{ t('learn_more') if t('learn_more') else
'了解更多' }}</a>
</div>
</div>
<div class="hero-image">
<div class="market-ticker">
<div class="ticker-header">
<h3>{{ t('market_quotes') if t('market_quotes') else '实时行情' }}</h3>
<span class="refresh-badge">Live</span>
</div>
<div class="ticker-content">
<div class="ticker-item">
<span class="symbol">HSI</span>
<span class="price">16,842.23</span>
<span class="change positive">+1.2%</span>
</div>
<div class="ticker-item">
<span class="symbol">AAPL</span>
<span class="price">173.45</span>
<span class="change positive">+0.8%</span>
</div>
<div class="ticker-item">
<span class="symbol">TSLA</span>
<span class="price">245.67</span>
<span class="change negative">-0.5%</span>
</div>
<div class="ticker-item">
<span class="symbol">BTC/USD</span>
<span class="price">61,234.56</span>
<span class="change positive">+2.1%</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section">
<div class="container">
<div class="section-header">
<h2>{{ t('why_choose_us') if t('why_choose_us') else '为什么选择我们' }}</h2>
<p>{{ t('features_subtitle') if t('features_subtitle') else '专业、安全、便捷的投资体验' }}</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">📈</div>
<h3>{{ t('global_markets') if t('global_markets') else '全球市场' }}</h3>
<p>{{ t('global_markets_desc') if t('global_markets_desc') else '港股、美股、A股、加密货币等多市场交易' }}</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>{{ t('secure_trading') if t('secure_trading') else '安全交易' }}</h3>
<p>{{ t('secure_trading_desc') if t('secure_trading_desc') else '银行级安全防护,资金隔离保障' }}</p>
</div>
<div class="feature-card">
<div class="feature-icon">💡</div>
<h3>{{ t('smart_investing') if t('smart_investing') else '智能投资' }}</h3>
<p>{{ t('smart_investing_desc') if t('smart_investing_desc') else 'AI投顾、智能选股、量化策略' }}</p>
</div>
<div class="feature-card">
<div class="feature-icon">💰</div>
<h3>{{ t('low_fees') if t('low_fees') else '低手续费' }}</h3>
<p>{{ t('low_fees_desc') if t('low_fees_desc') else '零佣金交易,透明收费标准' }}</p>
</div>
</div>
</div>
</section>
<!-- Trading Tools Section -->
<section class="trading-tools">
<div class="container">
<div class="section-header">
<h2>{{ t('trading_tools') if t('trading_tools') else '专业交易工具' }}</h2>
<p>{{ t('trading_tools_subtitle') if t('trading_tools_subtitle') else '丰富的分析工具,助力投资决策' }}</p>
</div>
<div class="tools-grid">
<div class="tool-card">
<h3>{{ t('realtime_charts') if t('realtime_charts') else '实时图表' }}</h3>
<p>{{ t('realtime_charts_desc') if t('realtime_charts_desc') else '多时间周期K线图技术指标分析' }}</p>
</div>
<div class="tool-card">
<h3>{{ t('news_analysis') if t('news_analysis') else '新闻分析' }}</h3>
<p>{{ t('news_analysis_desc') if t('news_analysis_desc') else '实时财经新闻,市场情绪分析' }}</p>
</div>
<div class="tool-card">
<h3>{{ t('portfolio_management') if t('portfolio_management') else '组合管理' }}</h3>
<p>{{ t('portfolio_management_desc') if t('portfolio_management_desc') else '投资组合分析,风险控制工具' }}</p>
</div>
</div>
</div>
</section>
<!-- App Download CTA -->
<section class="app-download">
<div class="container">
<div class="download-content">
<h2>{{ t('download_app_cta') if t('download_app_cta') else '立即下载客户端' }}</h2>
<p>{{ t('download_app_desc') if t('download_app_desc') else '随时随地交易,把握投资机会' }}</p>
<div class="download-buttons">
<a href="{{ url_for('download') }}" class="btn btn-primary">
<span class="icon">📱</span>
{{ t('mobile_app') if t('mobile_app') else '手机客户端' }}
</a>
<a href="{{ url_for('download') }}" class="btn btn-outline">
<span class="icon">💻</span>
{{ t('desktop_app') if t('desktop_app') else '电脑客户端' }}
</a>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,40 +0,0 @@
{% extends "base.html" %}
{% block content %}
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title text-center mb-4">Login</h3>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endif %}
{% endwith %}
<form method="POST" action="{{ url_for('login') }}">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<div class="d-grid gap-2">
<button type="submit" class="btn btn-primary">Login</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}

View File

@@ -1,387 +0,0 @@
{% extends "base.html" %}
{% block title %}{{ t('pricing') if t('pricing') else '收费' }}{% endblock %}
{% block content %}
<section class="hero">
<div class="container">
<h2>{{ t('pricing') if t('pricing') else '收费方案' }}</h2>
<p>{{ t('pricing_description') if t('pricing_description') else '透明合理的收费结构,助力您的投资成功' }}</p>
</div>
</section>
<section class="commission-table">
<div class="container">
<div class="section-title">
<h2>{{ t('commission_rates') if t('commission_rates') else '详细佣金费率' }}</h2>
<p>{{ t('commission_rates_desc') if t('commission_rates_desc') else '透明公开的交易费用,助力您的投资决策' }}</p>
</div>
<div class="tabs-container">
<div class="tabs">
<button class="tab-button active" data-tab="stocks">{{ t('stocks') if t('stocks') else '股票、ETF和权证'
}}</button>
<button class="tab-button" data-tab="options">{{ t('options') if t('options') else '期权' }}</button>
<button class="tab-button" data-tab="futures">{{ t('futures') if t('futures') else '期货' }}</button>
<button class="tab-button" data-tab="funds">{{ t('funds') if t('funds') else '基金' }}</button>
<button class="tab-button" data-tab="other">{{ t('other_products') if t('other_products') else '其他产品'
}}</button>
</div>
<div class="tab-content">
<!-- Stocks Tab -->
<div id="stocks" class="tab-pane active">
<div class="table-container">
<table class="commission-rates-table">
<thead>
<tr>
<th>{{ t('market') if t('market') else '市场' }}</th>
<th>{{ t('product_type') if t('product_type') else '产品类型' }}</th>
<th>{{ t('commission_rate') if t('commission_rate') else '佣金费率' }}</th>
<th>{{ t('minimum_fee') if t('minimum_fee') else '最低收费' }}</th>
<th>{{ t('additional_fees') if t('additional_fees') else '其他费用' }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>港股</td>
<td>股票交易</td>
<td>0.25%</td>
<td>HK$ 100</td>
<td>印花税: 0.13%<br>交易征费: 0.0027%<br>证监会征费: 0.00015%</td>
</tr>
<tr>
<td>美股</td>
<td>股票交易</td>
<td>US$ 0.005/股</td>
<td>US$ 1.00</td>
<td>SEC Fee: 0.0000229%<br>FINRA TAF: US$ 0.000145/股</td>
</tr>
<tr>
<td>A股</td>
<td>股票交易</td>
<td>0.03%</td>
<td>¥ 5.00</td>
<td>印花税: 0.1%</td>
</tr>
<tr>
<td>日本</td>
<td>股票交易</td>
<td>0.20%</td>
<td>¥ 100</td>
<td>交易所费: 0.003%</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Options Tab -->
<div id="options" class="tab-pane">
<div class="table-container">
<table class="commission-rates-table">
<thead>
<tr>
<th>{{ t('market') if t('market') else '市场' }}</th>
<th>{{ t('product_type') if t('product_type') else '产品类型' }}</th>
<th>{{ t('commission_rate') if t('commission_rate') else '佣金费率' }}</th>
<th>{{ t('minimum_fee') if t('minimum_fee') else '最低收费' }}</th>
<th>{{ t('additional_fees') if t('additional_fees') else '其他费用' }}</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">港股</td>
<td>股票期权(标准)</td>
<td>HK$ 15/张</td>
<td>HK$ 30</td>
<td>交易征费: 0.0027%<br>证监会征费: 0.00015%<br>结算费: HK$ 0.5/张</td>
</tr>
<tr>
<td>股票期权(大宗交易)</td>
<td>HK$ 10/张</td>
<td>HK$ 100</td>
<td>交易征费: 0.0027%<br>证监会征费: 0.00015%</td>
</tr>
<tr>
<td>指数期权</td>
<td>HK$ 12/张</td>
<td>HK$ 25</td>
<td>交易征费: 0.0027%<br>证监会征费: 0.00015%</td>
</tr>
<tr>
<td rowspan="4">美股</td>
<td>股票期权(标准合约)</td>
<td>US$ 0.65/合约</td>
<td>US$ 1.00</td>
<td>SEC Fee: 0.0000229%<br>FINRA TAF: US$ 0.000145/股</td>
</tr>
<tr>
<td>股票期权(大宗交易)</td>
<td>US$ 0.50/合约</td>
<td>US$ 1.00</td>
<td>SEC Fee: 0.0000229%<br>FINRA TAF: US$ 0.000145/股</td>
</tr>
<tr>
<td>指数期权(标准)</td>
<td>US$ 1.50/合约</td>
<td>US$ 1.00</td>
<td>交易所费用: US$ 0.15/合约<br>清算费: US$ 0.05/合约</td>
</tr>
<tr>
<td>指数期权(迷你)</td>
<td>US$ 0.75/合约</td>
<td>US$ 1.00</td>
<td>交易所费用: US$ 0.10/合约<br>清算费: US$ 0.03/合约</td>
</tr>
<tr>
<td rowspan="2">A股</td>
<td>上证50ETF期权</td>
<td>¥ 5/张</td>
<td>¥ 10</td>
<td>经手费: ¥ 0.3/张<br>结算费: ¥ 0.3/张</td>
</tr>
<tr>
<td>沪深300期权</td>
<td>¥ 8/张</td>
<td>¥ 15</td>
<td>经手费: ¥ 0.5/张<br>结算费: ¥ 0.5/张</td>
</tr>
<tr>
<td>新加坡</td>
<td>新华A50指数期权</td>
<td>US$ 2.00/合约</td>
<td>US$ 5.00</td>
<td>交易所费用: US$ 0.25/合约<br>清算费: US$ 0.10/合约</td>
</tr>
</tbody>
</table>
</div>
<div class="volume-discounts">
<h4>成交量折扣计划</h4>
<div class="discount-grid">
<div class="discount-tier">
<h5>美股期权</h5>
<p>月交易量 1-999 合约: US$ 0.65/合约</p>
<p>月交易量 1,000-4,999 合约: US$ 0.55/合约</p>
<p>月交易量 5,000-9,999 合约: US$ 0.45/合约</p>
<p>月交易量 10,000+ 合约: US$ 0.35/合约</p>
</div>
<div class="discount-tier">
<h5>港股期权</h5>
<p>月交易量 1-499 张: HK$ 15/张</p>
<p>月交易量 500-1,999 张: HK$ 12/张</p>
<p>月交易量 2,000-4,999 张: HK$ 10/张</p>
<p>月交易量 5,000+ 张: HK$ 8/张</p>
</div>
</div>
</div>
</div>
<!-- Futures Tab -->
<div id="futures" class="tab-pane">
<div class="table-container">
<table class="commission-rates-table">
<thead>
<tr>
<th>{{ t('market') if t('market') else '市场' }}</th>
<th>{{ t('product_type') if t('product_type') else '产品类型' }}</th>
<th>{{ t('commission_rate') if t('commission_rate') else '佣金费率' }}</th>
<th>{{ t('minimum_fee') if t('minimum_fee') else '最低收费' }}</th>
<th>{{ t('additional_fees') if t('additional_fees') else '其他费用' }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>港股</td>
<td>期货交易</td>
<td>HK$ 10/张</td>
<td>HK$ 50</td>
<td>证监会征费: 0.00015%</td>
</tr>
<tr>
<td>美股</td>
<td>指数期货</td>
<td>US$ 2.50/合约</td>
<td>US$ 1.00</td>
<td>NFA Fee: US$ 0.02/合约</td>
</tr>
<tr>
<td>商品期货</td>
<td>黄金期货</td>
<td>US$ 5.00/合约</td>
<td>US$ 10.00</td>
<td>交易所费用: US$ 1.50/合约</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Funds Tab -->
<div id="funds" class="tab-pane">
<div class="table-container">
<table class="commission-rates-table">
<thead>
<tr>
<th>{{ t('market') if t('market') else '市场' }}</th>
<th>{{ t('product_type') if t('product_type') else '产品类型' }}</th>
<th>{{ t('commission_rate') if t('commission_rate') else '佣金费率' }}</th>
<th>{{ t('minimum_fee') if t('minimum_fee') else '最低收费' }}</th>
<th>{{ t('additional_fees') if t('additional_fees') else '其他费用' }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>港股</td>
<td>互惠基金</td>
<td>0.50%</td>
<td>HK$ 100</td>
<td>托管费: 0.15%/年</td>
</tr>
<tr>
<td>美股</td>
<td>ETF基金</td>
<td>US$ 0.005/股</td>
<td>US$ 1.00</td>
<td>SEC Fee: 0.0000229%</td>
</tr>
<tr>
<td>债券基金</td>
<td>固定收益</td>
<td>0.25%</td>
<td>US$ 25.00</td>
<td>管理费: 0.10%/年</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Other Products Tab -->
<div id="other" class="tab-pane">
<div class="table-container">
<table class="commission-rates-table">
<thead>
<tr>
<th>{{ t('market') if t('market') else '市场' }}</th>
<th>{{ t('product_type') if t('product_type') else '产品类型' }}</th>
<th>{{ t('commission_rate') if t('commission_rate') else '佣金费率' }}</th>
<th>{{ t('minimum_fee') if t('minimum_fee') else '最低收费' }}</th>
<th>{{ t('additional_fees') if t('additional_fees') else '其他费用' }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>加密货币</td>
<td>现货交易</td>
<td>0.10%</td>
<td>US$ 1.00</td>
<td>网络费用: 可变</td>
</tr>
<tr>
<td>外汇</td>
<td>主要货币对</td>
<td>0.08%</td>
<td>US$ 10.00</td>
<td>隔夜利息: 可变</td>
</tr>
<tr>
<td>结构性产品</td>
<td>牛熊证</td>
<td>0.20%</td>
<td>HK$ 50</td>
<td>行使费: 0.003%</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="table-notes">
<p>* {{ t('commission_note') if t('commission_note') else '以上费率仅供参考,实际费用可能因市场情况而变化。详细费用请参考最新费率表。' }}</p>
</div>
</div>
</section>
<section class="services">
<div class="container">
<div class="section-title">
<h2>{{ t('pricing_plans') if t('pricing_plans') else '收费标准' }}</h2>
<p>{{ t('choose_plan') if t('choose_plan') else '选择适合您的投资方案' }}</p>
</div>
<div class="feature-grid">
<div class="feature">
<div class="feature-icon">💰</div>
<h3>{{ t('basic_plan') if t('basic_plan') else '基础套餐' }}</h3>
<p>{{ t('basic_plan_desc') if t('basic_plan_desc') else '适合初级投资者的入门套餐' }}</p>
<div class="price">¥299/月</div>
<ul class="plan-features">
<li>{{ t('feature1') if t('feature1') else '基础行情数据' }}</li>
<li>{{ t('feature2') if t('feature2') else '5次免费交易' }}</li>
<li>{{ t('feature3') if t('feature3') else '基础分析工具' }}</li>
</ul>
<a href="{{ url_for('contact') }}" class="btn">{{ t('get_started') if t('get_started') else '立即开通'
}}</a>
</div>
<div class="feature">
<div class="feature-icon">💎</div>
<h3>{{ t('pro_plan') if t('pro_plan') else '专业套餐' }}</h3>
<p>{{ t('pro_plan_desc') if t('pro_plan_desc') else '适合活跃交易者的专业套餐' }}</p>
<div class="price">¥899/月</div>
<ul class="plan-features">
<li>{{ t('feature4') if t('feature4') else '高级行情数据' }}</li>
<li>{{ t('feature5') if t('feature5') else '无限次交易' }}</li>
<li>{{ t('feature6') if t('feature6') else '专业分析工具' }}</li>
<li>{{ t('feature7') if t('feature7') else '实时市场警报' }}</li>
</ul>
<a href="{{ url_for('contact') }}" class="btn">{{ t('get_started') if t('get_started') else '立即开通'
}}</a>
</div>
<div class="feature">
<div class="feature-icon">🏆</div>
<h3>{{ t('vip_plan') if t('vip_plan') else 'VIP套餐' }}</h3>
<p>{{ t('vip_plan_desc') if t('vip_plan_desc') else '适合机构投资者的尊贵套餐' }}</p>
<div class="price">¥2999/月</div>
<ul class="plan-features">
<li>{{ t('feature8') if t('feature8') else '全市场行情数据' }}</li>
<li>{{ t('feature9') if t('feature9') else '专属客户经理' }}</li>
<li>{{ t('feature10') if t('feature10') else '高级分析工具套件' }}</li>
<li>{{ t('feature11') if t('feature11') else '个性化投资策略' }}</li>
<li>{{ t('feature12') if t('feature12') else '优先客服支持' }}</li>
</ul>
<a href="{{ url_for('contact') }}" class="btn">{{ t('get_started') if t('get_started') else '立即开通'
}}</a>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<div class="section-title">
<h2>{{ t('why_choose_our_pricing') if t('why_choose_our_pricing') else '为什么选择我们的收费方案' }}</h2>
</div>
<div class="feature-grid">
<div class="feature">
<h3>{{ t('transparent_pricing') if t('transparent_pricing') else '透明收费' }}</h3>
<p>{{ t('transparent_pricing_desc') if t('transparent_pricing_desc') else '无隐藏费用,所有收费项目清晰明了' }}</p>
</div>
<div class="feature">
<h3>{{ t('value_for_money') if t('value_for_money') else '物超所值' }}</h3>
<p>{{ t('value_for_money_desc') if t('value_for_money_desc') else '提供远超价格的优质服务和工具' }}</p>
</div>
<div class="feature">
<h3>{{ t('flexible_plans') if t('flexible_plans') else '灵活选择' }}</h3>
<p>{{ t('flexible_plans_desc') if t('flexible_plans_desc') else '多种套餐满足不同投资需求' }}</p>
</div>
</div>
</div>
</section>
{% endblock %}

View File

@@ -1,42 +0,0 @@
{% extends "base.html" %}
{% block title %}我们的服务{% endblock %}
{% block content %}
<section class="services">
<div class="container">
<h2>我们的服务</h2>
<p class="subtitle">我们提供全方位的数字技术解决方案,助力您的业务增长</p>
<div class="services-grid">
{% for service in company.services %}
<div class="service">
<h3>{{ service.name }}</h3>
<p>{{ service.description }}</p>
<a href="{{ url_for('contact') }}" class="btn">咨询详情</a>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="case-studies">
<div class="container">
<h2>成功案例</h2>
<div class="case-grid">
<div class="case">
<h3>某大型零售企业AI客服系统</h3>
<p>通过我们的自然语言处理技术客户服务效率提升60%。</p>
</div>
<div class="case">
<h3>金融机构风险管理系统</h3>
<p>大数据分析帮助客户识别并减少了30%的欺诈交易。</p>
</div>
<div class="case">
<h3>金融机构风险管理系统</h3>
<p>大数据分析帮助客户识别并减少了30%的欺诈交易。</p>
</div>
</div>
</div>
</section>
{% endblock %}