Files
yuyuecha-guanwang/investment.html
T

1016 lines
42 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>
<meta name="description" content="愉悦查招商工具包,包含代理收益计算器、三级代理体系、收益测算工具">
<meta name="keywords" content="愉悦查代理,招商工具包,收益计算器,代理政策">
<!-- SEO Enhancement -->
<link rel="canonical" href="https://www.yuyuecha.com.cn/investment.html">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.yuyuecha.com.cn/investment.html">
<meta property="og:title" content="招商工具包 - 愉悦查代理合作">
<meta property="og:description" content="三级代理体系(白银/黄金/钻石),在线收益计算器,加入愉悦查共享信任经济红利。">
<meta property="og:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
<meta property="og:site_name" content="愉悦查">
<meta property="og:locale" content="zh_CN">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="招商工具包 - 愉悦查代理合作">
<meta name="twitter:description" content="三级代理体系(白银/黄金/钻石),在线收益计算器,加入愉悦查共享信任经济红利。">
<meta name="twitter:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<style>
:root {
--primary-orange: #FF6A19;
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
--bg-light: #FFFFFF;
--bg-gray: #F5F7FA;
--bg-dark: #1A1A1A;
--text-primary: #1A1A1A;
--text-secondary: #666666;
--text-light: #999999;
--spacing-xs: 8px;
--spacing-sm: 16px;
--spacing-md: 24px;
--spacing-lg: 48px;
--spacing-xl: 80px;
--radius-md: 8px;
--radius-lg: 16px;
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
--transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans SC', sans-serif; line-height: 1.6; color: var(--text-primary); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-md); }
.btn {
display: inline-block;
padding: 14px 32px;
font-size: 15px;
font-weight: 500;
border-radius: var(--radius-md);
cursor: pointer;
transition: var(--transition);
border: none;
text-align: center;
}
.btn-primary {
background: var(--primary-gradient);
color: white;
box-shadow: 0 4px 12px rgba(255, 106, 25, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 106, 25, 0.4); }
.btn-outline {
background: transparent;
border: 2px solid var(--primary-orange);
color: var(--primary-orange);
}
.btn-outline:hover { background: var(--primary-gradient); color: white; }
.btn-lg { padding: 16px 48px; font-size: 17px; }
/* Navigation */
.navbar {
position: fixed;
top: 0;
background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
z-index: 1000;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; }
.nav-menu { display: flex; gap: var(--spacing-lg); }
.nav-link { font-size: 15px; font-weight: 500; color: var(--text-primary); }
.nav-link:hover { color: var(--primary-orange); }
/* Hero */
.hero {
padding: 160px 0 100px;
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
text-align: center;
}
.hero h1 {
font-size: 52px;
font-weight: 900;
margin-bottom: var(--spacing-sm);
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p { font-size: 22px; color: var(--text-secondary); max-width: 800px; margin: 0 auto var(--spacing-lg); line-height: 1.8; }
/* Section */
.section { padding: var(--spacing-xl) 0; }
.section-title { text-align: center; font-size: 42px; font-weight: 700; margin-bottom: var(--spacing-xs); }
.section-subtitle { text-align: center; font-size: 20px; color: var(--text-secondary); margin-bottom: var(--spacing-lg); }
/* Calculator Section */
.calculator-section { background: white; }
.calculator-container {
background: var(--bg-gray);
border-radius: var(--radius-lg);
padding: var(--spacing-lg);
max-width: 1000px;
margin: 0 auto;
}
.calculator-tabs {
display: flex;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-lg);
flex-wrap: wrap;
}
.calculator-tab {
flex: 1;
min-width: 120px;
padding: 14px 24px;
background: white;
border: 2px solid #E8E8E8;
border-radius: var(--radius-md);
text-align: center;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}
.calculator-tab:hover { border-color: var(--primary-orange); }
.calculator-tab.active {
background: var(--primary-gradient);
color: white;
border-color: var(--primary-orange);
}
.calculator-form {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-md);
margin-bottom: var(--spacing-lg);
}
.form-group {
background: white;
padding: var(--spacing-md);
border-radius: var(--radius-md);
}
.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-secondary);
}
.form-group input, .form-group select {
width: 100%;
padding: 12px;
border: 2px solid #E8E8E8;
border-radius: var(--radius-md);
font-size: 16px;
transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
outline: none;
border-color: var(--primary-orange);
}
.calculator-results {
background: var(--primary-gradient);
color: white;
border-radius: var(--radius-lg);
padding: var(--spacing-lg);
margin-top: var(--spacing-lg);
}
.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--spacing-md);
}
.result-item {
background: rgba(255,255,255,0.15);
padding: var(--spacing-md);
border-radius: var(--radius-md);
text-align: center;
}
.result-label { font-size: 14px; opacity: 0.9; margin-bottom: 8px; }
.result-value { font-size: 32px; font-weight: 900; }
.result-value.small { font-size: 24px; }
/* Agent Cards */
.agent-section { background: var(--bg-gray); }
.agent-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: var(--spacing-md);
}
.agent-card {
background: white;
padding: var(--spacing-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
}
.agent-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.agent-card.featured {
border: 3px solid var(--primary-orange);
}
.agent-badge {
position: absolute;
top: 16px;
right: 16px;
background: var(--primary-gradient);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.agent-level {
display: inline-block;
padding: 6px 16px;
background: var(--primary-gradient);
color: white;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: var(--spacing-sm);
}
.agent-card h3 { font-size: 24px; margin-bottom: var(--spacing-xs); }
.agent-price { font-size: 28px; font-weight: 700; color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
.agent-price span { font-size: 14px; color: var(--text-light); font-weight: 400; }
.agent-features { list-style: disc; padding-left: 20px; margin-bottom: var(--spacing-md); }
.agent-features li { font-size: 15px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.6; }
/* Core Benefits */
.benefits-section { background: white; }
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-md);
}
.benefit-card {
background: var(--bg-gray);
padding: var(--spacing-lg);
border-radius: var(--radius-lg);
border-left: 4px solid var(--primary-orange);
}
.benefit-card h3 { font-size: 20px; color: var(--primary-orange); margin-bottom: var(--spacing-xs); }
.benefit-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.benefit-highlight {
background: var(--primary-gradient);
color: white;
padding: var(--spacing-lg);
border-radius: var(--radius-lg);
margin-top: var(--spacing-md);
}
.benefit-highlight h3 { color: white; margin-bottom: var(--spacing-sm); }
.benefit-highlight p { color: rgba(255,255,255,0.95); }
/* FAQ */
.faq-section { background: var(--bg-gray); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
background: white;
margin-bottom: var(--spacing-sm);
border-radius: var(--radius-md);
overflow: hidden;
}
.faq-question {
padding: var(--spacing-md);
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question:hover { background: var(--bg-gray); }
.faq-answer {
padding: 0 var(--spacing-md) var(--spacing-md);
color: var(--text-secondary);
line-height: 1.8;
display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--primary-orange); }
/* CTA */
.cta-section {
background: var(--primary-gradient);
padding: var(--spacing-xl) 0;
text-align: center;
color: white;
}
.cta-section h2 { font-size: 40px; font-weight: 700; margin-bottom: var(--spacing-sm); }
.cta-section p { font-size: 18px; margin-bottom: var(--spacing-lg); opacity: 0.95; }
.cta-section .btn { background: white; color: var(--primary-orange); }
/* Footer */
.footer {
background: var(--bg-dark);
color: white;
padding: var(--spacing-xl) 0 var(--spacing-lg);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: var(--spacing-lg);
margin-bottom: var(--spacing-lg);
}
.footer-brand h3 { font-size: 24px; margin-bottom: var(--spacing-xs); }
.footer-brand p { color: #CCCCCC; margin-bottom: var(--spacing-xs); font-size: 14px; }
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: var(--spacing-sm); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #CCCCCC; }
.footer-links a:hover { color: var(--primary-orange); }
.footer-bottom {
text-align: center;
padding-top: var(--spacing-lg);
border-top: 1px solid #333333;
color: #999999;
font-size: 14px;
}
@media (max-width: 768px) {
.hero h1 { font-size: 36px; }
.section-title { font-size: 32px; }
.calculator-tabs { flex-direction: column; }
.results-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.nav-menu { display: none; }
}
/* ===== Unified Navbar ===== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 12px 0;
transition: all 0.3s ease;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
padding: 8px 0;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar .container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.logo-img {
height: 44px;
width: auto;
object-fit: contain;
transition: all 0.3s ease;
}
.logo:hover .logo-img {
transform: scale(1.03);
}
.nav-menu {
display: flex;
gap: 32px;
list-style: none;
margin: 0;
padding: 0;
}
.nav-link {
font-size: 15px;
font-weight: 500;
color: #1A1A1A;
text-decoration: none;
position: relative;
padding: 6px 0;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: #FF6A19;
transition: all 0.3s ease;
transform: translateX(-50%);
border-radius: 1px;
}
.nav-link:hover {
color: #FF6A19;
}
.nav-link:hover::after {
width: 100%;
}
.nav-cta {
display: flex;
gap: 12px;
align-items: center;
}
.nav-btn {
padding: 8px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
border: none;
display: inline-flex;
align-items: center;
}
.btn-outline.nav-btn {
border: 1.5px solid #FF6A19;
color: #FF6A19;
background: transparent;
}
.btn-outline.nav-btn:hover {
background: #FFF5F0;
}
.btn-primary.nav-btn {
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
color: white;
box-shadow: 0 2px 8px rgba(255,106,25,0.3);
}
.btn-primary.nav-btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(255,106,25,0.4);
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
z-index: 1001;
}
.menu-toggle span {
width: 24px;
height: 2px;
background: #1A1A1A;
transition: all 0.3s ease;
border-radius: 1px;
}
@media (max-width: 1024px) {
.nav-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(20px);
flex-direction: column;
align-items: center;
justify-content: center;
gap: 24px;
z-index: 999;
}
.nav-menu.active {
display: flex;
}
.nav-link {
font-size: 18px;
}
.nav-cta {
display: none;
}
.menu-toggle {
display: flex;
}
}
/* ===== Unified Footer ===== */
.footer {
background: #1A1A1A;
color: white;
padding: 60px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 48px;
margin-bottom: 40px;
}
.footer-brand h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 8px;
background: linear-gradient(135deg, #FF6A19, #FC6E18);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.footer-brand p {
color: rgba(255,255,255,0.6);
font-size: 14px;
line-height: 1.6;
}
.footer-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 16px;
color: rgba(255,255,255,0.9);
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255,255,255,0.5);
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: #FF6A19;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 24px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 13px;
color: rgba(255,255,255,0.4);
}
.footer-icp {
color: rgba(255,255,255,0.4);
}
.footer-icp a {
color: rgba(255,255,255,0.4);
text-decoration: none;
}
.footer-icp a:hover {
color: #FF6A19;
}
@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 32px;
}
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 8px;
}
}
@media (max-width: 480px) {
.footer-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="container">
<a href="/index.html" class="logo">
<img src="assets/logo-nav.png" srcset="assets/logo-nav.png 1x, assets/logo-nav-2x.png 2x" alt="愉悦查 Logo" class="logo-img">
</a>
<div class="menu-toggle" id="menuToggle">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-menu" id="navMenu">
<li><a href="/index.html" class="nav-link">首页</a></li>
<li><a href="/index.html#products" class="nav-link">产品服务</a></li>
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
<li><a href="/index.html#technology" class="nav-link">AI 能力</a></li>
<li><a href="/index.html#partnership" class="nav-link">代理合作</a></li>
<li><a href="/about.html" class="nav-link">关于我们</a></li>
</ul>
<div class="nav-cta">
<a href="/index.html#products" class="btn btn-outline nav-btn">立即查询</a>
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary nav-btn">立即注册</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>招商工具包</h1>
<p>三级代理体系,多元收益模式,最快 4 小时回本<br>钻石代理月入可达 17 万+</p>
</div>
</section>
<!-- Calculator Section -->
<section class="section calculator-section">
<div class="container">
<h2 class="section-title">代理收益计算器</h2>
<p class="section-subtitle">选择代理等级,输入预期数据,实时计算收益</p>
<div class="calculator-container">
<div class="calculator-tabs">
<div class="calculator-tab active" data-level="silver">🥈 白银代理</div>
<div class="calculator-tab" data-level="gold">🥇 黄金代理</div>
<div class="calculator-tab" data-level="diamond">💎 钻石代理</div>
</div>
<div class="calculator-form">
<div class="form-group">
<label>日均销售报告份数</label>
<input type="number" id="dailySales" value="50" min="0">
</div>
<div class="form-group">
<label>平均单份利润(元)</label>
<input type="number" id="avgProfit" value="42" min="0">
</div>
<div class="form-group">
<label>月推荐代理人数</label>
<input type="number" id="monthlyReferrals" value="10" min="0">
</div>
<div class="form-group">
<label>团队总人数</label>
<input type="number" id="teamSize" value="30" min="0">
</div>
<div class="form-group" id="upgradeGroup" style="display:none;">
<label>日均升级黄金会员数(钻石专属)</label>
<input type="number" id="dailyUpgrades" value="10" min="0">
</div>
<div class="form-group" id="markupGroup" style="display:none;">
<label>平均加价幅度(元/份)</label>
<input type="number" id="markup" value="15" min="0">
</div>
</div>
<button class="btn btn-primary" onclick="calculateProfit()" style="width:100%;padding:16px;font-size:17px;">🚀 开始计算收益</button>
<div class="calculator-results" id="results" style="display:none;">
<div class="results-grid">
<div class="result-item">
<div class="result-label">零售月收益</div>
<div class="result-value" id="retailIncome">¥0</div>
</div>
<div class="result-item">
<div class="result-label">直推月收益</div>
<div class="result-value small" id="referralIncome">¥0</div>
</div>
<div class="result-item" id="upgradeIncomeGroup" style="display:none;">
<div class="result-label">升级月收益</div>
<div class="result-value small" id="upgradeIncome">¥0</div>
</div>
<div class="result-item">
<div class="result-label">团队月收益</div>
<div class="result-value small" id="teamIncome">¥0</div>
</div>
<div class="result-item" id="markupIncomeGroup" style="display:none;">
<div class="result-label">加价月收益</div>
<div class="result-value small" id="markupIncome">¥0</div>
</div>
<div class="result-item">
<div class="result-label">月总收入</div>
<div class="result-value" id="totalIncome">¥0</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Agent Levels Section -->
<section class="section agent-section">
<div class="container">
<h2 class="section-title">三级代理体系</h2>
<p class="section-subtitle">灵活选择,逐级升级,收益倍增</p>
<div class="agent-grid">
<div class="agent-card">
<span class="agent-level">🥈 白银代理</span>
<h3>白银代理</h3>
<div class="agent-price">¥0 <span>/终身</span></div>
<ul class="agent-features">
<li>10% 返佣</li>
<li>基础培训支持</li>
<li>标准产品价格</li>
<li>在线帮助中心</li>
<li>零门槛免费加入</li>
<li>适合:兼职试水</li>
</ul>
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-outline" style="width:100%" target="_blank">立即申请</a>
</div>
<div class="agent-card featured">
<div class="agent-badge">🔥 推荐</div>
<span class="agent-level">🥇 黄金代理</span>
<h3>黄金代理</h3>
<div class="agent-price">¥198 <span>/年</span></div>
<ul class="agent-features">
<li>30% 返佣</li>
<li>优先技术支持</li>
<li>专属代理价格</li>
<li>营销素材支持</li>
<li>定期培训</li>
<li>下级代理奖励</li>
<li>适合:全职创业</li>
</ul>
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-primary" style="width:100%" target="_blank">立即申请</a>
</div>
<div class="agent-card">
<span class="agent-level">💎 钻石代理</span>
<h3>钻石代理</h3>
<div class="agent-price">¥980 <span>/年</span></div>
<ul class="agent-features">
<li>50% 返佣</li>
<li>1 对 1 专属辅导</li>
<li>最低代理价格</li>
<li>联合营销支持</li>
<li>优先新功能体验</li>
<li>区域保护政策</li>
<li>下级代理奖励</li>
<li><strong>0 成本升级黄金会员(限时)</strong></li>
<li>适合:团队长/创业者</li>
</ul>
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-outline" style="width:100%" target="_blank">立即申请</a>
</div>
</div>
</div>
</section>
<!-- Core Benefits Section -->
<section class="section benefits-section">
<div class="container">
<h2 class="section-title">核心收益逻辑</h2>
<p class="section-subtitle">钻石代理最赚钱的两种方式</p>
<div class="benefits-grid">
<div class="benefit-card">
<h3>1️⃣ 0 成本升级黄金会员</h3>
<p><strong>最赚钱!</strong>后台免费升级,0 成本,线下私收¥198/人,100% 归钻石代理。不限数量(限时政策,随时取消)</p>
<p style="margin-top:12px;"><strong>日升级 10 人 = ¥59,400/月</strong><br><strong>日升级 50 人 = ¥297,000/月</strong></p>
</div>
<div class="benefit-card">
<h3>2️⃣ 直推钻石代理</h3>
<p><strong>现金最快!</strong>推荐 1 个钻石 = ¥300 现金(980×30%),相当于卖 7-10 份报告。实时到账,无账期</p>
<p style="margin-top:12px;"><strong>日推 3 个 = ¥900/天 = ¥27,000/月</strong></p>
</div>
<div class="benefit-card">
<h3>3️⃣ 零售报告</h3>
<p><strong>稳定基础</strong>卖 1 份赚¥28-59 元,日销 50 份 = ¥2,111/天 = ¥63,330/月,稳定持续收入</p>
</div>
<div class="benefit-card">
<h3>4️⃣ 团队提成</h3>
<p><strong>被动收入</strong>下级白银卖 1 份赚¥6,下级黄金卖 1 份赚¥3,30 人团队 = ¥510/天 = ¥15,300/月</p>
</div>
</div>
<div class="benefit-highlight">
<h3>💡 核心洞察</h3>
<p><strong>升级黄金会员的利润是卖报告的 4.7 倍</strong></p>
<p><strong>直推 1 个钻石 = 卖 7-10 份报告</strong></p>
<p><strong>钻石代理的核心优势:0 成本升级黄金会员权限(这个功能只有钻石代理有!黄金代理和白银代理都没有!)</strong></p>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="section faq-section">
<div class="container">
<h2 class="section-title">常见问题</h2>
<p class="section-subtitle">解答您的疑问</p>
<div class="faq-list">
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q1: 代理费能退吗?<span></span></div>
<div class="faq-answer">支持 7 天无理由退款(未产生收益情况下),但需扣除已发放的上级佣金。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q2: 需要囤货吗?<span></span></div>
<div class="faq-answer">不需要!这是虚拟产品,无需囤货,总部统一交付,代理只负责推广销售。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q3: 收益怎么结算?<span></span></div>
<div class="faq-answer">所有收益实时到账,无账期,可随时提现到微信/支付宝/银行卡。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q4: 不会推广怎么办?<span></span></div>
<div class="faq-answer">总部提供全程培训支持,包括话术、素材、渠道指导。钻石代理享有一对一指导。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q5: 钻石代理升级黄金会员怎么操作?<span></span></div>
<div class="faq-answer">钻石代理在后台找到"升级会员"功能,选择要升级的白银代理,点击"免费升级为黄金",线下私收¥198 升级费(微信/支付宝转账),¥198 全归钻石代理所有,总部不抽成。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q6: 团队提成怎么算?<span></span></div>
<div class="faq-answer">钻石代理:下级白银卖 1 份赚¥6,下级黄金卖 1 份赚¥3;黄金代理:下级白银卖 1 份赚¥3;白银代理:下级白银卖 1 份赚¥2。仅限一级推荐关系,不跨级。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q7: 不限名额政策什么时候取消?<span></span></div>
<div class="faq-answer">政策随时可能调整,建议尽早入手锁定特权。</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">Q8: 钻石代理和黄金代理最大区别是什么?<span></span></div>
<div class="faq-answer">核心区别就一个:0 成本升级黄金会员权限。黄金代理只能卖报告、推代理;钻石代理除了上述功能,还能 0 成本升级黄金会员,收¥198 全赚。这个功能让钻石代理多了一个月入 6-30 万的收益来源!</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section">
<div class="container">
<h2>立即加入愉悦查代理</h2>
<p>限时政策:不限名额,政策随时取消<br>现在入手 = 锁定终身特权!</p>
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-lg" target="_blank">🚀 立即申请代理</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<h3>愉悦查</h3>
<p>让信任无处不在,让合作没有距离</p>
<p style="margin-top:16px;font-size:13px;color:rgba(255,255,255,0.5);">北京正信环宇科技有限公司</p>
<p style="font-size:13px;color:rgba(255,255,255,0.5);">AI 驱动的商业信任科技平台</p>
</div>
<div>
<h4 class="footer-title">产品</h4>
<ul class="footer-links">
<li><a href="/product/riskassessment.html">个人大数据报告</a></li>
<li><a href="/product/marriage.html">婚恋风险报告</a></li>
<li><a href="/product/backgroundcheck.html">入职背调报告</a></li>
<li><a href="/product/companyinfo.html">小微企业报告</a></li>
<li><a href="/product/homeservice.html">家政风险报告</a></li>
<li><a href="/product/consumerFinanceReport.html">消金报告</a></li>
</ul>
</div>
<div>
<h4 class="footer-title">公司</h4>
<ul class="footer-links">
<li><a href="/about.html">关于我们</a></li>
<li><a href="/careers.html">加入我们</a></li>
<li><a href="/contact.html">联系我们</a></li>
<li><a href="/news.html">新闻动态</a></li>
<li><a href="/partners.html">合作伙伴</a></li>
<li><a href="/investment.html">招商工具包</a></li>
</ul>
</div>
<div>
<h4 class="footer-title">支持</h4>
<ul class="footer-links">
<li><a href="/help.html">帮助中心</a></li>
<li><a href="/apidemo/">API 文档</a></li>
<li><a href="/all-apis.html">全部接口</a></li>
<li><a href="/privacy.html">隐私政策</a></li>
<li><a href="/terms.html">服务条款</a></li>
<li><a href="/disclaimer.html">免责声明</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
<p class="footer-icp"><a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow noopener">京ICP备2025158088号-2</a></p>
</div>
</div>
</footer>
<script>
// Tab switching
document.querySelectorAll('.calculator-tab').forEach(tab => {
tab.addEventListener('click', function() {
document.querySelectorAll('.calculator-tab').forEach(t => t.classList.remove('active'));
this.classList.add('active');
const level = this.dataset.level;
const upgradeGroup = document.getElementById('upgradeGroup');
const markupGroup = document.getElementById('markupGroup');
if (level === 'diamond') {
upgradeGroup.style.display = 'block';
markupGroup.style.display = 'block';
} else if (level === 'gold') {
upgradeGroup.style.display = 'none';
markupGroup.style.display = 'block';
} else {
upgradeGroup.style.display = 'none';
markupGroup.style.display = 'none';
}
calculateProfit();
});
});
// Calculate profit
function calculateProfit() {
const level = document.querySelector('.calculator-tab.active').dataset.level;
const dailySales = parseInt(document.getElementById('dailySales').value) || 0;
const avgProfit = parseInt(document.getElementById('avgProfit').value) || 0;
const monthlyReferrals = parseInt(document.getElementById('monthlyReferrals').value) || 0;
const teamSize = parseInt(document.getElementById('teamSize').value) || 0;
const dailyUpgrades = parseInt(document.getElementById('dailyUpgrades').value) || 0;
const markup = parseInt(document.getElementById('markup').value) || 0;
// Retail income
const retailIncome = dailySales * avgProfit * 30;
// Referral income (simplified)
let referralIncome = 0;
if (level === 'silver') {
referralIncome = monthlyReferrals * 60;
} else if (level === 'gold') {
referralIncome = monthlyReferrals * 180;
} else if (level === 'diamond') {
referralIncome = monthlyReferrals * 380;
}
// Upgrade income (diamond only)
const upgradeIncome = dailyUpgrades * 198 * 30;
// Team income (simplified)
const teamIncome = teamSize * 3 * 30;
// Markup income (gold and diamond)
const markupIncome = (level === 'gold' || level === 'diamond') ? dailySales * markup * 30 : 0;
// Total
let totalIncome = retailIncome + referralIncome + teamIncome + markupIncome;
if (level === 'diamond') {
totalIncome += upgradeIncome;
}
// Display results
document.getElementById('retailIncome').textContent = '¥' + retailIncome.toLocaleString();
document.getElementById('referralIncome').textContent = '¥' + referralIncome.toLocaleString();
document.getElementById('teamIncome').textContent = '¥' + teamIncome.toLocaleString();
document.getElementById('totalIncome').textContent = '¥' + totalIncome.toLocaleString();
if (level === 'diamond') {
document.getElementById('upgradeIncomeGroup').style.display = 'block';
document.getElementById('upgradeIncome').textContent = '¥' + upgradeIncome.toLocaleString();
} else {
document.getElementById('upgradeIncomeGroup').style.display = 'none';
}
if (level === 'gold' || level === 'diamond') {
document.getElementById('markupIncomeGroup').style.display = 'block';
document.getElementById('markupIncome').textContent = '¥' + markupIncome.toLocaleString();
} else {
document.getElementById('markupIncomeGroup').style.display = 'none';
}
document.getElementById('results').style.display = 'block';
}
// FAQ toggle
function toggleFaq(element) {
const item = element.parentElement;
item.classList.toggle('active');
}
// Auto calculate on load
window.addEventListener('load', calculateProfit);
</script>
</body>
</html>