421 lines
27 KiB
HTML
421 lines
27 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>Minimax 概念深度投研报告</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=Inter:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');
|
||
|
||
body {
|
||
font-family: 'Inter', sans-serif;
|
||
background-color: #010007;
|
||
background-image:
|
||
radial-gradient(ellipse 80% 80% at 20% -15%, rgba(10, 88, 202, 0.15), rgba(0, 0, 0, 0)),
|
||
radial-gradient(ellipse 50% 50% at 80% 100%, rgba(138, 43, 226, 0.15), rgba(0, 0, 0, 0)),
|
||
url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"%3E%3Crect fill="%23010007" width="800" height="800"/%3E%3Cg fill-opacity="0.1"%3E%3Ccircle fill="%23FFFFFF" cx="400" cy="400" r="600"/%3E%3Ccircle fill="%23F0F0F0" cx="400" cy="400" r="500"/%3E%3Ccircle fill="%23E0E0E0" cx="400" cy="400" r="400"/%3E%3Ccircle fill="%23D0D0D0" cx="400" cy="400" r="300"/%3E%3Ccircle fill="%23C0C0C0" cx="400" cy="400" r="200"/%3E%3Ccircle fill="%23B0B0B0" cx="400" cy="400" r="100"/%3E%3C/g%3E%3C/svg%3E');
|
||
background-attachment: fixed;
|
||
color: #E0E0E0;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(10, 10, 25, 0.3);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
border-radius: 2rem;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
background: rgba(15, 15, 35, 0.5);
|
||
border-color: rgba(255, 255, 255, 0.2);
|
||
transform: translateY(-5px);
|
||
}
|
||
|
||
.text-glow {
|
||
text-shadow: 0 0 8px rgba(0, 191, 255, 0.7), 0 0 12px rgba(0, 191, 255, 0.5);
|
||
}
|
||
|
||
.text-highlight {
|
||
color: #00BFFF; /* DeepSkyBlue */
|
||
}
|
||
|
||
.text-accent {
|
||
color: #9370DB; /* MediumPurple */
|
||
}
|
||
|
||
h1, h2, h3 {
|
||
font-family: 'Roboto Mono', monospace;
|
||
letter-spacing: -0.02em;
|
||
}
|
||
|
||
h2 {
|
||
border-left: 4px solid #00BFFF;
|
||
padding-left: 1rem;
|
||
margin-top: 3rem;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
gap: 1.5rem;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
}
|
||
|
||
.bento-item {
|
||
grid-column: span 12;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.bento-item-1 { grid-column: span 8; grid-row: span 2;}
|
||
.bento-item-2 { grid-column: span 4; }
|
||
.bento-item-3 { grid-column: span 4; }
|
||
.bento-item-4 { grid-column: span 4; grid-row: span 2;}
|
||
.bento-item-5 { grid-column: span 4; }
|
||
.bento-item-6 { grid-column: span 4; }
|
||
}
|
||
|
||
@media (min-width: 1024px) {
|
||
.bento-item-1 { grid-column: span 5; grid-row: span 2;}
|
||
.bento-item-2 { grid-column: span 3; }
|
||
.bento-item-3 { grid-column: span 4; }
|
||
.bento-item-4 { grid-column: span 4; grid-row: span 2;}
|
||
.bento-item-5 { grid-column: span 3; }
|
||
.bento-item-6 { grid-column: span 5; }
|
||
}
|
||
|
||
.table thead th {
|
||
background-color: rgba(0, 191, 255, 0.1);
|
||
color: #E0E0E0;
|
||
border-bottom: 2px solid #00BFFF;
|
||
}
|
||
.table tbody tr {
|
||
transition: background-color 0.2s ease;
|
||
}
|
||
.table tbody tr:hover {
|
||
background-color: rgba(147, 112, 219, 0.1);
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body class="min-h-screen">
|
||
<div class="container mx-auto p-4 md:p-8 lg:p-12">
|
||
|
||
<header class="text-center py-12">
|
||
<h1 class="text-4xl md:text-6xl font-bold mb-4 text-glow">Minimax</h1>
|
||
<p class="text-xl md:text-2xl text-gray-300">全模态AI独角兽深度研报</p>
|
||
<div class="mt-4 text-sm text-gray-500">
|
||
<p>由 北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现</p>
|
||
<p class="font-bold">免责声明:本报告为AI合成数据,信息仅供参考,不构成任何投资建议,投资需谨慎。</p>
|
||
</div>
|
||
</header>
|
||
|
||
<main>
|
||
<section class="bento-grid mb-12">
|
||
<div class="bento-item bento-item-1 glass-card p-6 flex flex-col justify-between">
|
||
<div>
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">资本之路 & 估值演进</h3>
|
||
<p class="text-gray-400 mb-4">从2021年成立到40亿美元估值,Minimax获得了阿里、腾讯、米哈游、上海国资等顶级资本的加持,IPO计划已提上日程。</p>
|
||
</div>
|
||
<div id="valuationChart" class="w-full h-64"></div>
|
||
</div>
|
||
|
||
<div class="bento-item bento-item-2 glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-2 text-accent">公司概览</h3>
|
||
<ul class="space-y-2 text-gray-300">
|
||
<li><strong class="text-white">名称:</strong> 稀宇科技 (Minimax)</li>
|
||
<li><strong class="text-white">成立:</strong> 2021年</li>
|
||
<li><strong class="text-white">创始人:</strong> 闫俊杰</li>
|
||
<li><strong class="text-white">定位:</strong> 国内头部AI独角兽</li>
|
||
<li><strong class="text-white">最新估值:</strong> > 40亿美元</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="bento-item bento-item-3 glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-2 text-accent">核心技术栈</h3>
|
||
<div class="space-y-2">
|
||
<div class="badge badge-info badge-outline">全模态覆盖</div>
|
||
<div class="badge badge-primary badge-outline">MoE架构</div>
|
||
<div class="badge badge-secondary badge-outline">Lightning Attention</div>
|
||
<div class="badge badge-accent badge-outline">Agent平台</div>
|
||
<div class="badge badge-warning badge-outline">开源策略</div>
|
||
</div>
|
||
<p class="mt-4 text-gray-400">国内最早全面转向MoE架构,技术覆盖文本、语音、视频、音乐,形成罕见的全模态能力闭环。</p>
|
||
</div>
|
||
|
||
<div class="bento-item bento-item-4 glass-card p-6 flex flex-col">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">旗舰产品矩阵</h3>
|
||
<div class="flex-grow space-y-4">
|
||
<div>
|
||
<p class="font-bold text-lg text-white">海螺AI (Hailuo AI)</p>
|
||
<p class="text-gray-400">多模态生产力工具,网页端用户近1500万,视频生成功能引爆流量增长。</p>
|
||
</div>
|
||
<div>
|
||
<p class="font-bold text-lg text-white">星野/Talkie</p>
|
||
<p class="text-gray-400">AI角色扮演社交应用,海外DAU超300万,用户时长超越竞品Character.AI。</p>
|
||
</div>
|
||
<div>
|
||
<p class="font-bold text-lg text-white">Minimax Agent</p>
|
||
<p class="text-gray-400">通用智能体平台,旨在解决长期复杂任务,推动AI从工具向伙伴进化。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bento-item bento-item-5 glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-2 text-accent">市场表现</h3>
|
||
<div class="stats stats-vertical bg-transparent text-white w-full">
|
||
<div class="stat">
|
||
<div class="stat-title text-gray-400">日均交互</div>
|
||
<div class="stat-value text-2xl">30亿次+</div>
|
||
</div>
|
||
<div class="stat">
|
||
<div class="stat-title text-gray-400">2024营收预期</div>
|
||
<div class="stat-value text-2xl">7000万美元</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="bento-item bento-item-6 glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-2 text-accent">里程碑模型</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-gray-300">
|
||
<li><strong class="text-white">MiniMax-M1/M2:</strong> 开源混合注意力/文本大模型,性能全球领先。</li>
|
||
<li><strong class="text-white">Hailuo-02:</strong> 新一代视频模型,支持原生1080P高清输出。</li>
|
||
<li><strong class="text-white">abab6.5:</strong> 国内首个万亿参数MoE大语言模型,对标GPT-4。</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="glass-card p-6 md:p-8">
|
||
<h2 class="text-3xl font-bold text-glow">核心观点摘要</h2>
|
||
<blockquote class="border-l-4 border-purple-500 pl-4 italic text-gray-300 text-lg">
|
||
Minimax已从一家技术驱动的AI大模型初创公司,进化为国内极少数具备<span class="text-highlight font-semibold">全栈自研、全模态覆盖</span>并实现<span class="text-highlight font-semibold">C端爆款产品与B端商业化双轮驱动</span>的领军企业。其核心驱动力在于高效的技术迭代(尤其是在MoE架构和视频生成领域)与精准的产品市场契合能力。未来,Minimax的潜力在于能否将其技术领先性转化为可持续的商业闭环,成为定义下一代AI原生应用的核心平台。
|
||
</blockquote>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">核心逻辑与市场认知分析</h2>
|
||
<div class="space-y-8">
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">核心驱动力</h3>
|
||
<ul class="space-y-4 list-decimal list-inside">
|
||
<li><strong>全栈自研与前瞻性技术路线:</strong> 国内最早全面转向MoE架构,获得性能与成本的先发优势。技术栈覆盖文本、语音、视频、音乐,形成国内罕见的全模态能力闭环,是多模态应用创新的基石。</li>
|
||
<li><strong>“模型-产品”双向飞轮效应:</strong> 从早期布局C端应用(Glow/Talkie),Talkie在海外的成功(DAU 300万,日均使用时长90-110分钟)不仅验证产品力,更反哺海量高质量真实交互数据,加速模型进化,形成“产品优化模型,模型支撑产品”的正向循环。</li>
|
||
<li><strong>资本与产业巨头的双重背书:</strong> 融资方囊括腾讯、阿里巴巴、米哈游、上海国资等顶级投资者。不仅提供资金和算力,更带来业务协同和生态入口,为其商业化铺平道路,并获得国家队层面认可。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">市场热度与情绪</h3>
|
||
<p class="mb-4">市场对Minimax关注度极高,情绪整体<span class="text-green-400 font-bold">高度乐观</span>,体现在:</p>
|
||
<ul class="space-y-2 list-disc list-inside">
|
||
<li><strong class="text-white">研报与路演密集:</strong> 2024下半年以来,多家券商发布深度测评和分析报告,频率和深度在未上市公司中罕见。</li>
|
||
<li><strong class="text-white">“概念股”生态庞大:</strong> 已形成一个从算力(鸿博股份)到应用(金山办公、值得买)的庞大生态圈,市场积极挖掘产业链投资机会。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">预期差分析</h3>
|
||
<ul class="space-y-4 list-decimal list-inside">
|
||
<li><strong>技术预期 vs 实际瓶颈:</strong>
|
||
<ul class="list-disc list-inside pl-6 text-gray-400">
|
||
<li><span class="font-semibold text-white">预期:</span>完美对标顶尖闭源模型。</li>
|
||
<li><span class="font-semibold text-white">实际:</span>路演测评揭示视频生成存在“动作连贯性不足”、“排队时间长”等瓶颈,与全球顶尖模型在用户体验和鲁棒性上仍有差距。</li>
|
||
</ul>
|
||
</li>
|
||
<li><strong>商业化预期 vs 早期现状:</strong>
|
||
<ul class="list-disc list-inside pl-6 text-gray-400">
|
||
<li><span class="font-semibold text-white">预期:</span>收入高速增长,商业化全面铺开。</li>
|
||
<li><span class="font-semibold text-white">实际:</span>C端产品国内仍免费,B端多为API调用,处于商业化早期高潜阶段。40亿美元估值已计入未来多年增长预期。</li>
|
||
</ul>
|
||
</li>
|
||
<li><strong>被忽略的关键点:开源战略价值:</strong>
|
||
<p class="text-gray-400">市场普遍关注闭源模型性能,但其接连开源MiniMax-M1/M2的举动,意在构建开发者生态,抢占底层技术标准话语权,是从“产品公司”向“平台公司”跃迁的关键一步,长期价值可能被低估。</p>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">关键催化剂与未来发展路径</h2>
|
||
<div class="grid md:grid-cols-2 gap-8">
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">近期催化剂 (3-6个月)</h3>
|
||
<ul class="space-y-3 list-disc list-inside">
|
||
<li><strong>IPO进程明确:</strong> 递交招股书将全面披露财务运营数据,引发价值重估。</li>
|
||
<li><strong>新一代视频模型:</strong> 视频生成是AI最热赛道,任何技术突破(时长、可控性)都将是强力催化剂。</li>
|
||
<li><strong>Agent商业化落地:</strong> 金融、电商等场景的标杆客户案例将是验证技术能否转化为生产力的关键。</li>
|
||
<li><strong>C端产品付费:</strong> 海螺AI国内版的订阅制若成功,将直接验证C端变现能力。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-2xl font-bold mb-4 text-accent">长期发展路径</h3>
|
||
<ul class="space-y-3 list-disc list-inside">
|
||
<li><strong>模型层:</strong> 沿循MoE+新架构路线,追求极致性价,实现AI普惠。</li>
|
||
<li><strong>产品层:</strong> 海螺AI打造超级助理,Talkie深耕AI原生娱乐,形成C端流量数据闭环。</li>
|
||
<li><strong>平台/生态层:</strong> 通过开源模型和Agent平台,构建类似“App Store”的AI原生应用生态,成为AI时代的“操作系统”。</li>
|
||
<li><strong>商业模式演进:</strong> 从API调用、C端订阅,向基于Agent的任务解决方案收费及生态分成的平台级商业模式演进。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">产业链与核心公司深度剖析</h2>
|
||
<div class="glass-card p-6">
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 text-center">
|
||
<div>
|
||
<h4 class="font-bold text-lg text-accent mb-2">上游:基础资源层</h4>
|
||
<p><strong class="text-white">算力:</strong> 鸿博股份</p>
|
||
<p><strong class="text-white">数据:</strong> 汇洲智能, 掌阅科技</p>
|
||
<p><strong class="text-white">园区:</strong> 上海临港</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-accent mb-2">中游:模型与平台层</h4>
|
||
<p class="text-2xl font-extrabold text-white text-glow">Minimax</p>
|
||
<p>(大模型研发与平台服务)</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-bold text-lg text-accent mb-2">下游:应用与合作层</h4>
|
||
<p><strong class="text-white">深度集成:</strong> 金山办公, 值得买</p>
|
||
<p><strong class="text-white">应用接入:</strong> 万兴科技, 巨人网络</p>
|
||
<p><strong class="text-white">产业联盟:</strong> 鸿合科技, 全志科技</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">潜在风险与挑战</h2>
|
||
<div class="glass-card p-6">
|
||
<ul class="space-y-4 list-disc list-inside">
|
||
<li><strong>技术风险:</strong> 视频生成在物理一致性、时空连贯性上仍存瓶颈;模型幻觉率(错误率)对于B端严肃场景至关重要,仍需大幅降低。</li>
|
||
<li><strong>商业化风险:</strong> C端AI原生应用付费习惯仍在培养期,变现存不确定性;B端Agent等先进理念需要较长的市场教育过程。</li>
|
||
<li><strong>政策与竞争风险:</strong> 全球AI巨头均在视频、Agent等领域重兵投入,技术竞争白热化;开源策略是双刃剑,可能加剧同质化竞争和价格战。</li>
|
||
<li><strong>信息交叉验证风险:</strong> 核心高管变动可能预示内部战略调整;多份资料中模型命名不统一,给外部跟踪造成困扰。</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">Minimax 概念核心关联标的</h2>
|
||
<div class="glass-card p-2 md:p-4">
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>关联原因</th>
|
||
<th>分类</th>
|
||
<th>消息来源</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr><td>鸿博股份</td><td><a href="https://valuefrontier.cn/company?scode=002229" target="_blank" class="link link-hover text-highlight">002229</a></td><td>子公司英博数科为MiniMax提供GPU算力租赁服务</td><td>算力</td><td>互动</td></tr>
|
||
<tr><td>金山办公</td><td><a href="https://valuefrontier.cn/company?scode=688111" target="_blank" class="link link-hover text-highlight">688111</a></td><td>WPS AI主要接入MiniMax大模型</td><td>合作</td><td>互动</td></tr>
|
||
<tr><td>值得买</td><td><a href="https://valuefrontier.cn/company?scode=300785" target="_blank" class="link link-hover text-highlight">300785</a></td><td>海螺AI已接入值得买“消费大模型增强工具集”</td><td>合作</td><td>互动</td></tr>
|
||
<tr><td>掌阅科技</td><td><a href="https://valuefrontier.cn/company?scode=603533" target="_blank" class="link link-hover text-highlight">603533</a></td><td>2023年与MiniMax合作,推出阅读行业对话式AI应用“阅爱聊”</td><td>合作</td><td>官方</td></tr>
|
||
<tr><td>万兴科技</td><td><a href="https://valuefrontier.cn/company?scode=300624" target="_blank" class="link link-hover text-highlight">300624</a></td><td>已完成MiniMax等大模型的接入</td><td>合作</td><td>互动</td></tr>
|
||
<tr><td>汇洲智能</td><td></td><td>minimax是热数数据核心客户之一</td><td>数据标注</td><td>年报</td></tr>
|
||
<tr><td>上海临港</td><td><a href="https://valuefrontier.cn/company?scode=600848" target="_blank" class="link link-hover text-highlight">600848</a></td><td>在漕河泾园区引入 Minimax</td><td>园区引入</td><td>公告</td></tr>
|
||
<tr><td>盛天网络</td><td><a href="https://valuefrontier.cn/company?scode=300494" target="_blank" class="link link-hover text-highlight">300494</a></td><td>AI音乐社交APP给麦已接入包括MiniMax大模型</td><td>合作</td><td>年报</td></tr>
|
||
<tr><td>蓝色光标</td><td><a href="https://valuefrontier.cn/company?scode=300058" target="_blank" class="link link-hover text-highlight">300058</a></td><td>Blue AI 心影视频平台已与MiniMax 海螺等展开深入合作</td><td>合作</td><td>年报</td></tr>
|
||
<tr><td>巨人网络</td><td><a href="https://valuefrontier.cn/company?scode=002558" target="_blank" class="link link-hover text-highlight">002558</a></td><td>公司与MiniMax 探索“游戏+AI”的解决方案</td><td>合作</td><td>半年报</td></tr>
|
||
<tr><td>易点天下</td><td><a href="https://valuefrontier.cn/company?scode=301171" target="_blank" class="link link-hover text-highlight">301171</a></td><td>生态合作伙伴MiniMax</td><td>合作</td><td>年报</td></tr>
|
||
<tr><td>中科金财</td><td><a href="https://valuefrontier.cn/company?scode=002657" target="_blank" class="link link-hover text-highlight">002657</a></td><td>在模型层,公司是MiniMax的合作伙伴</td><td>合作</td><td>年报</td></tr>
|
||
<tr><td>北汽蓝谷</td><td><a href="https://valuefrontier.cn/company?scode=600733" target="_blank" class="link link-hover text-highlight">600733</a></td><td>百模汇创平台可以接入如minimax等多个模型</td><td>合作</td><td>互动</td></tr>
|
||
<tr><td>卫宁健康</td><td><a href="https://valuefrontier.cn/company?scode=300253" target="_blank" class="link link-hover text-highlight">300253</a></td><td>医护智能助手WiNEX Copilot产品支持MiniMax</td><td>合作</td><td>互动</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="text-3xl font-bold text-glow">涨幅分析补充:市场情绪案例</h2>
|
||
<div class="glass-card p-6">
|
||
<h3 class="text-xl font-bold mb-2">首都在线 (300846) - 情绪放大器</h3>
|
||
<p class="text-gray-400"><strong>事件:</strong> 2025年10月16日上涨5.16%。</p>
|
||
<p class="mt-2"><strong>核心驱动:</strong> 由非官方“小作文”驱动的情绪反转行情。该传闻提及“<span class="text-highlight">与Minimax沟通进一步加强,预计海外订单落地加速</span>”,精准命中市场对AI独角兽合作的核心热点,引发资金快速涌入。此案例验证了市场对Minimax生态链公司的高度敏感和乐观情绪,但也揭示了依赖传闻炒作的风险。</p>
|
||
</div>
|
||
</section>
|
||
|
||
</main>
|
||
</div>
|
||
<script>
|
||
var valuationChart = echarts.init(document.getElementById('valuationChart'), 'dark');
|
||
var option = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
formatter: function (params) {
|
||
let date = params[0].axisValue;
|
||
let valuation = params[0].data;
|
||
let event = '';
|
||
if (date === '2024-03') event = '阿里领投';
|
||
if (date === '2024-12') event = '年底融资';
|
||
if (date === '2025-07') event = '上海国资等入股';
|
||
return `${date}<br/>估值: ${valuation} 亿美元<br/>${event}`;
|
||
}
|
||
},
|
||
grid: {
|
||
left: '3%',
|
||
right: '4%',
|
||
bottom: '3%',
|
||
containLabel: true
|
||
},
|
||
xAxis: {
|
||
type: 'category',
|
||
boundaryGap: false,
|
||
data: ['2024-03', '2024-12', '2025-07'],
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } },
|
||
axisLabel: { color: '#E0E0E0' }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLabel: {
|
||
formatter: '${value} B',
|
||
color: '#E0E0E0'
|
||
},
|
||
splitLine: { lineStyle: { color: 'rgba(255,255,255,0.1)' } },
|
||
axisLine: { lineStyle: { color: 'rgba(255,255,255,0.3)' } }
|
||
},
|
||
series: [{
|
||
name: '估值 (亿美元)',
|
||
type: 'line',
|
||
smooth: true,
|
||
symbol: 'circle',
|
||
symbolSize: 8,
|
||
data: [25, 30, 40],
|
||
itemStyle: {
|
||
color: '#00BFFF'
|
||
},
|
||
lineStyle: {
|
||
width: 3,
|
||
shadowColor: 'rgba(0, 191, 255, 0.5)',
|
||
shadowBlur: 10
|
||
},
|
||
areaStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
|
||
offset: 0,
|
||
color: 'rgba(0, 191, 255, 0.3)'
|
||
}, {
|
||
offset: 1,
|
||
color: 'rgba(0, 191, 255, 0)'
|
||
}])
|
||
}
|
||
}]
|
||
};
|
||
valuationChart.setOption(option);
|
||
|
||
window.addEventListener('resize', function() {
|
||
valuationChart.resize();
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |