You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
5.7 KiB
154 lines
5.7 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>大宗商品分析报告</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: 'Microsoft YaHei', 'SimHei', Arial, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
color: #fff;
|
|
}
|
|
.container { max-width: 1400px; margin: 0 auto; }
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 2.5em;
|
|
margin-bottom: 10px;
|
|
background: linear-gradient(90deg, #f39c12, #e74c3c, #9b59b6);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
|
|
}
|
|
.subtitle {
|
|
text-align: center;
|
|
color: #888;
|
|
margin-bottom: 40px;
|
|
}
|
|
.charts-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
.chart-card {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
border-radius: 20px;
|
|
padding: 25px;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.chart-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.chart-card h2 {
|
|
color: #333;
|
|
font-size: 1.4em;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 3px solid;
|
|
border-image: linear-gradient(90deg, #f39c12, #e74c3c) 1;
|
|
}
|
|
.chart-card img {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
}
|
|
.chart-card.full-width {
|
|
grid-column: 1 / -1;
|
|
}
|
|
.legend {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
margin-top: 15px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.legend-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.9em;
|
|
color: #555;
|
|
}
|
|
.legend-color {
|
|
width: 20px;
|
|
height: 4px;
|
|
border-radius: 2px;
|
|
}
|
|
.gold { background: #ff8c00; }
|
|
.silver { background: #c0c0c0; }
|
|
.oil { background: #006400; }
|
|
.up { background: #006400; }
|
|
.down { background: #ff0000; }
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
padding: 20px;
|
|
color: #666;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.charts-grid { grid-template-columns: 1fr; }
|
|
h1 { font-size: 1.8em; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>📊 大宗商品分析报告</h1>
|
|
<p class="subtitle"> Commodity Market Analysis Report</p>
|
|
<div class="charts-grid">
|
|
<div class="chart-card">
|
|
<h2>📈 价格趋势对比</h2>
|
|
<img src="price_trend.png" alt="价格趋势对比">
|
|
<div class="legend">
|
|
<div class="legend-item"><span class="legend-color gold"></span>黄金</div>
|
|
<div class="legend-item"><span class="legend-color silver"></span>白银</div>
|
|
<div class="legend-item"><span class="legend-color oil"></span>原油</div>
|
|
</div>
|
|
</div>
|
|
<div class="chart-card">
|
|
<h2>📊 波动特征分析</h2>
|
|
<img src="volatility.png" alt="波动特征分析">
|
|
<div class="legend">
|
|
<div class="legend-item"><span class="legend-color gold"></span>黄金</div>
|
|
<div class="legend-item"><span class="legend-color silver"></span>白银</div>
|
|
<div class="legend-item"><span class="legend-color oil"></span>原油</div>
|
|
</div>
|
|
</div>
|
|
<div class="chart-card">
|
|
<h2>🔗 相关性分析</h2>
|
|
<img src="correlation.png" alt="相关性分析">
|
|
<div class="legend">
|
|
<div class="legend-item"><span class="legend-color gold"></span>黄金</div>
|
|
<div class="legend-item"><span class="legend-color oil"></span>原油</div>
|
|
</div>
|
|
</div>
|
|
<div class="chart-card">
|
|
<h2>🗓️ 季节性周期分析</h2>
|
|
<img src="cycle.png" alt="季节性周期分析">
|
|
<div class="legend">
|
|
<div class="legend-item"><span class="legend-color gold"></span>黄金</div>
|
|
<div class="legend-item"><span class="legend-color oil"></span>原油</div>
|
|
</div>
|
|
</div>
|
|
<div class="chart-card full-width">
|
|
<h2>💬 舆情联动分析</h2>
|
|
<img src="sentiment.png" alt="舆情联动分析">
|
|
<div class="legend">
|
|
<div class="legend-item"><span class="legend-color oil"></span>涨跌幅</div>
|
|
<div class="legend-item"><span class="legend-color gold"></span>利好新闻数</div>
|
|
<div class="legend-item"><span class="legend-color down"></span>利空新闻数</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
<p>报告生成时间: 2026-05-23T20:46:20.700038600</p>
|
|
<p>大宗商品爬虫系统 © 2026</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|