final_report__20250826_183201.html
19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>智能舆情分析报告</title>
</head>
<body>
json
{
"html_content": "<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>智能舆情分析报告 - 武汉大学</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<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=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #1a73e8;
--secondary-color: #5f6368;
--background-color: #f8f9fa;
--card-background-color: #ffffff;
--text-color: #202124;
--border-color: #e0e0e0;
--shadow-color: rgba(0, 0, 0, 0.1);
--positive-color: #34a853;
--negative-color: #ea4335;
--neutral-color: #fbbc05;
--font-family: 'Noto Sans SC', sans-serif;
}
.dark-mode {
--primary-color: #8ab4f8;
--secondary-color: #9aa0a6;
--background-color: #202124;
--card-background-color: #303134;
--text-color: #e8eaed;
--border-color: #5f6368;
--shadow-color: rgba(0, 0, 0, 0.3);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-family);
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
transition: background-color 0.3s, color 0.3s;
font-size: 16px;
}
.container {
display: flex;
max-width: 1600px;
margin: 0 auto;
}
.sidebar {
width: 280px;
background-color: var(--card-background-color);
border-right: 1px solid var(--border-color);
position: sticky;
top: 0;
height: 100vh;
overflow-y: auto;
padding: 20px;
transition: background-color 0.3s, border-color 0.3s;
}
.sidebar h2 {
color: var(--primary-color);
margin-bottom: 20px;
font-size: 1.5rem;
border-bottom: 2px solid var(--primary-color);
padding-bottom: 10px;
}
.sidebar ul {
list-style: none;
}
.sidebar ul li a {
display: block;
color: var(--text-color);
text-decoration: none;
padding: 12px 15px;
border-radius: 8px;
margin-bottom: 5px;
font-weight: 500;
transition: background-color 0.2s, color 0.2s;
}
.sidebar ul li a:hover, .sidebar ul li a.active {
background-color: var(--primary-color);
color: white;
}
.main-content {
flex: 1;
padding: 30px 40px;
}
header {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
font-size: 2.5rem;
color: var(--text-color);
font-weight: 700;
}
.header-controls button {
background: var(--primary-color);
color: white;
border: none;
padding: 10px 15px;
border-radius: 8px;
cursor: pointer;
margin-left: 10px;
font-size: 14px;
transition: opacity 0.2s;
}
.header-controls button:hover { opacity: 0.8; }
.report-section {
margin-bottom: 40px;
background-color: var(--card-background-color);
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 12px var(--shadow-color);
transition: background-color 0.3s, box-shadow 0.3s;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
margin-bottom: 20px;
}
.section-header h2 {
font-size: 1.8rem;
color: var(--primary-color);
font-weight: 500;
}
.section-header .toggle-icon {
font-size: 1.5rem;
transition: transform 0.3s;
}
.section-content {
max-height: 10000px; /* Large value for open state */
overflow: hidden;
transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.section-content.collapsed {
max-height: 0;
padding-top: 0;
padding-bottom: 0;
margin-bottom: -20px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.kpi-card {
background-color: var(--background-color);
padding: 20px;
border-radius: 10px;
text-align: center;
border-left: 5px solid var(--primary-color);
}
.kpi-card .value {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 5px;
}
.kpi-card .label {
font-size: 1rem;
color: var(--secondary-color);
}
.top-topic-card {
background-color: var(--background-color);
padding: 20px;
border-radius: 10px;
}
.top-topic-card h4 {
margin-bottom: 10px;
color: var(--primary-color);
}
.alert-card {
background-color: #fff0f0;
color: #d93025;
padding: 20px;
border-radius: 10px;
border-left: 5px solid #d93025;
}
.dark-mode .alert-card {
background-color: #4d2a29;
color: #f8a9a4;
}
.timeline {
position: relative;
padding-left: 30px;
}
.timeline::before {
content: '';
position: absolute;
left: 10px;
top: 0;
bottom: 0;
width: 2px;
background-color: var(--primary-color);
}
.timeline-item {
margin-bottom: 25px;
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: -25px;
top: 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: var(--card-background-color);
border: 2px solid var(--primary-color);
}
.timeline-item-date {
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 5px;
}
.topic-detail-card {
background-color: var(--background-color);
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}
.topic-detail-card h4 { color: var(--primary-color); margin-bottom: 10px; }
.channel-list li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}
.channel-list li:last-child { border-bottom: none; }
.negative-list li {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}
.negative-list li::before {
content: '🔴';
position: absolute;
left: 0;
top: 0;
}
.risk-list li {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}
.risk-list li::before {
content: '⚠️';
position: absolute;
left: 0;
top: 0;
}
.forum-log-container {
background-color: var(--background-color);
border-radius: 10px;
padding: 20px;
max-height: 400px;
overflow-y: auto;
}
.forum-post {
border-bottom: 1px dashed var(--border-color);
padding: 15px 0;
margin-bottom: 10px;
}
.forum-post:last-child { border-bottom: none; }
.post-header { display: flex; align-items: center; margin-bottom: 8px; color: var(--secondary-color); font-size: 0.9em;}
.post-author { font-weight: bold; color: var(--primary-color); margin-right: 10px; }
.post-content { font-size: 1em; }
.post-tags { margin-top: 10px; }
.post-tags span { background-color: var(--primary-color); color: white; padding: 3px 8px; border-radius: 12px; font-size: 0.8em; margin-right: 5px; opacity: 0.8;}
footer {
text-align: center;
padding: 20px;
margin-top: 20px;
color: var(--secondary-color);
font-size: 0.9em;
}
@media (max-width: 1200px) {
.container { flex-direction: column; }
.sidebar { position: static; width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--border-color); }
.main-content { padding: 20px; }
}
@media (max-width: 768px) {
header h1 { font-size: 1.8rem; }
.section-header h2 { font-size: 1.5rem; }
.main-content { padding: 15px; }
.grid-container { grid-template-columns: 1fr; }
}
@media print {
.sidebar, .header-controls, footer, .section-header .toggle-icon {
display: none;
}
body, .main-content, .report-section {
box-shadow: none;
border: none;
padding: 0;
margin: 0;
}
.report-section { page-break-inside: avoid; margin-bottom: 20px; }
}
</style>
</head>
<body>
<div class="container">
<aside class="sidebar" id="sidebar">
<h2>导航目录</h2>
<nav>
<ul>
<li><a href="#overview" class="nav-link">1.0 舆情概览</a></li>
<li><a href="#trends" class="nav-link">2.0 关键数据趋势</a></li>
<li><a href="#timeline" class="nav-link">3.0 舆情动态时间轴</a></li>
<li><a href="#hot-topics" class="nav-link">4.0 热点话题追踪</a></li>
<li><a href="#channels" class="nav-link">5.0 重点渠道表现</a></li>
<li><a href="#risks" class="nav-link">6.0 负面与风险监测</a></li>
<li><a href="#forum" class="nav-link">7.0 论坛用户洞察</a></li>
<li><a href="#summary" class="nav-link">8.0 简报与关注点</a></li>
</ul>
</nav>
</aside>
<main class="main-content">
<header>
<h1>智能舆情分析报告 <br><small style="font-size: 1.2rem; color: var(--secondary-color); font-weight: 400;">监测对象:武汉大学</small></h1>
<div class="header-controls">
<button id="theme-toggle">切换模式</button>
<button onclick="window.print()">打印/导出PDF</button>
</div>
</header>
<section class="report-section" id="overview">
<div class="section-header" data-target="#overview-content">
<h2>1.0 本期舆情概览</h2>
<span class="toggle-icon">▼</span>
</div>
<div id="overview-content" class="section-content">
<div class="grid-container" style="margin-bottom: 20px;">
<div class="kpi-card">
<div class="value">210万+</div>
<div class="label">相关文本量</div>
</div>
<div class="kpi-card">
<div class="value">3.8亿+</div>
<div class="label">总阅读量</div>
</div>
<div class="kpi-card">
<div class="value">420万+</div>
<div class="label">总互动量</div>
</div>
</div>
<div class="grid-container" style="grid-template-columns: 1fr 1fr; align-items: stretch;">
<div>
<h4>1.2 本期舆情热度 TOP 3</h4>
<div class="top-topic-card" style="margin-bottom: 10px;"><strong>1. 学术诚信危机:</strong>杨景媛论文造假及图书馆诬告案引发全网关注,严重冲击校誉。</div>
<div class="top-topic-card" style="margin-bottom: 10px;"><strong>2. 学科声誉与就业焦虑:</strong>“世界第一”的遥感等学科与毕业生“工资条沉默”的现实形成强烈对比,引发热议。</div>
<div class="top-topic-card"><strong>3. 校园文化与公共管理:</strong>樱花季“一票难求”及校园商业化讨论,反映了公共资源开放与校内体验的矛盾。</div>
</div>
<div>
<h4>1.1 核心情感分布</h4>
<canvas id="sentimentPieChart"></canvas>
</div>
</div>
<div style="margin-top: 20px;">
<h4>1.3 重点预警</h4>
<div class="alert-card">
<strong>高风险:</strong>杨景媛学术不端事件持续发酵,校方回应迟缓且缺乏透明度,已导致公信力严重受损。若后续处理不当,可能引发更广泛的信任危机,并对招生、学术合作产生长期负面影响。
</div>
</div>
</div>
</section>
<section class="report-section" id="trends">
<div class="section-header" data-target="#trends-content">
<h2>2.0 关键数据趋势</h2>
<span class="toggle-icon">▼</span>
</div>
<div id="trends-content" class="section-content">
<div class="grid-container" style="grid-template-columns: 1fr 1fr;">
<div>
<h4>2.1 声量走势</h4>
<canvas id="volumeTrendChart"></canvas>
</div>
<div>
<h4>2.2 情感趋势</h4>
<canvas id="sentimentTrendChart"></canvas>
</div>
</div>
</div>
</section>
<section class="report-section" id="timeline">
<div class="section-header" data-target="#timeline-content">
<h2>3.0 本周期舆情动态时间轴</h2>
<span class="toggle-icon">▼</span>
</div>
<div id="timeline-content" class="section-content">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-item-date">2025年7月</div>
<p>硕士毕业生杨景媛被曝论文严重造假,并与其长期诬告肖姓学弟性骚扰败诉案关联,引发网络初步关注。</p>
</div>
<div class="timeline-item">
<div class="timeline-item-date">2025年7月31日</div>
<p>香港浸会大学就杨景媛录取事宜发出道德核查函,启动独立审查程序。</p>
</div>
<div class="timeline-item">
<div class="timeline-item-date">2025年8月1日</div>
<p>央媒关注后,武汉大学宣布成立工作专班,对杨景媛学术不端问题进行全面调查复核。<strong>舆情声量达到顶峰。</strong></p>
</div>
<div class="timeline-item">
<div class="timeline-item-date">2025年8月6日</div>
<p>网传“港浸大撤销杨景媛录取资格”消息被证伪,校方表示按程序处理,引发公众对处理效率的质疑。</p>
</div>
<div class="timeline-item">
<div class="timeline-item-date">周期内持续热议</div>
<p>关于顶尖学科就业前景、樱花季管理、校史文化等话题在社交媒体持续发酵,形成多元舆论场。</p>
</div>
</div>
</div>
</section>
<section class="report-section" id="hot-topics">
<div class="section-header" data-target="#hot-topics-content">
<h2>4.0 热点话题追踪</h2>
<span class="toggle-icon">▼</span>
</div>
<div id="hot-topics-content" class="section-content">
<h4>4.1 本期热点事件/话题详情</h4>
<div class="topic-detail-card">
<h4>热点一:学术诚信危机与信任风波</h4>
<p><strong>事件核心:</strong>杨景媛硕士论文被揭露存在虚构法律、伪造数据、常识错误、大量抄袭等系统性学术不端行为。此事与其诬告肖姓学弟案败诉背景交织,放大了事件的戏剧性和不公感。</p>
<p><strong>舆论焦点:</strong>公众普遍质疑武汉大学的研究生培养、论文审核及导师监督机制。校方在事件曝光后反应迟缓,“等上级安排”的言论进一步激化负面情绪。舆论普遍认为,此事不仅是个人学术失德,更是高校制度性漏洞的体现,对武汉大学百年校誉造成重创。</p>
</div>
<div class="topic-detail-card">
<h4>热点二:顶尖声誉与现实焦虑的碰撞</h4>
<p><strong>核心议题:</strong>武汉大学拥有测绘遥感(世界第一)、法学(A)等众多优势学科,享有崇高学术声誉。然而,社交媒体上,相关专业学生和毕业生普遍表达了对就业前景的焦虑,如“遥感硕士春招中位数7.2k”、“法学生实习5k不包宿”等
</body>
</html>