535 lines
37 KiB
HTML
535 lines
37 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN" data-theme="night">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>AI教育 - 深度概念分析报告</title>
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
|
||
body {
|
||
font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
|
||
background-color: #000010;
|
||
background-image:
|
||
radial-gradient(ellipse 20% 40% at 20% 20%, rgba(100, 10, 200, 0.2), transparent),
|
||
radial-gradient(ellipse 20% 40% at 80% 80%, rgba(10, 100, 200, 0.2), transparent);
|
||
background-attachment: fixed;
|
||
color: #e0e0e0;
|
||
}
|
||
.glass-card {
|
||
background: rgba(20, 20, 50, 0.3);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.glass-card:hover {
|
||
background: rgba(30, 30, 60, 0.5);
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
|
||
}
|
||
.bento-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
gap: 1.5rem;
|
||
}
|
||
.grid-span-12 { grid-column: span 12; }
|
||
.grid-span-8 { grid-column: span 8; }
|
||
.grid-span-6 { grid-column: span 6; }
|
||
.grid-span-4 { grid-column: span 4; }
|
||
.grid-span-3 { grid-column: span 3; }
|
||
|
||
@media (max-width: 1024px) {
|
||
.grid-span-8, .grid-span-6, .grid-span-4, .grid-span-3 {
|
||
grid-column: span 12;
|
||
}
|
||
}
|
||
|
||
.glow-border {
|
||
position: relative;
|
||
}
|
||
.glow-border::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: -2px; left: -2px;
|
||
right: -2px; bottom: -2px;
|
||
background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
|
||
background-size: 400%;
|
||
border-radius: inherit;
|
||
z-index: -1;
|
||
filter: blur(8px);
|
||
opacity: 0.7;
|
||
animation: glowing 20s linear infinite;
|
||
}
|
||
@keyframes glowing {
|
||
0% { background-position: 0 0; }
|
||
50% { background-position: 400% 0; }
|
||
100% { background-position: 0 0; }
|
||
}
|
||
.text-glow {
|
||
text-shadow: 0 0 8px rgba(0, 255, 255, 0.7), 0 0 12px rgba(255, 0, 255, 0.5);
|
||
}
|
||
::-webkit-scrollbar { width: 8px; }
|
||
::-webkit-scrollbar-track { background: transparent; }
|
||
::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); border-radius: 10px; border: 2px solid transparent; background-clip: content-box; }
|
||
::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.4); }
|
||
</style>
|
||
</head>
|
||
<body class="min-h-screen">
|
||
<div class="container mx-auto p-4 md:p-8">
|
||
|
||
<!-- Header -->
|
||
<header class="text-center mb-12">
|
||
<h1 class="text-4xl md:text-6xl font-bold text-glow mb-4">AI教育</h1>
|
||
<p class="text-lg md:text-xl text-cyan-300">深度概念分析报告</p>
|
||
<p class="text-xs text-gray-400 mt-2">北京价值前沿科技有限公司 AI投研agent:“价小前投研” | 本报告为AI合成数据,投资需谨慎。</p>
|
||
</header>
|
||
|
||
<!-- Bento Grid Layout -->
|
||
<main class="bento-grid">
|
||
|
||
<!-- Core View -->
|
||
<div class="grid-span-12 glass-card rounded-3xl p-6 md:p-8 glow-border">
|
||
<h2 class="text-2xl font-bold text-white mb-4">核心观点摘要</h2>
|
||
<p class="text-base text-gray-300">
|
||
AI教育正从一个前沿概念迅速转变为商业化初期的落地实践阶段。其核心驱动力在于<b>生成式AI技术突破</b>从根本上解决了教育“不可能三角”(即规模化、个性化、高质量难以兼顾)的难题。未来,该赛道的潜力巨大,但短期内市场正处于“故事与数据”并存的验证期,竞争格局远未确定,具备<b>垂直领域数据壁垒</b>和<b>高效产品化能力</b>的公司将脱颖而出。
|
||
</p>
|
||
</div>
|
||
|
||
<!-- Concept Events -->
|
||
<div class="grid-span-12 lg:grid-span-7 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">概念催化事件</h2>
|
||
<p class="text-sm text-gray-400 mb-4">技术迭代、政策引导和市场需求三方共振,由一系列密集的催化事件驱动。</p>
|
||
<div id="timelineChart" style="width: 100%; height: 400px;"></div>
|
||
<div class="mt-4 space-y-3 text-sm">
|
||
<p><b><span class="text-cyan-400">技术背景:</span></b> 以 <b>DeepSeek</b> 为代表的高质量、低成本开源大模型出现,极大地降低了教育公司开发AI应用的门槛。网易有道、好未来等头部公司纷纷接入。</p>
|
||
<p><b><span class="text-purple-400">政策催化:</span></b> 我国教育部强调<b>2030年前</b>在中小学基本普及人工智能教育,北京等地发布具体应用方案,提供顶层设计与长期确定性。</p>
|
||
<p><b><span class="text-yellow-400">市场催化:</span></b> 2024年暑期旺季,新东方(6.24)、天立国际控股(6.30)、豆神教育(7.8)密集召开AI产品发布会,形成强大的板块催化效应。豆神“超练”系列产品GMV突破<b>1740万元</b>成为市场焦点。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Key Player News -->
|
||
<div class="grid-span-12 lg:grid-span-5 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">关键玩家动态</h2>
|
||
<div class="space-y-4">
|
||
<div class="p-4 rounded-xl bg-black/20 border border-white/10">
|
||
<h3 class="font-semibold text-cyan-300">豆神教育 (进攻者)</h3>
|
||
<p class="text-sm text-gray-300 mt-1">产品矩阵最完整(AI双师/超能训练场/硬件),C端变现能力已初步验证(GMV数据亮眼)。深度绑定智谱AI,在大语文垂类构筑数据壁垒。</p>
|
||
</div>
|
||
<div class="p-4 rounded-xl bg-black/20 border border-white/10">
|
||
<h3 class="font-semibold text-purple-300">科大讯飞 (技术龙头)</h3>
|
||
<p class="text-sm text-gray-300 mt-1">技术实力雄厚,AI学习机市场份额领先 (NPS行业第一)。G/B/C三端布局深厚,2024年AI智慧教育营收<b>72.29亿</b>,抗风险能力强。</p>
|
||
</div>
|
||
<div class="p-4 rounded-xl bg-black/20 border border-white/10">
|
||
<h3 class="font-semibold text-yellow-300">好未来/新东方 (品牌巨头)</h3>
|
||
<p class="text-sm text-gray-300 mt-1">拥有最强品牌、教研积累和客户基础。学习机作为切入点快速起量,将AI融入现有成熟业务体系,确定性更高。</p>
|
||
</div>
|
||
<div class="p-4 rounded-xl bg-black/20 border border-white/10">
|
||
<h3 class="font-semibold text-green-300">佳发教育 (B/G端冠军)</h3>
|
||
<p class="text-sm text-gray-300 mt-1">深耕教育信息化,拥有千万级考试场景数据。与华为、腾讯合作自研“零谷教育大模型”,AI英语听说、AI理化实验等产品需求刚性。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Core Logic & Market Perception -->
|
||
<div class="grid-span-12 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">核心逻辑与市场认知分析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div>
|
||
<h3 class="font-semibold text-xl text-cyan-300 mb-2">四大核心驱动力</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-gray-300">
|
||
<li><b>技术平权:</b> 底层大模型成熟且成本下降,为行业创新提供“技术底座”。</li>
|
||
<li><b>政策背书:</b> 从中央到地方明确鼓励AI教育应用,扫清发展障碍。</li>
|
||
<li><b>商业模式重塑:</b> 后“双减”时代,AI提供降本增效与创造新收入的双重路径,以远低于传统辅导的价格提供个性化服务。</li>
|
||
<li><b>核心痛点解决:</b> 直击教育“个性化不足”痛点,实现“因材施教”与“减负增效”。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="border-t-2 md:border-t-0 md:border-l-2 border-dashed border-purple-400/50 pt-6 md:pt-0 md:pl-6">
|
||
<h3 class="font-semibold text-xl text-purple-300 mb-2">市场预期差分析</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-gray-300">
|
||
<li><b>“AI万能论” vs “技术局限”:</b> 市场可能忽略AI在多模态识别(如几何题)的不足和“幻觉风险”。</li>
|
||
<li><b>“C端爆发” vs “B/G端先行”:</b> 市场焦点多在C端GMV,但G/B端模式(如凯文教育进校)更稳健,认知尚不充分。</li>
|
||
<li><b>“模型接入” vs “数据壁垒”:</b> 核心竞争力已转向高质量垂直数据。拥有教研积累(豆神)或场景数据(佳发)的公司护城河更深。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Future Development Path -->
|
||
<div class="grid-span-12 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">未来发展路径</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 text-center">
|
||
<div class="p-4 rounded-2xl bg-black/20 border border-white/10">
|
||
<div class="text-cyan-400 text-lg font-bold">第一阶段 (当前-2025年)</div>
|
||
<div class="text-2xl font-semibold my-2">工具化与辅助</div>
|
||
<p class="text-sm text-gray-400">AI作为“助教”和“提效工具”,产品形态以AI答疑、作业批改、AI刷题班为主。商业模式为软件订阅、硬件销售。</p>
|
||
</div>
|
||
<div class="p-4 rounded-2xl bg-black/20 border border-white/10">
|
||
<div class="text-purple-400 text-lg font-bold">第二阶段 (2025-2027年)</div>
|
||
<div class="text-2xl font-semibold my-2">融合与模式创新</div>
|
||
<p class="text-sm text-gray-400">“AI双师”模式成为主流,AI深度融入教学流程。形成“软件+硬件+内容+服务”的生态闭环。</p>
|
||
</div>
|
||
<div class="p-4 rounded-2xl bg-black/20 border border-white/10">
|
||
<div class="text-yellow-400 text-lg font-bold">第三阶段 (2028年+)</div>
|
||
<div class="text-2xl font-semibold my-2">个性化与生态重塑</div>
|
||
<p class="text-sm text-gray-400">实现真正的“千人千面”自适应学习,AI成为学生主要学习伴侣,颠覆传统班级授课制。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Industry Chain -->
|
||
<div class="grid-span-12 lg:grid-span-8 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">产业链图谱</h2>
|
||
<div id="sunburstChart" style="width: 100%; height: 450px;"></div>
|
||
</div>
|
||
|
||
<!-- Key Metrics -->
|
||
<div class="grid-span-12 lg:grid-span-4 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">需重点跟踪验证的关键指标</h2>
|
||
<ul class="space-y-3 text-gray-300">
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold">C端产品</h4>
|
||
<p class="text-sm text-gray-400">MAU、付费转化率、续费率、LTV/CAC比值</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold">硬件产品</h4>
|
||
<p class="text-sm text-gray-400">出货量、市占率、软硬件收入占比</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-yellow-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold">B/G端业务</h4>
|
||
<p class="text-sm text-gray-400">合同订单金额、签约学校/区域数、项目毛利率</p>
|
||
</div>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-green-400 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" /></svg>
|
||
<div>
|
||
<h4 class="font-semibold">通用指标</h4>
|
||
<p class="text-sm text-gray-400">AI业务收入占比、毛利率变化</p>
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Risks -->
|
||
<div class="grid-span-12 glass-card rounded-3xl p-6 md:p-8">
|
||
<h2 class="text-2xl font-bold text-white mb-4">潜在风险与挑战</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||
<div class="text-center p-4">
|
||
<div class="mx-auto h-16 w-16 flex items-center justify-center rounded-full bg-red-500/20 mb-4 border border-red-500/50">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-red-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z" /></svg>
|
||
</div>
|
||
<h4 class="font-semibold text-red-300">技术风险</h4>
|
||
<p class="text-sm text-gray-400">模型幻觉、数据隐私与伦理问题</p>
|
||
</div>
|
||
<div class="text-center p-4">
|
||
<div class="mx-auto h-16 w-16 flex items-center justify-center rounded-full bg-orange-500/20 mb-4 border border-orange-500/50">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-orange-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v.01M12 12v.01M12 12v-.01M12 16v.01M12 16v-.01M12 16c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
|
||
</div>
|
||
<h4 class="font-semibold text-orange-300">商业化风险</h4>
|
||
<p class="text-sm text-gray-400">付费意愿可持续性、成本与定价平衡、同质化竞争</p>
|
||
</div>
|
||
<div class="text-center p-4">
|
||
<div class="mx-auto h-16 w-16 flex items-center justify-center rounded-full bg-yellow-500/20 mb-4 border border-yellow-500/50">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-yellow-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||
</div>
|
||
<h4 class="font-semibold text-yellow-300">政策与竞争风险</h4>
|
||
<p class="text-sm text-gray-400">监管不确定性、跨界巨头(如字节跳动)入场</p>
|
||
</div>
|
||
<div class="text-center p-4">
|
||
<div class="mx-auto h-16 w-16 flex items-center justify-center rounded-full bg-blue-500/20 mb-4 border border-blue-500/50">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-blue-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h5M5.5 9.5L4 11l1.5 1.5M12 4v5h5M13.5 9.5L12 11l1.5 1.5M4 17v5h5M5.5 21.5L4 23l1.5 1.5M12 17v5h5M13.5 21.5L12 23l1.5 1.5" /><path d="M16 4h5v5M17.5 9.5L16 11l1.5 1.5M16 17h5v5M17.5 21.5L16 23l1.5 1.5"/></svg>
|
||
</div>
|
||
<h4 class="font-semibold text-blue-300">信息交叉验证风险</h4>
|
||
<p class="text-sm text-gray-400">高GMV与盈利能力可能不匹配,宏大叙事与实际落地进展存在差距</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Conclusion -->
|
||
<div class="grid-span-12 glass-card rounded-3xl p-6 md:p-8 glow-border">
|
||
<h2 class="text-2xl font-bold text-white mb-4">综合结论与投资启示</h2>
|
||
<div class="space-y-4">
|
||
<p class="text-gray-300">AI教育概念已走过纯粹的“主题炒作”阶段,进入了<b>“业绩兑现”的早期验证阶段</b>。行业长期成长空间毋庸置疑,但短期内机遇与风险并存。投资逻辑应从“讲故事”转向<b>“看数据、验产品”</b>。</p>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-cyan-300 mb-2">最具投资价值的细分环节:</h4>
|
||
<ol class="list-decimal list-inside space-y-2 text-gray-400">
|
||
<li><b>垂直领域解决方案:</b> 拥有自有高质量数据集、能解决特定场景痛点的公司,护城河最深。</li>
|
||
<li><b>“AI+硬件”生态平台:</b> 学习机等智能硬件是AI服务触达家庭的最佳载体,能占据用户心智和家庭入口。</li>
|
||
<li><b>稳健的B/G端服务商:</b> 面向学校和政府的服务商业务确定性高,现金流稳定,是更为稳健的投资选择。</li>
|
||
</ol>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Stock Data -->
|
||
<div class="grid-span-12">
|
||
<h2 class="text-3xl font-bold text-center my-8 text-glow">相关概念股一览</h2>
|
||
|
||
<!-- Table 1 -->
|
||
<div class="glass-card rounded-3xl p-6 md:p-8 mb-8">
|
||
<h3 class="text-xl font-bold text-white mb-4">AI教育-核心标的 (250710)</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table w-full">
|
||
<thead class="text-base text-cyan-300">
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>核心逻辑</th>
|
||
<th>分类标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody class="text-gray-300">
|
||
<tr class="hover:bg-white/5">
|
||
<td>豆神教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300010" target="_blank" class="link link-hover">300010</a></td>
|
||
<td>发布AI教育生态矩阵:AI双师+AI超能训练场+AI学伴机器人</td>
|
||
<td><span class="badge badge-primary badge-outline">教育</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>科大讯飞</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002230" target="_blank" class="link link-hover">002230</a></td>
|
||
<td>科大讯飞AI学习机为AI教育引领者,产品用户净推荐值(NPS)持续保持行业第一</td>
|
||
<td><span class="badge badge-secondary badge-outline">科技</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>竞业达</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=003005" target="_blank" class="link link-hover">003005</a></td>
|
||
<td>教育领域全栈AI解决方案商;AIGC诊断评价服务报告付费转化率超50%</td>
|
||
<td><span class="badge badge-secondary badge-outline">科技</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>学大教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=000526" target="_blank" class="link link-hover">000526</a></td>
|
||
<td>学大教育星图AI生成式人工智能模型的研发,已获监管部门的备案批准</td>
|
||
<td><span class="badge badge-primary badge-outline">教育</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>佳发教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300559" target="_blank" class="link link-hover">300559</a></td>
|
||
<td>公司与Huawei互为战略合作伙伴,在AI教育方面有密切合作</td>
|
||
<td><span class="badge badge-primary badge-outline">教育</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>世纪天鸿</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300654" target="_blank" class="link link-hover">300654</a></td>
|
||
<td>投资的笔神作文在AI作文辅导领域持续突破;教师端AI产品包括小鸿助教等</td>
|
||
<td><span class="badge badge-secondary badge-outline">科技</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>皖新传媒</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=601801" target="_blank" class="link link-hover">601801</a></td>
|
||
<td>推出皖新阅读大模型、元小鳌机器人、元小鳌口袋学习机、AI教育等创新业态</td>
|
||
<td><span class="badge badge-accent badge-outline">文化传媒</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>视源股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002841" target="_blank" class="link link-hover">002841</a></td>
|
||
<td>希沃教学大模型可实现AI人机协同备课、AI课堂反馈、AI教学研讨等功能</td>
|
||
<td><span class="badge badge-info badge-outline">其他</span></td>
|
||
</tr>
|
||
<!-- Add more stocks as needed -->
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Table 2 -->
|
||
<div class="glass-card rounded-3xl p-6 md:p-8 mb-8">
|
||
<h3 class="text-xl font-bold text-white mb-4">AI教育-细分领域 (250718)</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table w-full">
|
||
<thead class="text-base text-purple-300">
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>核心逻辑</th>
|
||
<th>细分领域</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody class="text-gray-300">
|
||
<tr class="hover:bg-white/5">
|
||
<td>科大讯飞</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002230" target="_blank" class="link link-hover">002230</a></td>
|
||
<td>2024年AI智慧教育营收72.29亿,A股排名第一</td>
|
||
<td><span class="badge badge-primary badge-outline">教育终端</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>豆神教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300010" target="_blank" class="link link-hover">300010</a></td>
|
||
<td>发布AI教育生态矩阵:AI双师+AI超能训练场+AI学伴机器人</td>
|
||
<td><span class="badge badge-secondary badge-outline">AI助教</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>视源股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002841" target="_blank" class="link link-hover">002841</a></td>
|
||
<td>希沃教学大模型可实现AI人机协同备课、AI课堂反馈、AI教学研讨等功能</td>
|
||
<td><span class="badge badge-accent badge-outline">教育大模型</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>学大教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=000526" target="_blank" class="link link-hover">000526</a></td>
|
||
<td>学大教育星图AI生成式人工智能模型的研发,已获监管部门的备案批准</td>
|
||
<td><span class="badge badge-accent badge-outline">教育大模型</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>奋达科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002681" target="_blank" class="link link-hover">002681</a></td>
|
||
<td>华为小精灵学习智慧屏为公司生产</td>
|
||
<td><span class="badge badge-primary badge-outline">教育终端</span></td>
|
||
</tr>
|
||
<tr class="hover:bg-white/5">
|
||
<td>凯文教育</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002659" target="_blank" class="link link-hover">002659</a></td>
|
||
<td>与百度全方位合作开展AI领域教育,合作模式有产业学院和技能培训等</td>
|
||
<td><span class="badge badge-secondary badge-outline">AI助教</span></td>
|
||
</tr>
|
||
<!-- Add more stocks as needed -->
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Rise Analysis -->
|
||
<div x-data="{ open: false }" class="glass-card rounded-3xl p-6 md:p-8">
|
||
<div @click="open = !open" class="cursor-pointer flex justify-between items-center">
|
||
<h3 class="text-xl font-bold text-white">个股涨幅分析:科德教育 (300192)</h3>
|
||
<svg :class="{'rotate-180': open}" class="w-6 h-6 text-white transition-transform" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
|
||
</svg>
|
||
</div>
|
||
<div x-show="open" x-collapse class="mt-4 prose prose-invert max-w-none text-gray-300 prose-headings:text-cyan-300 prose-strong:text-white">
|
||
<h4>2025-07-24上涨5.02%原因分析</h4>
|
||
<h5>一、AI+教育概念热度上升</h5>
|
||
<ol>
|
||
<li><strong>行业研报看好AI教育应用</strong>:中泰传媒等发布研报明确表示“AI+教育是AI应用最优场景之一”,商业化前景广阔。</li>
|
||
<li><strong>科德教育AI产品布局</strong>:旗下已推出“科德AI学”教育培训系统,接入豆包、通义千问等模型,直接受益于概念热度。</li>
|
||
<li><strong>同行业公司AI产品动态</strong>:豆神教育、网易有道等公司AI产品动态进一步强化了市场对板块的关注。</li>
|
||
</ol>
|
||
<h5>二、职业教育政策利好预期</h5>
|
||
<ol>
|
||
<li><strong>政策支持信号</strong>:市场预期职业教育将获得政策支持,如满足新市民群体教育金融需求等。</li>
|
||
<li><strong>行业景气度提升</strong>:华西教育研报提到教育行业中报超预期,行业整体景气度提升。</li>
|
||
</ol>
|
||
<h5>三、中昊芯英合作/借壳预期升温</h5>
|
||
<ol>
|
||
<li><strong>投资者关注度高</strong>:投资者论坛中多次提到中昊芯英与科德教育的关系,暗示可能有借壳预期。</li>
|
||
<li><strong>AI大会预期</strong>:市场对中昊芯英在人工智能大会的表现有较高期待,可能引发市场对合作的炒作。</li>
|
||
</ol>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// Timeline Chart
|
||
var timelineChartDom = document.getElementById('timelineChart');
|
||
var timelineChart = echarts.init(timelineChartDom, 'dark');
|
||
var timelineOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: { type: 'shadow' }
|
||
},
|
||
grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true },
|
||
xAxis: {
|
||
type: 'category',
|
||
data: ['24Q1', '24Q2', '24年6-7月', '24Q4', '2025年', '2030年前'],
|
||
axisLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.3)' } },
|
||
axisLabel: { color: '#ccc' }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLine: { show: false },
|
||
axisLabel: { color: '#ccc' },
|
||
splitLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.1)' } }
|
||
},
|
||
series: [{
|
||
name: '事件热度',
|
||
type: 'bar',
|
||
barWidth: '60%',
|
||
data: [
|
||
{ value: 60, itemStyle: { color: '#00ffff' }, label: { show: true, position: 'top', formatter: '粉笔AI产品' } },
|
||
{ value: 70, itemStyle: { color: '#00ffff' }, label: { show: true, position: 'top', formatter: '字节Gauth' } },
|
||
{ value: 100, itemStyle: { color: '#ff00ff' }, label: { show: true, position: 'top', formatter: '暑期发布会潮' } },
|
||
{ value: 85, itemStyle: { color: '#00ffff' }, label: { show: true, position: 'top', formatter: '豆神/凯文+智谱' } },
|
||
{ value: 90, itemStyle: { color: '#ffff00' }, label: { show: true, position: 'top', formatter: '技术验证期' } },
|
||
{ value: 120, itemStyle: { color: '#ff00ff' }, label: { show: true, position: 'top', formatter: '政策普及目标' } }
|
||
]
|
||
}]
|
||
};
|
||
timelineChart.setOption(timelineOption);
|
||
|
||
// Sunburst Chart
|
||
var sunburstChartDom = document.getElementById('sunburstChart');
|
||
var sunburstChart = echarts.init(sunburstChartDom, 'dark');
|
||
var sunburstData = [{
|
||
name: 'AI教育产业链',
|
||
children: [{
|
||
name: '上游: 技术与算力', value: 4,
|
||
children: [
|
||
{ name: 'AI大模型 (DeepSeek, 智谱)', value: 2 },
|
||
{ name: '算力提供商 (华为, 英伟达)', value: 2 }
|
||
]
|
||
}, {
|
||
name: '中游: 产品与服务', value: 10,
|
||
children: [
|
||
{ name: '纯AI教育公司 (豆神)', value: 2 },
|
||
{ name: '科技赋能公司 (讯飞, 佳发)', value: 3 },
|
||
{ name: '内容IP转化 (世纪天鸿)', value: 2 },
|
||
{ name: '硬件终端 (奋达)', value: 3 }
|
||
]
|
||
}, {
|
||
name: '下游: 应用与用户', value: 6,
|
||
children: [
|
||
{ name: 'C端用户 (学生/家长)', value: 3 },
|
||
{ name: 'B/G端用户 (学校/教育局)', value: 3 }
|
||
]
|
||
}]
|
||
}];
|
||
var sunburstOption = {
|
||
backgroundColor: 'transparent',
|
||
series: {
|
||
type: 'sunburst',
|
||
data: sunburstData,
|
||
radius: [0, '95%'],
|
||
sort: undefined,
|
||
emphasis: { focus: 'ancestor' },
|
||
levels: [{}, {
|
||
r0: '15%', r: '35%',
|
||
itemStyle: { borderWidth: 2 },
|
||
label: { rotate: 'tangential' }
|
||
}, {
|
||
r0: '35%', r: '70%',
|
||
label: { align: 'right' }
|
||
}, {
|
||
r0: '70%', r: '72%',
|
||
label: { position: 'outside', padding: 3, silent: false },
|
||
itemStyle: { borderWidth: 3 }
|
||
}]
|
||
}
|
||
};
|
||
sunburstChart.setOption(sunburstOption);
|
||
|
||
window.addEventListener('resize', function() {
|
||
timelineChart.resize();
|
||
sunburstChart.resize();
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |