Initial commit: 愉悦查官网(清理所有备份)
This commit is contained in:
@@ -0,0 +1,699 @@
|
||||
<!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="愉悦查入职背调报告,员工背景筛查,降低用工风险,批量查询优惠,企业招聘必备">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/backgroundcheck.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/backgroundcheck.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 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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; --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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💼 企业必备</span>
|
||||
<h1>入职背调报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业招聘必备,员工背景筛查,降低用工风险,提升招聘质量,批量查询更优惠</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📋</div><h3>全面筛查</h3><p>3-4 个数据接口组合,全面背景调查</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>批量优惠</h3><p>企业批量查询享受专属折扣</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循个人信息保护法规</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>降低风险</h3><p>有效降低用工风险,提升招聘质量</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>学历信息验证</li><li>工作履历核实</li><li>司法风险排查</li><li>信用记录查询</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>企业招聘背景调查</li><li>高管入职背调</li><li>关键岗位人员筛查</li><li>批量员工背景核实</li><li>合作伙伴背景调查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>降低用工风险,从背调开始</h2>
|
||||
<p>立即获取入职背调报告,提升招聘质量</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</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;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>© 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>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查入职背调报告,员工背景筛查,降低用工风险,批量查询优惠,企业招聘必备">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; --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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💼 企业必备</span>
|
||||
<h1>入职背调报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业招聘必备,员工背景筛查,降低用工风险,提升招聘质量,批量查询更优惠</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📋</div><h3>全面筛查</h3><p>3-4 个数据接口组合,全面背景调查</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>批量优惠</h3><p>企业批量查询享受专属折扣</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循个人信息保护法规</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>降低风险</h3><p>有效降低用工风险,提升招聘质量</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>学历信息验证</li><li>工作履历核实</li><li>司法风险排查</li><li>信用记录查询</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>企业招聘背景调查</li><li>高管入职背调</li><li>关键岗位人员筛查</li><li>批量员工背景核实</li><li>合作伙伴背景调查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>降低用工风险,从背调开始</h2>
|
||||
<p>立即获取入职背调报告,提升招聘质量</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">入职背调报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查入职背调报告,员工背景筛查,降低用工风险,批量查询优惠,企业招聘必备">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; --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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💼 企业必备</span>
|
||||
<h1>入职背调报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业招聘必备,员工背景筛查,降低用工风险,提升招聘质量,批量查询更优惠</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📋</div><h3>全面筛查</h3><p>3-4 个数据接口组合,全面背景调查</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>批量优惠</h3><p>企业批量查询享受专属折扣</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循个人信息保护法规</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>降低风险</h3><p>有效降低用工风险,提升招聘质量</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>学历信息验证</li><li>工作履历核实</li><li>司法风险排查</li><li>信用记录查询</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>企业招聘背景调查</li><li>高管入职背调</li><li>关键岗位人员筛查</li><li>批量员工背景核实</li><li>合作伙伴背景调查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>降低用工风险,从背调开始</h2>
|
||||
<p>立即获取入职背调报告,提升招聘质量</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/backgroundcheck" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=backgroundcheck" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">入职背调报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,699 @@
|
||||
<!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="愉悦查小微企业报告,3-4 个数据接口组合,企业风险筛查,合作前必备,PDF 格式下载">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/companyinfo.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/companyinfo.html">
|
||||
<meta property="og:title" content="小微企业报告 - 愉悦查">
|
||||
<meta property="og:description" content="企业风险筛查,合作前必备,3-4 个数据接口交叉验证。">
|
||||
<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="企业风险筛查,合作前必备,3-4 个数据接口交叉验证。">
|
||||
<meta name="twitter:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: all 0.3s; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🏢 合作必备</span>
|
||||
<h1>小微企业报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业合作前必备,全面了解企业经营状况、信用记录、司法风险等信息,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>全面尽调</h3><p>3-4 个数据接口组合,全面企业画像</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>风险预警</h3><p>提前发现潜在风险,避免损失</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔍</div><h3>深度分析</h3><p>多维度企业数据分析</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥69.9,获取全面企业信息</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>企业基本信息</li><li>经营状态分析</li><li>信用记录查询</li><li>司法风险排查</li><li>关联关系分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>商业合作前尽调</li><li>供应商资质审核</li><li>客户信用评估</li><li>投资前背景调查</li><li>合作伙伴风险筛查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>合作前查一查,风险早知道</h2>
|
||||
<p>立即获取小微企业报告,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</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;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>© 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>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查小微企业报告,3-4 个数据接口组合,企业风险筛查,合作前必备,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: all 0.3s; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🏢 合作必备</span>
|
||||
<h1>小微企业报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业合作前必备,全面了解企业经营状况、信用记录、司法风险等信息,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>全面尽调</h3><p>3-4 个数据接口组合,全面企业画像</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>风险预警</h3><p>提前发现潜在风险,避免损失</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔍</div><h3>深度分析</h3><p>多维度企业数据分析</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥69.9,获取全面企业信息</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>企业基本信息</li><li>经营状态分析</li><li>信用记录查询</li><li>司法风险排查</li><li>关联关系分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>商业合作前尽调</li><li>供应商资质审核</li><li>客户信用评估</li><li>投资前背景调查</li><li>合作伙伴风险筛查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>合作前查一查,风险早知道</h2>
|
||||
<p>立即获取小微企业报告,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">小微企业报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查小微企业报告,3-4 个数据接口组合,企业风险筛查,合作前必备,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; transition: all 0.3s; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🏢 合作必备</span>
|
||||
<h1>小微企业报告</h1>
|
||||
<div class="price">¥69.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">企业合作前必备,全面了解企业经营状况、信用记录、司法风险等信息,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>全面尽调</h3><p>3-4 个数据接口组合,全面企业画像</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>风险预警</h3><p>提前发现潜在风险,避免损失</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔍</div><h3>深度分析</h3><p>多维度企业数据分析</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥69.9,获取全面企业信息</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>企业基本信息</li><li>经营状态分析</li><li>信用记录查询</li><li>司法风险排查</li><li>关联关系分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>商业合作前尽调</li><li>供应商资质审核</li><li>客户信用评估</li><li>投资前背景调查</li><li>合作伙伴风险筛查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>合作前查一查,风险早知道</h2>
|
||||
<p>立即获取小微企业报告,降低合作风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/companyinfo" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥69.9</a><a href="https://www.yuyuecha.com/example?feature=companyinfo" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">小微企业报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,699 @@
|
||||
<!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="愉悦查消金报告,3-4 个数据接口组合,消费金融风险评估,快速决策支持,PDF 格式下载">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/consumerFinanceReport.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/consumerFinanceReport.html">
|
||||
<meta property="og:title" content="消金报告 - 愉悦查">
|
||||
<meta property="og:description" content="消费金融风险评估,快速决策支持,PDF 下载。">
|
||||
<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="消费金融风险评估,快速决策支持,PDF 下载。">
|
||||
<meta name="twitter:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💳 金融风控</span>
|
||||
<h1>消金报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">消费金融风险评估,快速决策支持,降低信贷风险,助力金融机构精准风控</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>多维评估</h3><p>3-4 个数据接口组合,全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准风控</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循金融数据使用规范</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,获取专业风控报告</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>个人身份信息核验</li><li>信用记录查询</li><li>负债情况分析</li><li>司法风险排查</li><li>消费行为评估</li><li>综合风险评分</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>消费贷款审批</li><li>信用卡申请审核</li><li>分期购物风控</li><li>小额信贷评估</li><li>个人信用核查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>精准风控,从消金报告开始</h2>
|
||||
<p>立即获取消金报告,降低信贷风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</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;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>© 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>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查消金报告,3-4 个数据接口组合,消费金融风险评估,快速决策支持,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💳 金融风控</span>
|
||||
<h1>消金报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">消费金融风险评估,快速决策支持,降低信贷风险,助力金融机构精准风控</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>多维评估</h3><p>3-4 个数据接口组合,全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准风控</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循金融数据使用规范</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,获取专业风控报告</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>个人身份信息核验</li><li>信用记录查询</li><li>负债情况分析</li><li>司法风险排查</li><li>消费行为评估</li><li>综合风险评分</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>消费贷款审批</li><li>信用卡申请审核</li><li>分期购物风控</li><li>小额信贷评估</li><li>个人信用核查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>精准风控,从消金报告开始</h2>
|
||||
<p>立即获取消金报告,降低信贷风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">消金报告</a></li><li><a href="/index.html#products">家政风险报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查消金报告,3-4 个数据接口组合,消费金融风险评估,快速决策支持,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">💳 金融风控</span>
|
||||
<h1>消金报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">消费金融风险评估,快速决策支持,降低信贷风险,助力金融机构精准风控</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">📊</div><h3>多维评估</h3><p>3-4 个数据接口组合,全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速响应</h3><p>秒级生成报告,决策不等待</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准风控</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>合规授权</h3><p>严格遵循金融数据使用规范</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,获取专业风控报告</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>个人身份信息核验</li><li>信用记录查询</li><li>负债情况分析</li><li>司法风险排查</li><li>消费行为评估</li><li>综合风险评分</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>消费贷款审批</li><li>信用卡申请审核</li><li>分期购物风控</li><li>小额信贷评估</li><li>个人信用核查</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>精准风控,从消金报告开始</h2>
|
||||
<p>立即获取消金报告,降低信贷风险</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/consumerFinanceReport" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=consumerFinanceReport" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">消金报告</a></li><li><a href="/index.html#products">家政风险报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,699 @@
|
||||
<!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="愉悦查家政风险报告,家政人员背调,雇佣更安全,PDF 格式下载,保护您和家人的安全">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/homeservice.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/homeservice.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 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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🧹 家庭安全</span>
|
||||
<h1>家政风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">家政人员背景调查,雇佣更安全,保护您和家人的安全,让家政服务更放心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>安全保障</h3><p>全面背景筛查,保护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,守护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>犯罪记录排查</li><li>信用记录查询</li><li>司法风险筛查</li><li>个人背景分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>保姆雇佣前背调</li><li>月嫂背景调查</li><li>育儿嫂资质核实</li><li>钟点工背景筛查</li><li>护工资质验证</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护家人,从背调开始</h2>
|
||||
<p>立即获取家政风险报告,让家政服务更安心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</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;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>© 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>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查家政风险报告,家政人员背调,雇佣更安全,PDF 格式下载,保护您和家人的安全">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🧹 家庭安全</span>
|
||||
<h1>家政风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">家政人员背景调查,雇佣更安全,保护您和家人的安全,让家政服务更放心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>安全保障</h3><p>全面背景筛查,保护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,守护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>犯罪记录排查</li><li>信用记录查询</li><li>司法风险筛查</li><li>个人背景分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>保姆雇佣前背调</li><li>月嫂背景调查</li><li>育儿嫂资质核实</li><li>钟点工背景筛查</li><li>护工资质验证</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护家人,从背调开始</h2>
|
||||
<p>立即获取家政风险报告,让家政服务更安心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">家政风险报告</a></li><li><a href="/index.html#products">消金报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,384 @@
|
||||
<!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="愉悦查家政风险报告,家政人员背调,雇佣更安全,PDF 格式下载,保护您和家人的安全">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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-gray: #F5F7FA; --text-primary: #1A1A1A; --text-secondary: #666666; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-lg: 16px; }
|
||||
* { 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; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: 8px; border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: 32px; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: 16px; }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: 24px 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: 64px 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: 8px; }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
|
||||
.feature-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius-lg); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: 16px; }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
|
||||
.content-list { background: white; padding: 24px; border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: 64px 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
|
||||
.footer { background: #1A1A1A; color: white; padding: 64px 0 32px; }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: 8px; }
|
||||
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px">🧹 家庭安全</span>
|
||||
<h1>家政风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px">家政人员背景调查,雇佣更安全,保护您和家人的安全,让家政服务更放心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn btn-outline">立即查询</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🛡️</div><h3>安全保障</h3><p>全面背景筛查,保护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 报告</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>价格实惠</h3><p>仅需¥39.9,守护家庭安全</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid">
|
||||
<div class="content-list"><h3>📊 报告包含</h3><ul><li>身份信息核验</li><li>犯罪记录排查</li><li>信用记录查询</li><li>司法风险筛查</li><li>个人背景分析</li><li>综合风险评估</li></ul></div>
|
||||
<div class="content-list"><h3>✅ 适用场景</h3><ul><li>保姆雇佣前背调</li><li>月嫂背景调查</li><li>育儿嫂资质核实</li><li>钟点工背景筛查</li><li>护工资质验证</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护家人,从背调开始</h2>
|
||||
<p>立即获取家政风险报告,让家政服务更安心</p>
|
||||
<div class="cta-buttons"><a href="https://www.yuyuecha.com/inquire/homeservice" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a><a href="https://www.yuyuecha.com/example?feature=homeservice" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a></div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">家政风险报告</a></li><li><a href="/index.html#products">消金报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,723 @@
|
||||
<!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="愉悦查婚恋风险报告,3-4 个数据接口组合,婚恋风险评估,隐私保护,PDF 格式下载">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/marriage.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/marriage.html">
|
||||
<meta property="og:title" content="婚恋风险报告 - 愉悦查">
|
||||
<meta property="og:description" content="婚姻状态、不良记录 A-F 类查询,婚恋风险评估,隐私保护,PDF 下载。">
|
||||
<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="婚姻状态、不良记录 A-F 类查询,婚恋风险评估,隐私保护,PDF 下载。">
|
||||
<meta name="twitter:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-xs: 8px; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-md: 8px; --radius-lg: 16px; --shadow-sm: 0 2px 8px rgba(0,0,0,0.08); --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; font-size: 16px; line-height: 1.6; color: var(--text-primary); }
|
||||
a { text-decoration: none; color: inherit; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { background: transparent; border: 2px solid var(--primary-orange); color: var(--primary-orange); }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link { font-weight: 500; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: var(--spacing-md) 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: var(--spacing-xs); }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
|
||||
.feature-card { text-align: center; padding: var(--spacing-lg); background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: var(--spacing-sm); }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
|
||||
.content-list { background: white; padding: var(--spacing-lg); border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: var(--spacing-lg); }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 var(--spacing-lg); }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.footer-bottom { text-align: center; padding-top: var(--spacing-lg); border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px;">💕 隐私保护</span>
|
||||
<h1>婚恋风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px;">婚恋关系风险评估,帮助您了解对方的婚姻状况、信用记录等关键信息,保护您的感情和财产安全</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录,保护双方隐私</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📡</div><h3>官方数据</h3><p>3-4 个官方数据接口,信息准确可靠</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 下载</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥39.9,获取全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid" style="margin-top:32px">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>婚姻状况核验</li>
|
||||
<li>信用记录查询</li>
|
||||
<li>司法风险排查</li>
|
||||
<li>个人背景分析</li>
|
||||
<li>综合风险评估</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>恋爱前背景了解</li>
|
||||
<li>婚前风险评估</li>
|
||||
<li>相亲对象调查</li>
|
||||
<li>再婚前背景核实</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护好自己,从了解开始</h2>
|
||||
<p>立即获取婚恋风险报告,让感情更加安心</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a>
|
||||
</div>
|
||||
</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;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>© 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>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,408 @@
|
||||
<!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="愉悦查婚恋风险报告,3-4 个数据接口组合,婚恋风险评估,隐私保护,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-xs: 8px; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-md: 8px; --radius-lg: 16px; --shadow-sm: 0 2px 8px rgba(0,0,0,0.08); --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; font-size: 16px; line-height: 1.6; color: var(--text-primary); }
|
||||
a { text-decoration: none; color: inherit; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { background: transparent; border: 2px solid var(--primary-orange); color: var(--primary-orange); }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link { font-weight: 500; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: var(--spacing-md) 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: var(--spacing-xs); }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
|
||||
.feature-card { text-align: center; padding: var(--spacing-lg); background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: var(--spacing-sm); }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
|
||||
.content-list { background: white; padding: var(--spacing-lg); border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: var(--spacing-lg); }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 var(--spacing-lg); }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.footer-bottom { text-align: center; padding-top: var(--spacing-lg); border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px;">💕 隐私保护</span>
|
||||
<h1>婚恋风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px;">婚恋关系风险评估,帮助您了解对方的婚姻状况、信用记录等关键信息,保护您的感情和财产安全</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录,保护双方隐私</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📡</div><h3>官方数据</h3><p>3-4 个官方数据接口,信息准确可靠</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 下载</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥39.9,获取全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid" style="margin-top:32px">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>婚姻状况核验</li>
|
||||
<li>信用记录查询</li>
|
||||
<li>司法风险排查</li>
|
||||
<li>个人背景分析</li>
|
||||
<li>综合风险评估</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>恋爱前背景了解</li>
|
||||
<li>婚前风险评估</li>
|
||||
<li>相亲对象调查</li>
|
||||
<li>再婚前背景核实</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护好自己,从了解开始</h2>
|
||||
<p>立即获取婚恋风险报告,让感情更加安心</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">入职背调报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,408 @@
|
||||
<!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="愉悦查婚恋风险报告,3-4 个数据接口组合,婚恋风险评估,隐私保护,PDF 格式下载">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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; --text-primary: #1A1A1A; --text-secondary: #666666; --success: #07C160; --spacing-xs: 8px; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 48px; --spacing-xl: 80px; --radius-md: 8px; --radius-lg: 16px; --shadow-sm: 0 2px 8px rgba(0,0,0,0.08); --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; font-size: 16px; line-height: 1.6; color: var(--text-primary); }
|
||||
a { text-decoration: none; color: inherit; }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); transition: var(--transition); border: none; }
|
||||
.btn-primary { background: var(--primary-gradient); color: white; }
|
||||
.btn-outline { background: transparent; border: 2px solid var(--primary-orange); color: var(--primary-orange); }
|
||||
.navbar { position: fixed; top: 0; background: rgba(255,255,255,0.95); 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; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link { font-weight: 500; }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
.product-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%); text-align: center; }
|
||||
.product-hero h1 { font-size: 48px; color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.price { font-size: 56px; font-weight: 700; color: var(--primary-orange); margin: var(--spacing-md) 0; }
|
||||
.price span { font-size: 24px; color: var(--text-secondary); }
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 36px; margin-bottom: var(--spacing-xs); }
|
||||
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
|
||||
.feature-card { text-align: center; padding: var(--spacing-lg); background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
|
||||
.feature-icon { font-size: 48px; margin-bottom: var(--spacing-sm); }
|
||||
.content-section { background: var(--bg-gray); }
|
||||
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
|
||||
.content-list { background: white; padding: var(--spacing-lg); border-radius: var(--radius-lg); }
|
||||
.content-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
|
||||
.cta { background: var(--primary-gradient); color: white; text-align: center; padding: var(--spacing-xl) 0; }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); margin-top: var(--spacing-lg); }
|
||||
.footer { background: #1A1A1A; color: white; padding: var(--spacing-xl) 0 var(--spacing-lg); }
|
||||
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--spacing-lg); }
|
||||
.footer-brand h3 { color: var(--primary-orange); margin-bottom: var(--spacing-sm); }
|
||||
.footer-bottom { text-align: center; padding-top: var(--spacing-lg); border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }
|
||||
@media (max-width: 768px) { .features-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; } .product-hero h1 { font-size: 32px; } }
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span style="display:inline-block;padding:8px 16px;background:rgba(255,106,25,0.1);color:var(--primary-orange);border-radius:20px;margin-bottom:16px;">💕 隐私保护</span>
|
||||
<h1>婚恋风险报告</h1>
|
||||
<div class="price">¥39.9 <span>/份</span></div>
|
||||
<p style="font-size:18px;color:var(--text-secondary);max-width:700px;margin:0 auto 32px;">婚恋关系风险评估,帮助您了解对方的婚姻状况、信用记录等关键信息,保护您的感情和财产安全</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card"><div class="feature-icon">🔒</div><h3>隐私保护</h3><p>严格保密查询记录,保护双方隐私</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📡</div><h3>官方数据</h3><p>3-4 个官方数据接口,信息准确可靠</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">⚡</div><h3>快速出结果</h3><p>秒级响应,最快 3 秒生成报告</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">📄</div><h3>PDF 下载</h3><p>专业格式报告,支持永久保存</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">💰</div><h3>性价比高</h3><p>仅需¥39.9,获取全面风险评估</p></div>
|
||||
<div class="feature-card"><div class="feature-icon">🎯</div><h3>精准评估</h3><p>AI 智能分析,准确率 99% 以上</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<div class="content-grid" style="margin-top:32px">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>婚姻状况核验</li>
|
||||
<li>信用记录查询</li>
|
||||
<li>司法风险排查</li>
|
||||
<li>个人背景分析</li>
|
||||
<li>综合风险评估</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>恋爱前背景了解</li>
|
||||
<li>婚前风险评估</li>
|
||||
<li>相亲对象调查</li>
|
||||
<li>再婚前背景核实</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>保护好自己,从了解开始</h2>
|
||||
<p>立即获取婚恋风险报告,让感情更加安心</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/marriage" class="btn" style="background:white;color:var(--primary-orange)">🚀 立即查询 - ¥39.9</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=marriage" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white">👁️ 查看示例</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand"><h3>愉悦查</h3><p>让信任无处不在,让合作没有距离</p></div>
|
||||
<div><h4 class="footer-title">产品</h4><ul class="footer-links"><li><a href="/index.html#products">个人大数据报告</a></li><li><a href="/index.html#products">婚恋风险报告</a></li><li><a href="/index.html#products">入职背调报告</a></li></ul></div>
|
||||
<div><h4 class="footer-title">公司</h4><ul class="footer-links"><li><a href="/index.html#about">关于我们</a></li><li><a href="#">联系我们</a></li></ul></div>
|
||||
<div><h4 class="footer-title">支持</h4><ul class="footer-links"><li><a href="#">帮助中心</a></li><li><a href="/apidemo/">API 文档</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved. 京 ICP 备 2025158088 号 -2</p></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,999 @@
|
||||
<!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="愉悦查个人大数据报告,3-4 个数据接口组合,全面个人背景分析,秒级生成,PDF 格式下载">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/product/riskassessment.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/product/riskassessment.html">
|
||||
<meta property="og:title" content="个人大数据报告 - 愉悦查">
|
||||
<meta property="og:description" content="手机在网时长、携号转网等信息查询,全面个人背景分析,秒级生成,PDF 下载。">
|
||||
<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="手机在网时长、携号转网等信息查询,全面个人背景分析,秒级生成,PDF 下载。">
|
||||
<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-orange-light: #FC6E18;
|
||||
--primary-orange-dark: #E64E10;
|
||||
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--text-primary: #1A1A1A;
|
||||
--text-secondary: #666666;
|
||||
--text-light: #999999;
|
||||
--success: #07C160;
|
||||
--spacing-xs: 8px;
|
||||
--spacing-sm: 16px;
|
||||
--spacing-md: 24px;
|
||||
--spacing-lg: 48px;
|
||||
--spacing-xl: 80px;
|
||||
--radius-sm: 4px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--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(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;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.product-hero {
|
||||
padding: 160px 0 80px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
||||
text-align: center;
|
||||
}
|
||||
.product-hero-badge {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: linear-gradient(135deg, rgba(255, 106, 25, 0.1), rgba(252, 110, 24, 0.15));
|
||||
color: var(--primary-orange);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
border-radius: 20px;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
.product-hero h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.product-hero .price {
|
||||
font-size: 56px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
margin: var(--spacing-md) 0;
|
||||
}
|
||||
.product-hero .price span {
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.product-hero p {
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
max-width: 700px;
|
||||
margin: 0 auto var(--spacing-lg);
|
||||
}
|
||||
|
||||
/* Features Section */
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title {
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.section-subtitle {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.feature-card {
|
||||
text-align: center;
|
||||
padding: var(--spacing-lg) var(--spacing-md);
|
||||
border-radius: var(--radius-lg);
|
||||
background: white;
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.feature-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0 auto var(--spacing-sm);
|
||||
background: var(--primary-gradient);
|
||||
border-radius: var(--radius-md);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 28px;
|
||||
}
|
||||
.feature-title { font-size: 18px; font-weight: 600; margin-bottom: var(--spacing-xs); }
|
||||
.feature-desc { font-size: 14px; color: var(--text-secondary); }
|
||||
|
||||
/* Content Section */
|
||||
.content-section {
|
||||
background: var(--bg-gray);
|
||||
}
|
||||
.content-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
.content-list {
|
||||
background: white;
|
||||
padding: var(--spacing-lg);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.content-list h3 {
|
||||
font-size: 24px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.content-list ul {
|
||||
margin: var(--spacing-sm) 0;
|
||||
}
|
||||
.content-list li {
|
||||
font-size: 16px;
|
||||
color: var(--text-secondary);
|
||||
padding: 12px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.content-list li:last-child { border-bottom: none; }
|
||||
.content-list li::before {
|
||||
content: '✓';
|
||||
color: var(--success);
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
.cta {
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
.cta h2 { font-size: 36px; margin-bottom: var(--spacing-sm); }
|
||||
.cta p { font-size: 18px; opacity: 0.95; margin-bottom: var(--spacing-lg); }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); }
|
||||
.cta .btn { background: white; color: var(--primary-orange); }
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1A1A1A;
|
||||
color: white;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr repeat(3, 1fr);
|
||||
gap: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
.footer-brand h3 { font-size: 24px; margin-bottom: var(--spacing-sm); color: var(--primary-orange); }
|
||||
.footer-brand p { font-size: 14px; opacity: 0.8; }
|
||||
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: var(--spacing-sm); }
|
||||
.footer-links li { margin-bottom: var(--spacing-xs); }
|
||||
.footer-links a { font-size: 14px; opacity: 0.8; }
|
||||
.footer-links a:hover { opacity: 1; color: var(--primary-orange); }
|
||||
.footer-bottom {
|
||||
padding-top: var(--spacing-lg);
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1024px) {
|
||||
.features-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.content-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container { height: 60px; padding: 0 12px; }
|
||||
.logo-img { height: 40px; }
|
||||
.nav-menu { display: none; }
|
||||
.product-hero { padding: 100px 0 40px; }
|
||||
.product-hero h1 { font-size: 32px; }
|
||||
.product-hero .price { font-size: 40px; }
|
||||
.features-grid { grid-template-columns: 1fr; }
|
||||
.cta-buttons { flex-direction: column; }
|
||||
.footer { padding: var(--spacing-lg) 0; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
/* ===== 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>
|
||||
|
||||
<!-- Product Hero -->
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span class="product-hero-badge">🔥 热销产品</span>
|
||||
<h1>个人大数据报告</h1>
|
||||
<div class="price">¥49.8 <span>/份</span></div>
|
||||
<p>全面个人背景分析,包含身份信息、社交网络、行为特征等多维度数据评估,助您快速了解个人综合情况</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features Section -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<p class="section-subtitle">为什么选择我们的个人大数据报告</p>
|
||||
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📡</div>
|
||||
<h3 class="feature-title">海量数据</h3>
|
||||
<p class="feature-desc">3-4 个官方数据接口组合,覆盖多维度信息</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">⚡</div>
|
||||
<h3 class="feature-title">秒级响应</h3>
|
||||
<p class="feature-desc">智能分析引擎,最快 3 秒生成报告</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📄</div>
|
||||
<h3 class="feature-title">PDF 下载</h3>
|
||||
<p class="feature-desc">专业格式报告,支持永久保存和打印</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔒</div>
|
||||
<h3 class="feature-title">安全合规</h3>
|
||||
<p class="feature-desc">等保三级认证,数据加密传输</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🎯</div>
|
||||
<h3 class="feature-title">精准分析</h3>
|
||||
<p class="feature-desc">AI 智能分析,准确率 99% 以上</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">💰</div>
|
||||
<h3 class="feature-title">性价比高</h3>
|
||||
<p class="feature-desc">仅需¥49.8,获取全面个人背景分析</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Content Section -->
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<p class="section-subtitle">一份报告,全面了解</p>
|
||||
|
||||
<div class="content-grid">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>个人身份信息核验</li>
|
||||
<li>社交网络行为分析</li>
|
||||
<li>消费行为特征评估</li>
|
||||
<li>信用风险评估</li>
|
||||
<li>多维度综合评分</li>
|
||||
<li>PDF 格式完整报告</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>个人背景了解</li>
|
||||
<li>交友前风险评估</li>
|
||||
<li>合作伙伴信用调查</li>
|
||||
<li>个人信用自查</li>
|
||||
<li>其他需要了解个人情况的场景</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>准备好开始查询了吗?</h2>
|
||||
<p>立即获取个人大数据报告,全面了解个人背景信息</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn">🚀 立即查询 - ¥49.8</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white;">👁️ 查看示例</a>
|
||||
</div>
|
||||
</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>© 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>
|
||||
// Navbar Scroll Effect
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.querySelector('.navbar');
|
||||
if (window.scrollY > 50) {
|
||||
navbar.style.boxShadow = '0 4px 30px rgba(0,0,0,0.12)';
|
||||
} else {
|
||||
navbar.style.boxShadow = '0 2px 20px rgba(0,0,0,0.08)';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,716 @@
|
||||
<!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="愉悦查个人大数据报告,3-4 个数据接口组合,全面个人背景分析,秒级生成,PDF 格式下载">
|
||||
|
||||
<!-- 预加载字体 -->
|
||||
<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%);
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--text-primary: #1A1A1A;
|
||||
--text-secondary: #666666;
|
||||
--text-light: #999999;
|
||||
--success: #07C160;
|
||||
--spacing-xs: 8px;
|
||||
--spacing-sm: 16px;
|
||||
--spacing-md: 24px;
|
||||
--spacing-lg: 48px;
|
||||
--spacing-xl: 80px;
|
||||
--radius-sm: 4px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--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(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;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.product-hero {
|
||||
padding: 160px 0 80px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
||||
text-align: center;
|
||||
}
|
||||
.product-hero-badge {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: linear-gradient(135deg, rgba(255, 106, 25, 0.1), rgba(252, 110, 24, 0.15));
|
||||
color: var(--primary-orange);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
border-radius: 20px;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
.product-hero h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.product-hero .price {
|
||||
font-size: 56px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
margin: var(--spacing-md) 0;
|
||||
}
|
||||
.product-hero .price span {
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.product-hero p {
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
max-width: 700px;
|
||||
margin: 0 auto var(--spacing-lg);
|
||||
}
|
||||
|
||||
/* Features Section */
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title {
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.section-subtitle {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.feature-card {
|
||||
text-align: center;
|
||||
padding: var(--spacing-lg) var(--spacing-md);
|
||||
border-radius: var(--radius-lg);
|
||||
background: white;
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.feature-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0 auto var(--spacing-sm);
|
||||
background: var(--primary-gradient);
|
||||
border-radius: var(--radius-md);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 28px;
|
||||
}
|
||||
.feature-title { font-size: 18px; font-weight: 600; margin-bottom: var(--spacing-xs); }
|
||||
.feature-desc { font-size: 14px; color: var(--text-secondary); }
|
||||
|
||||
/* Content Section */
|
||||
.content-section {
|
||||
background: var(--bg-gray);
|
||||
}
|
||||
.content-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
.content-list {
|
||||
background: white;
|
||||
padding: var(--spacing-lg);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.content-list h3 {
|
||||
font-size: 24px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.content-list ul {
|
||||
margin: var(--spacing-sm) 0;
|
||||
}
|
||||
.content-list li {
|
||||
font-size: 16px;
|
||||
color: var(--text-secondary);
|
||||
padding: 12px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.content-list li:last-child { border-bottom: none; }
|
||||
.content-list li::before {
|
||||
content: '✓';
|
||||
color: var(--success);
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
.cta {
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
.cta h2 { font-size: 36px; margin-bottom: var(--spacing-sm); }
|
||||
.cta p { font-size: 18px; opacity: 0.95; margin-bottom: var(--spacing-lg); }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); }
|
||||
.cta .btn { background: white; color: var(--primary-orange); }
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1A1A1A;
|
||||
color: white;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr repeat(3, 1fr);
|
||||
gap: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
.footer-brand h3 { font-size: 24px; margin-bottom: var(--spacing-sm); color: var(--primary-orange); }
|
||||
.footer-brand p { font-size: 14px; opacity: 0.8; }
|
||||
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: var(--spacing-sm); }
|
||||
.footer-links li { margin-bottom: var(--spacing-xs); }
|
||||
.footer-links a { font-size: 14px; opacity: 0.8; }
|
||||
.footer-links a:hover { opacity: 1; color: var(--primary-orange); }
|
||||
.footer-bottom {
|
||||
padding-top: var(--spacing-lg);
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1024px) {
|
||||
.features-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.content-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container { height: 60px; padding: 0 12px; }
|
||||
.logo-img { height: 40px; }
|
||||
.nav-menu { display: none; }
|
||||
.product-hero { padding: 100px 0 40px; }
|
||||
.product-hero h1 { font-size: 32px; }
|
||||
.product-hero .price { font-size: 40px; }
|
||||
.features-grid { grid-template-columns: 1fr; }
|
||||
.cta-buttons { flex-direction: column; }
|
||||
.footer { padding: var(--spacing-lg) 0; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
|
||||
<!-- Product Hero -->
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span class="product-hero-badge">🔥 热销产品</span>
|
||||
<h1>个人大数据报告</h1>
|
||||
<div class="price">¥49.8 <span>/份</span></div>
|
||||
<p>全面个人背景分析,包含身份信息、社交网络、行为特征等多维度数据评估,助您快速了解个人综合情况</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features Section -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<p class="section-subtitle">为什么选择我们的个人大数据报告</p>
|
||||
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📡</div>
|
||||
<h3 class="feature-title">海量数据</h3>
|
||||
<p class="feature-desc">3-4 个官方数据接口组合,覆盖多维度信息</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">⚡</div>
|
||||
<h3 class="feature-title">秒级响应</h3>
|
||||
<p class="feature-desc">智能分析引擎,最快 3 秒生成报告</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📄</div>
|
||||
<h3 class="feature-title">PDF 下载</h3>
|
||||
<p class="feature-desc">专业格式报告,支持永久保存和打印</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔒</div>
|
||||
<h3 class="feature-title">安全合规</h3>
|
||||
<p class="feature-desc">等保三级认证,数据加密传输</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🎯</div>
|
||||
<h3 class="feature-title">精准分析</h3>
|
||||
<p class="feature-desc">AI 智能分析,准确率 99% 以上</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">💰</div>
|
||||
<h3 class="feature-title">性价比高</h3>
|
||||
<p class="feature-desc">仅需¥49.8,获取全面个人背景分析</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Content Section -->
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<p class="section-subtitle">一份报告,全面了解</p>
|
||||
|
||||
<div class="content-grid">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>个人身份信息核验</li>
|
||||
<li>社交网络行为分析</li>
|
||||
<li>消费行为特征评估</li>
|
||||
<li>信用风险评估</li>
|
||||
<li>多维度综合评分</li>
|
||||
<li>PDF 格式完整报告</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>个人背景了解</li>
|
||||
<li>交友前风险评估</li>
|
||||
<li>合作伙伴信用调查</li>
|
||||
<li>个人信用自查</li>
|
||||
<li>其他需要了解个人情况的场景</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>准备好开始查询了吗?</h2>
|
||||
<p>立即获取个人大数据报告,全面了解个人背景信息</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn">🚀 立即查询 - ¥49.8</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white;">👁️ 查看示例</a>
|
||||
</div>
|
||||
</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;">愉悦查(北京正信环宇科技有限公司)</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">产品</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/index.html#products">个人大数据报告</a></li>
|
||||
<li><a href="/index.html#products">婚恋风险报告</a></li>
|
||||
<li><a href="/index.html#products">入职背调报告</a></li>
|
||||
<li><a href="/index.html#products">小微企业报告</a></li>
|
||||
<li><a href="/index.html#products">家政风险报告</a></li>
|
||||
<li><a href="/index.html#products">消金报告</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">公司</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/index.html#about">关于我们</a></li>
|
||||
<li><a href="#">加入我们</a></li>
|
||||
<li><a href="#">联系我们</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">支持</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="#">帮助中心</a></li>
|
||||
<li><a href="/apidemo/">API 文档</a></li>
|
||||
<li><a href="#">隐私政策</a></li>
|
||||
<li><a href="#">服务条款</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
|
||||
<p class="footer-icp">京 ICP 备 2025158088 号 -2</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Navbar Scroll Effect
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.querySelector('.navbar');
|
||||
if (window.scrollY > 50) {
|
||||
navbar.style.boxShadow = '0 4px 30px rgba(0,0,0,0.12)';
|
||||
} else {
|
||||
navbar.style.boxShadow = '0 2px 20px rgba(0,0,0,0.08)';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,716 @@
|
||||
<!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="愉悦查个人大数据报告,3-4 个数据接口组合,全面个人背景分析,秒级生成,PDF 格式下载">
|
||||
|
||||
<!-- 预加载字体 -->
|
||||
<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%);
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--text-primary: #1A1A1A;
|
||||
--text-secondary: #666666;
|
||||
--text-light: #999999;
|
||||
--success: #07C160;
|
||||
--spacing-xs: 8px;
|
||||
--spacing-sm: 16px;
|
||||
--spacing-md: 24px;
|
||||
--spacing-lg: 48px;
|
||||
--spacing-xl: 80px;
|
||||
--radius-sm: 4px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--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(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;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.product-hero {
|
||||
padding: 160px 0 80px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
||||
text-align: center;
|
||||
}
|
||||
.product-hero-badge {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: linear-gradient(135deg, rgba(255, 106, 25, 0.1), rgba(252, 110, 24, 0.15));
|
||||
color: var(--primary-orange);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
border-radius: 20px;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
.product-hero h1 {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.product-hero .price {
|
||||
font-size: 56px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
margin: var(--spacing-md) 0;
|
||||
}
|
||||
.product-hero .price span {
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.product-hero p {
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
max-width: 700px;
|
||||
margin: 0 auto var(--spacing-lg);
|
||||
}
|
||||
|
||||
/* Features Section */
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title {
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.section-subtitle {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.feature-card {
|
||||
text-align: center;
|
||||
padding: var(--spacing-lg) var(--spacing-md);
|
||||
border-radius: var(--radius-lg);
|
||||
background: white;
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.feature-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0 auto var(--spacing-sm);
|
||||
background: var(--primary-gradient);
|
||||
border-radius: var(--radius-md);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 28px;
|
||||
}
|
||||
.feature-title { font-size: 18px; font-weight: 600; margin-bottom: var(--spacing-xs); }
|
||||
.feature-desc { font-size: 14px; color: var(--text-secondary); }
|
||||
|
||||
/* Content Section */
|
||||
.content-section {
|
||||
background: var(--bg-gray);
|
||||
}
|
||||
.content-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
.content-list {
|
||||
background: white;
|
||||
padding: var(--spacing-lg);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.content-list h3 {
|
||||
font-size: 24px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.content-list ul {
|
||||
margin: var(--spacing-sm) 0;
|
||||
}
|
||||
.content-list li {
|
||||
font-size: 16px;
|
||||
color: var(--text-secondary);
|
||||
padding: 12px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.content-list li:last-child { border-bottom: none; }
|
||||
.content-list li::before {
|
||||
content: '✓';
|
||||
color: var(--success);
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
.cta {
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
.cta h2 { font-size: 36px; margin-bottom: var(--spacing-sm); }
|
||||
.cta p { font-size: 18px; opacity: 0.95; margin-bottom: var(--spacing-lg); }
|
||||
.cta-buttons { display: flex; justify-content: center; gap: var(--spacing-sm); }
|
||||
.cta .btn { background: white; color: var(--primary-orange); }
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1A1A1A;
|
||||
color: white;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr repeat(3, 1fr);
|
||||
gap: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
.footer-brand h3 { font-size: 24px; margin-bottom: var(--spacing-sm); color: var(--primary-orange); }
|
||||
.footer-brand p { font-size: 14px; opacity: 0.8; }
|
||||
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: var(--spacing-sm); }
|
||||
.footer-links li { margin-bottom: var(--spacing-xs); }
|
||||
.footer-links a { font-size: 14px; opacity: 0.8; }
|
||||
.footer-links a:hover { opacity: 1; color: var(--primary-orange); }
|
||||
.footer-bottom {
|
||||
padding-top: var(--spacing-lg);
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1024px) {
|
||||
.features-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.content-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container { height: 60px; padding: 0 12px; }
|
||||
.logo-img { height: 40px; }
|
||||
.nav-menu { display: none; }
|
||||
.product-hero { padding: 100px 0 40px; }
|
||||
.product-hero h1 { font-size: 32px; }
|
||||
.product-hero .price { font-size: 40px; }
|
||||
.features-grid { grid-template-columns: 1fr; }
|
||||
.cta-buttons { flex-direction: column; }
|
||||
.footer { padding: var(--spacing-lg) 0; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
/* Mobile Menu */
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
/* ===== Navigation ===== */
|
||||
.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;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.navbar.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--primary-orange);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Mobile Menu */
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.menu-toggle span {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background: var(--primary-orange);
|
||||
border-radius: 2px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar .container {
|
||||
height: 60px;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
flex-direction: column;
|
||||
padding: 24px;
|
||||
gap: 16px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
||||
transform: translateY(-100%);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="#" class="logo">
|
||||
<img src="../assets/logo.png" 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="#home" class="nav-link">首页</a></li>
|
||||
<li><a href="#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="#about" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="#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>
|
||||
|
||||
<!-- Product Hero -->
|
||||
<section class="product-hero">
|
||||
<div class="container">
|
||||
<span class="product-hero-badge">🔥 热销产品</span>
|
||||
<h1>个人大数据报告</h1>
|
||||
<div class="price">¥49.8 <span>/份</span></div>
|
||||
<p>全面个人背景分析,包含身份信息、社交网络、行为特征等多维度数据评估,助您快速了解个人综合情况</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-primary">👁️ 查看示例报告</a>
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn btn-outline">立即查询</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features Section -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">产品优势</h2>
|
||||
<p class="section-subtitle">为什么选择我们的个人大数据报告</p>
|
||||
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📡</div>
|
||||
<h3 class="feature-title">海量数据</h3>
|
||||
<p class="feature-desc">3-4 个官方数据接口组合,覆盖多维度信息</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">⚡</div>
|
||||
<h3 class="feature-title">秒级响应</h3>
|
||||
<p class="feature-desc">智能分析引擎,最快 3 秒生成报告</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📄</div>
|
||||
<h3 class="feature-title">PDF 下载</h3>
|
||||
<p class="feature-desc">专业格式报告,支持永久保存和打印</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔒</div>
|
||||
<h3 class="feature-title">安全合规</h3>
|
||||
<p class="feature-desc">等保三级认证,数据加密传输</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🎯</div>
|
||||
<h3 class="feature-title">精准分析</h3>
|
||||
<p class="feature-desc">AI 智能分析,准确率 99% 以上</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">💰</div>
|
||||
<h3 class="feature-title">性价比高</h3>
|
||||
<p class="feature-desc">仅需¥49.8,获取全面个人背景分析</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Content Section -->
|
||||
<section class="section content-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">报告内容</h2>
|
||||
<p class="section-subtitle">一份报告,全面了解</p>
|
||||
|
||||
<div class="content-grid">
|
||||
<div class="content-list">
|
||||
<h3>📊 报告包含</h3>
|
||||
<ul>
|
||||
<li>个人身份信息核验</li>
|
||||
<li>社交网络行为分析</li>
|
||||
<li>消费行为特征评估</li>
|
||||
<li>信用风险评估</li>
|
||||
<li>多维度综合评分</li>
|
||||
<li>PDF 格式完整报告</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<h3>✅ 适用场景</h3>
|
||||
<ul>
|
||||
<li>个人背景了解</li>
|
||||
<li>交友前风险评估</li>
|
||||
<li>合作伙伴信用调查</li>
|
||||
<li>个人信用自查</li>
|
||||
<li>其他需要了解个人情况的场景</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<h2>准备好开始查询了吗?</h2>
|
||||
<p>立即获取个人大数据报告,全面了解个人背景信息</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="https://www.yuyuecha.com/inquire/riskassessment" class="btn">🚀 立即查询 - ¥49.8</a>
|
||||
<a href="https://www.yuyuecha.com/example?feature=riskassessment" target="_blank" class="btn btn-outline" style="border-color:rgba(255,255,255,0.5);color:white;">👁️ 查看示例</a>
|
||||
</div>
|
||||
</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;">愉悦查(北京正信环宇科技有限公司)</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">产品</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/index.html#products">个人大数据报告</a></li>
|
||||
<li><a href="/index.html#products">婚恋风险报告</a></li>
|
||||
<li><a href="/index.html#products">入职背调报告</a></li>
|
||||
<li><a href="/index.html#products">小微企业报告</a></li>
|
||||
<li><a href="/index.html#products">家政风险报告</a></li>
|
||||
<li><a href="/index.html#products">消金报告</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">公司</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/index.html#about">关于我们</a></li>
|
||||
<li><a href="#">加入我们</a></li>
|
||||
<li><a href="#">联系我们</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">支持</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="#">帮助中心</a></li>
|
||||
<li><a href="/apidemo/">API 文档</a></li>
|
||||
<li><a href="#">隐私政策</a></li>
|
||||
<li><a href="#">服务条款</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
|
||||
<p class="footer-icp">京 ICP 备 2025158088 号 -2</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Navbar Scroll Effect
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.querySelector('.navbar');
|
||||
if (window.scrollY > 50) {
|
||||
navbar.style.boxShadow = '0 4px 30px rgba(0,0,0,0.12)';
|
||||
} else {
|
||||
navbar.style.boxShadow = '0 2px 20px rgba(0,0,0,0.08)';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
// Mobile Menu Toggle
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Navbar scroll effect
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar) {
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script>
|
||||
// ===== Navbar Scroll Effect =====
|
||||
window.addEventListener('scroll', () => {
|
||||
const navbar = document.getElementById('navbar');
|
||||
if (navbar && window.scrollY > 50) {
|
||||
navbar.classList.add('scrolled');
|
||||
} else if (navbar) {
|
||||
navbar.classList.remove('scrolled');
|
||||
}
|
||||
});
|
||||
|
||||
// ===== Mobile Menu Toggle =====
|
||||
const menuToggle = document.getElementById('menuToggle');
|
||||
const navMenu = document.getElementById('navMenu');
|
||||
|
||||
if (menuToggle && navMenu) {
|
||||
menuToggle.addEventListener('click', () => {
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
|
||||
// Close menu when clicking on a link
|
||||
navMenu.querySelectorAll('.nav-link').forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user