Initial commit: 愉悦查官网(清理所有备份)
This commit is contained in:
Executable
+377
@@ -0,0 +1,377 @@
|
||||
<!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="愉悦查合作伙伴,代理商,数据源合作,技术合作">
|
||||
|
||||
<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; }
|
||||
|
||||
.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 {
|
||||
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: 700px; margin: 0 auto var(--spacing-lg); line-height: 1.8; }
|
||||
|
||||
.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); }
|
||||
|
||||
.partner-types { background: white; }
|
||||
.types-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.type-card {
|
||||
background: var(--bg-gray);
|
||||
padding: var(--spacing-lg);
|
||||
border-radius: var(--radius-lg);
|
||||
text-align: center;
|
||||
transition: var(--transition);
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
.type-card:hover {
|
||||
border-color: var(--primary-orange);
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.type-icon { font-size: 56px; margin-bottom: var(--spacing-sm); }
|
||||
.type-card h3 { font-size: 22px; margin-bottom: var(--spacing-xs); color: var(--primary-orange); }
|
||||
.type-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--spacing-sm); }
|
||||
.type-link { font-size: 14px; color: var(--primary-orange); font-weight: 500; }
|
||||
|
||||
.agent-section { background: var(--bg-gray); }
|
||||
.agent-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 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);
|
||||
}
|
||||
.agent-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.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: 20px; margin-bottom: var(--spacing-xs); }
|
||||
.agent-price { font-size: 24px; 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; }
|
||||
|
||||
.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 {
|
||||
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; }
|
||||
.types-grid, .agent-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
.nav-menu { display: none; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<a href="/index.html" class="logo">
|
||||
<img src="assets/logo.png" alt="愉悦查 Logo" class="logo-img">
|
||||
</a>
|
||||
<ul class="nav-menu">
|
||||
<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="/apidemo/" class="nav-link">API 平台</a></li>
|
||||
<li><a href="/all-apis.html" class="nav-link">全部接口</a></li>
|
||||
<li><a href="/about.html" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
<div class="nav-cta">
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="btn btn-outline" target="_blank">技术咨询</a>
|
||||
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary" target="_blank">登录</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>合作伙伴</h1>
|
||||
<p>携手共创信任未来<br>开放合作,互利共赢,与优秀伙伴共建商业信任生态</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section partner-types">
|
||||
<div class="container">
|
||||
<h2 class="section-title">合作类型</h2>
|
||||
<p class="section-subtitle">多种合作模式,找到适合您的方式</p>
|
||||
|
||||
<div class="types-grid">
|
||||
<div class="type-card">
|
||||
<div class="type-icon">🤝</div>
|
||||
<h3>代理合作</h3>
|
||||
<p>成为愉悦查代理商,推广我们的产品和服务,获取丰厚佣金回报。三级代理体系,灵活选择。</p>
|
||||
<a href="#agent" class="type-link">了解详情 →</a>
|
||||
</div>
|
||||
|
||||
<div class="type-card">
|
||||
<div class="type-icon">📡</div>
|
||||
<h3>数据源合作</h3>
|
||||
<p>拥有官方数据源?与我们合作,接入愉悦查平台,共享海量客户资源。</p>
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="type-link" target="_blank">联系我们 →</a>
|
||||
</div>
|
||||
|
||||
<div class="type-card">
|
||||
<div class="type-icon">🔧</div>
|
||||
<h3>技术合作</h3>
|
||||
<p>技术团队、开发者、ISV,通过 API 集成愉悦查服务,为您的产品赋能。</p>
|
||||
<a href="/apidemo/" class="type-link">查看 API →</a>
|
||||
</div>
|
||||
|
||||
<div class="type-card">
|
||||
<div class="type-icon">🏢</div>
|
||||
<h3>企业合作</h3>
|
||||
<p>企业批量采购、定制服务、OEM 合作,我们提供专属解决方案和优惠价格。</p>
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="type-link" target="_blank">商务咨询 →</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section agent-section" id="agent">
|
||||
<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>
|
||||
</ul>
|
||||
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-outline" style="width:100%" target="_blank">立即申请</a>
|
||||
</div>
|
||||
|
||||
<div class="agent-card" style="border:2px solid var(--primary-orange);position:relative;">
|
||||
<div style="position:absolute;top:10px;right:10px;background:var(--primary-gradient);color:white;padding:4px 10px;border-radius:4px;font-size:12px;font-weight:600;">推荐</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>
|
||||
</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>
|
||||
</ul>
|
||||
<a href="https://p.yuyuecha.com/s/Cc9wgE" class="btn btn-outline" style="width:100%" target="_blank">立即申请</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta-section">
|
||||
<div class="container">
|
||||
<h2>成为合作伙伴</h2>
|
||||
<p>无论您想成为代理商、数据源合作伙伴还是技术合作伙伴<br>我们都期待与您携手共创未来</p>
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="btn btn-lg" target="_blank">🤝 立即咨询</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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;">愉悦查(北京正信环宇科技有限公司)</p>
|
||||
<p style="font-size:13px;">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">API</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/apidemo/">API 平台</a></li>
|
||||
<li><a href="/all-apis.html">全部接口</a></li>
|
||||
<li><a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" target="_blank">技术咨询</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>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
|
||||
<p>京 ICP 备 2025158088 号 -2</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user