654 lines
39 KiB
HTML
654 lines
39 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>eSIM 概念深度投研报告</title>
|
||
|
||
<!-- Tailwind & DaisyUI via CDN -->
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
||
<!-- Alpine.js via CDN -->
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
|
||
<!-- ECharts via CDN -->
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
|
||
<!-- Google Fonts for a futuristic feel -->
|
||
<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=Sora:wght@300;400;600;700&display=swap" rel="stylesheet">
|
||
|
||
<style>
|
||
body {
|
||
font-family: 'Sora', 'Helvetica Neue', Arial, sans-serif;
|
||
background-color: #020418;
|
||
color: #E0E0E0;
|
||
overflow-x: hidden;
|
||
background-image:
|
||
radial-gradient(circle at 10% 20%, rgba(28, 55, 124, 0.3) 0%, transparent 40%),
|
||
radial-gradient(circle at 85% 70%, rgba(100, 30, 130, 0.25) 0%, transparent 50%);
|
||
background-attachment: fixed;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(12, 16, 44, 0.35);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
background: rgba(18, 22, 56, 0.5);
|
||
border-color: rgba(0, 255, 255, 0.3);
|
||
box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 2rem;
|
||
font-weight: 600;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
color: #fff;
|
||
text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
|
||
margin-bottom: 2rem;
|
||
position: relative;
|
||
padding-left: 1.5rem;
|
||
}
|
||
|
||
.section-title::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 0;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
width: 5px;
|
||
height: 100%;
|
||
background-color: #00ffff;
|
||
border-radius: 3px;
|
||
box-shadow: 0 0 8px #00ffff;
|
||
}
|
||
|
||
.timeline {
|
||
position: relative;
|
||
padding-left: 3rem;
|
||
}
|
||
.timeline::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
bottom: 0;
|
||
width: 2px;
|
||
background-image: linear-gradient(to bottom, #00ffff, #373fff, transparent);
|
||
}
|
||
.timeline-item {
|
||
position: relative;
|
||
margin-bottom: 2rem;
|
||
}
|
||
.timeline-item::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: -3rem;
|
||
top: 5px;
|
||
width: 1rem;
|
||
height: 1rem;
|
||
background: #00ffff;
|
||
border-radius: 50%;
|
||
border: 3px solid #020418;
|
||
box-shadow: 0 0 10px #00ffff;
|
||
}
|
||
|
||
.key-point {
|
||
background: rgba(0, 255, 255, 0.05);
|
||
border-left: 3px solid #00ffff;
|
||
padding: 1rem;
|
||
border-radius: 0 0.75rem 0.75rem 0;
|
||
}
|
||
|
||
.stock-table th {
|
||
background-color: rgba(0, 255, 255, 0.1);
|
||
color: #00ffff;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.1em;
|
||
}
|
||
|
||
.stock-table tr:hover {
|
||
background-color: rgba(255, 255, 255, 0.05);
|
||
}
|
||
|
||
.stock-table td, .stock-table th {
|
||
border-color: rgba(255, 255, 255, 0.15) !important;
|
||
}
|
||
|
||
.tabs {
|
||
border-bottom-color: rgba(255, 255, 255, 0.1);
|
||
}
|
||
.tab {
|
||
transition: all 0.3s ease;
|
||
color: rgba(255,255,255,0.6);
|
||
}
|
||
.tab-active {
|
||
color: #00ffff !important;
|
||
border-bottom-color: #00ffff !important;
|
||
text-shadow: 0 0 5px #00ffff;
|
||
}
|
||
|
||
.collapse-title {
|
||
background: rgba(0, 255, 255, 0.03);
|
||
}
|
||
</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 tracking-widest text-white mb-4" style="text-shadow: 0 0 15px rgba(0, 255, 255, 0.7), 0 0 25px rgba(0, 255, 255, 0.5);">
|
||
eSIM 概念深度投研
|
||
</h1>
|
||
<p class="text-sm text-gray-400">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” 呈现
|
||
</p>
|
||
<p class="text-xs text-gray-500 mt-1">
|
||
本报告为AI合成数据,投资需谨慎。
|
||
</p>
|
||
</header>
|
||
|
||
<!-- Main Content Grid -->
|
||
<main class="space-y-12">
|
||
|
||
<!-- Section 1: Concept Insight -->
|
||
<section id="insight">
|
||
<h2 class="section-title">核心洞察 (Insight)</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||
|
||
<!-- Core View -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-2">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">1. 核心观点摘要</h3>
|
||
<p class="text-gray-300">
|
||
eSIM概念正经历从“长期物联网主题”向“短期消费电子爆发”的关键跃迁。其核心驱动力源于 <strong class="text-cyan-400">苹果公司的强力终端推动</strong> 与 <strong class="text-cyan-400">国内运营商政策的决定性放开</strong> 二者共振,首次将eSIM技术引入中国庞大的智能手机存量与增量市场。当前概念处于由事件催化引爆的 <strong class="text-purple-400">高热度启动阶段</strong>,未来潜力取决于产业链的成熟度、用户习惯的迁移以及商业模式的演进。
|
||
</p>
|
||
</div>
|
||
|
||
<!-- Event Timeline -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-2">
|
||
<h3 class="text-xl font-semibold mb-6 text-cyan-300">0. 概念关键事件</h3>
|
||
<div class="timeline">
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">早期探索与暂停 (2017 - 2023.12)</p>
|
||
<p class="text-sm text-gray-400">国内运营商在物联网和智能穿戴领域试点eSIM业务,后于2023年底普遍暂停新业务办理。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">政策松动信号 (2024.07)</p>
|
||
<p class="text-sm text-gray-400">中国联通率先在全国25个省市重启eSIM业务,被市场视为关键政策信号。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">催化剂集中爆发 (2025.09 - 10)</p>
|
||
<p class="text-sm text-gray-400">苹果发布仅支持eSIM的iPhone 17 Air;联通开启预约;<strong class="text-white">10月13日,三大运营商同日获工信部商用试验批复</strong>,标志eSIM全面进入手机市场。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<p class="font-semibold text-cyan-400">国产品牌跟进 (2025.11 - 至今)</p>
|
||
<p class="text-sm text-gray-400">华为、OPPO等宣布将推出eSIM手机,OPPO Find X9 Pro成为国内第二款支持eSIM的手机,趋势得以巩固。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Core Logic -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-2">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">2. 核心逻辑与市场认知分析</h3>
|
||
<div class="space-y-4">
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-gray-200">核心驱动力:</h4>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-2 mt-2 pl-2">
|
||
<li><strong class="text-gray-300">技术成熟与终端需求(内因):</strong> eSIM技术为设备轻薄化、高集成度提供了必然的技术演进方向。</li>
|
||
<li><strong class="text-gray-300">政策绿灯与商业模式探索(外因):</strong> 2025年10月13日的商用批复是<strong class="text-cyan-400">最核心驱动变量</strong>,扫清了最大政策障碍。运营商主动将eSIM定位为吸引高ARPU值用户的战略工具。</li>
|
||
<li><strong class="text-gray-300">龙头引领的生态效应(催化剂):</strong> 苹果的“eSIM-only”策略强力教育市场,迫使全产业链加速跟进。</li>
|
||
</ul>
|
||
</div>
|
||
<div class="pt-4">
|
||
<h4 class="font-semibold text-lg text-gray-200">预期差分析:</h4>
|
||
<div class="space-y-3 mt-2">
|
||
<div class="key-point">
|
||
<p><strong class="text-purple-400">预期差一 (运营商角色):</strong> 市场普遍认为运营商被动接受,但实际其通过<strong class="text-white">线下办理门槛</strong>主动规避价格战,并将eSIM作为<strong class="text-white">优化高端用户结构</strong>的工具,推广路径比想象中更有序可控。</p>
|
||
</div>
|
||
<div class="key-point">
|
||
<p><strong class="text-purple-400">预期差二 (普及速度):</strong> 市场可能高估短期渗透率。目前仍处“试验”阶段,渠道暂不开放线上,且率先支持的是高端机型,全面普及将是<strong class="text-white">渐进过程</strong>。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Catalysts & Path -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-2">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">3. 关键催化剂与未来发展路径</h3>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-gray-200">近期催化剂 (3-6个月)</h4>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-1 mt-2">
|
||
<li>首批eSIM手机国行实际销售数据</li>
|
||
<li>运营商公布的eSIM手机用户激活数</li>
|
||
<li>国产品牌eSIM机型发布时间表</li>
|
||
<li>线上办理渠道的政策指引</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h4 class="font-semibold text-lg text-gray-200">长期发展路径</h4>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-1 mt-2">
|
||
<li><strong class="text-gray-300">消费电子深化 (1-3年):</strong> 从高端向中低端手机渗透,成为IoT设备标配。</li>
|
||
<li><strong class="text-gray-300">物联网爆发 (3-5年):</strong> 在车联网、工业物联网等领域大规模应用。</li>
|
||
<li><strong class="text-gray-300">国产化替代:</strong> 实现eSIM芯片与操作系统的全面国产化。</li>
|
||
<li><strong class="text-gray-300">服务模式创新:</strong> 从“卖卡”到“卖服务”的商业模式转变。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Industry Chain -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-1">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">4. 产业链深度剖析</h3>
|
||
<div id="industry-chart" class="w-full h-72"></div>
|
||
<div class="mt-4">
|
||
<h4 class="font-semibold text-lg text-gray-200">核心玩家对比:</h4>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-2 mt-2">
|
||
<li><strong class="text-cyan-400">【领导者】紫光国微:</strong> 逻辑最纯粹,市占率第一,已在海外手机市场验证。</li>
|
||
<li><strong class="text-cyan-400">【驱动核心】中国联通:</strong> 政策先行者,战略思路清晰,是业务落地入口。</li>
|
||
<li><strong class="text-cyan-400">【潜力追赶者】新恒汇:</strong> 卡位关键封装材料环节,受益于芯片放量与国产化双重逻辑。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Market Forecast Chart -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-1">
|
||
<h3 class="text-xl font-semibold mb-4 text-cyan-300">市场增长预测 (全球eSIM智能手机)</h3>
|
||
<div id="forecast-chart" class="w-full h-96"></div>
|
||
</div>
|
||
|
||
<!-- Risks & Conclusion -->
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-1">
|
||
<h3 class="text-xl font-semibold mb-4 text-red-400">5. 潜在风险与挑战</h3>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-2 mt-2">
|
||
<li><strong class="text-red-300">技术风险:</strong> 核心芯片及操作系统可能仍存对国外技术的依赖。</li>
|
||
<li><strong class="text-red-300">商业化风险:</strong> 线下办理的复杂性可能影响用户体验和推广速度。</li>
|
||
<li><strong class="text-red-300">政策风险:</strong> 当前“商用试验”性质意味着未来政策仍有调整空间。</li>
|
||
<li><strong class="text-red-300">竞争风险:</strong> 若未来开放线上办理,运营商之间的竞争可能加剧。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="glass-card rounded-3xl p-6 lg:col-span-1">
|
||
<h3 class="text-xl font-semibold mb-4 text-purple-300">6. 综合结论与投资启示</h3>
|
||
<p class="mb-4 text-gray-300">概念已从长期物联网主题,转变为由标志性事件驱动的 <strong class="text-white">基本面驱动阶段的开端</strong>。短期由事件和情绪驱动,中长期看渗透率提升和业绩兑现。</p>
|
||
<div class="key-point">
|
||
<p><strong class="text-purple-400">最具投资价值环节:</strong> <strong class="text-white">上游核心芯片设计与关键封装材料环节</strong>。原因在于其高确定性、高壁垒和高业绩弹性。</p>
|
||
</div>
|
||
<h4 class="font-semibold text-lg text-gray-200 mt-4">需重点跟踪指标:</h4>
|
||
<ul class="list-disc list-inside text-gray-400 space-y-1 mt-2">
|
||
<li>终端渗透率 (eSIM手机季度出货量)</li>
|
||
<li>用户激活数 (运营商月度新增用户)</li>
|
||
<li>产业链订单 (核心公司相关业务收入)</li>
|
||
<li>政策风向 (从“试验”到“正式商用”的进度)</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Section 2: Data Sources -->
|
||
<section id="data-sources" x-data="{ tab: 'news' }">
|
||
<h2 class="section-title">核心数据与信息源</h2>
|
||
<div class="glass-card rounded-3xl p-6">
|
||
<div class="tabs tabs-bordered mb-6">
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'news' }" @click="tab = 'news'">新闻数据</a>
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'roadshow' }" @click="tab = 'roadshow'">路演纪要</a>
|
||
<a class="tab tab-lg" :class="{ 'tab-active': tab === 'report' }" @click="tab = 'report'">研报精粹</a>
|
||
</div>
|
||
|
||
<div x-show="tab === 'news'" class="space-y-4">
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="news-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">eSIM 概念定义与优势</div>
|
||
<div class="collapse-content">
|
||
<p>eSIM(Embedded-SIM)为嵌入式SIM卡,直接嵌入设备芯片,通过OTA技术远程配置运营商网络。核心优势包括:节省设备空间、提升防水防尘、简化用户体验、安全性更高,尤其适用于物联网和多终端场景。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="news-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">运营商动态与业务重启</div>
|
||
<div class="collapse-content">
|
||
<p>时隔两年,三大运营商于2025年10月13日均获eSIM手机商用试验批复。中国联通率先在25省市恢复业务并开启全国预约;中国移动和中国电信也全面上线业务。标志着eSIM正式进入手机商用阶段。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="news-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">支持eSIM的终端设备</div>
|
||
<div class="collapse-content">
|
||
<p>苹果推出首款无实体卡槽的iPhone Air (10月22日发售)。华为、OPPO等国产品牌将陆续上市eSIM手机,OPPO Find X9 Pro已于11月7日上市。未来更多手机将支持“eSIM+SIM”模式。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="news-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">产业链与市场分析</div>
|
||
<div class="collapse-content">
|
||
<p>中信证券预计eSIM需求持续提升,2030年eSIM将占据全球智能手机连接的76%。产业链关键公司包括:芯片(紫光国微)、解决方案(思特奇)、框架模块(新恒汇)、终端(移为通信)等。中国移动明确将推动eSIM芯片与操作系统的国产化攻关。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div x-show="tab === 'roadshow'" x-cloak class="space-y-4">
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="roadshow-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">中国联通 (2025-11-04)</div>
|
||
<div class="collapse-content">
|
||
<p>联通高层表示,国内eSIM写卡需线下“人机证”三证合一,政策门槛高,不会引发恶性竞争。公司eSIM终端定位高ARPU用户,有助于优化用户结构,系统支撑最完善,2026年将成基础业务重点。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="roadshow-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">苹果发布会 (2025-09-10)</div>
|
||
<div class="collapse-content">
|
||
<p>苹果新品iPhone 17 Air厚度仅5.6mm,为史上最薄,明确仅支持eSIM。国行版预计10-11月由联通首发。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="roadshow-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">宏观与周期判断 (2025-09-25)</div>
|
||
<div class="collapse-content">
|
||
<p>重点公司更新中提及紫光国微:苹果iPhone Air仅支持eSIM,国内三大运营商放开在即,公司市占率第一,已批量出货。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="roadshow-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">开源中小盘 (2025-10-11)</div>
|
||
<div class="collapse-content">
|
||
<p>重点介绍新恒汇:定位“智能卡+蚀刻引线框架+eSIM封测”,物联网eSIM封测业务已进入苹果供应链。GSMA预测2030年全球eSIM智能手机连接数将达69亿,公司受益于eSIM标准落地和国产化,第二成长曲线明确。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div x-show="tab === 'report'" x-cloak class="space-y-4">
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="report-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">技术特点与核心优势</div>
|
||
<div class="collapse-content">
|
||
<p>研报普遍认为eSIM是电信卡小型化、多功能化的演进终点。核心优势在于:节省设备空间、提升防水防尘性能、降低供应链成本(约8%)、增强安全防护、便捷用户体验。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="report-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">市场前景与增长预测</div>
|
||
<div class="collapse-content">
|
||
<p>驱动力来自消费电子轻薄化和物联网终端漫游需求。GSMA Intelligence预测,2030年全球eSIM智能手机连接将增长至69亿。Jupiter Research预测,到2026年,物联网eSIM连接将增长至1.95亿。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="report-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">产业链分析与关键材料</div>
|
||
<div class="collapse-content">
|
||
<p>产业链包括芯片设计(紫光国微)、模组(美格智能)、平台管理(东信和平)、运营商和设备集成商。关键材料“蚀刻引线框架”是eSIM芯片封装核心,目前主要依赖进口,国产替代空间广阔。新恒汇等厂商正积极布局该领域。</p>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-base-200/50">
|
||
<input type="radio" name="report-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-cyan-400">推广挑战与风险</div>
|
||
<div class="collapse-content">
|
||
<p>主要挑战包括:运营商担心客户流失、需重构计费系统;支持eSIM的终端数量仍有限。风险提示:下游设备推广不及预期、运营商接受意愿不及预期、用户使用习惯改变的风险。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Section 3: Stocks -->
|
||
<section id="stocks">
|
||
<h2 class="section-title">eSIM 概念核心标的</h2>
|
||
|
||
<!-- Case Study Card -->
|
||
<div class="glass-card rounded-3xl p-6 mb-8">
|
||
<h3 class="text-xl font-semibold mb-4 text-purple-300">涨幅案例分析:秦川物联 (688528)</h3>
|
||
<p class="text-gray-300 mb-4">
|
||
在2025年10月20日,秦川物联上涨 <strong class="text-green-400">6.06%</strong>。其核心驱动力是 <strong class="text-cyan-400">eSIM技术在手机端商用的重大突破,引爆了整个物联网板块的投资情绪</strong>。公司同日发布的中标公告,为市场高涨的情绪提供了具体落脚点,叠加市场对其“困境反转”和传感器业务成长的预期,最终形成了当日的强势表现。此案例生动展示了eSIM概念如何通过产业链传导,赋能物联网相关企业。
|
||
</p>
|
||
</div>
|
||
|
||
<div class="overflow-x-auto glass-card rounded-3xl p-1">
|
||
<table class="table stock-table w-full">
|
||
<thead>
|
||
<tr>
|
||
<th class="p-4">股票名称</th>
|
||
<th>股票代码</th>
|
||
<th>核心逻辑</th>
|
||
<th>标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td class="font-bold">紫光国微</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002049" target="_blank" class="text-cyan-400 hover:underline">002049</a></td>
|
||
<td>国内首家实现eSIM全球商用的芯片商,已量产多款符合GSMA标准的产品,市占率领先。</td>
|
||
<td><span class="badge badge-primary badge-outline">芯片相关</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">新恒汇</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=301678" target="_blank" class="text-cyan-400 hover:underline">301678</a></td>
|
||
<td>提供物联网eSIM芯片封测服务,卡位关键封装材料“蚀刻引线框架”。</td>
|
||
<td><span class="badge badge-primary badge-outline">芯片相关</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">中国联通</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600050" target="_blank" class="text-cyan-400 hover:underline">600050</a></td>
|
||
<td>国内eSIM政策核心推动方,率先在25省市重启服务,战略定位清晰。</td>
|
||
<td><span class="badge badge-accent badge-outline">服务商</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">东信和平</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002017" target="_blank" class="text-cyan-400 hover:underline">002017</a></td>
|
||
<td>eSIM产品主要应用于车联网、工业物联网,COS系统在运营商市场份额领先。</td>
|
||
<td><span class="badge badge-secondary badge-outline">卡类制造</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">恒宝股份</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002104" target="_blank" class="text-cyan-400 hover:underline">002104</a></td>
|
||
<td>物联网连接解决方案通过M2M、eSIM配套连接管理后台,协助客户快速接入。</td>
|
||
<td><span class="badge badge-secondary badge-outline">卡类制造</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">广和通</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300638" target="_blank" class="text-cyan-400 hover:underline">300638</a></td>
|
||
<td>与中国联通战略合作,发布全球首款5G+eSIM模组。</td>
|
||
<td><span class="badge badge-info badge-outline">模组通信</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">美格智能</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=002881" target="_blank" class="text-cyan-400 hover:underline">002881</a></td>
|
||
<td>拥有成熟的eSIM技术,相关智能终端产品已实现批量交货。</td>
|
||
<td><span class="badge badge-info badge-outline">模组通信</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">澄天伟业</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300689" target="_blank" class="text-cyan-400 hover:underline">300689</a></td>
|
||
<td>公司明确具备eSIM的生产能力。</td>
|
||
<td><span class="badge badge-secondary badge-outline">卡类制造</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">楚天龙</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=003040" target="_blank" class="text-cyan-400 hover:underline">003040</a></td>
|
||
<td>嵌入式安全产品形态包括eSIM,广泛应用于通信、金融支付、社保等领域。</td>
|
||
<td><span class="badge badge-secondary badge-outline">卡类制造</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">中兴通讯</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=000063" target="_blank" class="text-cyan-400 hover:underline">000063</a></td>
|
||
<td>与中国联通联合推出基于eSIM技术的云PAD产品。</td>
|
||
<td><span class="badge badge-info badge-outline">模组通信</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">思特奇</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=300608" target="_blank" class="text-cyan-400 hover:underline">300608</a></td>
|
||
<td>为运营商eSIM业务提供运营支撑解决方案。</td>
|
||
<td><span class="badge badge-warning badge-outline">其它</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">汇顶科技</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=603160" target="_blank" class="text-cyan-400 hover:underline">603160</a></td>
|
||
<td>持续关注eSIM发展趋势,长期布局相关安全产品。</td>
|
||
<td><span class="badge badge-primary badge-outline">芯片相关</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-bold">中国移动</td>
|
||
<td><a href="https://valuefrontier.cn/company?scode=600941" target="_blank" class="text-cyan-400 hover:underline">600941</a></td>
|
||
<td>获得eSIM商用批复,将推动物联网等领域eSIM技术应用服务。</td>
|
||
<td><span class="badge badge-accent badge-outline">服务商</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</section>
|
||
|
||
</main>
|
||
|
||
<footer class="text-center mt-12 py-6 border-t border-gray-800">
|
||
<p class="text-sm text-gray-400">
|
||
报告生成于:<span id="generation-date"></span>
|
||
</p>
|
||
<p class="text-xs text-gray-500 mt-1">
|
||
北京价值前沿科技有限公司 AI投研agent:“价小前投研” | 投资有风险,入市需谨慎。
|
||
</p>
|
||
</footer>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
// Set generation date
|
||
document.getElementById('generation-date').textContent = new Date().toLocaleString('zh-CN');
|
||
|
||
// ECharts - Industry Chain Chart
|
||
var industryChartDom = document.getElementById('industry-chart');
|
||
var industryChart = echarts.init(industryChartDom, 'dark');
|
||
var industryOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'item',
|
||
formatter: '{b}: {d}%'
|
||
},
|
||
legend: {
|
||
orient: 'vertical',
|
||
left: 'right',
|
||
textStyle: {
|
||
color: '#ccc'
|
||
}
|
||
},
|
||
series: [
|
||
{
|
||
name: '产业链构成',
|
||
type: 'pie',
|
||
radius: ['45%', '70%'],
|
||
avoidLabelOverlap: false,
|
||
itemStyle: {
|
||
borderRadius: 10,
|
||
borderColor: '#020418',
|
||
borderWidth: 2
|
||
},
|
||
label: {
|
||
show: false,
|
||
position: 'center'
|
||
},
|
||
emphasis: {
|
||
label: {
|
||
show: true,
|
||
fontSize: 20,
|
||
fontWeight: 'bold',
|
||
color: '#fff'
|
||
}
|
||
},
|
||
labelLine: {
|
||
show: false
|
||
},
|
||
data: [
|
||
{ value: 35, name: '上游:核心技术与材料', itemStyle: { color: '#00ffff' } },
|
||
{ value: 40, name: '中游:系统与模组集成', itemStyle: { color: '#373fff' } },
|
||
{ value: 25, name: '下游:终端与运营服务', itemStyle: { color: '#8A2BE2' } }
|
||
]
|
||
}
|
||
]
|
||
};
|
||
industryChart.setOption(industryOption);
|
||
|
||
// ECharts - Market Forecast Chart
|
||
var forecastChartDom = document.getElementById('forecast-chart');
|
||
var forecastChart = echarts.init(forecastChartDom, 'dark');
|
||
var forecastOption = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: {
|
||
type: 'cross',
|
||
label: {
|
||
backgroundColor: '#6a7985'
|
||
}
|
||
}
|
||
},
|
||
legend: {
|
||
data: ['全球eSIM智能手机连接数'],
|
||
textStyle: { color: '#ccc' }
|
||
},
|
||
grid: {
|
||
left: '3%',
|
||
right: '4%',
|
||
bottom: '3%',
|
||
containLabel: true
|
||
},
|
||
xAxis: [
|
||
{
|
||
type: 'category',
|
||
boundaryGap: false,
|
||
data: ['2024', '2025', '2030'],
|
||
axisLine: { lineStyle: { color: '#8392A5' } }
|
||
}
|
||
],
|
||
yAxis: [
|
||
{
|
||
type: 'value',
|
||
name: '连接数 (亿)',
|
||
axisLine: { lineStyle: { color: '#8392A5' } },
|
||
splitLine: { lineStyle: { color: 'rgba(255,255,255,0.1)' } }
|
||
}
|
||
],
|
||
series: [
|
||
{
|
||
name: '全球eSIM智能手机连接数',
|
||
type: 'line',
|
||
stack: 'Total',
|
||
smooth: true,
|
||
lineStyle: {
|
||
width: 2,
|
||
color: '#00ffff'
|
||
},
|
||
showSymbol: false,
|
||
areaStyle: {
|
||
opacity: 0.8,
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||
{ offset: 0, color: 'rgba(0, 255, 255, 0.5)' },
|
||
{ offset: 1, color: 'rgba(0, 255, 255, 0)' }
|
||
])
|
||
},
|
||
emphasis: {
|
||
focus: 'series'
|
||
},
|
||
data: [3, 10, 69]
|
||
}
|
||
]
|
||
};
|
||
forecastChart.setOption(forecastOption);
|
||
|
||
// Resize charts on window resize
|
||
window.addEventListener('resize', function() {
|
||
industryChart.resize();
|
||
forecastChart.resize();
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |