1010 lines
52 KiB
HTML
1010 lines
52 KiB
HTML
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>Chookoo</title>
|
||
<style>
|
||
:root {
|
||
color-scheme: light;
|
||
--bg: #f5f7fb;
|
||
--text: #0f172a;
|
||
--muted: #5b6472;
|
||
--primary: #2f6bff;
|
||
--primary-weak: #e8f1ff;
|
||
--card: #ffffff;
|
||
--line: #e5e7eb;
|
||
--shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
|
||
}
|
||
* { box-sizing: border-box; }
|
||
html, body {
|
||
height: 100%;
|
||
}
|
||
body {
|
||
margin: 0;
|
||
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans",
|
||
"Helvetica Neue", Arial, sans-serif;
|
||
background: var(--bg);
|
||
color: var(--text);
|
||
scroll-snap-type: y mandatory;
|
||
overflow-y: scroll;
|
||
scroll-behavior: smooth;
|
||
min-width: 320px;
|
||
}
|
||
a {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
.container {
|
||
width: min(1120px, 100%);
|
||
max-width: 1120px;
|
||
margin: 0 auto;
|
||
padding: 0 24px;
|
||
}
|
||
.lang-switch {
|
||
position: fixed;
|
||
top: 24px;
|
||
right: 24px;
|
||
z-index: 1000;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 6px 12px;
|
||
border-radius: 999px;
|
||
background: rgba(255, 255, 255, 0.85);
|
||
border: 1px solid var(--line);
|
||
font-size: 13px;
|
||
color: #374151;
|
||
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
|
||
}
|
||
.lang-switch select {
|
||
border: none;
|
||
background: transparent;
|
||
font-size: 13px;
|
||
color: inherit;
|
||
outline: none;
|
||
cursor: pointer;
|
||
}
|
||
html[dir="rtl"] body {
|
||
direction: rtl;
|
||
}
|
||
html[dir="rtl"] .lang-switch {
|
||
left: 24px;
|
||
right: auto;
|
||
}
|
||
html[dir="rtl"] .hero-inner {
|
||
direction: rtl;
|
||
}
|
||
html[dir="rtl"] .hero-tags {
|
||
justify-content: flex-start;
|
||
}
|
||
html[dir="rtl"] .beian-row {
|
||
direction: rtl;
|
||
}
|
||
.hero {
|
||
position: relative;
|
||
background: url("hero.jpeg") center/cover no-repeat;
|
||
padding: 80px 0 64px;
|
||
}
|
||
.hero::before {
|
||
content: "";
|
||
position: absolute;
|
||
inset: 0;
|
||
background: linear-gradient(180deg, rgba(245, 247, 251, 0.85) 0%, rgba(245, 247, 251, 0.9) 100%);
|
||
}
|
||
.hero > .container {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.hero-inner {
|
||
display: grid;
|
||
gap: 36px;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
align-items: center;
|
||
}
|
||
.eyebrow {
|
||
display: inline-block;
|
||
padding: 6px 14px;
|
||
border-radius: 999px;
|
||
background: var(--primary-weak);
|
||
color: var(--primary);
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
letter-spacing: 0.5px;
|
||
margin-bottom: 16px;
|
||
}
|
||
h1 {
|
||
font-size: 44px;
|
||
margin: 0 0 12px;
|
||
letter-spacing: 0.3px;
|
||
}
|
||
.lead {
|
||
font-size: 18px;
|
||
line-height: 1.7;
|
||
color: var(--muted);
|
||
margin: 0 0 20px;
|
||
}
|
||
.hero-tags {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 10px;
|
||
}
|
||
.tag {
|
||
padding: 6px 12px;
|
||
border-radius: 999px;
|
||
background: #ffffff;
|
||
border: 1px solid var(--line);
|
||
font-size: 13px;
|
||
color: #3b4451;
|
||
}
|
||
.hero-media {
|
||
position: relative;
|
||
min-height: 260px;
|
||
}
|
||
.hero-image {
|
||
width: 220px;
|
||
border-radius: 22px;
|
||
box-shadow: var(--shadow);
|
||
border: 1px solid rgba(255, 255, 255, 0.6);
|
||
background: #fff;
|
||
}
|
||
.hero-image.cat {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
}
|
||
.hero-image.dog {
|
||
position: absolute;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
.glass-card {
|
||
position: absolute;
|
||
left: 40%;
|
||
top: 22%;
|
||
transform: translateX(-40%);
|
||
padding: 16px 18px;
|
||
border-radius: 16px;
|
||
background: rgba(255, 255, 255, 0.75);
|
||
border: 1px solid rgba(255, 255, 255, 0.6);
|
||
backdrop-filter: blur(8px);
|
||
font-size: 14px;
|
||
color: #334155;
|
||
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
|
||
}
|
||
main {
|
||
padding: 0;
|
||
}
|
||
.snap-section {
|
||
height: 100vh;
|
||
height: 100svh;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
scroll-snap-align: start;
|
||
scroll-snap-stop: always;
|
||
}
|
||
.snap-section .container {
|
||
width: 100%;
|
||
padding: 56px 24px;
|
||
}
|
||
.section {
|
||
margin: 0;
|
||
}
|
||
.section-head {
|
||
margin-bottom: 24px;
|
||
}
|
||
.centered .section-head {
|
||
text-align: center;
|
||
}
|
||
.centered .section-head .pill {
|
||
margin: 0 auto;
|
||
}
|
||
.centered .section-head h2 {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.centered .section {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
text-align: center;
|
||
}
|
||
.pill {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 6px 14px;
|
||
border-radius: 999px;
|
||
background: var(--primary);
|
||
color: #fff;
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
}
|
||
h2 {
|
||
font-size: 28px;
|
||
margin: 14px 0 8px;
|
||
}
|
||
p {
|
||
font-size: 16px;
|
||
line-height: 1.7;
|
||
margin: 0 0 16px;
|
||
color: var(--muted);
|
||
}
|
||
.two-col {
|
||
display: grid;
|
||
gap: 24px;
|
||
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
||
}
|
||
.centered .two-col {
|
||
max-width: 900px;
|
||
margin: 0 auto;
|
||
justify-items: center;
|
||
text-align: center;
|
||
}
|
||
.centered .two-col p {
|
||
max-width: 420px;
|
||
}
|
||
.info-grid,
|
||
.product-grid {
|
||
display: grid;
|
||
gap: 18px;
|
||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||
}
|
||
.info-grid {
|
||
min-width: 720px;
|
||
}
|
||
.product-grid {
|
||
min-width: 720px;
|
||
}
|
||
.centered .info-grid,
|
||
.centered .product-grid {
|
||
justify-items: center;
|
||
}
|
||
.centered .info-card,
|
||
.centered .product-card,
|
||
.centered .story-card {
|
||
width: 100%;
|
||
}
|
||
.info-card,
|
||
.product-card,
|
||
.story-card {
|
||
padding: 20px 22px;
|
||
border-radius: 16px;
|
||
background: var(--card);
|
||
border: 1px solid rgba(226, 232, 240, 0.8);
|
||
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
|
||
}
|
||
.info-card h3,
|
||
.product-card h3 {
|
||
margin: 10px 0 8px;
|
||
font-size: 18px;
|
||
color: #1f2937;
|
||
}
|
||
.info-card p,
|
||
.product-card p {
|
||
margin: 0;
|
||
font-size: 14px;
|
||
}
|
||
.value-list {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 8px 0 0;
|
||
display: grid;
|
||
gap: 6px;
|
||
color: var(--muted);
|
||
font-size: 14px;
|
||
}
|
||
.value-list li::before {
|
||
content: "•";
|
||
color: var(--primary);
|
||
margin-right: 6px;
|
||
}
|
||
.badge {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 4px 10px;
|
||
border-radius: 999px;
|
||
background: var(--primary-weak);
|
||
color: var(--primary);
|
||
font-size: 12px;
|
||
font-weight: 600;
|
||
}
|
||
.product-icon {
|
||
width: 44px;
|
||
height: 44px;
|
||
border-radius: 14px;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
color: var(--primary);
|
||
background: var(--primary-weak);
|
||
}
|
||
.product-image {
|
||
width: 44px;
|
||
height: 44px;
|
||
border-radius: 14px;
|
||
object-fit: cover;
|
||
border: 1px solid rgba(226, 232, 240, 0.8);
|
||
}
|
||
.story-card {
|
||
background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
|
||
}
|
||
footer {
|
||
border-top: 1px solid var(--line);
|
||
padding: 18px 24px;
|
||
background: #f9fafb;
|
||
color: #4b5563;
|
||
font-size: 14px;
|
||
}
|
||
footer p {
|
||
margin: 0;
|
||
font-size: 14px;
|
||
}
|
||
.beian-row {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
flex-wrap: wrap;
|
||
}
|
||
.sep {
|
||
margin: 0 6px;
|
||
color: #9ca3af;
|
||
}
|
||
.beian-icon {
|
||
width: 18px;
|
||
height: 18px;
|
||
vertical-align: -3px;
|
||
margin-right: 6px;
|
||
}
|
||
@media (max-width: 720px) {
|
||
h1 { font-size: 34px; }
|
||
h2 { font-size: 24px; }
|
||
.hero-image { width: 180px; }
|
||
.glass-card { display: none; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="lang-switch">
|
||
<span data-i18n="lang_label">语言</span>
|
||
<select id="langSelect" aria-label="Language">
|
||
<option value="zh">中文</option>
|
||
<option value="en">English</option>
|
||
<option value="ja">日本語</option>
|
||
<option value="fr">Français</option>
|
||
<option value="de">Deutsch</option>
|
||
<option value="ru">Русский</option>
|
||
<option value="ar">العربية</option>
|
||
</select>
|
||
</div>
|
||
<header class="hero snap-section">
|
||
<div class="container hero-inner">
|
||
<div>
|
||
<span class="eyebrow" data-i18n="hero_eyebrow">AIoT 主动式宠物健康管理开创者</span>
|
||
<h1 data-i18n="hero_title">Chookoo 宠科智能科技</h1>
|
||
<p class="lead" data-i18n="hero_lead">
|
||
聚焦宠物家庭智能健康管理,打造 AIoT 宠物健康生态,让健康可见、需求可解、宠爱无间。
|
||
</p>
|
||
<div class="hero-tags">
|
||
<span class="tag" data-i18n="hero_tag_1">宠物健康管理</span>
|
||
<span class="tag" data-i18n="hero_tag_2">AIoT 智能硬件</span>
|
||
<span class="tag" data-i18n="hero_tag_3">主动式健康洞察</span>
|
||
</div>
|
||
</div>
|
||
<div class="hero-media">
|
||
<img class="hero-image cat" src="cat.png" alt="智能猫设备" />
|
||
<img class="hero-image dog" src="dog.jpeg" alt="智能狗设备" />
|
||
<div class="glass-card" data-i18n="hero_glass">让每一份宠爱,都有科学回响</div>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
<main>
|
||
<section class="snap-section centered">
|
||
<div class="container section">
|
||
<div class="section-head">
|
||
<span class="pill" data-i18n="section_company_label">公司介绍</span>
|
||
<h2 data-i18n="section_company_title">AIoT 主动式宠物健康管理开创者</h2>
|
||
</div>
|
||
<div class="two-col">
|
||
<p data-i18n="section_company_p1">
|
||
宠科(Chookoo)成立于中国苏州,立足智慧健康管理领域,是一家专注于构建预防式健康生态的科技企业。
|
||
</p>
|
||
<p data-i18n="section_company_p2">
|
||
我们传承长三角高端制造与前沿创新能力,深度融合人工智能、物联网与生物传感技术,依托苏州深厚的精密制造底蕴与跨学科研发能力,
|
||
聚焦宠物与长者的主动健康管理需求。通过智能设备无感收集生命体征与行为数据,AI 实时分析将日常细微变化转化为精准的健康洞察,
|
||
致力于让每一个生命都能被真正理解与守护,共同构建更安心、更具预见性的健康生活。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<section class="snap-section centered">
|
||
<div class="container section">
|
||
<div class="section-head">
|
||
<span class="pill" data-i18n="section_vmv_label">愿景 · 使命 · 价值观</span>
|
||
<h2 data-i18n="section_vmv_title">成为全球宠物家庭最信赖的智能健康伙伴</h2>
|
||
</div>
|
||
<div class="info-grid">
|
||
<div class="info-card">
|
||
<span class="badge" data-i18n="badge_vision">Vision</span>
|
||
<h3 data-i18n="vision_title">愿景</h3>
|
||
<p data-i18n="vision_desc">成为全球宠物家庭最信赖的智能健康伙伴,定义主动健康管理新范式。</p>
|
||
</div>
|
||
<div class="info-card">
|
||
<span class="badge" data-i18n="badge_mission">Mission</span>
|
||
<h3 data-i18n="mission_title">使命</h3>
|
||
<p data-i18n="mission_desc">让健康可见,让需求可解,让宠爱无间。</p>
|
||
</div>
|
||
<div class="info-card">
|
||
<span class="badge" data-i18n="badge_values">Values</span>
|
||
<h3 data-i18n="values_title">价值观</h3>
|
||
<ul class="value-list">
|
||
<li data-i18n="values_1">科技向善</li>
|
||
<li data-i18n="values_2">关爱为本</li>
|
||
<li data-i18n="values_3">极致创新</li>
|
||
<li data-i18n="values_4">长久相伴</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<section class="snap-section centered">
|
||
<div class="container section">
|
||
<div class="section-head">
|
||
<span class="pill" data-i18n="section_products_label">核心产品</span>
|
||
<h2 data-i18n="section_products_title">多场景智能硬件与健康管理服务</h2>
|
||
</div>
|
||
<div class="product-grid">
|
||
<div class="product-card">
|
||
<img class="product-image" src="cat.png" alt="猫厕所" />
|
||
<h3 data-i18n="product_cat_title">猫厕所</h3>
|
||
<p data-i18n="product_cat_desc">智能监测、自动清洁,守护猫咪如厕健康。</p>
|
||
</div>
|
||
<div class="product-card">
|
||
<img class="product-image" src="dog.jpeg" alt="狗厕所" />
|
||
<h3 data-i18n="product_dog_title">狗厕所</h3>
|
||
<p data-i18n="product_dog_desc">科学如厕训练与清洁管理,省心易用。</p>
|
||
</div>
|
||
<div class="product-card">
|
||
<img class="product-image" src="feeder.png" alt="喂食器" />
|
||
<h3 data-i18n="product_feeder_title">喂食器</h3>
|
||
<p data-i18n="product_feeder_desc">定时定量、数据可视,构建健康饮食习惯。</p>
|
||
</div>
|
||
<div class="product-card">
|
||
<img class="product-image" src="water.jpeg" alt="饮水机" />
|
||
<h3 data-i18n="product_water_title">饮水机</h3>
|
||
<p data-i18n="product_water_desc">循环净化、饮水提醒,提升饮水健康。</p>
|
||
</div>
|
||
<div class="product-card">
|
||
<img class="product-image" src="camera.jpeg" alt="宠物 AI 摄像头" />
|
||
<h3 data-i18n="product_camera_title">宠物 AI 摄像头</h3>
|
||
<p data-i18n="product_camera_desc">远程守护、行为识别,实时了解宠物状态。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<section class="snap-section footer-section centered">
|
||
<div class="container section">
|
||
<div class="section-head">
|
||
<span class="pill" data-i18n="section_story_label">品牌故事</span>
|
||
<h2 data-i18n="section_story_title">共筑一个更懂爱的未来</h2>
|
||
</div>
|
||
<div class="story-card">
|
||
<p data-i18n="story_p1">
|
||
宠科的故事,是一个关于进化的故事。我们因宠爱宠物而出发,理解了「宠爱」更广阔的内涵——它是对家庭中所有生命的细致体察与科学呵护。
|
||
</p>
|
||
<p data-i18n="story_p2">
|
||
我们的愿景,是成为全球家庭智能陪伴领域的技术标准制定者与生态引领者。这不仅意味着产品的持续迭代,更意味着我们将与用户建立长期、
|
||
真诚的伙伴关系:通过用户反馈持续优化算法,通过社群聆听最真实的需求,通过「宠科实验室」邀请用户共同参与未来产品的概念设计。
|
||
</p>
|
||
<p data-i18n="story_p3">
|
||
我们承诺,将始终以「让每一份宠爱,都有科学回响」为产品开发的北极星,让科技的光芒,照亮家庭中每一个需要被看见、被理解、被呵护的角落。
|
||
</p>
|
||
<p data-i18n="story_p4">未来已来,它以爱为名。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
<footer>
|
||
<div class="container">
|
||
<p class="beian-row">
|
||
<span data-i18n="footer_company">宠科智能科技(苏州)有限公司</span>
|
||
<span class="sep">|</span>
|
||
<span>
|
||
<span data-i18n="footer_address_label">地址:</span>
|
||
<span data-i18n="footer_address">苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层</span>
|
||
</span>
|
||
<span class="sep">|</span>
|
||
<span>
|
||
<span data-i18n="footer_icp_label">ICP备案/许可证号:</span>
|
||
<a
|
||
href="https://beian.miit.gov.cn/"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
><span data-i18n="footer_icp_value">苏ICP备2025227635号</span></a>
|
||
</span>
|
||
<span class="sep">|</span>
|
||
<span>
|
||
<img
|
||
class="beian-icon"
|
||
src="https://www.beian.gov.cn/img/new/gongan.png"
|
||
alt="公安备案"
|
||
/>
|
||
<a
|
||
href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=32050902103112"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
><span data-i18n="footer_psb_value">苏公网安备32050902103112号</span></a>
|
||
</span>
|
||
</p>
|
||
</div>
|
||
</footer>
|
||
<script>
|
||
(() => {
|
||
const translations = {
|
||
zh: {
|
||
lang_label: "语言",
|
||
hero_eyebrow: "AIoT 主动式宠物健康管理开创者",
|
||
hero_title: "Chookoo 宠科智能科技",
|
||
hero_lead: "聚焦宠物家庭智能健康管理,打造 AIoT 宠物健康生态,让健康可见、需求可解、宠爱无间。",
|
||
hero_tag_1: "宠物健康管理",
|
||
hero_tag_2: "AIoT 智能硬件",
|
||
hero_tag_3: "主动式健康洞察",
|
||
hero_glass: "让每一份宠爱,都有科学回响",
|
||
section_company_label: "公司介绍",
|
||
section_company_title: "AIoT 主动式宠物健康管理开创者",
|
||
section_company_p1: "宠科(Chookoo)成立于中国苏州,立足智慧健康管理领域,是一家专注于构建预防式健康生态的科技企业。",
|
||
section_company_p2: "我们传承长三角高端制造与前沿创新能力,深度融合人工智能、物联网与生物传感技术,依托苏州深厚的精密制造底蕴与跨学科研发能力,聚焦宠物与长者的主动健康管理需求。通过智能设备无感收集生命体征与行为数据,AI 实时分析将日常细微变化转化为精准的健康洞察,致力于让每一个生命都能被真正理解与守护,共同构建更安心、更具预见性的健康生活。",
|
||
section_vmv_label: "愿景 · 使命 · 价值观",
|
||
section_vmv_title: "成为全球宠物家庭最信赖的智能健康伙伴",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Values",
|
||
vision_title: "愿景",
|
||
vision_desc: "成为全球宠物家庭最信赖的智能健康伙伴,定义主动健康管理新范式。",
|
||
mission_title: "使命",
|
||
mission_desc: "让健康可见,让需求可解,让宠爱无间。",
|
||
values_title: "价值观",
|
||
values_1: "科技向善",
|
||
values_2: "关爱为本",
|
||
values_3: "极致创新",
|
||
values_4: "长久相伴",
|
||
section_products_label: "核心产品",
|
||
section_products_title: "多场景智能硬件与健康管理服务",
|
||
product_cat_title: "猫厕所",
|
||
product_cat_desc: "智能监测、自动清洁,守护猫咪如厕健康。",
|
||
product_dog_title: "狗厕所",
|
||
product_dog_desc: "科学如厕训练与清洁管理,省心易用。",
|
||
product_feeder_title: "喂食器",
|
||
product_feeder_desc: "定时定量、数据可视,构建健康饮食习惯。",
|
||
product_water_title: "饮水机",
|
||
product_water_desc: "循环净化、饮水提醒,提升饮水健康。",
|
||
product_camera_title: "宠物 AI 摄像头",
|
||
product_camera_desc: "远程守护、行为识别,实时了解宠物状态。",
|
||
section_story_label: "品牌故事",
|
||
section_story_title: "共筑一个更懂爱的未来",
|
||
story_p1: "宠科的故事,是一个关于进化的故事。我们因宠爱宠物而出发,理解了「宠爱」更广阔的内涵——它是对家庭中所有生命的细致体察与科学呵护。",
|
||
story_p2: "我们的愿景,是成为全球家庭智能陪伴领域的技术标准制定者与生态引领者。这不仅意味着产品的持续迭代,更意味着我们将与用户建立长期、真诚的伙伴关系:通过用户反馈持续优化算法,通过社群聆听最真实的需求,通过「宠科实验室」邀请用户共同参与未来产品的概念设计。",
|
||
story_p3: "我们承诺,将始终以「让每一份宠爱,都有科学回响」为产品开发的北极星,让科技的光芒,照亮家庭中每一个需要被看见、被理解、被呵护的角落。",
|
||
story_p4: "未来已来,它以爱为名。",
|
||
footer_company: "宠科智能科技(苏州)有限公司",
|
||
footer_address_label: "地址:",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "ICP备案/许可证号:",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
},
|
||
en: {
|
||
lang_label: "Language",
|
||
hero_eyebrow: "AIoT Pioneer in Proactive Pet Health Management",
|
||
hero_title: "Chookoo Petcare Technology",
|
||
hero_lead: "Focused on smart pet-family health management, building an AIoT health ecosystem so health is visible, needs are understood, and care is seamless.",
|
||
hero_tag_1: "Pet Health Management",
|
||
hero_tag_2: "AIoT Smart Devices",
|
||
hero_tag_3: "Proactive Health Insights",
|
||
hero_glass: "Let every act of care be supported by science.",
|
||
section_company_label: "Company",
|
||
section_company_title: "AIoT Pioneer in Proactive Pet Health Management",
|
||
section_company_p1: "Chookoo was founded in Suzhou, China, and focuses on smart health management as a technology company dedicated to building a preventive health ecosystem.",
|
||
section_company_p2: "We inherit the Yangtze River Delta’s high-end manufacturing and frontier innovation, integrating AI, IoT, and biosensing. With Suzhou’s precision manufacturing base and cross-disciplinary R&D, we focus on proactive health management for pets and seniors. Smart devices collect vital and behavioral data unobtrusively, and AI turns subtle daily changes into precise health insights—so every life is understood and protected, building a safer and more predictive healthy living experience.",
|
||
section_vmv_label: "Vision · Mission · Values",
|
||
section_vmv_title: "Become the most trusted smart health partner for pet families worldwide",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Values",
|
||
vision_title: "Vision",
|
||
vision_desc: "Become the most trusted smart health partner for pet families worldwide and define a new paradigm of proactive health management.",
|
||
mission_title: "Mission",
|
||
mission_desc: "Make health visible, needs understood, and care seamless.",
|
||
values_title: "Values",
|
||
values_1: "Technology for good",
|
||
values_2: "Care-first",
|
||
values_3: "Relentless innovation",
|
||
values_4: "Long-term companionship",
|
||
section_products_label: "Products",
|
||
section_products_title: "Smart devices and health services for multiple scenarios",
|
||
product_cat_title: "Smart Cat Litter Box",
|
||
product_cat_desc: "Smart monitoring and auto-cleaning to protect feline toilet health.",
|
||
product_dog_title: "Smart Dog Toilet",
|
||
product_dog_desc: "Scientific potty training and easy cleaning management.",
|
||
product_feeder_title: "Smart Feeder",
|
||
product_feeder_desc: "Scheduled portions with data visibility for healthy habits.",
|
||
product_water_title: "Smart Water Fountain",
|
||
product_water_desc: "Circulation and filtration with hydration reminders.",
|
||
product_camera_title: "AI Pet Camera",
|
||
product_camera_desc: "Remote care and behavior recognition for real-time insight.",
|
||
section_story_label: "Brand Story",
|
||
section_story_title: "Building a future that understands love",
|
||
story_p1: "Chookoo’s story is one of evolution. We started from caring for pets and came to understand a broader meaning of love—careful observation and scientific protection for every life in the family.",
|
||
story_p2: "Our vision is to be a standard setter and ecosystem leader in smart family companionship. That means not only continuous product iteration, but also long-term, sincere partnerships with users: improving algorithms through feedback, listening to real needs through communities, and inviting users to co-design future products through the “Chookoo Lab.”",
|
||
story_p3: "We promise to keep “every act of care deserves a scientific echo” as our North Star, so the light of technology reaches every corner that needs to be seen, understood, and protected.",
|
||
story_p4: "The future is here, and it is called love.",
|
||
footer_company: "Chookoo Intelligent Technology (Suzhou) Co., Ltd.",
|
||
footer_address_label: "Address: ",
|
||
footer_address: "No. 2358 Chang'an Rd, Jiangling St., Wujiang Dist., Suzhou, China (Building 2, 5F, Wujiang Sci-Tech Incubator)",
|
||
footer_icp_label: "ICP Filing No.: ",
|
||
footer_icp_value: "Su ICP 2025227635",
|
||
footer_psb_value: "Su Public Security 32050902103112"
|
||
},
|
||
ja: {
|
||
lang_label: "言語",
|
||
hero_eyebrow: "AIoT 主動型ペット健康管理のパイオニア",
|
||
hero_title: "Chookoo ペット健康テクノロジー",
|
||
hero_lead: "ペット家庭のスマート健康管理に注力し、AIoT 健康エコシステムを構築。健康を可視化し、ニーズを理解し、愛を途切れさせません。",
|
||
hero_tag_1: "ペット健康管理",
|
||
hero_tag_2: "AIoT スマートデバイス",
|
||
hero_tag_3: "能動的ヘルスインサイト",
|
||
hero_glass: "すべての愛に、科学のこたえを。",
|
||
section_company_label: "会社紹介",
|
||
section_company_title: "AIoT 主動型ペット健康管理のパイオニア",
|
||
section_company_p1: "Chookoo は中国・蘇州で設立され、スマート健康管理分野に立脚し、予防型健康エコシステムの構築に特化したテクノロジー企業です。",
|
||
section_company_p2: "長三角の高端製造と先端イノベーションを継承し、AI・IoT・バイオセンシングを融合。蘇州の精密製造基盤と学際的 R&D を活かし、ペットと高齢者の主動的健康管理に注力します。無感でデータを収集し、AI が日常の微細変化を健康インサイトへ変換し、安心で予見可能な生活を実現します。",
|
||
section_vmv_label: "ビジョン・ミッション・バリュー",
|
||
section_vmv_title: "世界のペット家庭に最も信頼されるスマート健康パートナーへ",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Values",
|
||
vision_title: "ビジョン",
|
||
vision_desc: "世界のペット家庭に最も信頼されるスマート健康パートナーとなり、主動的健康管理の新しいパラダイムを定義する。",
|
||
mission_title: "ミッション",
|
||
mission_desc: "健康を可視化し、ニーズを理解し、愛をつなぐ。",
|
||
values_title: "価値観",
|
||
values_1: "テクノロジーで善を",
|
||
values_2: "ケア第一",
|
||
values_3: "極致のイノベーション",
|
||
values_4: "長期的な伴走",
|
||
section_products_label: "主要製品",
|
||
section_products_title: "多様なシーンのスマートデバイスと健康管理サービス",
|
||
product_cat_title: "スマート猫トイレ",
|
||
product_cat_desc: "監視と自動清掃で猫の排泄健康を守ります。",
|
||
product_dog_title: "スマート犬トイレ",
|
||
product_dog_desc: "トイレトレーニングと清掃管理を簡単に。",
|
||
product_feeder_title: "スマート給餌器",
|
||
product_feeder_desc: "定時定量と可視化データで健康習慣を構築。",
|
||
product_water_title: "スマート給水器",
|
||
product_water_desc: "循環浄化と飲水リマインドで健康維持。",
|
||
product_camera_title: "AI ペットカメラ",
|
||
product_camera_desc: "遠隔見守りと行動認識で状態を把握。",
|
||
section_story_label: "ブランドストーリー",
|
||
section_story_title: "もっと愛を理解する未来へ",
|
||
story_p1: "Chookoo の物語は進化の物語。私たちはペットへの愛から出発し、家族のすべての命への細やかな観察と科学的ケアという愛の広がりを理解しました。",
|
||
story_p2: "私たちのビジョンは、スマートファミリー伴走領域の標準策定者・エコシステムリーダーになること。継続的な製品進化だけでなく、ユーザーとの長期的で誠実なパートナーシップを重視します。",
|
||
story_p3: "「すべての愛に科学のこたえを」を北極星として、テクノロジーの光で見えにくい場所を照らします。",
|
||
story_p4: "未来はすでに、愛という名で。",
|
||
footer_company: "宠科智能科技(苏州)有限公司",
|
||
footer_address_label: "住所:",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "ICP 登録:",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
},
|
||
fr: {
|
||
lang_label: "Langue",
|
||
hero_eyebrow: "Pionnier de la gestion proactive de la santé des animaux en AIoT",
|
||
hero_title: "Chookoo Technologies Santé Animale",
|
||
hero_lead: "Nous nous concentrons sur la gestion intelligente de la santé des familles avec animaux, en construisant un écosystème AIoT pour rendre la santé visible, les besoins compréhensibles et l’affection continue.",
|
||
hero_tag_1: "Santé animale",
|
||
hero_tag_2: "Appareils AIoT",
|
||
hero_tag_3: "Insights proactifs",
|
||
hero_glass: "Chaque acte d’amour mérite un écho scientifique.",
|
||
section_company_label: "Entreprise",
|
||
section_company_title: "Pionnier AIoT de la santé animale proactive",
|
||
section_company_p1: "Fondée à Suzhou (Chine), Chookoo est une entreprise technologique dédiée à la construction d’un écosystème de santé préventive.",
|
||
section_company_p2: "Nous combinons l’innovation de pointe et la fabrication haut de gamme du delta du Yangtsé, en intégrant IA, IoT et biosenseurs. Grâce à la base industrielle de Suzhou et à la R&D interdisciplinaire, nous transformons les micro-changements du quotidien en insights de santé précis pour protéger chaque vie.",
|
||
section_vmv_label: "Vision · Mission · Valeurs",
|
||
section_vmv_title: "Devenir le partenaire santé intelligent le plus fiable des familles avec animaux",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Valeurs",
|
||
vision_title: "Vision",
|
||
vision_desc: "Devenir le partenaire santé intelligent le plus fiable des familles avec animaux et définir un nouveau paradigme de santé proactive.",
|
||
mission_title: "Mission",
|
||
mission_desc: "Rendre la santé visible, les besoins compréhensibles et l’affection continue.",
|
||
values_title: "Valeurs",
|
||
values_1: "Technologie au service du bien",
|
||
values_2: "Le soin avant tout",
|
||
values_3: "Innovation extrême",
|
||
values_4: "Compagnonnage durable",
|
||
section_products_label: "Produits",
|
||
section_products_title: "Appareils intelligents et services de santé multi-scénarios",
|
||
product_cat_title: "Litière intelligente pour chat",
|
||
product_cat_desc: "Surveillance intelligente et nettoyage automatique.",
|
||
product_dog_title: "Toilettes intelligentes pour chien",
|
||
product_dog_desc: "Apprentissage et nettoyage facilités.",
|
||
product_feeder_title: "Distributeur intelligent",
|
||
product_feeder_desc: "Portions programmées et données visibles.",
|
||
product_water_title: "Fontaine intelligente",
|
||
product_water_desc: "Filtration et rappels d’hydratation.",
|
||
product_camera_title: "Caméra IA pour animaux",
|
||
product_camera_desc: "Surveillance à distance et reconnaissance comportementale.",
|
||
section_story_label: "Histoire de la marque",
|
||
section_story_title: "Construire un futur qui comprend l’amour",
|
||
story_p1: "L’histoire de Chookoo est une histoire d’évolution. Nous avons élargi le sens de l’amour en prenant soin de chaque vie au sein de la famille.",
|
||
story_p2: "Notre vision est d’être un leader d’écosystème et un créateur de standards dans l’accompagnement intelligent des familles, grâce à l’écoute des utilisateurs et à la co‑conception.",
|
||
story_p3: "« Chaque amour mérite une réponse scientifique » est notre étoile polaire pour éclairer les coins à protéger.",
|
||
story_p4: "Le futur est déjà là, il s’appelle amour.",
|
||
footer_company: "Chookoo Intelligent Technology (Suzhou) Co., Ltd.",
|
||
footer_address_label: "Adresse : ",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "ICP : ",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
},
|
||
de: {
|
||
lang_label: "Sprache",
|
||
hero_eyebrow: "AIoT-Pionier für proaktives Haustier-Gesundheitsmanagement",
|
||
hero_title: "Chookoo Pet Health Technology",
|
||
hero_lead: "Wir fokussieren intelligente Gesundheitsverwaltung für Haustierfamilien und bauen ein AIoT-Ökosystem, damit Gesundheit sichtbar, Bedürfnisse verstanden und Fürsorge nahtlos wird.",
|
||
hero_tag_1: "Haustiergesundheit",
|
||
hero_tag_2: "AIoT Geräte",
|
||
hero_tag_3: "Proaktive Erkenntnisse",
|
||
hero_glass: "Jede Fürsorge verdient ein wissenschaftliches Echo.",
|
||
section_company_label: "Unternehmen",
|
||
section_company_title: "AIoT-Pionier für proaktives Haustier-Gesundheitsmanagement",
|
||
section_company_p1: "Chookoo wurde in Suzhou (China) gegründet und ist ein Technologieunternehmen, das ein präventives Gesundheitsökosystem aufbaut.",
|
||
section_company_p2: "Wir verbinden High-End-Fertigung und Innovation im Jangtse-Delta mit KI, IoT und Biosensorik. Durch präzise Datenerfassung und KI-Analyse werden kleine Veränderungen zu klaren Gesundheits-Insights, um jedes Leben besser zu schützen.",
|
||
section_vmv_label: "Vision · Mission · Werte",
|
||
section_vmv_title: "Der vertrauenswürdigste Smart-Health-Partner für Haustierfamilien weltweit",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Werte",
|
||
vision_title: "Vision",
|
||
vision_desc: "Der vertrauenswürdigste Smart-Health-Partner für Haustierfamilien weltweit werden und ein neues Paradigma proaktiver Gesundheitsfürsorge definieren.",
|
||
mission_title: "Mission",
|
||
mission_desc: "Gesundheit sichtbar machen, Bedürfnisse verstehen, Fürsorge verbinden.",
|
||
values_title: "Werte",
|
||
values_1: "Technologie für das Gute",
|
||
values_2: "Fürsorge zuerst",
|
||
values_3: "Radikale Innovation",
|
||
values_4: "Langfristige Begleitung",
|
||
section_products_label: "Produkte",
|
||
section_products_title: "Smarte Geräte und Gesundheitsservices für viele Szenarien",
|
||
product_cat_title: "Smarte Katzentoilette",
|
||
product_cat_desc: "Monitoring und automatische Reinigung für Katzenhygiene.",
|
||
product_dog_title: "Smarte Hundetoilette",
|
||
product_dog_desc: "Training und Reinigung leicht gemacht.",
|
||
product_feeder_title: "Smarter Futterautomat",
|
||
product_feeder_desc: "Geplante Portionen mit Dateneinblick.",
|
||
product_water_title: "Smarter Trinkbrunnen",
|
||
product_water_desc: "Zirkulation, Filterung und Trink-Erinnerung.",
|
||
product_camera_title: "KI-Haustierkamera",
|
||
product_camera_desc: "Fernbetreuung und Verhaltenserkennung.",
|
||
section_story_label: "Markengeschichte",
|
||
section_story_title: "Eine Zukunft, die Liebe versteht",
|
||
story_p1: "Chookoos Geschichte ist eine Geschichte der Evolution. Wir erweiterten die Bedeutung von Liebe zu wissenschaftlicher Fürsorge für jede Lebensform in der Familie.",
|
||
story_p2: "Wir wollen Standardsetzer und Ökosystemführer im smarten Familien‑Begleiten sein und gemeinsam mit Nutzern Zukunftsprodukte gestalten.",
|
||
story_p3: "„Jede Liebe verdient ein wissenschaftliches Echo“ bleibt unser Nordstern, um unsichtbare Ecken zu erhellen.",
|
||
story_p4: "Die Zukunft ist da – sie heißt Liebe.",
|
||
footer_company: "Chookoo Intelligent Technology (Suzhou) Co., Ltd.",
|
||
footer_address_label: "Adresse: ",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "ICP-Nr.: ",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
},
|
||
ru: {
|
||
lang_label: "Язык",
|
||
hero_eyebrow: "Пионер AIoT в проактивном управлении здоровьем питомцев",
|
||
hero_title: "Chookoo Pet Health Technology",
|
||
hero_lead: "Мы создаем AIoT‑экосистему для умного управления здоровьем питомцев, чтобы здоровье было видно, потребности понятны, а забота — непрерывной.",
|
||
hero_tag_1: "Здоровье питомцев",
|
||
hero_tag_2: "AIoT устройства",
|
||
hero_tag_3: "Проактивные инсайты",
|
||
hero_glass: "Каждой заботе — научный отклик.",
|
||
section_company_label: "О компании",
|
||
section_company_title: "Пионер AIoT в проактивном управлении здоровьем питомцев",
|
||
section_company_p1: "Chookoo основана в Сучжоу (Китай) и специализируется на создании превентивной экосистемы здоровья.",
|
||
section_company_p2: "Мы объединяем высокоточное производство и передовые инновации, интегрируя ИИ, IoT и биосенсоры. Устройства незаметно собирают данные, а ИИ превращает малые изменения в точные инсайты для более безопасной и предсказуемой жизни.",
|
||
section_vmv_label: "Видение · Миссия · Ценности",
|
||
section_vmv_title: "Самый надежный умный партнер по здоровью для семей с питомцами",
|
||
badge_vision: "Vision",
|
||
badge_mission: "Mission",
|
||
badge_values: "Values",
|
||
vision_title: "Видение",
|
||
vision_desc: "Стать самым надежным умным партнером по здоровью для семей с питомцами и задать новый стандарт проактивного управления здоровьем.",
|
||
mission_title: "Миссия",
|
||
mission_desc: "Сделать здоровье видимым, потребности понятными и заботу непрерывной.",
|
||
values_title: "Ценности",
|
||
values_1: "Технологии во благо",
|
||
values_2: "Забота прежде всего",
|
||
values_3: "Максимальные инновации",
|
||
values_4: "Долгая поддержка",
|
||
section_products_label: "Продукты",
|
||
section_products_title: "Умные устройства и сервисы для разных сценариев",
|
||
product_cat_title: "Умный кошачий туалет",
|
||
product_cat_desc: "Мониторинг и автоочистка для здоровья питомца.",
|
||
product_dog_title: "Умный туалет для собак",
|
||
product_dog_desc: "Обучение и простое обслуживание.",
|
||
product_feeder_title: "Умная кормушка",
|
||
product_feeder_desc: "Порции по расписанию и прозрачные данные.",
|
||
product_water_title: "Умный фонтан",
|
||
product_water_desc: "Циркуляция, фильтрация и напоминания.",
|
||
product_camera_title: "AI‑камера для питомцев",
|
||
product_camera_desc: "Удаленный уход и распознавание поведения.",
|
||
section_story_label: "История бренда",
|
||
section_story_title: "Будущее, которое понимает любовь",
|
||
story_p1: "История Chookoo — это история эволюции любви и заботы о каждой жизни в семье.",
|
||
story_p2: "Мы хотим задавать стандарты умного семейного сопровождения и создавать экосистему вместе с пользователями.",
|
||
story_p3: "«Каждой любви — научный отклик» — наш северный ориентир.",
|
||
story_p4: "Будущее уже здесь — и оно называется любовью.",
|
||
footer_company: "Chookoo Intelligent Technology (Suzhou) Co., Ltd.",
|
||
footer_address_label: "Адрес: ",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "ICP №: ",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
},
|
||
ar: {
|
||
lang_label: "اللغة",
|
||
hero_eyebrow: "رائد إدارة صحة الحيوانات الأليفة الاستباقية عبر AIoT",
|
||
hero_title: "Chookoo تكنولوجيا صحة الحيوانات الأليفة",
|
||
hero_lead: "نركّز على إدارة الصحة الذكية لأسر الحيوانات الأليفة، ونبني منظومة AIoT تجعل الصحة مرئية، والاحتياجات مفهومة، والرعاية بلا انقطاع.",
|
||
hero_tag_1: "إدارة صحة الحيوانات",
|
||
hero_tag_2: "أجهزة AIoT الذكية",
|
||
hero_tag_3: "رؤى صحية استباقية",
|
||
hero_glass: "لكل عناية صدى علمي.",
|
||
section_company_label: "عن الشركة",
|
||
section_company_title: "رائد إدارة صحة الحيوانات الأليفة الاستباقية عبر AIoT",
|
||
section_company_p1: "تأسست Chookoo في سوتشو بالصين، وتركّز على إدارة الصحة الذكية، وهي شركة تقنية مكرسة لبناء منظومة صحة وقائية.",
|
||
section_company_p2: "نمزج قدرات التصنيع المتقدم والابتكار في دلتا اليانغتسي مع الذكاء الاصطناعي وإنترنت الأشياء والاستشعار الحيوي. نعتمد على قاعدة التصنيع الدقيقة في سوتشو وقدرات البحث متعددة التخصصات لتحويل التغيرات اليومية الدقيقة إلى رؤى صحية دقيقة، بما يضمن فهماً وحماية أفضل لكل حياة.",
|
||
section_vmv_label: "الرؤية · الرسالة · القيم",
|
||
section_vmv_title: "أن نصبح الشريك الأكثر ثقة لصحة أسر الحيوانات الأليفة عالمياً",
|
||
badge_vision: "الرؤية",
|
||
badge_mission: "الرسالة",
|
||
badge_values: "القيم",
|
||
vision_title: "الرؤية",
|
||
vision_desc: "أن نصبح الشريك الأكثر ثقة لصحة أسر الحيوانات الأليفة عالمياً وأن نعرّف نموذجاً جديداً لإدارة الصحة الاستباقية.",
|
||
mission_title: "الرسالة",
|
||
mission_desc: "جعل الصحة مرئية، والاحتياجات مفهومة، والرعاية متصلة.",
|
||
values_title: "القيم",
|
||
values_1: "التكنولوجيا للخير",
|
||
values_2: "الرعاية أولاً",
|
||
values_3: "ابتكار بلا حدود",
|
||
values_4: "رفقة طويلة الأمد",
|
||
section_products_label: "المنتجات",
|
||
section_products_title: "أجهزة ذكية وخدمات صحية لسيناريوهات متعددة",
|
||
product_cat_title: "مرحاض ذكي للقطط",
|
||
product_cat_desc: "مراقبة ذكية وتنظيف تلقائي لصحة القطط.",
|
||
product_dog_title: "مرحاض ذكي للكلاب",
|
||
product_dog_desc: "تدريب أسهل وإدارة تنظيف مريحة.",
|
||
product_feeder_title: "مغذي ذكي",
|
||
product_feeder_desc: "حصص مجدولة وبيانات مرئية لعادات صحية.",
|
||
product_water_title: "نافورة ماء ذكية",
|
||
product_water_desc: "تدوير وتنقية مع تذكير بالترطيب.",
|
||
product_camera_title: "كاميرا AI للحيوانات الأليفة",
|
||
product_camera_desc: "رعاية عن بُعد وتعرّف على السلوك في الوقت الحقيقي.",
|
||
section_story_label: "قصة العلامة",
|
||
section_story_title: "نبني مستقبلاً يفهم الحب",
|
||
story_p1: "قصة Chookoo هي قصة تطور. بدأنا من حب الحيوانات الأليفة وفهمنا معنى أوسع للحب: ملاحظة دقيقة ورعاية علمية لكل حياة داخل الأسرة.",
|
||
story_p2: "رؤيتنا أن نكون واضعي المعايير وقادة النظام البيئي في مجال الرفقة الذكية للأسر، عبر شراكات طويلة الأمد مع المستخدمين وتطوير مستمر بالاستماع لملاحظاتهم.",
|
||
story_p3: "نعد بأن تظل عبارة «لكل عناية صدى علمي» بوصلتنا، لتصل أنوار التكنولوجيا إلى كل زاوية بحاجة إلى الفهم والحماية.",
|
||
story_p4: "المستقبل هنا، واسمه الحب.",
|
||
footer_company: "Chookoo Intelligent Technology (Suzhou) Co., Ltd.",
|
||
footer_address_label: "العنوان: ",
|
||
footer_address: "苏州市吴江区江陵街道长安路2358号吴江科技创业园2号楼5层",
|
||
footer_icp_label: "رقم ICP: ",
|
||
footer_icp_value: "苏ICP备2025227635号",
|
||
footer_psb_value: "苏公网安备32050902103112号"
|
||
}
|
||
};
|
||
|
||
const elements = Array.from(document.querySelectorAll("[data-i18n]"));
|
||
const langSelect = document.getElementById("langSelect");
|
||
|
||
const normalizeLang = (lang) => {
|
||
if (!lang) return "en";
|
||
const lower = lang.toLowerCase();
|
||
if (lower.startsWith("zh")) return "zh";
|
||
if (lower.startsWith("ja")) return "ja";
|
||
if (lower.startsWith("fr")) return "fr";
|
||
if (lower.startsWith("de")) return "de";
|
||
if (lower.startsWith("ru")) return "ru";
|
||
if (lower.startsWith("ar")) return "ar";
|
||
return "en";
|
||
};
|
||
|
||
const applyLang = (lang) => {
|
||
const dict = translations[lang] || translations.en;
|
||
elements.forEach((el) => {
|
||
const key = el.dataset.i18n;
|
||
if (dict[key]) {
|
||
el.textContent = dict[key];
|
||
}
|
||
});
|
||
if (langSelect) langSelect.value = lang;
|
||
document.documentElement.lang = lang === "zh" ? "zh-CN" : lang;
|
||
document.documentElement.dir = lang === "ar" ? "rtl" : "ltr";
|
||
};
|
||
|
||
const detected = normalizeLang(navigator.language || navigator.userLanguage || "en");
|
||
applyLang(detected);
|
||
|
||
if (langSelect) {
|
||
langSelect.addEventListener("change", (event) => {
|
||
applyLang(event.target.value);
|
||
});
|
||
}
|
||
|
||
const sections = Array.from(document.querySelectorAll(".snap-section"));
|
||
if (sections.length === 0) return;
|
||
|
||
let isScrolling = false;
|
||
let lastScrollTime = 0;
|
||
|
||
const scrollToIndex = (index) => {
|
||
const target = sections[index];
|
||
if (!target) return;
|
||
isScrolling = true;
|
||
target.scrollIntoView({ behavior: "smooth", block: "start" });
|
||
setTimeout(() => {
|
||
isScrolling = false;
|
||
}, 700);
|
||
};
|
||
|
||
const currentIndex = () => {
|
||
const y = window.scrollY + window.innerHeight / 2;
|
||
let idx = 0;
|
||
for (let i = 0; i < sections.length; i += 1) {
|
||
if (sections[i].offsetTop <= y) idx = i;
|
||
}
|
||
return idx;
|
||
};
|
||
|
||
window.addEventListener(
|
||
"wheel",
|
||
(event) => {
|
||
const now = Date.now();
|
||
if (isScrolling || now - lastScrollTime < 500) {
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
lastScrollTime = now;
|
||
const dir = event.deltaY > 0 ? 1 : -1;
|
||
const idx = currentIndex();
|
||
scrollToIndex(idx + dir);
|
||
event.preventDefault();
|
||
},
|
||
{ passive: false }
|
||
);
|
||
|
||
window.addEventListener("keydown", (event) => {
|
||
if (isScrolling) return;
|
||
if (event.key === "ArrowDown" || event.key === "PageDown") {
|
||
scrollToIndex(currentIndex() + 1);
|
||
event.preventDefault();
|
||
} else if (event.key === "ArrowUp" || event.key === "PageUp") {
|
||
scrollToIndex(currentIndex() - 1);
|
||
event.preventDefault();
|
||
}
|
||
});
|
||
})();
|
||
</script>
|
||
</body>
|
||
</html>
|