update pay ui
This commit is contained in:
@@ -1,596 +1,407 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<html lang="zh-CN" data-theme="night">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>N型产业链分析报告</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
|
||||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: #f8fafc;
|
||||
}
|
||||
.gradient-bg {
|
||||
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
|
||||
}
|
||||
.card-shadow {
|
||||
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.table-responsive {
|
||||
overflow-x: auto;
|
||||
}
|
||||
.highlight-text {
|
||||
background: linear-gradient(120deg, #3b82f6 0%, #60a5fa 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.section-title {
|
||||
position: relative;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.section-title::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 4px;
|
||||
background: linear-gradient(to bottom, #3b82f6, #60a5fa);
|
||||
border-radius: 2px;
|
||||
}
|
||||
#vanta-bg {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
.content-wrapper {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.badge-custom {
|
||||
display: inline-block;
|
||||
padding: 0.25rem 0.75rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
border-radius: 9999px;
|
||||
background-color: #dbeafe;
|
||||
color: #1e40af;
|
||||
}
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
.timeline-item::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0.5rem;
|
||||
width: 0.5rem;
|
||||
height: 0.5rem;
|
||||
border-radius: 50%;
|
||||
background-color: #3b82f6;
|
||||
}
|
||||
.timeline-item::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0.25rem;
|
||||
top: 1rem;
|
||||
width: 1px;
|
||||
height: calc(100% - 0.5rem);
|
||||
background-color: #d1d5db;
|
||||
}
|
||||
.timeline-item:last-child::after {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>N型产业链 - 深度行业研究报告</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=Noto+Sans+SC:wght@300;400;500;700&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'Noto Sans SC', sans-serif;
|
||||
background-color: #020011;
|
||||
background-image:
|
||||
radial-gradient(ellipse at 20% 80%, rgba(5, 80, 120, 0.3) 0%, rgba(5, 80, 120, 0) 40%),
|
||||
radial-gradient(circle at 80% 30%, rgba(120, 50, 150, 0.25) 0%, rgba(120, 50, 150, 0) 35%);
|
||||
color: #e0e0e0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.glass-card {
|
||||
background: rgba(10, 10, 30, 0.4);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 2rem; /* Extreme rounded corners */
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
|
||||
}
|
||||
|
||||
.glass-card:hover {
|
||||
background: rgba(20, 20, 40, 0.6);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.fui-title {
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.fui-subtitle {
|
||||
color: #00ffff;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.bento-grid {
|
||||
display: grid;
|
||||
gap: 1.5rem;
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
}
|
||||
|
||||
.bento-item {
|
||||
grid-column: span 12; /* Default for mobile */
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.bento-item-span-12 { grid-column: span 12; }
|
||||
.bento-item-span-8 { grid-column: span 8; }
|
||||
.bento-item-span-6 { grid-column: span 6; }
|
||||
.bento-item-span-4 { grid-column: span 4; }
|
||||
}
|
||||
|
||||
.tab-active {
|
||||
color: #00ffff;
|
||||
background-color: rgba(0, 255, 255, 0.1);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="vanta-bg"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="container mx-auto px-4 py-8 max-w-6xl">
|
||||
<!-- 标题和概述 -->
|
||||
<div class="mb-12">
|
||||
<div class="gradient-bg rounded-2xl p-8 text-white card-shadow">
|
||||
<div class="flex items-center mb-4">
|
||||
<i class="fas fa-solar-panel text-4xl mr-4"></i>
|
||||
<h1 class="text-3xl md:text-4xl font-bold">N型产业链分析报告</h1>
|
||||
</div>
|
||||
<p class="text-lg opacity-90">光伏行业从PERC(P型)向N型(TOPCon/HJT/BC)技术迭代加速,核心驱动力是PERC效率逼近理论极限,而N型技术具备更高天花板。</p>
|
||||
</div>
|
||||
</div>
|
||||
<body class="min-h-screen p-4 sm:p-8">
|
||||
<div class="max-w-screen-2xl mx-auto space-y-8">
|
||||
|
||||
<!-- 概念事件和背景 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">概念事件与背景</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">背景</h3>
|
||||
<p class="text-gray-700">2023-2024年,光伏行业从PERC(P型)向N型(TOPCon/HJT/BC)技术迭代加速,核心驱动力是PERC效率逼近理论极限(24.5%),而N型技术(TOPCon量产效率25.7%、HJT 25.5%、BC 26.5%)具备更高天花板。</p>
|
||||
</div>
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">催化事件</h3>
|
||||
<div class="space-y-3">
|
||||
<div class="timeline-item">
|
||||
<p class="font-medium">2023Q4</p>
|
||||
<p class="text-sm text-gray-600">国内招标N型占比突破70%,欧洲FOB价格从9美分/W涨至10-11美分/W</p>
|
||||
</div>
|
||||
<div class="timeline-item">
|
||||
<p class="font-medium">2024年1月</p>
|
||||
<p class="text-sm text-gray-600">浙商电新数据显示N型电池排产占比61.18%,组件占比53.73%,渗透率加速</p>
|
||||
</div>
|
||||
<div class="timeline-item">
|
||||
<p class="font-medium">2024年9月</p>
|
||||
<p class="text-sm text-gray-600">集采项目中N型占比达91%,但价格中枢降至0.69-0.73元/W,N/P价差倒挂</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Header -->
|
||||
<header class="text-center p-8 space-y-4">
|
||||
<h1 class="text-5xl md:text-7xl font-bold fui-title tracking-wider">N型产业链</h1>
|
||||
<h2 class="text-2xl md:text-3xl font-light text-cyan-300">深度行业研究报告</h2>
|
||||
<p class="text-sm text-gray-500 pt-4">北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现 | 本报告为AI合成数据,投资需谨慎。</p>
|
||||
</header>
|
||||
|
||||
<!-- 核心观点摘要 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">核心观点摘要</h2>
|
||||
<div class="bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl p-6 border border-blue-100">
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div>
|
||||
<h3 class="text-lg font-semibold mb-3 text-blue-800">阶段判断</h3>
|
||||
<p class="text-gray-700">N型产业链已从<span class="font-semibold text-blue-600">"主题炒作"</span>进入<span class="font-semibold text-blue-600">"基本面驱动"</span>阶段,<span class="font-semibold highlight-text">供需缺口+技术溢价</span>是核心逻辑。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="text-lg font-semibold mb-3 text-blue-800">未来潜力</h3>
|
||||
<p class="text-gray-700">2024年N型渗透率有望超70%,但需警惕产能过剩导致的盈利压缩,<span class="font-semibold highlight-text">头部厂商的降本能力</span>将决定超额收益。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Main Bento Grid Layout -->
|
||||
<main class="bento-grid">
|
||||
|
||||
<!-- Insight: Core View & Logic -->
|
||||
<section class="bento-item bento-item-span-8 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">核心逻辑与市场认知</h3>
|
||||
<div class="space-y-6 text-gray-300 text-base leading-relaxed">
|
||||
<div>
|
||||
<h4 class="font-semibold text-white text-lg mb-2">核心驱动力:物理性能驱动下的经济性优势</h4>
|
||||
<p>支撑N型产业链成立的根本逻辑是物理性能驱动下的经济性优势。路演数据明确指出,N型技术(TOPCon、BC)因其<strong>低衰减、优异的高温系数和更长的寿命</strong>,在全生命周期内的发电量更高,其实际度电成本(LCOE)优势远超组件采购时的表面价差。路演专家测算,N型组件的实际溢价能力可达<strong>0.24-0.31元/W</strong>,这为下游电站运营商提供了充足的替换动力,是支撑N型技术替代P型的最底层商业逻辑。研报反复提及的<strong>LECO等提效技术</strong>的不断应用,进一步放大了这一经济性优势。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-white text-lg mb-2">市场热度与情绪:高度共识下的结构性分歧</h4>
|
||||
<p>市场对N型替代P型这一宏大叙事抱有高度共识和乐观情绪。然而,情绪存在明显分歧:一方面是对替代趋势的普遍乐观;另一方面,新闻数据揭示了2024下半年全产业链亏损状态(一体化盈利估算为<strong>-0.10元/W</strong>至<strong>-0.13元/W</strong>),使得市场对中游制造环节的盈利能力极度谨慎。这种“增收不增利”的局面,导致市场情绪向价值链更高处——具备技术壁垒的辅材环节(如银浆)转移。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-white text-lg mb-2">预期差分析:技术溢价 vs 实际盈利</h4>
|
||||
<p>最大的预期差在于“技术溢价”与“实际盈利”的脱节。路演和研报普遍强调N型电池片相对P型存在<strong>0.1-0.11元/W</strong>的溢价,但新闻数据却显示,在行业性产能过剩下,这种“相对溢价”并不能转化为“绝对利润”。市场普遍认知可能高估了技术领先在行业下行周期中对利润的保护能力。此外,“名义产能”与“有效产能”之间也存在预期差,高品质、高效率N型产品的结构性稀缺为龙头企业提供了潜在的超额收益机会。</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 核心逻辑与市场认知分析 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">核心逻辑与市场认知分析</h2>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">核心驱动力</h3>
|
||||
<div class="space-y-4">
|
||||
<div class="flex items-start">
|
||||
<div class="flex-shrink-0 mt-1 mr-3">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center">
|
||||
<span class="text-blue-600 font-bold text-sm">1</span>
|
||||
</div>
|
||||
<!-- Insight: Summary & Timeline -->
|
||||
<aside class="bento-item bento-item-span-4 space-y-6">
|
||||
<div class="glass-card p-6 h-full flex flex-col">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">核心观点摘要</h3>
|
||||
<p class="text-gray-300 flex-grow">N型产业链已完成从“未来趋势”到“市场主流”的关键跃迁,当前正经历残酷价格战后的<strong>行业出清与格局重塑阶段</strong>。龙头企业的技术、成本和规模优势愈发凸显。未来潜力在于,随着技术持续迭代与供需格局优化,产业链盈利能力有望修复,<strong>真正的价值正从同质化的中游制造环节,向具备高技术壁垒的上游N型硅料及核心辅材环节(如银浆)转移</strong>。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">技术代差</h4>
|
||||
<p class="text-sm text-gray-600">TOPCon效率较PERC高2%+,BOS成本摊薄带来0.24-0.31元/W溢价</p>
|
||||
<div class="glass-card p-6 h-full flex flex-col">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">概念事件时间轴</h3>
|
||||
<ul class="space-y-3 text-sm text-gray-400 list-inside list-disc flex-grow">
|
||||
<li><strong>Pre-2023:</strong> <span class="text-gray-200">技术储备与萌芽期</span></li>
|
||||
<li><strong>2023 Q4 - 2024 H1:</strong> <span class="text-gray-200">渗透率加速期,N型招标占比超70%,确立主导地位</span></li>
|
||||
<li><strong>2024年中 - 2025年初:</strong> <span class="text-gray-200">产业阵痛与分化期,价格战激烈,全产业链承压</span></li>
|
||||
<li><strong>2025年初至今:</strong> <span class="text-gray-200">市场拐点与复苏期,价格反弹,供需格局改善</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<div class="flex-shrink-0 mt-1 mr-3">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center">
|
||||
<span class="text-blue-600 font-bold text-sm">2</span>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">供需错配</h4>
|
||||
<p class="text-sm text-gray-600">需求端N型占比80%-100%,供给端仅60%-70%,缺口约20-30GW</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<div class="flex-shrink-0 mt-1 mr-3">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center">
|
||||
<span class="text-blue-600 font-bold text-sm">3</span>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">政策倒逼</h4>
|
||||
<p class="text-sm text-gray-600">工信部2024年规范条件直接淘汰低效PERC产能</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">市场热度与预期差</h3>
|
||||
<div class="space-y-4">
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800 mb-2">市场热度</h4>
|
||||
<div class="flex flex-wrap gap-2 mb-3">
|
||||
<span class="badge-custom">研报密集度:20+场路演</span>
|
||||
<span class="badge-custom">关键词扩展:TOPCon→HJT/BC</span>
|
||||
</div>
|
||||
<div class="bg-gray-50 rounded-lg p-3 text-sm">
|
||||
<p><span class="font-medium">乐观派</span>(东吴电新):溢价可持续至2025年</p>
|
||||
<p><span class="font-medium">谨慎派</span>(民生电新):2024年H2产能释放后价格战</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800 mb-2">预期差</h4>
|
||||
<div class="bg-yellow-50 rounded-lg p-3 text-sm border border-yellow-100">
|
||||
<p class="mb-1"><span class="font-medium text-yellow-700">市场忽略点</span>:N型硅料结构性紧缺,N/P料价差已从1万/吨拉大至1.3万/吨</p>
|
||||
<p><span class="font-medium text-yellow-700">技术路线分歧</span>:BC技术可能弯道超车,但设备投资高</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<!-- ECharts: Price Trend -->
|
||||
<section class="bento-item bento-item-span-12 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">N型产业链价格走势</h3>
|
||||
<div id="priceChart" style="width: 100%; height: 400px;"></div>
|
||||
</section>
|
||||
|
||||
<!-- 关键催化剂与未来发展路径 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">关键催化剂与未来发展路径</h2>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">近期催化剂(3-6个月)</h3>
|
||||
<div class="space-y-3">
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-bolt text-yellow-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">Q4集采落地</h4>
|
||||
<p class="text-sm text-gray-600">国央企招标N型占比或超90%,价格能否站稳0.7元/W是关键</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-warehouse text-green-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">硅料库存去化</h4>
|
||||
<p class="text-sm text-gray-600">当前N型硅料库存13万吨(20天),若降至10天以下可能触发涨价</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-microscope text-purple-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">技术突破</h4>
|
||||
<p class="text-sm text-gray-600">晶科能源TOPCon效率达27.02%(2025年认证),或推动新一轮溢价</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">长期路径</h3>
|
||||
<div class="space-y-4">
|
||||
<div class="relative pl-6 border-l-2 border-blue-200">
|
||||
<div class="absolute w-3 h-3 bg-blue-500 rounded-full -left-[7px] top-0"></div>
|
||||
<h4 class="font-medium text-gray-800">2024-2025年</h4>
|
||||
<p class="text-sm text-gray-600">TOPCon为主流,HJT/BC差异化竞争</p>
|
||||
</div>
|
||||
<div class="relative pl-6 border-l-2 border-blue-200">
|
||||
<div class="absolute w-3 h-3 bg-blue-500 rounded-full -left-[7px] top-0"></div>
|
||||
<h4 class="font-medium text-gray-800">2026年后</h4>
|
||||
<p class="text-sm text-gray-600">钙钛矿叠层(理论效率28.7%)可能颠覆现有格局</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Insight: Catalysts, Path & Risks -->
|
||||
<section class="bento-item bento-item-span-6 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">关键催化剂与未来路径</h3>
|
||||
<div class="space-y-4">
|
||||
<div>
|
||||
<h4 class="font-semibold text-white mb-2">近期催化剂 (3-6个月)</h4>
|
||||
<ul class="list-disc list-inside text-gray-300 space-y-1">
|
||||
<li>产业链价格持续企稳回升,关注毛利率修复信号。</li>
|
||||
<li>龙头企业不断刷新电池/组件效率世界纪录。</li>
|
||||
<li>国家大型风光基地项目招标,验证N型需求强度。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-white mb-2">长期发展路径</h4>
|
||||
<ul class="list-disc list-inside text-gray-300 space-y-1">
|
||||
<li><strong>当前-2026年:</strong> TOPCon技术深化,向0BB、LECO普及等方向演进。</li>
|
||||
<li><strong>2026年及以后:</strong> HJT/BC技术成本突破,特别是去银化技术成熟商用。</li>
|
||||
<li><strong>格局演变:</strong> 行业份额向一体化龙头高度集中,完成从“百花齐放”到“寡头垄断”的转变。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 产业链与核心公司剖析 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">产业链与核心公司剖析</h2>
|
||||
<div class="bg-white rounded-xl p-6 card-shadow mb-6">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">产业链图谱</h3>
|
||||
<div class="flex flex-col md:flex-row justify-between items-center mb-4">
|
||||
<div class="text-center p-4 bg-blue-50 rounded-lg w-full md:w-1/3 mb-4 md:mb-0 md:mr-2">
|
||||
<p class="font-medium text-blue-800">上游</p>
|
||||
<p class="text-sm text-gray-600">N型硅料(通威股份、协鑫科技)→N型硅片(TCL中环、隆基绿能)</p>
|
||||
</div>
|
||||
<div class="text-center p-4 bg-green-50 rounded-lg w-full md:w-1/3 mb-4 md:mb-0 md:mx-2">
|
||||
<p class="font-medium text-green-800">中游</p>
|
||||
<p class="text-sm text-gray-600">TOPCon电池(钧达股份、晶科能源)→组件(天合光能、阿特斯)</p>
|
||||
</div>
|
||||
<div class="text-center p-4 bg-purple-50 rounded-lg w-full md:w-1/3 md:ml-2">
|
||||
<p class="font-medium text-purple-800">下游</p>
|
||||
<p class="text-sm text-gray-600">辅材(帝科股份银浆、福斯特胶膜)</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-blue-700">核心玩家对比</h3>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="min-w-full divide-y divide-gray-200">
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">公司</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">技术路线</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">2024年N型产能</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">竞争优势</th>
|
||||
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">风险点</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="bg-white divide-y divide-gray-200">
|
||||
<tr>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm font-medium text-gray-900">晶科能源</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">TOPCon</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">60GW+</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">效率领先(27.02%)、海外渠道</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">价格战下盈利压缩</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm font-medium text-gray-900">钧达股份</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">TOPCon</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">44GW</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">专业化电池龙头,成本最低</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">单一技术路线依赖</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm font-medium text-gray-900">隆基绿能</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">BC+TOPCon</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">30GW</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">BC技术储备,一体化降本</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">BC量产进度不及预期</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm font-medium text-gray-900">通威股份</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">N型硅料</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">55GW</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">硅料成本优势,N型料占比50%+</td>
|
||||
<td class="px-4 py-4 text-sm text-gray-500">硅料价格暴跌拖累盈利</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 潜在风险与挑战 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">潜在风险与挑战</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-red-700">技术与商业化风险</h3>
|
||||
<div class="space-y-3">
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-exclamation-triangle text-red-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">技术风险</h4>
|
||||
<p class="text-sm text-gray-600">HJT银耗127mg/W(PERC 95mg),低温银浆国产化率不足50%</p>
|
||||
<section class="bento-item bento-item-span-6 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-4">潜在风险与挑战</h3>
|
||||
<div class="space-y-4 text-gray-300">
|
||||
<div>
|
||||
<h4 class="font-semibold text-white mb-2">技术风险</h4>
|
||||
<ul class="list-disc list-inside space-y-1">
|
||||
<li><strong>TOPCon生命周期风险:</strong>HJT或BC技术的突破可能改变竞争格局,缩短当前主流技术的生命周期。</li>
|
||||
<li><strong>降本不确定性:</strong>银包铜、电镀铜等去银化方案的产业化进程和可靠性仍存在不确定性。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-white mb-2">商业化风险</h4>
|
||||
<ul class="list-disc list-inside space-y-1">
|
||||
<li><strong>产能过剩与价格战:</strong>这是当前最主要风险,激烈的同质化竞争吞噬产业升级带来的超额利润。</li>
|
||||
<li><strong>下游需求不及预期:</strong>全球光伏装机增速若放缓,将加剧上游的产能过剩。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="font-semibold text-white mb-2">政策与竞争风险</h4>
|
||||
<ul class="list-disc list-inside space-y-1">
|
||||
<li><strong>海外贸易壁垒:</strong>如欧盟反补贴调查等,可能影响国内组件出口。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-chart-line text-red-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">商业化风险</h4>
|
||||
<p class="text-sm text-gray-600">TOPCon组件价格已低于部分企业现金成本(0.71元/W vs 成本0.75元/W)</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white rounded-xl p-6 card-shadow">
|
||||
<h3 class="text-lg font-semibold mb-4 text-orange-700">政策与信息风险</h3>
|
||||
<div class="space-y-3">
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-gavel text-orange-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">政策风险</h4>
|
||||
<p class="text-sm text-gray-600">美国东南亚关税豁免2024年6月到期,可能影响N型组件出口(占阿特斯收入80%)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start">
|
||||
<i class="fas fa-info-circle text-orange-500 mt-1 mr-3"></i>
|
||||
<div>
|
||||
<h4 class="font-medium text-gray-800">信息矛盾</h4>
|
||||
<p class="text-sm text-gray-600">路演显示N型电池库存31天,但硅业分会称"库存消化供需改善",需验证库存去化速度</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 综合结论与投资启示 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">综合结论与投资启示</h2>
|
||||
<div class="bg-gradient-to-r from-blue-600 to-indigo-700 rounded-xl p-6 text-white card-shadow">
|
||||
<div class="mb-6">
|
||||
<h3 class="text-xl font-semibold mb-3">阶段判断</h3>
|
||||
<p class="text-blue-100">N型产业链处于<span class="font-bold text-yellow-300">"渗透率加速+盈利底部"</span>阶段,短期看集采价格能否企稳,长期看技术降本。</p>
|
||||
</div>
|
||||
|
||||
<div class="mb-6">
|
||||
<h3 class="text-xl font-semibold mb-3">投资方向</h3>
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||||
<div class="bg-blue-800 bg-opacity-50 rounded-lg p-4">
|
||||
<h4 class="font-medium mb-2">N型硅料</h4>
|
||||
<p class="text-sm text-blue-100">通威股份(颗粒硅成本优势+N型料溢价)</p>
|
||||
</div>
|
||||
<div class="bg-blue-800 bg-opacity-50 rounded-lg p-4">
|
||||
<h4 class="font-medium mb-2">TOPCon电池</h4>
|
||||
<p class="text-sm text-blue-100">钧达股份(专业化龙头,盈利弹性最大)</p>
|
||||
</div>
|
||||
<div class="bg-blue-800 bg-opacity-50 rounded-lg p-4">
|
||||
<h4 class="font-medium mb-2">辅材</h4>
|
||||
<p class="text-sm text-blue-100">帝科股份(N型银浆市占率50%+,加工费溢价40%)</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="text-xl font-semibold mb-3">跟踪指标</h3>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<span class="bg-yellow-500 bg-opacity-30 text-yellow-100 px-3 py-1 rounded-full text-sm">N型组件定标价:能否站稳0.7元/W以上</span>
|
||||
<span class="bg-yellow-500 bg-opacity-30 text-yellow-100 px-3 py-1 rounded-full text-sm">N型硅料库存:降至10天以下为供需反转信号</span>
|
||||
<span class="bg-yellow-500 bg-opacity-30 text-yellow-100 px-3 py-1 rounded-full text-sm">TOPCon效率突破:26%+量产效率将重塑溢价逻辑</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Supporting Data Tabs -->
|
||||
<section x-data="{ activeTab: 'news' }" class="bento-item bento-item-span-12 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-6">核心数据支撑</h3>
|
||||
<div class="tabs tabs-boxed bg-black bg-opacity-20 mb-6">
|
||||
<a class="tab" :class="{ 'tab-active': activeTab === 'news' }" @click="activeTab = 'news'">新闻摘要</a>
|
||||
<a class="tab" :class="{ 'tab-active': activeTab === 'roadshow' }" @click="activeTab = 'roadshow'">路演精华</a>
|
||||
<a class="tab" :class="{ 'tab-active': activeTab === 'report' }" @click="activeTab = 'report'">研报洞察</a>
|
||||
</div>
|
||||
|
||||
<!-- 关联股票表格 -->
|
||||
<div class="mb-12">
|
||||
<h2 class="text-2xl font-bold mb-6 section-title">关联股票</h2>
|
||||
<div class="card bg-white rounded-xl card-shadow">
|
||||
<div class="table-responsive">
|
||||
<table class="table align-items-center mb-0 w-full">
|
||||
<thead>
|
||||
<tr class="bg-gray-50">
|
||||
<th class="text-uppercase text-secondary text-xs font-weight-bolder opacity-7 px-4 py-3 text-left">股票名称</th>
|
||||
<th class="text-uppercase text-secondary text-xs font-weight-bolder opacity-7 px-4 py-3 text-left">分类</th>
|
||||
<th class="text-uppercase text-secondary text-xs font-weight-bolder opacity-7 px-4 py-3 text-left">产业链环节</th>
|
||||
<th class="text-uppercase text-secondary text-xs font-weight-bolder opacity-7 px-4 py-3 text-left">原因</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">帝</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">帝科股份</div>
|
||||
<div x-show="activeTab === 'news'" class="prose max-w-none prose-invert prose-p:text-gray-300 prose-li:text-gray-300">
|
||||
<h4>N型产业链价格与动态(新闻精选)</h4>
|
||||
<ul>
|
||||
<li><strong>N型硅料:</strong>价格经历“上涨-持稳-波动-反弹”周期,从2024年9月的约4万元/吨,到2025年7-9月反弹至5万元/吨以上,受供需关系和市场情绪影响显著。通威等企业持续优化生产指标。</li>
|
||||
<li><strong>N型硅片/电池片:</strong>整体趋势向下,但期间因库存消化、供需改善出现过止跌回升。例如,N型硅片价格在2025年1月上涨超10%。</li>
|
||||
<li><strong>N型组件:</strong>价格持续承压,但市场渗透率持续提升,已成为市场主流。国内价格从0.75元/W逐步下探至0.69元/W。</li>
|
||||
<li><strong>企业动态:</strong>既有华东重机因市场低迷终止N型电池项目投资的案例,也有晶科能源在N型电池(效率达27.02%)和组件效率上不断取得技术突破,并在百万千瓦级海上光伏项目中大规模应用。</li>
|
||||
<li><strong>市场拐点:</strong>2025年1月,市场解读为“自律初显成效”,硅料、硅片、电池价格出现全线上涨,预示行业可能迎来拐点。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div x-show="activeTab === 'roadshow'" class="prose max-w-none prose-invert prose-p:text-gray-300 prose-li:text-gray-300">
|
||||
<h4>N型技术趋势与各环节要点(路演精选)</h4>
|
||||
<ul>
|
||||
<li><strong>N型替代加速:</strong>市场共识,2023Q4招标中N型占比已超70%-90%,P型基本退出主流市场。预计2024年N型组件占比将超70%。</li>
|
||||
<li><strong>硅料环节:</strong>2024年初N型硅料存在约2万吨/月的供需缺口,N/P价差显著。核心供应商为通威、大全能源。</li>
|
||||
<li><strong>电池环节:</strong>N型电池外销占比较高(45%-50%),降本路径主要依赖效率提升和银浆耗量下降。高效率TOPCon产品存在结构性稀缺。</li>
|
||||
<li><strong>组件环节:</strong>N型组件具备显著的LCOE优势,实际溢价能力(0.24-0.31元/W)远超表面BOS成本测算值,是替代的核心驱动力。</li>
|
||||
<li><strong>辅材环节(银浆):</strong>N型迭代带来量价齐升。TOPCon银浆单瓦耗量较PERC提升,加工费溢价显著,且技术门槛高导致市场高度集中(CR2 > 80%),帝科股份、聚和材料为龙头。</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div x-show="activeTab === 'report'" class="prose max-w-none prose-invert prose-p:text-gray-300 prose-li:text-gray-300">
|
||||
<h4>N型技术迭代与投资逻辑(研报精选)</h4>
|
||||
<ul>
|
||||
<li><strong>市场主导地位确立:</strong>2023Q4国内集采占比达74%,预计2024年全球渗透率接近60%,P型PERC产能加速出清。</li>
|
||||
<li><strong>盈利分化:</strong>N型硅料年初供应稀缺,价格坚挺;N型电池片相对P型维持0.1-0.11元/W的显著溢价;辅材(特别是银浆)是N型放量中弹性最大的环节。</li>
|
||||
<li><strong>技术迭代核心:</strong><strong>LECO技术</strong>被反复提及,是提升TOPCon电池效率(0.3%-0.6%)的关键,并催生对专用高端银浆的需求,推高技术壁垒。离子注入设备国产化支撑了N型产能扩张。</li>
|
||||
<li><strong>投资逻辑:</strong>上游看N型产能切换能力(大全能源);中游看技术领先的一体化龙头(晶科能源);弹性最大在辅材环节(帝科股份、聚和材料);设备关注关键工艺突破(万业企业)。</li>
|
||||
<li><strong>核心风险:</strong>产能竞争加剧压缩盈利空间、下游装机需求不及预期、原材料(白银)价格波动。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Industry Chain Players -->
|
||||
<section class="bento-item bento-item-span-12 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-6">产业链核心玩家深度剖析</h3>
|
||||
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
||||
<div class="bg-black bg-opacity-20 p-6 rounded-2xl border border-gray-800">
|
||||
<h4 class="text-cyan-300 font-bold text-xl mb-3">领导者:晶科能源 (688223)</h4>
|
||||
<p class="text-sm text-gray-400 mb-2"><strong>定位:</strong> 一体化龙头,N型TOPCon技术绝对引领者</p>
|
||||
<ul class="list-disc list-inside text-gray-300 space-y-1 text-sm">
|
||||
<li><strong>优势:</strong> 多次刷新电池/组件效率世界纪录,技术护城河最强,已在大型项目中规模化验证。</li>
|
||||
<li><strong>风险:</strong> 直接暴露于产业链价格战风险下,盈利能力受终端组件价格严重挤压。</li>
|
||||
<li><strong>逻辑纯粹度:</strong> N型技术龙头逻辑最纯粹,但盈利弹性受产业链整体景气度影响。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">量利双增的优势辅材</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">-</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">属于量利双增的优势辅材类别的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">聚</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">聚合材料</div>
|
||||
<div class="bg-black bg-opacity-20 p-6 rounded-2xl border border-gray-800">
|
||||
<h4 class="text-purple-300 font-bold text-xl mb-3">追赶者:隆基绿能 & 爱旭股份</h4>
|
||||
<p class="text-sm text-gray-400 mb-2"><strong>定位:</strong> 差异化竞争者</p>
|
||||
<ul class="list-disc list-inside text-gray-300 space-y-1 text-sm">
|
||||
<li><strong>优势:</strong> 隆基布局N型BC技术,爱旭主打ABC电池技术,试图通过不同技术路径绕开TOPCon红海竞争。</li>
|
||||
<li><strong>风险:</strong> BC技术路线目前成本较高,市场接受度尚需大规模验证,存在技术和市场推广的不确定性。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">量利双增的优势辅材</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">-</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">属于量利双增的优势辅材类别的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">宇</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">宇邦新材</div>
|
||||
<div class="bg-black bg-opacity-20 p-6 rounded-2xl border border-gray-800">
|
||||
<h4 class="text-green-300 font-bold text-xl mb-3">价值链最大受益者:帝科股份 (300842)</h4>
|
||||
<p class="text-sm text-gray-400 mb-2"><strong>定位:</strong> 核心辅材(银浆)龙头</p>
|
||||
<ul class="list-disc list-inside text-gray-300 space-y-1 text-sm">
|
||||
<li><strong>优势:</strong> 受益于N型“量价齐升”的核心逻辑,TOPCon市占率超50%,技术壁垒高,竞争格局好。</li>
|
||||
<li><strong>风险:</strong> 高度依赖白银价格;未来去银化技术(如电镀铜)构成长期威胁。</li>
|
||||
<li><strong>逻辑纯粹度:</strong> 受益于N型技术迭代的逻辑最为纯粹,弹性最大。</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">量利双增的优势辅材</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">-</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">属于量利双增的优势辅材类别的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">石</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">石英股份</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">量增利稳的辅材</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">-</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">属于量增利稳的辅材类别的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">欧</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">欧晶科技</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">量增利稳的辅材</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">-</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">属于量增利稳的辅材类别的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">T</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">TCL中环</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型硅片龙头</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型硅片环节</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">被列为N型硅片龙头企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">隆</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">隆基绿能</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型硅片龙头</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型硅片环节</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">被列为N型硅片龙头企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">晶</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">晶科能源</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件N型产能占比快速提升</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件环节</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型产能占比快速提升的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">晶</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">晶澳科技</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件N型产能占比快速提升</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件环节</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型产能占比快速提升的企业</td>
|
||||
</tr>
|
||||
<tr class="border-b border-gray-200 hover:bg-gray-50">
|
||||
<td class="px-4 py-3">
|
||||
<div class="flex items-center">
|
||||
<div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3">
|
||||
<span class="text-blue-600 font-bold text-xs">阿</span>
|
||||
</div>
|
||||
<div class="text-sm font-medium text-gray-900">阿特斯</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件N型产能占比快速提升</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">一体化组件环节</td>
|
||||
<td class="px-4 py-3 text-sm text-gray-500">N型产能占比快速提升的企业</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Stock List Table -->
|
||||
<section class="bento-item bento-item-span-12 glass-card p-6 md:p-8">
|
||||
<h3 class="fui-subtitle text-lg font-bold mb-6">核心标的池</h3>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="table table-zebra w-full">
|
||||
<thead class="text-base text-cyan-200">
|
||||
<tr>
|
||||
<th>股票名称</th>
|
||||
<th>股票代码</th>
|
||||
<th>归类</th>
|
||||
<th>核心逻辑</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>帝科股份</td><td><a href="https://valuefrontier.cn/company?scode=300842" target="_blank" class="link link-hover">300842</a></td><td>优势辅材 (量利双增)</td><td>N型迭代带来银浆需求量价齐升,公司为TOPCon银浆龙头,市占率高。</td></tr>
|
||||
<tr><td>聚合材料</td><td>-</td><td>优势辅材 (量利双增)</td><td>N型TOPCon银浆核心供应商之一,市场份额领先。</td></tr>
|
||||
<tr><td>宇邦新材</td><td><a href="https://valuefrontier.cn/company?scode=301266" target="_blank" class="link link-hover">301266</a></td><td>优势辅材 (量利双增)</td><td>光伏焊带龙头,受益于N型技术对焊带性能要求的提升。</td></tr>
|
||||
<tr><td>晶科能源</td><td><a href="https://valuefrontier.cn/company?scode=688223" target="_blank" class="link link-hover">688223</a></td><td>一体化组件</td><td>全球N型TOPCon技术领导者,出货量领先,技术优势显著。</td></tr>
|
||||
<tr><td>晶澳科技</td><td><a href="https://valuefrontier.cn/company?scode=002459" target="_blank" class="link link-hover">002459</a></td><td>一体化组件</td><td>N型产能占比快速提升的一体化组件龙头企业。</td></tr>
|
||||
<tr><td>天合光能</td><td><a href="https://valuefrontier.cn/company?scode=688599" target="_blank" class="link link-hover">688599</a></td><td>一体化组件</td><td>N型i-TOPCon技术领先,大尺寸组件优势明显。</td></tr>
|
||||
<tr><td>隆基绿能</td><td><a href="https://valuefrontier.cn/company?scode=601012" target="_blank" class="link link-hover">601012</a></td><td>一体化组件 / N型硅片</td><td>硅片龙头,同时布局HPBC等差异化N型技术路线。</td></tr>
|
||||
<tr><td>TCL中环</td><td><a href="https://valuefrontier.cn/company?scode=002129" target="_blank" class="link link-hover">002129</a></td><td>N型硅片</td><td>全球硅片龙头之一,N型硅片出货量和技术领先。</td></tr>
|
||||
<tr><td>双良节能</td><td><a href="https://valuefrontier.cn/company?scode=600481" target="_blank" class="link link-hover">600481</a></td><td>N型硅片</td><td>大尺寸单晶硅片新势力,N型产能快速扩张。</td></tr>
|
||||
<tr><td>爱旭股份</td><td><a href="https://valuefrontier.cn/company?scode=600732" target="_blank" class="link link-hover">600732</a></td><td>一体化组件</td><td>聚焦N型ABC电池技术,走差异化竞争路线。</td></tr>
|
||||
<tr><td>阿特斯</td><td><a href="https://valuefrontier.cn/company?scode=688472" target="_blank" class="link link-hover">688472</a></td><td>一体化组件</td><td>全球化布局的组件龙头,积极推进N型产能转换。</td></tr>
|
||||
<tr><td>福斯特</td><td><a href="https://valuefrontier.cn/company?scode=603806" target="_blank" class="link link-hover">603806</a></td><td>辅材 (量增利稳)</td><td>光伏胶膜绝对龙头,受益于N型组件对POE/EPE胶膜需求的增长。</td></tr>
|
||||
<tr><td>石英股份</td><td><a href="https://valuefrontier.cn/company?scode=603688" target="_blank" class="link link-hover">603688</a></td><td>辅材 (量增利稳)</td><td>高纯石英砂龙头,N型拉晶对石英坩埚品质要求更高。</td></tr>
|
||||
<tr><td>福莱特</td><td><a href="https://valuefrontier.cn/company?scode=601865" target="_blank" class="link link-hover">601865</a></td><td>辅材 (量增利稳)</td><td>光伏玻璃龙头,受益于双面N型组件渗透率提升。</td></tr>
|
||||
<tr><td>芯能科技</td><td><a href="https://valuefrontier.cn/company?scode=603105" target="_blank" class="link link-hover">603105</a></td><td>运营商</td><td>分布式电站运营商,N型组件的高效率可提升电站收益率。</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanta/0.5.24/vanta.waves.min.js"></script>
|
||||
<script>
|
||||
VANTA.WAVES({
|
||||
el: "#vanta-bg",
|
||||
mouseControls: true,
|
||||
touchControls: true,
|
||||
gyroControls: false,
|
||||
minHeight: 200.00,
|
||||
minWidth: 200.00,
|
||||
scale: 1.00,
|
||||
scaleMobile: 1.00,
|
||||
color: 0x1e3a8a,
|
||||
shininess: 30.00,
|
||||
waveHeight: 10.00,
|
||||
waveSpeed: 0.75,
|
||||
zoom: 0.75
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
var chartDom = document.getElementById('priceChart');
|
||||
var myChart = echarts.init(chartDom, 'dark');
|
||||
var option;
|
||||
|
||||
// Data parsed from "新闻数据"
|
||||
const data = [
|
||||
{ date: '2024-09', silicon: 4.17, wafer: 1.08, cell: 0.28 },
|
||||
{ date: '2024-10', silicon: 4.10, wafer: 1.03, cell: 0.275 }, // Approximated cell price based on trend
|
||||
{ date: '2024-11', silicon: 4.17, wafer: 1.03, cell: 0.27 },
|
||||
{ date: '2024-12', silicon: 4.03, wafer: 1.03, cell: 0.28 },
|
||||
{ date: '2025-01', silicon: 4.17, wafer: 1.18, cell: 0.29 },
|
||||
{ date: '2025-02', silicon: 4.17, wafer: null, cell: null }, // No wafer/cell data
|
||||
{ date: '2025-05', silicon: 3.86, wafer: null, cell: null },
|
||||
{ date: '2025-07', silicon: 4.68, wafer: null, cell: null },
|
||||
{ date: '2025-09', silicon: 5.32, wafer: null, cell: null },
|
||||
{ date: '2025-10', silicon: 5.25, wafer: null, cell: null } // Approximated from range
|
||||
];
|
||||
|
||||
const dates = data.map(item => item.date);
|
||||
const siliconPrices = data.map(item => item.silicon);
|
||||
const waferPrices = data.map(item => item.wafer);
|
||||
const cellPrices = data.map(item => item.cell);
|
||||
|
||||
option = {
|
||||
backgroundColor: 'transparent',
|
||||
tooltip: {
|
||||
trigger: 'axis',
|
||||
axisPointer: {
|
||||
type: 'cross',
|
||||
label: {
|
||||
backgroundColor: '#6a7985'
|
||||
}
|
||||
}
|
||||
},
|
||||
legend: {
|
||||
data: ['N型硅料 (万元/吨)', 'N型硅片 (元/片)', 'N型电池片 (元/W)'],
|
||||
textStyle: { color: '#ccc' }
|
||||
},
|
||||
grid: {
|
||||
left: '3%',
|
||||
right: '4%',
|
||||
bottom: '3%',
|
||||
containLabel: true
|
||||
},
|
||||
xAxis: [
|
||||
{
|
||||
type: 'category',
|
||||
boundaryGap: false,
|
||||
data: dates,
|
||||
axisLine: { lineStyle: { color: '#8392A5' } }
|
||||
}
|
||||
],
|
||||
yAxis: [
|
||||
{
|
||||
type: 'value',
|
||||
name: '价格',
|
||||
position: 'left',
|
||||
axisLine: { show: true, lineStyle: { color: '#00ffff' } },
|
||||
axisLabel: { formatter: '{value}' },
|
||||
splitLine: { lineStyle: { type: 'dashed', color: 'rgba(255,255,255,0.1)' } }
|
||||
},
|
||||
{
|
||||
type: 'value',
|
||||
name: '元/片 & 元/W',
|
||||
position: 'right',
|
||||
min: 0,
|
||||
max: 1.5,
|
||||
axisLine: { show: true, lineStyle: { color: '#a084e8' } },
|
||||
axisLabel: { formatter: '{value}' }
|
||||
}
|
||||
],
|
||||
series: [
|
||||
{
|
||||
name: 'N型硅料 (万元/吨)',
|
||||
type: 'line',
|
||||
smooth: true,
|
||||
lineStyle: { color: '#00ffff', width: 2, shadowColor: 'rgba(0, 255, 255, 0.5)', shadowBlur: 10 },
|
||||
itemStyle: { color: '#00ffff' },
|
||||
areaStyle: {
|
||||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
|
||||
offset: 0,
|
||||
color: 'rgba(0, 255, 255, 0.3)'
|
||||
}, {
|
||||
offset: 1,
|
||||
color: 'rgba(0, 255, 255, 0)'
|
||||
}])
|
||||
},
|
||||
data: siliconPrices
|
||||
},
|
||||
{
|
||||
name: 'N型硅片 (元/片)',
|
||||
type: 'line',
|
||||
yAxisIndex: 1,
|
||||
smooth: true,
|
||||
lineStyle: { color: '#a084e8', width: 2, shadowColor: 'rgba(160, 132, 232, 0.5)', shadowBlur: 10 },
|
||||
itemStyle: { color: '#a084e8' },
|
||||
data: waferPrices
|
||||
},
|
||||
{
|
||||
name: 'N型电池片 (元/W)',
|
||||
type: 'line',
|
||||
yAxisIndex: 1,
|
||||
smooth: true,
|
||||
lineStyle: { color: '#3ba272', width: 2, shadowColor: 'rgba(59, 162, 114, 0.5)', shadowBlur: 10 },
|
||||
itemStyle: { color: '#3ba272' },
|
||||
data: cellPrices
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
option && myChart.setOption(option);
|
||||
window.addEventListener('resize', myChart.resize);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
</html>
|
||||
Reference in New Issue
Block a user