update pay ui

This commit is contained in:
2025-12-05 13:29:18 +08:00
parent 20994cfb13
commit 48d9c76c5e
1008 changed files with 417880 additions and 486974 deletions

View File

@@ -0,0 +1,596 @@
<!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>首发经济 - 深度研究报告</title>
<!-- Tailwind CSS & DaisyUI -->
<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 -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<!-- ECharts -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
<!-- Google Fonts -->
<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=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--glow-color: hsl(193, 95%, 68%);
--glow-spread-color: hsla(193, 95%, 68%, 0.1);
}
body {
font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
background-color: #00000a;
color: #e0e0e0;
overflow-x: hidden;
background-image:
radial-gradient(circle at 25% 25%, rgba(10, 89, 130, 0.2), transparent 40%),
radial-gradient(circle at 75% 75%, rgba(130, 10, 89, 0.2), transparent 40%);
background-attachment: fixed;
}
.space-grotesk {
font-family: 'Space Grotesk', sans-serif;
}
/* Custom Glassmorphism Card Style */
.glass-card {
background: rgba(12, 21, 39, 0.3);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 1.5rem; /* 24px */
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.glass-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 1.5rem;
border: 1px solid transparent;
background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.1), transparent 40%);
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.glass-card:hover::before {
opacity: 1;
}
/* Bento Grid */
.bento-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.glow-border {
box-shadow: 0 0 2px 0px rgba(13, 186, 255, 0.5), inset 0 0 2px 0px rgba(13, 186, 255, 0.5);
}
h1, h2, h3 {
font-family: 'Space Grotesk', sans-serif;
color: #ffffff;
letter-spacing: -0.02em;
}
h2 {
border-left: 3px solid var(--glow-color);
padding-left: 1rem;
}
h3 {
color: #c0c0c0;
font-weight: 600;
}
/* Custom Table Style */
.glass-table {
border-spacing: 0;
}
.glass-table thead th {
background-color: rgba(13, 186, 255, 0.1);
border-bottom: 1px solid rgba(13, 186, 255, 0.3);
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.glass-table tbody tr {
background-color: rgba(255, 255, 255, 0.02);
transition: background-color 0.2s ease;
}
.glass-table tbody tr:hover {
background-color: rgba(255, 255, 255, 0.07);
}
.glass-table td, .glass-table th {
padding: 1rem;
}
.concept-tag {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
background-color: rgba(13, 186, 255, 0.1);
border: 1px solid rgba(13, 186, 255, 0.3);
color: #93c5fd; /* light blue */
font-size: 0.8rem;
font-weight: 500;
}
.stock-code-link {
color: #60a5fa; /* blue-400 */
text-decoration: none;
transition: color 0.2s ease;
}
.stock-code-link:hover {
color: #93c5fd; /* blue-300 */
text-decoration: underline;
}
</style>
</head>
<body class="min-h-screen p-4 sm:p-8 md:p-12" x-data="{
handleMouseMove(event) {
const cards = document.querySelectorAll('.glass-card');
cards.forEach(card => {
const rect = card.getBoundingClientRect();
card.style.setProperty('--x', event.clientX - rect.left + 'px');
card.style.setProperty('--y', event.clientY - rect.top + 'px');
});
}
}" @mousemove="handleMouseMove">
<div class="container mx-auto max-w-7xl space-y-8">
<!-- Header -->
<header class="text-center p-8 glass-card">
<h1 class="text-4xl md:text-6xl font-bold tracking-tighter bg-clip-text text-transparent bg-gradient-to-br from-white to-blue-300">
首发经济 (First-Release Economy)
</h1>
<p class="mt-4 text-xl text-gray-300">深度研究报告</p>
<div class="mt-6 text-xs text-gray-500">
<p>北京价值前沿科技有限公司 AI投研agent“价小前投研” 进行投研呈现</p>
<p class="mt-1">本报告为AI合成数据投资需谨慎</p>
</div>
</header>
<main class="space-y-12">
<!-- Core Insight Section -->
<section id="insight" class="glass-card p-6 md:p-10 space-y-8">
<h2 class="text-3xl font-bold">概念洞察 (Concept Insight)</h2>
<article class="space-y-4">
<h3 class="text-xl font-semibold text-cyan-300">核心观点摘要</h3>
<p class="text-gray-300 leading-relaxed">
“首发经济”是 <strong class="text-white">由顶层政策设计自上而下驱动、旨在通过供给侧创新激活内需的经济新范式</strong>。当前,该概念正处于从政策催化的<strong class="text-white">主题炒作阶段</strong>,向地方实践和企业基本面验证的<strong class="text-white">过渡期</strong>。其核心驱动力源于打破存量市场“内卷”的政策意图,未来潜力则取决于能否真正构建起从“首次发布”到“持续经营”的良性商业生态。
</p>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-4">
<h3 class="text-xl font-semibold text-cyan-300">0. 概念事件与时间轴</h3>
<p class="text-gray-300 leading-relaxed">
“首发经济”概念的引爆点是其在国家顶层经济设计中的首次高调亮相,并迅速引发政策、地方与市场的多级联动。
</p>
<div id="timeline-chart" class="w-full h-96 mt-4 glass-card p-4"></div>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-6">
<h3 class="text-xl font-semibold text-cyan-300">2. 概念的核心逻辑与市场认知分析</h3>
<div class="space-y-4 text-gray-300 leading-relaxed">
<p><strong class="text-white">核心驱动力:政策驱动下的供给侧改革</strong><br>
“首发经济”的根本逻辑并非简单的需求刺激,而是<strong class="text-white">政策主导下的供给侧结构性改革</strong>。其核心目标是通过鼓励和支持“新”——新技术、新产品、新业态、新模式的首次亮相和应用,来解决当前消费市场面临的两大痛点:产品同质化与价格内卷、消费需求升级与有效供给不足的矛盾。
</p>
<p><strong class="text-white">市场热度与情绪:高度乐观,但认知尚在深化</strong><br>
市场初期反应极为热烈,政策一出即“板块内掀起涨停潮”。然而,认知在演进:初期可能将“首发经济”与“首店经济”混淆,后续市场认知正从传统的零售、会展向更具想象空间的<strong class="text-white">科技赋能场景</strong>AI、AR/VR、机器人演进。
</p>
<p><strong class="text-white">预期差分析:宏大叙事与微观现实的温差</strong><br>
当前市场存在显著的预期差。一方面是政策的宏大愿景,另一方面是企业层面(如米奥会展路演)对政策落地的冷静观察:“<strong class="text-white">2025年政策落地存在不确定性需关注地方政府预算分配优先级</strong>”。这揭示了市场可能过度计入了地方补贴的即时性和确定性,而忽略了地方财政的实际压力。
</p>
</div>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-6">
<h3 class="text-xl font-semibold text-cyan-300">3. 关键催化剂与未来发展路径</h3>
<div class="grid md:grid-cols-2 gap-6">
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">近期催化剂 (未来3-6个月)</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-blue-300">商务部政策文件正式出台:</strong>最强催化剂,将决定概念能否从业绩转向主题。</li>
<li><strong class="text-blue-300">标志性新品发布与市场反响:</strong>如《黑神话悟空》等3A游戏发售。</li>
<li><strong class="text-blue-300">大型展会“首发”主题发酵:</strong>如China Joy的新品数量和影响力。</li>
</ul>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">长期发展路径</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-blue-300">从点到面:</strong>由一线城市试点向全国推广。</li>
<li><strong class="text-blue-300">从下游到上游:</strong>从渠道商场、展会向上游的研发、IP创造延伸。</li>
<li><strong class="text-blue-300">从形式到内容:</strong>从“首次”进化到“首创”,与前沿科技深度融合。</li>
</ul>
</div>
</div>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-6">
<h3 class="text-xl font-semibold text-cyan-300">4. 产业链与核心公司深度剖析</h3>
<div class="space-y-4">
<p class="text-gray-300 leading-relaxed"><strong class="text-white">产业链图谱:</strong></p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-center">
<div class="glass-card p-4">
<p class="font-bold text-cyan-400">上游</p>
<p class="text-sm text-gray-300">内容与产品供给方 (IP创作、品牌方)</p>
</div>
<div class="glass-card p-4">
<p class="font-bold text-cyan-300">中游</p>
<p class="text-sm text-gray-300">首发服务与赋能方 (会展/营销/技术)</p>
</div>
<div class="glass-card p-4">
<p class="font-bold text-cyan-200">下游</p>
<p class="text-sm text-gray-300">承载与分发渠道 (商业地产/零售)</p>
</div>
</div>
<p class="mt-4 text-gray-300 leading-relaxed"><strong class="text-white">核心玩家对比:</strong></p>
<div class="overflow-x-auto">
<table class="table w-full glass-table">
<thead>
<tr>
<th>角色定位</th>
<th>核心公司</th>
<th>优势</th>
<th>风险/验证点</th>
</tr>
</thead>
<tbody>
<tr>
<td>逻辑最纯粹的“卖铲人”</td>
<td>米奥会展 (300795)</td>
<td>主营业务与“首展”环节高度契合,逻辑直接。</td>
<td>管理层对地方政策支持持审慎态度,是最大风险点。</td>
</tr>
<tr>
<td>场景承载与运营者</td>
<td>武商集团 (000501)</td>
<td>拥有核心商圈物理空间,是承接“首店”的天然载体。</td>
<td>首发经济带来的增量效益能否覆盖传统业务压力尚需观察。</td>
</tr>
<tr>
<td>上游IP创新代表</td>
<td>广博股份 (002103)</td>
<td>直接受益于“谷子经济”合作IP粉丝基础雄厚。</td>
<td>高度依赖持续产出爆款IP及产品的能力具不确定性。</td>
</tr>
</tbody>
</table>
</div>
</div>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-6">
<h3 class="text-xl font-semibold text-red-400">5. 潜在风险与挑战</h3>
<div class="grid md:grid-cols-2 gap-6">
<div class="glass-card p-6 border-l-4 border-red-500">
<h4 class="font-bold text-lg text-white">政策风险</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-red-300">落地不及预期:</strong>核心风险,地方财政支持能力和执行效率可能低于市场预期 (米奥会展观点)。</li>
<li><strong class="text-red-300">政策转向:</strong>宏观经济目标调整可能影响政策持续性。</li>
</ul>
</div>
<div class="glass-card p-6 border-l-4 border-amber-500">
<h4 class="font-bold text-lg text-white">商业化风险</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-amber-300">同质化与“伪创新”:</strong>“首发”活动可能流于形式,缺乏核心创新。</li>
<li><strong class="text-amber-300">运营能力不足:</strong>短期流量无法沉淀为长期品牌资产。</li>
<li><strong class="text-amber-300">成本收益错配:</strong>高昂的首发活动成本可能侵蚀企业利润。</li>
</ul>
</div>
</div>
</article>
<div class="divider before:bg-gray-700 after:bg-gray-700"></div>
<article class="space-y-6">
<h3 class="text-xl font-semibold text-cyan-300">6. 综合结论与投资启示</h3>
<p class="text-gray-300 leading-relaxed">
“首发经济”概念正处在从<strong class="text-white">政策引爆</strong><strong class="text-white">实践验证</strong>的关键转折点,兼具主题炒作的热度和基本面驱动的潜力。短期内,市场情绪和政策预期仍是主要交易逻辑;中长期看,其价值将回归到能否为相关公司带来真实的收入和利润增量。
</p>
<div class="bento-grid">
<div class="glass-card p-6 md:col-span-2">
<h4 class="font-bold text-lg text-white">最具投资价值的细分环节</h4>
<ul class="list-decimal list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-blue-300">确定性最高的“卖铲人”:</strong>会展服务、营销策划等中游赋能环节,商业模式确定性最高。</li>
<li><strong class="text-blue-300">弹性最大的上游“创新源”:</strong>IP/内容创作、拥有强大产品定义能力的品牌方,一旦打造出爆款,业绩和股价弹性最大。</li>
<li><strong class="text-blue-300">具备运营优势的下游“场景方”:</strong>具备强大招商和运营能力的地标性商业地产。</li>
</ul>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">需重点跟踪的关键指标</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300">
<li><strong class="text-blue-300">政策:</strong>商务部文件细节。</li>
<li><strong class="text-blue-300">中游:</strong>展会新品数量、客单价。</li>
<li><strong class="text-blue-300">下游:</strong>新增首店数量、坪效。</li>
<li><strong class="text-blue-300">上游:</strong>新品销售额、复购率。</li>
</ul>
</div>
</div>
</article>
</section>
<!-- Supporting Data Section -->
<section id="supporting-data" class="glass-card p-6 md:p-10 space-y-8" x-data="{ tab: 'news' }">
<h2 class="text-3xl font-bold">支撑数据 (Supporting Data)</h2>
<div class="tabs tabs-boxed bg-black/20">
<a class="tab" :class="{ 'tab-active': tab === 'news' }" @click.prevent="tab = 'news'">新闻数据 (News)</a>
<a class="tab" :class="{ 'tab-active': tab === 'roadshows' }" @click.prevent="tab = 'roadshows'">路演纪要 (Roadshows)</a>
<a class="tab" :class="{ 'tab-active': tab === 'reports' }" @click.prevent="tab = 'reports'">研报精粹 (Reports)</a>
</div>
<div x-show="tab === 'news'" x-transition>
<div class="bento-grid">
<div class="glass-card p-6 md:col-span-2">
<h4 class="font-bold text-lg text-white">政策层面:顶层设计与部门推动</h4>
<ul class="list-disc list-inside mt-2 space-y-2 text-gray-300 text-sm">
<li><strong class="text-blue-300">中央经济工作会议 (2024.12):</strong> 首次将“积极发展首发经济”写入公报,定位为全方位扩大内需的重要抓手。</li>
<li><strong class="text-blue-300">商务部:</strong> 副部长盛秋平明确表示将加快出台推动首发经济的政策文件,指导各地因地制宜发展。</li>
<li><strong class="text-blue-300">财政部、商务部等:</strong> 发文支持健全首发经济服务体系,包括打造首发中心、支持高能级首店、举办首发活动等。</li>
</ul>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">定义、内涵与意义</h4>
<p class="mt-2 text-sm text-gray-300">广义定义为企业发布新产品、新业态、新服务、新技术、开设首店等经济活动的总称。其内涵比“首店经济”更广,强调<strong class="text-white">整个链式发展的完整过程</strong>,代表地区经济的创造力。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">市场反应</h4>
<p class="mt-2 text-sm text-gray-300">政策表述受到市场强烈关注资本市场上部分消费赛道行情持续大涨12月16日该题材再度走强<strong class="text-white">板块内掀起涨停潮</strong></p>
</div>
<div class="glass-card p-6 md:col-span-2">
<h4 class="font-bold text-lg text-white">地方政府举措</h4>
<p class="mt-2 text-sm text-gray-300">上海、深圳、天津、辽宁等多地已发布或征求相关措施,提供<strong class="text-white">现金奖励深圳最高500万、补贴、通关便利化“绿色通道”</strong>等实质性支持。</p>
</div>
</div>
</div>
<div x-show="tab === 'roadshows'" x-transition>
<div class="bento-grid">
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">中泰商社 (重视“首发经济”!)</h4>
<p class="mt-2 text-sm text-gray-300">定义为引领消费潮流、推动产业升级的供给侧改革。预期商务部政策将于2025年落地各地将密集出台配套政策形成持续红利。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">开源传媒 (投资机会再梳理)</h4>
<p class="mt-2 text-sm text-gray-300">利好游戏、影视、展览等领域。China Joy等展会受益于新品首发需求。建议短期布局政策支持的“首发经济”标的。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">米奥会展 (战略交流会)</h4>
<p class="mt-2 text-sm text-gray-300"><strong class="text-amber-300">关键预期差:</strong> 认为“首发经济”将推动地方政策支持,但<strong class="text-white">2025年政策落地存在不确定性</strong>,需关注地方政府预算分配优先级。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">传媒周一谈 (与科技的结合)</h4>
<p class="mt-2 text-sm text-gray-300">2025年为政策落地关键年。应用场景包括首秀、首演、会展结合<strong class="text-white">AR、VR、裸眼3D、机器人技术</strong>增强体验。建议关注与科技结合的估值修复机会。</p>
</div>
</div>
</div>
<div x-show="tab === 'reports'" x-transition>
<div class="bento-grid">
<div class="glass-card p-6 md:col-span-2">
<h4 class="font-bold text-lg text-white">核心定义与特点</h4>
<p class="mt-2 text-sm text-gray-300">首发经济涵盖从产品首次发布、展出到开设首店、设立总部的<strong class="text-white">链式发展全过程</strong>。它体现了时尚、品质、新潮的消费升级特征,其内涵比“首店经济”更丰富,强调技术、业态、服务的完整创新过程。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">政策支持</h4>
<p class="mt-2 text-sm text-gray-300">中央层面在<strong class="text-white">中央经济工作会议、二十届三中全会</strong>均有提及。商务部明确将加快出台政策文件。地方层面,上海、北京、深圳等已推出<strong class="text-white">百万元级别</strong>的现金奖励或补助。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">作用与影响</h4>
<p class="mt-2 text-sm text-gray-300">通过创造“新供给”刺激需求,<strong class="text-white">避免同质化价格内卷</strong>,同时推动产业升级,提升城市竞争力,并直接带动会展、舞台设备等行业需求。</p>
</div>
<div class="glass-card p-6">
<h4 class="font-bold text-lg text-white">投资机会</h4>
<p class="mt-2 text-sm text-gray-300">受益行业包括商贸零售、会展服务、餐饮旅游、传媒内容IP、营销渠道、消费设备等。配置思路优选<strong class="text-white">强粉丝基础品牌</strong><strong class="text-white">具创新基因</strong>的企业。</p>
</div>
</div>
</div>
</section>
<!-- Stocks Table Section -->
<section id="stocks" class="glass-card p-6 md:p-10 space-y-8">
<h2 class="text-3xl font-bold">核心标的 (Core Stocks)</h2>
<div class="space-y-10">
<div>
<h3 class="text-xl font-semibold mb-4 text-cyan-300">核心概念股 (241213)</h3>
<div class="overflow-x-auto">
<table class="table w-full glass-table">
<thead>
<tr>
<th>股票名称</th>
<th>投资逻辑</th>
<th>标签</th>
</tr>
</thead>
<tbody>
<tr><td>益民集团 (3B)</td><td>公司荣获2021年度上海首发经济引领性本土品牌</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>开开实业 (3B)</td><td>公司获评2023年上海市首发经济引领性本土品牌</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>地素时尚 (<a href="https://valuefrontier.cn/company?scode=603587" target="_blank" class="stock-code-link">603587</a>)</td><td>荣获2022、2023年上海市首发经济引领性本土品牌称号</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>武商集团 (<a href="https://valuefrontier.cn/company?scode=000501" target="_blank" class="stock-code-link">000501</a>)</td><td>互动易实锤:做强“首店首发首展”经济</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>亚振家居</td><td>入选“2022年度上海市首发经济引领性品牌”榜单</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>上海凤凰 (<a href="https://valuefrontier.cn/company?scode=600679" target="_blank" class="stock-code-link">600679</a>)</td><td>荣获2021年上海市首发经济引领性本土品牌</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>开润股份 (<a href="https://valuefrontier.cn/company?scode=300577" target="_blank" class="stock-code-link">300577</a>)</td><td>公司荣获上海市首发经济引领性创意品牌</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>大悦城 (<a href="https://valuefrontier.cn/company?scode=000031" target="_blank" class="stock-code-link">000031</a>)</td><td>西单大悦城作为北京标杆被评为“全球首发中心”,持续落地品牌首店</td><td><span class="concept-tag">中央经济工作会议首提</span></td></tr>
<tr><td>米奥会展 (<a href="https://valuefrontier.cn/company?scode=300795" target="_blank" class="stock-code-link">300795</a>)</td><td>境外会展策划、组织、推广及运营服务</td><td><span class="concept-tag">会展首发经济</span></td></tr>
<tr><td>锋尚文化 (<a href="https://valuefrontier.cn/company?scode=300860" target="_blank" class="stock-code-link">300860</a>)</td><td>以创意设计为核心,业务涵盖大型文化演艺活动、文旅演艺等</td><td><span class="concept-tag">会展首发经济</span></td></tr>
<tr><td>永辉超市 (<a href="https://valuefrontier.cn/company?scode=601933" target="_blank" class="stock-code-link">601933</a>)</td><td>引入胖东来模式进行整改,属于新业态创新</td><td><span class="concept-tag">商业爆改新业态</span></td></tr>
</tbody>
</table>
</div>
</div>
<div>
<h3 class="text-xl font-semibold mb-4 text-cyan-300">细分领域标的 (241213)</h3>
<div class="overflow-x-auto">
<table class="table w-full glass-table">
<thead>
<tr>
<th>股票名称</th>
<th>投资逻辑</th>
<th>标签</th>
</tr>
</thead>
<tbody>
<tr><td>中百集团 (<a href="https://valuefrontier.cn/company?scode=000759" target="_blank" class="stock-code-link">000759</a>)</td><td>通过业态创新,探索咖啡、奶茶等主题新店型</td><td><span class="concept-tag">首店, 新店经济</span></td></tr>
<tr><td>同庆楼 (<a href="https://valuefrontier.cn/company?scode=605108" target="_blank" class="stock-code-link">605108</a>)</td><td>形成“餐饮+宾馆+食品制造+新餐饮”的多业态成长曲线</td><td><span class="concept-tag">首店, 业态更新</span></td></tr>
<tr><td>米奥会展 (<a href="https://valuefrontier.cn/company?scode=300795" target="_blank" class="stock-code-link">300795</a>)</td><td>引领中国中小企业开拓“一带一路”市场的会展服务平台</td><td><span class="concept-tag">首展, 会展服务</span></td></tr>
<tr><td>风语筑 (<a href="https://valuefrontier.cn/company?scode=603466" target="_blank" class="stock-code-link">603466</a>)</td><td>中国展览展示行业龙头</td><td><span class="concept-tag">首展, 会展服务</span></td></tr>
<tr><td>广博股份 (<a href="https://valuefrontier.cn/company?scode=002103" target="_blank" class="stock-code-link">002103</a>)</td><td>开发徽章、立牌等上千种二次元周边签约三丽鸥、魔道祖师等大热IP</td><td><span class="concept-tag">首发, IP赋能</span></td></tr>
<tr><td>奥飞娱乐 (<a href="https://valuefrontier.cn/company?scode=002292" target="_blank" class="stock-code-link">002292</a>)</td><td>拥有《超级飞侠》、《喜羊羊与灰太狼》等丰富动漫IP资源</td><td><span class="concept-tag">首发, IP赋能</span></td></tr>
<tr><td>锋尚文化 (<a href="https://valuefrontier.cn/company?scode=300860" target="_blank" class="stock-code-link">300860</a>)</td><td>主营大型文化演艺活动、文旅演艺等创意、设计及制作服务</td><td><span class="concept-tag">首秀, 文旅演出</span></td></tr>
<tr><td>浩洋股份 (<a href="https://valuefrontier.cn/company?scode=300833" target="_blank" class="stock-code-link">300833</a>)</td><td>主营舞台娱乐灯光设备,直接受益于新品发布会对灯光设备的需求</td><td><span class="concept-tag">首秀, 文旅演出</span></td></tr>
<tr><td>利亚德 (<a href="https://valuefrontier.cn/company?scode=300296" target="_blank" class="stock-code-link">300296</a>)</td><td>以AI空间计算技术创新打造创新性和竞争力的文旅产品</td><td><span class="concept-tag">首秀, 文旅演出</span></td></tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
</main>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
var chartDom = document.getElementById('timeline-chart');
var myChart = echarts.init(chartDom, 'dark');
var option;
option = {
backgroundColor: 'transparent',
tooltip: {
trigger: 'axis',
formatter: function (params) {
return params[0].name + '<br/>' + params[0].value;
},
backgroundColor: 'rgba(20, 20, 40, 0.8)',
borderColor: '#374151',
textStyle: {
color: '#E5E7EB'
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
data: ['2024.12.12', '2024.12.13', '2024.12.16', '2024.12下旬', '2025年初', '2025.03.03'],
axisLabel: { color: '#9CA3AF' }
},
yAxis: {
type: 'value',
name: '事件关键度',
nameTextStyle: { color: '#9CA3AF' },
axisLabel: { color: '#9CA3AF' },
splitLine: {
lineStyle: {
color: '#374151'
}
}
},
series: [
{
name: '事件',
type: 'line',
step: 'start',
data: [
{ value: 80, name: '中央经济工作会议首次提出' },
{ value: 90, name: '资本市场概念股开始大涨' },
{ value: 100, name: '板块掀起涨停潮' },
{ value: 85, name: '部委跟进,券商研报密集发布' },
{ value: 95, name: '地方政府两会写入工作报告' },
{ value: 70, name: '市场关注点深化至“与科技结合”' }
],
symbol: 'circle',
symbolSize: 8,
itemStyle: {
color: '#22d3ee'
},
lineStyle: {
color: '#22d3ee',
width: 3
},
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0,
color: 'rgba(34, 211, 238, 0.5)'
}, {
offset: 1,
color: 'rgba(34, 211, 238, 0)'
}])
}
}
],
visualMap: {
top: 50,
right: 10,
pieces: [{
gt: 0,
lte: 75,
label: '深化发展',
color: '#67e8f9'
}, {
gt: 75,
lte: 90,
label: '政策定调',
color: '#22d3ee'
}, {
gt: 90,
label: '市场爆发',
color: '#06b6d4'
}],
outOfRange: {
color: '#999'
},
textStyle: {
color: '#E5E7EB'
}
},
};
myChart.setOption(option);
window.addEventListener('resize', function() {
myChart.resize();
});
});
</script>
</body>
</html>