Initial commit: 愉悦查官网(清理所有备份)
This commit is contained in:
Executable
+385
@@ -0,0 +1,385 @@
|
||||
<!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="查看愉悦查 6 大标准报告的真实样本,了解报告内容和格式">
|
||||
|
||||
<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-orange-light: #FC6E18;
|
||||
--primary-orange-dark: #E64E10;
|
||||
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
||||
--primary-orange-soft: #FFDECC;
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--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-sm: 4px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--radius-xl: 24px;
|
||||
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
|
||||
--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; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: var(--text-primary);
|
||||
background-color: var(--bg-light);
|
||||
}
|
||||
a { text-decoration: none; color: inherit; }
|
||||
ul { list-style: none; }
|
||||
img { max-width: 100%; height: auto; }
|
||||
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 14px 32px;
|
||||
font-size: 16px;
|
||||
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(236, 77, 9, 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;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 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;
|
||||
max-width: 1400px;
|
||||
padding: 0 32px;
|
||||
}
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
}
|
||||
.nav-links a {
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.nav-links a:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.page-hero {
|
||||
padding: 160px 0 80px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
|
||||
text-align: center;
|
||||
}
|
||||
.page-hero h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
background: var(--primary-gradient);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.page-hero p {
|
||||
font-size: 20px;
|
||||
color: var(--text-secondary);
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Sample Cards */
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.sample-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.sample-card {
|
||||
background: white;
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--spacing-lg);
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.sample-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: var(--primary-gradient);
|
||||
}
|
||||
.sample-card:hover {
|
||||
transform: translateY(-12px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.sample-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: var(--primary-orange-soft);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 36px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.sample-card:hover .sample-icon {
|
||||
transform: scale(1.1) rotate(5deg);
|
||||
}
|
||||
.sample-name {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.sample-desc {
|
||||
font-size: 15px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.7;
|
||||
margin-bottom: 16px;
|
||||
flex-grow: 1;
|
||||
}
|
||||
.sample-features {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.sample-features li {
|
||||
padding: 6px 0;
|
||||
border-bottom: 1px dashed #eee;
|
||||
}
|
||||
.sample-features li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.sample-price {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1A1A2E;
|
||||
color: white;
|
||||
padding: var(--spacing-lg) 0;
|
||||
text-align: center;
|
||||
}
|
||||
.footer p {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 968px) {
|
||||
.sample-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.sample-grid { grid-template-columns: 1fr; }
|
||||
.page-hero h1 { font-size: 36px; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<a href="/index.html" class="logo">
|
||||
<span>🔍</span>
|
||||
<span>愉悦查</span>
|
||||
</a>
|
||||
<div class="nav-links">
|
||||
<a href="/index.html">首页</a>
|
||||
<a href="/#products">产品服务</a>
|
||||
<a href="/sample.html">示例报告</a>
|
||||
<a href="/#technology">AI 能力</a>
|
||||
<a href="#partnership">代理合作</a>
|
||||
<a href="#about">关于我们</a>
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" target="_blank">联系客服</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Page Hero -->
|
||||
<section class="page-hero">
|
||||
<div class="container">
|
||||
<h1>示例报告</h1>
|
||||
<p>查看真实报告样本,了解报告内容和格式,助您做出明智决策</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Sample Reports Grid -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="sample-grid">
|
||||
<!-- Sample 1 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">📊</div>
|
||||
<h3 class="sample-name">个人大数据报告</h3>
|
||||
<p class="sample-desc">全面个人背景分析,包含身份信息、社交网络、行为特征等多维度数据评估</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 身份信息核验</li>
|
||||
<li>✓ 社交网络分析</li>
|
||||
<li>✓ 行为特征评估</li>
|
||||
<li>✓ 风险等级评定</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥49.8</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
|
||||
<!-- Sample 2 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">💕</div>
|
||||
<h3 class="sample-name">婚恋风险报告</h3>
|
||||
<p class="sample-desc">婚恋风险评估,帮助了解对方的婚姻状况、信用记录等关键信息</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 婚姻状况核验</li>
|
||||
<li>✓ 信用记录查询</li>
|
||||
<li>✓ 风险评估</li>
|
||||
<li>✓ 隐私保护</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥39.9</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
|
||||
<!-- Sample 3 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">💼</div>
|
||||
<h3 class="sample-name">入职背调报告</h3>
|
||||
<p class="sample-desc">员工背景筛查,降低用工风险,包含学历、工作履历、信用记录等</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 学历验证</li>
|
||||
<li>✓ 工作履历核实</li>
|
||||
<li>✓ 信用记录查询</li>
|
||||
<li>✓ 批量优惠</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥69.9</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
|
||||
<!-- Sample 4 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">🏢</div>
|
||||
<h3 class="sample-name">小微企业报告</h3>
|
||||
<p class="sample-desc">企业风险筛查,合作前必备,包含工商信息、司法风险、经营状况等</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 工商信息查询</li>
|
||||
<li>✓ 司法风险评估</li>
|
||||
<li>✓ 经营状况分析</li>
|
||||
<li>✓ 合作风险评估</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥69.9</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
|
||||
<!-- Sample 5 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">🧹</div>
|
||||
<h3 class="sample-name">家政风险报告</h3>
|
||||
<p class="sample-desc">家政人员背调,雇佣更安全,包含身份信息、犯罪记录、信用状况等</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 身份信息核验</li>
|
||||
<li>✓ 犯罪记录查询</li>
|
||||
<li>✓ 信用状况评估</li>
|
||||
<li>✓ 雇佣安全保障</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥39.9</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/homeservice" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
|
||||
<!-- Sample 6 -->
|
||||
<div class="sample-card">
|
||||
<div class="sample-icon">💳</div>
|
||||
<h3 class="sample-name">消金报告</h3>
|
||||
<p class="sample-desc">消费金融风险评估,快速决策支持,包含信用记录、负债情况、还款能力等</p>
|
||||
<ul class="sample-features">
|
||||
<li>✓ 信用记录查询</li>
|
||||
<li>✓ 负债情况分析</li>
|
||||
<li>✓ 还款能力评估</li>
|
||||
<li>✓ 快速决策支持</li>
|
||||
</ul>
|
||||
<div class="sample-price">¥39.9</div>
|
||||
<a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-primary" style="width:100%">👁️ 查看示例</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn btn-outline" style="width:100%;margin-top:10px">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p>© 2026 愉悦查(北京正信环宇科技有限公司)| 让信任无处不在,让合作没有距离</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user