1204 lines
40 KiB
Plaintext
1204 lines
40 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>愉悦查 API - 数据接口管理控制台 | AI 驱动的商业信任科技平台</title>
|
|
<meta name="description" content="愉悦查 API 平台,提供 200+ 数据接口,支持在线调试、文档查看、密钥管理。让信任无处不在,让合作没有距离。">
|
|
<meta name="keywords" content="愉悦查 API,数据接口,API 文档,在线调试,背调接口,风险评估">
|
|
|
|
<!-- 预加载字体 -->
|
|
<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;600;700;900&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
/* ===== CSS Variables - 愉悦查品牌色定义 ===== */
|
|
:root {
|
|
/* 品牌主色 - 橙色系 */
|
|
--primary-orange: #FF6A19;
|
|
--primary-orange-light: #FC6E18;
|
|
--primary-orange-dark: #E64E10;
|
|
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
|
--primary-orange-soft: #FFDECC;
|
|
|
|
/* 辅助色 */
|
|
--bg-light: #FFFFFF;
|
|
--bg-gray: #F5F7FA;
|
|
--bg-dark: #1A1A2E;
|
|
|
|
/* 文字色 */
|
|
--text-primary: #1A1A1A;
|
|
--text-secondary: #666666;
|
|
--text-light: #999999;
|
|
--text-white: #FFFFFF;
|
|
|
|
/* 功能色 */
|
|
--success: #07C160;
|
|
--warning: #FF9500;
|
|
--error: #FF3B30;
|
|
--info: #007AFF;
|
|
|
|
/* 间距 */
|
|
--spacing-xs: 8px;
|
|
--spacing-sm: 16px;
|
|
--spacing-md: 24px;
|
|
--spacing-lg: 48px;
|
|
--spacing-xl: 80px;
|
|
|
|
/* 圆角 */
|
|
--radius-sm: 4px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 16px;
|
|
--radius-xl: 24px;
|
|
|
|
/* 阴影 */
|
|
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
|
|
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
|
|
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
|
|
|
|
/* 过渡 */
|
|
--transition: all 0.3s ease;
|
|
}
|
|
|
|
/* ===== Reset & Base ===== */
|
|
* {
|
|
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: 12px 28px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: var(--radius-md);
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
border: none;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary-gradient);
|
|
color: white;
|
|
box-shadow: 0 4px 12px rgba(255, 106, 25, 0.3);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(255, 106, 25, 0.4);
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-orange);
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: var(--primary-gradient);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.section {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.section-subtitle {
|
|
text-align: center;
|
|
font-size: 16px;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
/* ===== 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 .container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 70px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 0 32px;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
background: var(--primary-gradient);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
/* ===== Hero Section ===== */
|
|
.hero {
|
|
padding-top: 140px;
|
|
padding-bottom: 80px;
|
|
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
right: -20%;
|
|
width: 80%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(255, 106, 25, 0.05) 0%, transparent 70%);
|
|
animation: float 20s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0) rotate(0deg); }
|
|
50% { transform: translateY(-20px) rotate(5deg); }
|
|
}
|
|
|
|
.hero-content {
|
|
text-align: center;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.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);
|
|
border: 1px solid rgba(255, 106, 25, 0.2);
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 48px;
|
|
font-weight: 900;
|
|
line-height: 1.2;
|
|
margin-bottom: var(--spacing-sm);
|
|
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
|
background-size: 200% auto;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 18px;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--spacing-sm);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hero-stats {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--spacing-lg);
|
|
margin-top: var(--spacing-lg);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
background: var(--primary-gradient);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 13px;
|
|
color: var(--text-light);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* ===== Features Section ===== */
|
|
.features {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.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);
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: var(--shadow-lg);
|
|
border-color: var(--primary-orange);
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
/* ===== API Categories Section ===== */
|
|
.api-categories {
|
|
background: var(--bg-gray);
|
|
}
|
|
|
|
.categories-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.category-card {
|
|
background: white;
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--spacing-md);
|
|
box-shadow: var(--shadow-sm);
|
|
transition: var(--transition);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.category-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.category-icon {
|
|
font-size: 36px;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.category-name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.category-count {
|
|
font-size: 13px;
|
|
color: var(--text-light);
|
|
}
|
|
|
|
/* ===== API List Section ===== */
|
|
.api-list {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.api-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.api-card {
|
|
background: white;
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--spacing-md);
|
|
border: 1px solid #eee;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.api-card:hover {
|
|
border-color: var(--primary-orange);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.api-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.api-name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.api-tag {
|
|
padding: 4px 12px;
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.api-tag.hot {
|
|
background: rgba(255, 106, 25, 0.1);
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
.api-tag.new {
|
|
background: rgba(7, 193, 96, 0.1);
|
|
color: var(--success);
|
|
}
|
|
|
|
.api-desc {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.api-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-top: var(--spacing-xs);
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.api-price {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
.api-btn {
|
|
padding: 6px 16px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* ===== Solutions Section ===== */
|
|
.solutions {
|
|
background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
|
|
color: white;
|
|
}
|
|
|
|
.solutions .section-title,
|
|
.solutions .section-subtitle {
|
|
color: white;
|
|
}
|
|
|
|
.solutions-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.solution-card {
|
|
background: rgba(255,255,255,0.05);
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--spacing-lg);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.solution-card:hover {
|
|
background: rgba(255,255,255,0.08);
|
|
border-color: var(--primary-orange);
|
|
}
|
|
|
|
.solution-icon {
|
|
font-size: 40px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.solution-name {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.solution-desc {
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.solution-features {
|
|
font-size: 13px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.solution-features li {
|
|
padding: 4px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.solution-features li::before {
|
|
content: '✓';
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
/* ===== Stats Section ===== */
|
|
.stats {
|
|
background: var(--bg-gray);
|
|
padding: var(--spacing-lg) 0;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: var(--spacing-md);
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-card {
|
|
padding: var(--spacing-md);
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 42px;
|
|
font-weight: 700;
|
|
background: var(--primary-gradient);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.stat-desc {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
margin-top: 8px;
|
|
}
|
|
|
|
/* ===== Partners Section ===== */
|
|
.partners {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.partners-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.partner-card {
|
|
background: white;
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--spacing-lg);
|
|
border: 1px solid #eee;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.partner-card:hover {
|
|
border-color: var(--primary-orange);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.partner-name {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.partner-desc {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.partner-tags {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.partner-tag {
|
|
padding: 4px 12px;
|
|
background: var(--bg-gray);
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.partner-link {
|
|
color: var(--primary-orange);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.partner-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ===== CTA Section ===== */
|
|
.cta {
|
|
background: var(--primary-gradient);
|
|
color: white;
|
|
text-align: center;
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.cta h2 {
|
|
font-size: 32px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.cta p {
|
|
font-size: 16px;
|
|
opacity: 0.95;
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.cta .btn {
|
|
background: white;
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
/* ===== Footer ===== */
|
|
.footer {
|
|
background: #1A1A1A;
|
|
color: white;
|
|
padding: var(--spacing-lg) 0;
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.footer-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.footer-brand-text {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.footer-links a {
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
opacity: 1;
|
|
color: var(--primary-orange);
|
|
}
|
|
|
|
.footer-bottom {
|
|
margin-top: var(--spacing-md);
|
|
padding-top: var(--spacing-md);
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
text-align: center;
|
|
font-size: 13px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* ===== Responsive ===== */
|
|
@media (max-width: 1024px) {
|
|
.features-grid,
|
|
.solutions-grid,
|
|
.stats-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.categories-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.navbar .container {
|
|
height: 60px;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: none;
|
|
}
|
|
|
|
.hero {
|
|
padding-top: 100px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.features-grid,
|
|
.categories-grid,
|
|
.api-grid,
|
|
.solutions-grid,
|
|
.partners-grid,
|
|
.stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Navigation -->
|
|
<nav class="navbar">
|
|
<div class="container">
|
|
<a href="/" class="logo">
|
|
<span class="logo-text">愉悦查 API</span>
|
|
</a>
|
|
|
|
<ul class="nav-menu">
|
|
<li><a href="#home" class="nav-link">首页</a></li>
|
|
<li><a href="#features" class="nav-link">核心能力</a></li>
|
|
<li><a href="#categories" class="nav-link">接口分类</a></li>
|
|
<li><a href="#api-list" class="nav-link">接口列表</a></li>
|
|
<li><a href="#solutions" class="nav-link">解决方案</a></li>
|
|
<li><a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary" style="padding: 8px 20px;">控制台</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero" id="home">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<span class="hero-badge">🤖 AI 驱动的数据接口平台</span>
|
|
<h1>200+ 数据接口<br>智能组合 秒级响应</h1>
|
|
<p>提供个人背调、企业风控、金融验证等多场景 API 服务<br>支持在线调试、文档查看、密钥管理</p>
|
|
|
|
<div class="hero-buttons">
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary">🚀 立即接入</a>
|
|
<a href="#api-list" class="btn btn-outline">📚 查看接口</a>
|
|
</div>
|
|
|
|
<div class="hero-stats">
|
|
<div class="stat-item">
|
|
<div class="stat-number">200+</div>
|
|
<div class="stat-label">数据接口</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">50000+</div>
|
|
<div class="stat-label">服务用户</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">99.9%</div>
|
|
<div class="stat-label">可用性</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">3 秒</div>
|
|
<div class="stat-label">平均响应</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Features Section -->
|
|
<section class="section features" id="features">
|
|
<div class="container">
|
|
<h2 class="section-title">核心能力</h2>
|
|
<p class="section-subtitle">为什么选择愉悦查 API</p>
|
|
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📡</div>
|
|
<h3 class="feature-title">海量数据</h3>
|
|
<p class="feature-desc">200+ 官方数据接口<br>覆盖全维度信息</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🛠️</div>
|
|
<h3 class="feature-title">在线调试</h3>
|
|
<p class="feature-desc">可视化调试工具<br>即测即用</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📖</div>
|
|
<h3 class="feature-title">完整文档</h3>
|
|
<p class="feature-desc">详细接口文档<br>快速接入指南</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔑</div>
|
|
<h3 class="feature-title">密钥管理</h3>
|
|
<p class="feature-desc">安全密钥体系<br>灵活权限控制</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">⚡</div>
|
|
<h3 class="feature-title">秒级响应</h3>
|
|
<p class="feature-desc">实时数据返回<br>最快 3 秒出结果</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔒</div>
|
|
<h3 class="feature-title">安全合规</h3>
|
|
<p class="feature-desc">等保三级认证<br>数据加密传输</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- API Categories Section -->
|
|
<section class="section api-categories" id="categories">
|
|
<div class="container">
|
|
<h2 class="section-title">接口分类</h2>
|
|
<p class="section-subtitle">按场景分类,快速找到所需接口</p>
|
|
|
|
<div class="categories-grid">
|
|
<div class="category-card">
|
|
<div class="category-icon">👤</div>
|
|
<div class="category-name">身份验证</div>
|
|
<div class="category-count">25 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">🏢</div>
|
|
<div class="category-name">企业信息</div>
|
|
<div class="category-count">32 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">💳</div>
|
|
<div class="category-name">金融验证</div>
|
|
<div class="category-count">28 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">📱</div>
|
|
<div class="category-name">运营商</div>
|
|
<div class="category-count">18 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">🎓</div>
|
|
<div class="category-name">学历资质</div>
|
|
<div class="category-count">15 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">⚖️</div>
|
|
<div class="category-name">司法风险</div>
|
|
<div class="category-count">22 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">🔍</div>
|
|
<div class="category-name">背景调查</div>
|
|
<div class="category-count">35 个接口</div>
|
|
</div>
|
|
<div class="category-card">
|
|
<div class="category-icon">🤖</div>
|
|
<div class="category-name">AI 定制</div>
|
|
<div class="category-count">25+ 智能组合</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- API List Section -->
|
|
<section class="section api-list" id="api-list">
|
|
<div class="container">
|
|
<h2 class="section-title">热门接口</h2>
|
|
<p class="section-subtitle">精选高频使用接口,快速接入</p>
|
|
|
|
<div class="api-grid">
|
|
<!-- API 1 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">个人大数据报告</span>
|
|
<span class="api-tag hot">🔥 热门</span>
|
|
</div>
|
|
<p class="api-desc">全面个人背景分析,3-4 个数据接口智能组合</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.5/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 2 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">企业全量信息核验</span>
|
|
<span class="api-tag hot">🔥 热门</span>
|
|
</div>
|
|
<p class="api-desc">企业信用信息综合查询,工商/司法/经营多维度</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.8/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 3 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">手机号码归属地核验</span>
|
|
<span class="api-tag new">✨ 推荐</span>
|
|
</div>
|
|
<p class="api-desc">手机号码地域属性核验,支持三大运营商</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.1/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 4 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">身份证 OCR 识别</span>
|
|
<span class="api-tag new">✨ 推荐</span>
|
|
</div>
|
|
<p class="api-desc">身份证正反面精准识别,支持图像智能分析</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.2/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 5 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">银行卡 OCR</span>
|
|
</div>
|
|
<p class="api-desc">银行卡智能识别,自动提取卡号/银行信息</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.2/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 6 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">学历验证接口</span>
|
|
</div>
|
|
<p class="api-desc">学信网数据对接,学历信息快速核验</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.3/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 7 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">婚恋风险报告</span>
|
|
</div>
|
|
<p class="api-desc">婚恋风险评估,隐私保护,多维度分析</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.4/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API 8 -->
|
|
<div class="api-card">
|
|
<div class="api-header">
|
|
<span class="api-name">入职背调报告</span>
|
|
</div>
|
|
<p class="api-desc">员工背景筛查,降低用工风险,批量优惠</p>
|
|
<div class="api-footer">
|
|
<span class="api-price">¥0.7/次</span>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary api-btn">立即接入</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align:center;margin-top:var(--spacing-lg);">
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-outline">📋 查看全部接口</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Solutions Section -->
|
|
<section class="section solutions" id="solutions">
|
|
<div class="container">
|
|
<h2 class="section-title">行业解决方案</h2>
|
|
<p class="section-subtitle">基于愉悦查 API,为不同行业提供精准数据服务</p>
|
|
|
|
<div class="solutions-grid">
|
|
<div class="solution-card">
|
|
<div class="solution-icon">💼</div>
|
|
<h3 class="solution-name">人力资源</h3>
|
|
<p class="solution-desc">入职背调、员工风控、资质核验</p>
|
|
<ul class="solution-features">
|
|
<li>身份核验接口</li>
|
|
<li>学历验证接口</li>
|
|
<li>司法风险查询</li>
|
|
<li>工作履历核验</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="solution-card">
|
|
<div class="solution-icon">🏦</div>
|
|
<h3 class="solution-name">金融服务</h3>
|
|
<p class="solution-desc">信贷风控、反欺诈、信用评估</p>
|
|
<ul class="solution-features">
|
|
<li>银行卡验证</li>
|
|
<li>信用报告接口</li>
|
|
<li>多头借贷查询</li>
|
|
<li>黑名单核验</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="solution-card">
|
|
<div class="solution-icon">🏪</div>
|
|
<h3 class="solution-name">电商零售</h3>
|
|
<p class="solution-desc">用户风控、交易反欺诈、商家审核</p>
|
|
<ul class="solution-features">
|
|
<li>实名认证接口</li>
|
|
<li>手机号核验</li>
|
|
<li>企业地址验证</li>
|
|
<li>经营异常查询</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Stats Section -->
|
|
<section class="stats">
|
|
<div class="container">
|
|
<div class="stats-grid">
|
|
<div class="stat-card">
|
|
<div class="stat-value">200+</div>
|
|
<div class="stat-desc">数据接口</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-value">50000+</div>
|
|
<div class="stat-desc">服务用户</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-value">1000 万+</div>
|
|
<div class="stat-desc">日调用量</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-value">99.9%</div>
|
|
<div class="stat-desc">服务可用性</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Partners Section -->
|
|
<section class="section partners">
|
|
<div class="container">
|
|
<h2 class="section-title">合作伙伴</h2>
|
|
<p class="section-subtitle">我们提供专业的定制化系统开发服务</p>
|
|
|
|
<div class="partners-grid">
|
|
<div class="partner-card">
|
|
<h3 class="partner-name">愉悦查官网</h3>
|
|
<p class="partner-desc">前后端部署,技术维护</p>
|
|
<div class="partner-tags">
|
|
<span class="partner-tag">支持二开</span>
|
|
<span class="partner-tag">技术维护</span>
|
|
</div>
|
|
<a href="https://www.yuyuecha.com" class="partner-link">前往查看 →</a>
|
|
</div>
|
|
|
|
<div class="partner-card">
|
|
<h3 class="partner-name">愉悦查大数据</h3>
|
|
<p class="partner-desc">源代码交付,前后端部署</p>
|
|
<div class="partner-tags">
|
|
<span class="partner-tag">源代码交付</span>
|
|
<span class="partner-tag">支付集成</span>
|
|
</div>
|
|
<a href="#" class="partner-link">前往查看 →</a>
|
|
</div>
|
|
|
|
<div class="partner-card">
|
|
<h3 class="partner-name">免费版集成系统</h3>
|
|
<p class="partner-desc">快速对接 API,开源免费</p>
|
|
<div class="partner-tags">
|
|
<span class="partner-tag">开源免费</span>
|
|
<span class="partner-tag">快速部署</span>
|
|
<span class="partner-tag">支付集成</span>
|
|
</div>
|
|
<a href="#" class="partner-link">前往查看 →</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta">
|
|
<div class="container">
|
|
<h2>准备好开始接入了吗?</h2>
|
|
<p>立即注册,获取 API 密钥,开始调用数据接口</p>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn">🚀 立即接入</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-brand">
|
|
<span class="footer-brand-text">愉悦查 API</span>
|
|
</div>
|
|
|
|
<div class="footer-links">
|
|
<a href="/">返回官网</a>
|
|
<a href="https://www.yuyuecha.com/login?redirect=/me">控制台</a>
|
|
<a href="#api-list">接口文档</a>
|
|
<a href="#solutions">解决方案</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
|
|
<p>京 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)';
|
|
}
|
|
});
|
|
|
|
// Smooth scroll
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
anchor.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
const target = document.querySelector(this.getAttribute('href'));
|
|
if (target) {
|
|
target.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
|
}
|
|
});
|
|
});
|
|
|
|
// Animated counter
|
|
function animateCounter(elementId, target, suffix = '') {
|
|
const element = document.getElementById(elementId);
|
|
if (!element) return;
|
|
|
|
let current = 0;
|
|
const increment = target / 50;
|
|
const timer = setInterval(() => {
|
|
current += increment;
|
|
if (current >= target) {
|
|
element.textContent = target.toLocaleString() + suffix;
|
|
clearInterval(timer);
|
|
} else {
|
|
element.textContent = Math.floor(current).toLocaleString() + suffix;
|
|
}
|
|
}, 30);
|
|
}
|
|
|
|
console.log('愉悦查 API 平台已加载 🚀');
|
|
</script>
|
|
</body>
|
|
</html>
|