Initial commit: 愉悦查官网(清理所有备份)
This commit is contained in:
Executable
+369
@@ -0,0 +1,369 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>新闻动态 - 愉悦查 | 公司动态、行业资讯</title>
|
||||
<meta name="description" content="愉悦查新闻动态,了解公司最新资讯、产品更新、行业动态。">
|
||||
<meta name="keywords" content="愉悦查新闻,公司动态,行业资讯,产品更新">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--primary-orange: #FF6A19;
|
||||
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
|
||||
--bg-light: #FFFFFF;
|
||||
--bg-gray: #F5F7FA;
|
||||
--bg-dark: #1A1A1A;
|
||||
--text-primary: #1A1A1A;
|
||||
--text-secondary: #666666;
|
||||
--text-light: #999999;
|
||||
--spacing-xs: 8px;
|
||||
--spacing-sm: 16px;
|
||||
--spacing-md: 24px;
|
||||
--spacing-lg: 48px;
|
||||
--spacing-xl: 80px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
|
||||
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
|
||||
--transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body { font-family: 'Noto Sans SC', sans-serif; line-height: 1.6; color: var(--text-primary); }
|
||||
a { text-decoration: none; color: inherit; transition: var(--transition); }
|
||||
ul { list-style: none; }
|
||||
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-md); }
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 14px 32px;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
border-radius: var(--radius-md);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
border: none;
|
||||
text-align: center;
|
||||
}
|
||||
.btn-primary {
|
||||
background: var(--primary-gradient);
|
||||
color: white;
|
||||
box-shadow: 0 4px 12px rgba(255, 106, 25, 0.3);
|
||||
}
|
||||
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 106, 25, 0.4); }
|
||||
.btn-outline {
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-orange);
|
||||
color: var(--primary-orange);
|
||||
}
|
||||
.btn-outline:hover { background: var(--primary-gradient); color: white; }
|
||||
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
|
||||
backdrop-filter: blur(10px);
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
|
||||
z-index: 1000;
|
||||
}
|
||||
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
|
||||
.logo { display: flex; align-items: center; text-decoration: none; }
|
||||
.logo-img { height: 60px; width: auto; }
|
||||
.nav-menu { display: flex; gap: var(--spacing-lg); }
|
||||
.nav-link { font-size: 15px; font-weight: 500; color: var(--text-primary); }
|
||||
.nav-link:hover { color: var(--primary-orange); }
|
||||
|
||||
.hero {
|
||||
padding: 160px 0 100px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
|
||||
text-align: center;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 52px;
|
||||
font-weight: 900;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
.hero p { font-size: 22px; color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.8; }
|
||||
|
||||
.section { padding: var(--spacing-xl) 0; }
|
||||
.section-title { text-align: center; font-size: 42px; font-weight: 700; margin-bottom: var(--spacing-xs); }
|
||||
.section-subtitle { text-align: center; font-size: 20px; color: var(--text-secondary); margin-bottom: var(--spacing-lg); }
|
||||
|
||||
.news-section { background: white; }
|
||||
.news-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
.news-card {
|
||||
background: white;
|
||||
border: 2px solid #E8E8E8;
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
transition: var(--transition);
|
||||
}
|
||||
.news-card:hover {
|
||||
border-color: var(--primary-orange);
|
||||
box-shadow: var(--shadow-lg);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
.news-image {
|
||||
width: 100%;
|
||||
height: 220px;
|
||||
background: linear-gradient(135deg, #FFF5F0 0%, #F5F7FA 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 80px;
|
||||
}
|
||||
.news-content { padding: var(--spacing-md); }
|
||||
.news-date {
|
||||
font-size: 14px;
|
||||
color: var(--text-light);
|
||||
margin-bottom: var(--spacing-xs);
|
||||
}
|
||||
.news-title {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-xs);
|
||||
line-height: 1.4;
|
||||
}
|
||||
.news-desc {
|
||||
font-size: 15px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.7;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
.news-more {
|
||||
font-size: 14px;
|
||||
color: var(--primary-orange);
|
||||
font-weight: 500;
|
||||
}
|
||||
.news-more:hover { text-decoration: underline; }
|
||||
|
||||
.footer {
|
||||
background: var(--bg-dark);
|
||||
color: white;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
}
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr 1fr;
|
||||
gap: var(--spacing-lg);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
.footer-brand h3 { font-size: 24px; margin-bottom: var(--spacing-xs); }
|
||||
.footer-brand p { color: #CCCCCC; margin-bottom: var(--spacing-xs); font-size: 14px; }
|
||||
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: var(--spacing-sm); }
|
||||
.footer-links li { margin-bottom: 10px; }
|
||||
.footer-links a { color: #CCCCCC; }
|
||||
.footer-links a:hover { color: var(--primary-orange); }
|
||||
.footer-bottom {
|
||||
text-align: center;
|
||||
padding-top: var(--spacing-lg);
|
||||
border-top: 1px solid #333333;
|
||||
color: #999999;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h1 { font-size: 36px; }
|
||||
.section-title { font-size: 32px; }
|
||||
.news-grid { grid-template-columns: 1fr; }
|
||||
.footer-grid { grid-template-columns: 1fr; }
|
||||
.nav-menu { display: none; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<a href="/index.html" class="logo">
|
||||
<img src="assets/logo.png" alt="愉悦查 Logo" class="logo-img">
|
||||
</a>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="/index.html" class="nav-link">首页</a></li>
|
||||
<li><a href="/index.html#products" class="nav-link">产品服务</a></li>
|
||||
<li><a href="/sample.html" class="nav-link">示例报告</a></li>
|
||||
<li><a href="/apidemo/" class="nav-link">API 平台</a></li>
|
||||
<li><a href="/all-apis.html" class="nav-link">全部接口</a></li>
|
||||
<li><a href="/about.html" class="nav-link">关于我们</a></li>
|
||||
</ul>
|
||||
<div class="nav-cta">
|
||||
<a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" class="btn btn-outline" target="_blank">技术咨询</a>
|
||||
<a href="https://www.yuyuecha.com/login?redirect=/me" class="btn btn-primary" target="_blank">登录</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>新闻动态</h1>
|
||||
<p>了解愉悦查最新资讯、产品更新、行业动态</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section news-section">
|
||||
<div class="container">
|
||||
<h2 class="section-title">最新资讯</h2>
|
||||
<p class="section-subtitle">关注我们,获取第一手信息</p>
|
||||
|
||||
<div class="news-grid">
|
||||
<!-- 新闻 1 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🚀</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 3 月 10 日</div>
|
||||
<h3 class="news-title">愉悦查 6 大标准报告系统全面上线,个人企业风控一站式解决</h3>
|
||||
<p class="news-desc">愉悦查正式推出 6 大标准报告产品,包括个人大数据报告、婚恋风险报告、入职背调报告、小微企业报告、家政风险报告、消金报告,覆盖个人和企业全场景风控需求。</p>
|
||||
<a href="/product/riskassessment.html" class="news-more">了解详情 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 2 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">📡</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 3 月 5 日</div>
|
||||
<h3 class="news-title">愉悦查 API 开放平台正式上线,200+ 数据接口助力企业数字化</h3>
|
||||
<p class="news-desc">愉悦查 API 开放平台正式发布,提供 200+ 官方数据接口,支持身份验证、企业信息、金融验证、运营商、学历资质、司法风险、背景调查等全场景,日调用量突破 10 万+。</p>
|
||||
<a href="/apidemo/" class="news-more">查看 API →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 3 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🤖</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 2 月 28 日</div>
|
||||
<h3 class="news-title">愉悦查 AI 智能风控系统上线,40+ 分析技能秒级生成报告</h3>
|
||||
<p class="news-desc">愉悦查自主研发的 AI 智能风控系统正式上线,基于深度学习算法,智能组合 200+ 数据接口,40+ 分析技能,最快 3 秒生成专业风控报告,准确率达 99.9%。</p>
|
||||
<a href="/index.html" class="news-more">了解更多 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 4 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🦞</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 2 月 20 日</div>
|
||||
<h3 class="news-title">OpenClaw 上线,愉悦查开放云生态再添新成员</h3>
|
||||
<p class="news-desc">愉悦查旗下OpenClaw 正式开放,为开发者提供云端开发环境、在线调试工具、自动化部署服务,让 API 接入更简单、更高效。</p>
|
||||
<a href="/apidemo/" class="news-more">立即体验 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 5 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">💼</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 2 月 15 日</div>
|
||||
<h3 class="news-title">愉悦查 ToB 企业风控系统上线,线下招商正式启动</h3>
|
||||
<p class="news-desc">愉悦查 ToB 企业风控系统正式发布,面向银行、消金、人力资源、家政服务等企业提供定制化风控解决方案。全国线下招商同步启动,欢迎咨询合作。</p>
|
||||
<a href="/partners.html" class="news-more">合作咨询 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 6 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🤝</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 2 月 10 日</div>
|
||||
<h3 class="news-title">愉悦查与国家工商总局数据系统达成战略合作,企业信息核验更权威</h3>
|
||||
<p class="news-desc">愉悦查正式与国家工商总局数据系统达成战略合作,直接接入工商企业数据库,为企业信息核验、股权穿透、关联关系分析等提供权威数据支持。</p>
|
||||
<a href="/product/companyinfo.html" class="news-more">了解详情 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 7 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🏦</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 1 月 25 日</div>
|
||||
<h3 class="news-title">愉悦查与浦发银行总行达成合作,金融风控服务再升级</h3>
|
||||
<p class="news-desc">愉悦查与浦发银行总行正式签署战略合作协议,为浦发银行提供个人信用评估、企业风控、反欺诈等数据服务,助力银行提升风控能力和审批效率。</p>
|
||||
<a href="/product/consumerFinanceReport.html" class="news-more">了解详情 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 8 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🔍</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 1 月 18 日</div>
|
||||
<h3 class="news-title">愉悦查与企查查、天眼查达成数据互通合作,企业信息查询更全面</h3>
|
||||
<p class="news-desc">愉悦查与企查查、天眼查正式达成数据互通战略合作,三方共享企业工商、司法、知识产权等数据资源,为企业风控提供更全面、更准确的数据支持。</p>
|
||||
<a href="/product/companyinfo.html" class="news-more">了解详情 →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 新闻 9 -->
|
||||
<div class="news-card">
|
||||
<div class="news-image">🏠</div>
|
||||
<div class="news-content">
|
||||
<div class="news-date">2026 年 1 月 10 日</div>
|
||||
<h3 class="news-title">愉悦查与贝壳、链家达成战略合作,房产经纪人员背调全覆盖</h3>
|
||||
<p class="news-desc">愉悦查与贝壳找房、链家地产正式签署战略合作协议,为房产经纪人员提供入职背调、在职风控、客户风险评估等全方位服务,保障房产交易安全。</p>
|
||||
<a href="/product/backgroundcheck.html" class="news-more">了解详情 →</a>
|
||||
</div>
|
||||
</div>
|
||||
</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;">愉悦查(北京正信环宇科技有限公司)</p>
|
||||
<p style="font-size:13px;">AI 驱动的商业信任科技平台</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">产品</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/product/riskassessment.html">个人大数据报告</a></li>
|
||||
<li><a href="/product/marriage.html">婚恋风险报告</a></li>
|
||||
<li><a href="/product/backgroundcheck.html">入职背调报告</a></li>
|
||||
<li><a href="/product/companyinfo.html">小微企业报告</a></li>
|
||||
<li><a href="/product/homeservice.html">家政风险报告</a></li>
|
||||
<li><a href="/product/consumerFinanceReport.html">消金报告</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">API</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/apidemo/">API 平台</a></li>
|
||||
<li><a href="/all-apis.html">全部接口</a></li>
|
||||
<li><a href="https://work.weixin.qq.com/kfid/kfc93b53b25551b611d" target="_blank">技术咨询</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="footer-title">公司</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="/about.html">关于我们</a></li>
|
||||
<li><a href="/careers.html">加入我们</a></li>
|
||||
<li><a href="/contact.html">联系我们</a></li>
|
||||
<li><a href="/news.html">新闻动态</a></li>
|
||||
<li><a href="/partners.html">合作伙伴</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 愉悦查(北京正信环宇科技有限公司)All Rights Reserved.</p>
|
||||
<p>京 ICP 备 2025158088 号 -2</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user