Files
bettafish-company/final_reports/final_report__20250826_183201.html
T
戒酒的李白 3ca87c0502 Fix Bug.
2025-08-26 18:40:03 +08:00

501 lines
19 KiB
HTML

<!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>