Initial commit: 愉悦查官网(清理所有备份)
This commit is contained in:
Executable
+981
@@ -0,0 +1,981 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>关于我们 - 愉悦查 | AI 驱动的商业信任科技平台</title>
|
||||
<meta name="description" content="愉悦查(北京正信环宇科技有限公司)是 AI 驱动的商业信任科技平台,提供个人大数据报告、企业风控、金融验证等服务,让信任无处不在。">
|
||||
<meta name="keywords" content="愉悦查,北京正信环宇,商业信任,AI 科技,大数据报告,企业风控">
|
||||
<!-- SEO Enhancement -->
|
||||
<link rel="canonical" href="https://www.yuyuecha.com.cn/about.html">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://www.yuyuecha.com.cn/about.html">
|
||||
<meta property="og:title" content="关于我们 - 愉悦查">
|
||||
<meta property="og:description" content="北京正信环宇科技有限公司,AI 驱动的商业信任科技平台,提供个人大数据报告、企业风控、金融验证等服务。">
|
||||
<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="北京正信环宇科技有限公司,AI 驱动的商业信任科技平台,提供个人大数据报告、企业风控、金融验证等服务。">
|
||||
<meta name="twitter:image" content="https://www.yuyuecha.com.cn/assets/logo-nav-2x.png">
|
||||
|
||||
<!-- 预加载字体 -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--primary-orange: #FF6A19;
|
||||
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--bg-dark: #1A1A1A;
|
||||
--text-primary: #1A1A1A;
|
||||
--text-secondary: #666666;
|
||||
--text-light: #999999;
|
||||
--success: #07C160;
|
||||
--spacing-xs: 8px;
|
||||
--spacing-sm: 16px;
|
||||
--spacing-md: 24px;
|
||||
--spacing-lg: 48px;
|
||||
--spacing-xl: 80px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
|
||||
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
|
||||
--transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: var(--text-primary);
|
||||
background: var(--bg-light);
|
||||
}
|
||||
a { text-decoration: none; color: inherit; transition: var(--transition); }
|
||||
ul { list-style: none; }
|
||||
img { max-width: 100%; height: auto; }
|
||||
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
|
||||
/* Buttons */
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 14px 32px;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
border-radius: var(--radius-md);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
border: none;
|
||||
text-align: center;
|
||||
}
|
||||
.btn-primary {
|
||||
background: var(--primary-gradient);
|
||||
color: white;
|
||||
box-shadow: 0 4px 12px rgba(255, 106, 25, 0.3);
|
||||
}
|
||||
.btn-primary:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(255, 106, 25, 0.4);
|
||||
}
|
||||
.btn-outline {
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-orange);
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.btn-outline:hover {
|
||||
background: var(--primary-gradient);
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
}
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
.logo-img {
|
||||
background: rgba(255,255,255,0.95);
|
||||
height: 60px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: var(--transition);
|
||||
}
|
||||
.logo:hover .logo-img { transform: scale(1.05); }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
padding: 160px 0 100px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
||||
text-align: center;
|
||||
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 h1 {
|
||||
font-size: 52px;
|
||||
font-weight: 900;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
position: relative;
|
||||
}
|
||||
.hero p {
|
||||
font-size: 22px;
|
||||
color: var(--text-secondary);
|
||||
max-width: 800px;
|
||||
margin: 0 auto var(--spacing-lg);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* Section Styles */
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title {
|
||||
text-align: center;
|
||||
font-size: 42px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.section-subtitle {
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* Company Info */
|
||||
.company-info {
|
||||
background: white;
|
||||
}
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: var(--spacing-lg);
|
||||
align-items: center;
|
||||
}
|
||||
.info-content h3 {
|
||||
font-size: 32px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.info-content p {
|
||||
font-size: 16px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.8;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.info-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
margin-top: var(--spacing-lg);
|
||||
}
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: var(--spacing-md);
|
||||
background: var(--bg-gray);
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
.stat-number {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.stat-label {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
/* Mission Vision Values */
|
||||
.mission-section {
|
||||
background: var(--bg-gray);
|
||||
}
|
||||
.mvv-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.mvv-card {
|
||||
background: white;
|
||||
padding: var(--spacing-lg);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-md);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.mvv-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.mvv-icon {
|
||||
font-size: 48px;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.mvv-card h3 {
|
||||
font-size: 24px;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.mvv-card p {
|
||||
font-size: 16px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* Story Timeline */
|
||||
.story-section {
|
||||
background: white;
|
||||
}
|
||||
.timeline {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
.timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
background: var(--primary-gradient);
|
||||
}
|
||||
.timeline-item {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: var(--spacing-sm) 0;
|
||||
position: relative;
|
||||
}
|
||||
.timeline-item:nth-child(even) {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.timeline-content {
|
||||
width: 45%;
|
||||
padding: var(--spacing-md);
|
||||
background: white;
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-md);
|
||||
position: relative;
|
||||
}
|
||||
.timeline-item:nth-child(odd) .timeline-content {
|
||||
margin-right: var(--spacing-lg);
|
||||
}
|
||||
.timeline-item:nth-child(even) .timeline-content {
|
||||
margin-left: var(--spacing-lg);
|
||||
}
|
||||
.timeline-year {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: var(--primary-orange);
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.timeline-title {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.timeline-desc {
|
||||
font-size: 15px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* Team Section */
|
||||
.team-section {
|
||||
background: var(--bg-gray);
|
||||
}
|
||||
.team-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.team-card {
|
||||
background: white;
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow-md);
|
||||
transition: var(--transition);
|
||||
}
|
||||
.team-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.team-avatar {
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #F5F7FA 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 80px;
|
||||
}
|
||||
.team-info {
|
||||
padding: var(--spacing-md);
|
||||
text-align: center;
|
||||
}
|
||||
.team-name {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.team-role {
|
||||
font-size: 15px;
|
||||
color: var(--primary-orange);
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.team-desc {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
.cta-section {
|
||||
background: var(--primary-gradient);
|
||||
padding: var(--spacing-xl) 0;
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
.cta-section h2 {
|
||||
font-size: 40px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.cta-section p {
|
||||
font-size: 18px;
|
||||
margin-bottom: var(--spacing-lg);
|
||||
opacity: 0.95;
|
||||
}
|
||||
.cta-section .btn {
|
||||
background: white;
|
||||
color: var(--primary-orange);
|
||||
font-size: 17px;
|
||||
padding: 16px 48px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: var(--bg-dark);
|
||||
color: white;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr 1fr;
|
||||
gap: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
.footer-brand h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.footer-brand p {
|
||||
color: #CCCCCC;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer-title {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.footer-links li { margin-bottom: 10px; }
|
||||
.footer-links a {
|
||||
color: #CCCCCC;
|
||||
}
|
||||
.footer-links a:hover { color: var(--primary-orange); }
|
||||
.footer-bottom {
|
||||
text-align: center;
|
||||
padding-top: var(--spacing-lg);
|
||||
border-top: 1px solid #333333;
|
||||
color: #999999;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1024px) {
|
||||
.info-grid { grid-template-columns: 1fr; }
|
||||
.mvv-grid { grid-template-columns: 1fr; }
|
||||
.timeline::before { left: 20px; }
|
||||
.timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 60px; }
|
||||
.timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; margin: 0; }
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.hero h1 { font-size: 36px; }
|
||||
.section-title { font-size: 32px; }
|
||||
.info-stats { grid-template-columns: 1fr; }
|
||||
.team-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
.nav-menu { display: none; }
|
||||
}
|
||||
|
||||
/* ===== Unified Navbar ===== */
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 1000;
|
||||
padding: 12px 0;
|
||||
transition: all 0.3s ease;
|
||||
background: rgba(255,255,255,0.95);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
}
|
||||
.navbar.scrolled {
|
||||
padding: 8px 0;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
|
||||
}
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
}
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
.logo-img {
|
||||
height: 44px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.logo:hover .logo-img {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
gap: 32px;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.nav-link {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: #1A1A1A;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
padding: 6px 0;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: #FF6A19;
|
||||
transition: all 0.3s ease;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 1px;
|
||||
}
|
||||
.nav-link:hover {
|
||||
color: #FF6A19;
|
||||
}
|
||||
.nav-link:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
.nav-cta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
.nav-btn {
|
||||
padding: 8px 20px;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
.btn-outline.nav-btn {
|
||||
border: 1.5px solid #FF6A19;
|
||||
color: #FF6A19;
|
||||
background: transparent;
|
||||
}
|
||||
.btn-outline.nav-btn:hover {
|
||||
background: #FFF5F0;
|
||||
}
|
||||
.btn-primary.nav-btn {
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
||||
color: white;
|
||||
box-shadow: 0 2px 8px rgba(255,106,25,0.3);
|
||||
}
|
||||
.btn-primary.nav-btn:hover {
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 12px rgba(255,106,25,0.4);
|
||||
}
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
cursor: pointer;
|
||||
padding: 4px;
|
||||
z-index: 1001;
|
||||
}
|
||||
.menu-toggle span {
|
||||
width: 24px;
|
||||
height: 2px;
|
||||
background: #1A1A1A;
|
||||
transition: all 0.3s ease;
|
||||
border-radius: 1px;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.nav-menu {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(255,255,255,0.98);
|
||||
backdrop-filter: blur(20px);
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 24px;
|
||||
z-index: 999;
|
||||
}
|
||||
.nav-menu.active {
|
||||
display: flex;
|
||||
}
|
||||
.nav-link {
|
||||
font-size: 18px;
|
||||
}
|
||||
.nav-cta {
|
||||
display: none;
|
||||
}
|
||||
.menu-toggle {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Unified Footer ===== */
|
||||
.footer {
|
||||
background: #1A1A1A;
|
||||
color: white;
|
||||
padding: 60px 0 30px;
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1.5fr 1fr 1fr 1fr;
|
||||
gap: 48px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.footer-brand h3 {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
background: linear-gradient(135deg, #FF6A19, #FC6E18);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.footer-brand p {
|
||||
color: rgba(255,255,255,0.6);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.footer-title {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 16px;
|
||||
color: rgba(255,255,255,0.9);
|
||||
}
|
||||
.footer-links {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.footer-links li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.footer-links a {
|
||||
color: rgba(255,255,255,0.5);
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.footer-links a:hover {
|
||||
color: #FF6A19;
|
||||
}
|
||||
.footer-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 24px;
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
font-size: 13px;
|
||||
color: rgba(255,255,255,0.4);
|
||||
}
|
||||
.footer-icp {
|
||||
color: rgba(255,255,255,0.4);
|
||||
}
|
||||
.footer-icp a {
|
||||
color: rgba(255,255,255,0.4);
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer-icp a:hover {
|
||||
color: #FF6A19;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.footer-grid {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 32px;
|
||||
}
|
||||
.footer-bottom {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
gap: 8px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.footer-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="container">
|
||||
<a href="/index.html" class="logo">
|
||||
<img src="assets/logo-nav.png" srcset="assets/logo-nav.png 1x, assets/logo-nav-2x.png 2x" alt="愉悦查 Logo" class="logo-img">
|
||||
</a>
|
||||
|
||||
<div class="menu-toggle" id="menuToggle">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</div>
|
||||
|
||||
<ul class="nav-menu" id="navMenu">
|
||||
<li><a href="/index.html" class="nav-link">首页</a></li>
|
||||
<li><a href="/index.html#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="/index.html#technology" class="nav-link">AI 能力</a></li>
|
||||
<li><a href="/index.html#partnership" class="nav-link">代理合作</a></li>
|
||||
<li><a href="/about.html" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="nav-cta">
|
||||
<a href="/index.html#products" class="btn btn-outline nav-btn">立即查询</a>
|
||||
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary nav-btn">立即注册</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>关于愉悦查</h1>
|
||||
<p>让信任无处不在,让合作没有距离<br>AI 驱动的商业信任科技平台,搭建信任桥梁,连接商业未来</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Company Info Section -->
|
||||
<section class="section company-info">
|
||||
<div class="container">
|
||||
<div class="info-grid">
|
||||
<div class="info-content">
|
||||
<h3>愉悦查(北京正信环宇科技有限公司)</h3>
|
||||
<p style="font-size:17px;line-height:1.8;margin-bottom:16px;"><strong>愉悦查(北京正信环宇科技有限公司)</strong>是 AI 驱动的商业信任科技平台,2025 年成立于北京。</p>
|
||||
<p style="font-size:17px;line-height:1.8;margin-bottom:16px;">我们整合 200+ 官方数据接口,提供个人/企业信任验证服务,覆盖背调、婚恋、家政、金融风控等场景。日调用量 10 万+,99.9% 服务可用性,3 秒响应。</p>
|
||||
<p style="font-size:17px;line-height:1.8;margin-bottom:20px;"><strong>产品矩阵:</strong>6 大标准报告 + API 开放平台 + 三级代理体系</p>
|
||||
<p style="font-size:17px;line-height:1.8;margin-bottom:8px;"><strong>使命:</strong>搭建信任桥梁,连接商业未来</p>
|
||||
<p style="font-size:17px;line-height:1.8;margin-bottom:20px;"><strong>愿景:</strong>让信任无处不在,让合作没有距离</p>
|
||||
|
||||
<div class="info-stats">
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">🏛️</div>
|
||||
<div class="stat-label">公司地址</div>
|
||||
<div class="stat-value" style="font-size:14px;margin-top:8px;">北京市丰台区西铁营万达写字楼 13 层</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">💰</div>
|
||||
<div class="stat-label">注册资本</div>
|
||||
<div class="stat-value" style="font-size:14px;margin-top:8px;">500 万</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">📅</div>
|
||||
<div class="stat-label">成立时间</div>
|
||||
<div class="stat-value" style="font-size:14px;margin-top:8px;">2025 年</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-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">10 万+</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 class="info-image" style="text-align:center;font-size:200px;">🏢</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Mission Vision Values Section -->
|
||||
<section class="section mission-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">使命 · 愿景 · 价值观</h2>
|
||||
<p class="section-subtitle">这是我们前行的动力,也是我们对客户的承诺</p>
|
||||
|
||||
<div class="mvv-grid">
|
||||
<div class="mvv-card">
|
||||
<div class="mvv-icon">🎯</div>
|
||||
<h3>使命</h3>
|
||||
<p><strong>搭建信任桥梁,连接商业未来</strong></p>
|
||||
<p style="margin-top:12px;color:var(--text-secondary);">我们通过技术创新,让信任验证变得简单可靠,消除信息不对称,降低交易成本,促进商业合作的高效开展。</p>
|
||||
</div>
|
||||
|
||||
<div class="mvv-card">
|
||||
<div class="mvv-icon">🌟</div>
|
||||
<h3>愿景</h3>
|
||||
<p><strong>让信任无处不在,让合作没有距离</strong></p>
|
||||
<p style="margin-top:12px;color:var(--text-secondary);">我们致力于成为最受信赖的商业信任科技平台,让每一次合作都建立在坚实的信任基础之上。</p>
|
||||
</div>
|
||||
|
||||
<div class="mvv-card">
|
||||
<div class="mvv-icon">💎</div>
|
||||
<h3>价值观</h3>
|
||||
<p><strong>诚信 · 务实 · 高效 · 共赢</strong></p>
|
||||
<p style="margin-top:12px;color:var(--text-secondary);">诚信是我们的立身之本,务实是我们的行事风格,高效是我们的服务标准,共赢是我们的追求目标。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Story Section -->
|
||||
<section class="section story-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">发展历程</h2>
|
||||
<p class="section-subtitle">从创立到成长,每一步都坚实有力</p>
|
||||
|
||||
<div class="timeline">
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-year">2025 年</div>
|
||||
<div class="timeline-title">公司成立</div>
|
||||
<div class="timeline-desc">愉悦查(北京正信环宇科技有限公司)在北京成立,开始规划商业信任科技平台</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-year">2025 年 Q2</div>
|
||||
<div class="timeline-title">产品上线</div>
|
||||
<div class="timeline-desc">官网 yuyuecha.com.cn 和功能站 yuyuecha.com 正式上线,推出 6 大标准报告产品</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-year">2025 年 Q3</div>
|
||||
<div class="timeline-title">API 平台发布</div>
|
||||
<div class="timeline-desc">开放 200+ 数据接口,为开发者提供便捷的 API 服务,日调用量突破 10 万+</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-year">2025 年 Q4</div>
|
||||
<div class="timeline-title">代理体系建立</div>
|
||||
<div class="timeline-desc">推出白银/黄金/钻石三级代理体系,携手合作伙伴共同拓展市场</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-content">
|
||||
<div class="timeline-year">2026 年</div>
|
||||
<div class="timeline-title">持续创新</div>
|
||||
<div class="timeline-desc">不断优化产品和服务,拓展应用场景,致力于成为行业领先的商业信任科技平台</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Team Section -->
|
||||
<section class="section team-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">核心团队</h2>
|
||||
<p class="section-subtitle">一群有梦想、有技术、有担当的伙伴</p>
|
||||
|
||||
<div class="team-grid">
|
||||
<div class="team-card">
|
||||
<div class="team-avatar">👨💼</div>
|
||||
<div class="team-info">
|
||||
<div class="team-name">吴正</div>
|
||||
<div class="team-role">CEO / 创始人</div>
|
||||
<div class="team-desc">连续创业者,深耕互联网行业 10 年+,对商业信任和风险控制有深刻理解</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="team-card">
|
||||
<div class="team-avatar">👨💻</div>
|
||||
<div class="team-info">
|
||||
<div class="team-name">技术团队</div>
|
||||
<div class="team-role">研发中心</div>
|
||||
<div class="team-desc">来自 BAT 等一线互联网公司的技术专家,精通 AI、大数据、云计算等技术</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="team-card">
|
||||
<div class="team-avatar">👩💼</div>
|
||||
<div class="team-info">
|
||||
<div class="team-name">运营团队</div>
|
||||
<div class="team-role">运营中心</div>
|
||||
<div class="team-desc">经验丰富的运营管理专家,负责产品运营、市场推广、客户服务等工作</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="team-card">
|
||||
<div class="team-avatar">👨⚖️</div>
|
||||
<div class="team-info">
|
||||
<div class="team-name">法务合规</div>
|
||||
<div class="team-role">风控中心</div>
|
||||
<div class="team-desc">资深法律专家,确保平台合规运营,保障用户数据安全和隐私权益</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="cta-section">
|
||||
<div class="container">
|
||||
<h2>想了解更多?</h2>
|
||||
<p>欢迎联系我们,获取详细的产品介绍和解决方案</p>
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="btn" target="_blank">📞 立即咨询</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-brand">
|
||||
<h3>愉悦查</h3>
|
||||
<p>让信任无处不在,让合作没有距离</p>
|
||||
<p style="margin-top:16px;font-size:13px;color:rgba(255,255,255,0.5);">北京正信环宇科技有限公司</p>
|
||||
<p style="font-size:13px;color:rgba(255,255,255,0.5);">AI 驱动的商业信任科技平台</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 class="footer-title">产品</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/product/riskassessment.html">个人大数据报告</a></li>
|
||||
<li><a href="/product/marriage.html">婚恋风险报告</a></li>
|
||||
<li><a href="/product/backgroundcheck.html">入职背调报告</a></li>
|
||||
<li><a href="/product/companyinfo.html">小微企业报告</a></li>
|
||||
<li><a href="/product/homeservice.html">家政风险报告</a></li>
|
||||
<li><a href="/product/consumerFinanceReport.html">消金报告</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 class="footer-title">公司</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/about.html">关于我们</a></li>
|
||||
<li><a href="/careers.html">加入我们</a></li>
|
||||
<li><a href="/contact.html">联系我们</a></li>
|
||||
<li><a href="/news.html">新闻动态</a></li>
|
||||
<li><a href="/partners.html">合作伙伴</a></li>
|
||||
<li><a href="/investment.html">招商工具包</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 class="footer-title">支持</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/help.html">帮助中心</a></li>
|
||||
<li><a href="/apidemo/">API 文档</a></li>
|
||||
<li><a href="/all-apis.html">全部接口</a></li>
|
||||
<li><a href="/privacy.html">隐私政策</a></li>
|
||||
<li><a href="/terms.html">服务条款</a></li>
|
||||
<li><a href="/disclaimer.html">免责声明</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom">
|
||||
<p>© 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>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user