File size: 13,739 Bytes
6e8c86d | 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 | <!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.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.architecture-container {
font-family: 'Microsoft YaHei', Arial, sans-serif;
}
.layer {
transition: all 0.3s ease;
}
.layer:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.arrow {
position: relative;
}
.arrow:after {
content: "";
position: absolute;
left: 50%;
bottom: -20px;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 15px solid #3b82f6;
}
.ai-platform {
background-color: #e0f2fe;
border: 2px solid #3b82f6;
}
@media (max-width: 768px) {
.module {
margin-bottom: 1rem;
}
.arrow:after {
bottom: -15px;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #3b82f6;
}
}
</style>
</head>
<body class="bg-gray-50 min-h-screen py-8">
<div class="container mx-auto px-4 architecture-container">
<h1 class="text-3xl md:text-4xl font-bold text-center text-blue-800 mb-8">苹果产业链全景画像平台系统架构</h1>
<!-- 统一门户层 -->
<div class="flex justify-center mb-8">
<div class="layer bg-white rounded-lg shadow-md p-6 w-full max-w-2xl text-center border-t-4 border-blue-500">
<h2 class="text-xl md:text-2xl font-semibold text-blue-700 mb-2">统一门户</h2>
<div class="bg-blue-100 rounded-md p-4 inline-block">
<i class="fas fa-door-open text-blue-600 mr-2"></i>
<span class="font-medium">统一决策门户 / 移动 App</span>
</div>
</div>
</div>
<!-- 箭头 -->
<div class="flex justify-center mb-2 arrow">
<div class="h-8 w-8 bg-blue-500 rounded-full flex items-center justify-center text-white">
<i class="fas fa-arrow-up"></i>
</div>
</div>
<!-- 全景画像与应用服务层 -->
<div class="flex flex-wrap justify-center gap-4 mb-8">
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/4 text-center border-t-4 border-blue-400">
<h3 class="text-lg font-semibold text-blue-700 mb-2">生产画像</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">种植面积再估算</div>
<div class="bg-blue-50 rounded px-2 py-1">产量预测</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/4 text-center border-t-4 border-blue-400">
<h3 class="text-lg font-semibold text-blue-700 mb-2">流通画像</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">仓储分析</div>
<div class="bg-blue-50 rounded px-2 py-1">物流效率评估</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/4 text-center border-t-4 border-blue-400">
<h3 class="text-lg font-semibold text-blue-700 mb-2">市场画像</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">需求热度探测</div>
<div class="bg-blue-50 rounded px-2 py-1">精准营销</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/4 text-center border-t-4 border-blue-400">
<h3 class="text-lg font-semibold text-blue-700 mb-2">监管服务画像</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">品牌声誉监测</div>
<div class="bg-blue-50 rounded px-2 py-1">政策评估</div>
</div>
</div>
</div>
<!-- 箭头 -->
<div class="flex justify-center mb-2 arrow">
<div class="h-8 w-8 bg-blue-500 rounded-full flex items-center justify-center text-white">
<i class="fas fa-arrow-up"></i>
</div>
</div>
<!-- 苹果产业AI中台 -->
<div class="flex flex-wrap justify-center gap-4 mb-8">
<div class="layer ai-platform rounded-lg shadow-md p-4 w-full md:w-1/4 text-center">
<h3 class="text-lg font-semibold text-blue-800 mb-2">计算机视觉平台</h3>
<div class="text-sm text-gray-700 space-y-1">
<div class="bg-blue-100 rounded px-2 py-1">遥感影像识别</div>
<div class="bg-blue-100 rounded px-2 py-1">果品分级</div>
</div>
</div>
<div class="layer ai-platform rounded-lg shadow-md p-4 w-full md:w-1/4 text-center">
<h3 class="text-lg font-semibold text-blue-800 mb-2">时序预测平台</h3>
<div class="text-sm text-gray-700 space-y-1">
<div class="bg-blue-100 rounded px-2 py-1">价格预测</div>
<div class="bg-blue-100 rounded px-2 py-1">产量预测</div>
<div class="bg-blue-100 rounded px-2 py-1">销量预测</div>
</div>
</div>
<div class="layer ai-platform rounded-lg shadow-md p-4 w-full md:w-1/4 text-center">
<h3 class="text-lg font-semibold text-blue-800 mb-2">NLP平台</h3>
<div class="text-sm text-gray-700 space-y-1">
<div class="bg-blue-100 rounded px-2 py-1">政策解读</div>
<div class="bg-blue-100 rounded px-2 py-1">情绪分析</div>
<div class="bg-blue-100 rounded px-2 py-1">智能问答</div>
</div>
</div>
<div class="layer ai-platform rounded-lg shadow-md p-4 w-full md:w-1/4 text-center">
<h3 class="text-lg font-semibold text-blue-800 mb-2">图计算与优化平台</h3>
<div class="text-sm text-gray-700 space-y-1">
<div class="bg-blue-100 rounded px-2 py-1">产业链知识图谱</div>
<div class="bg-blue-100 rounded px-2 py-1">营销智能匹配</div>
</div>
</div>
</div>
<!-- 箭头 -->
<div class="flex justify-center mb-2 arrow">
<div class="h-8 w-8 bg-blue-500 rounded-full flex items-center justify-center text-white">
<i class="fas fa-arrow-up"></i>
</div>
</div>
<!-- 数据汇聚与治理层 -->
<div class="flex flex-wrap justify-center gap-4 mb-8">
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/5 text-center border-t-4 border-blue-300">
<h3 class="text-lg font-semibold text-blue-700 mb-2">政府与行业数据</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">统计年鉴</div>
<div class="bg-blue-50 rounded px-2 py-1">农业农村厅</div>
<div class="bg-blue-50 rounded px-2 py-1">行业协会</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/5 text-center border-t-4 border-blue-300">
<h3 class="text-lg font-semibold text-blue-700 mb-2">企业与合作社数据</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">ERP</div>
<div class="bg-blue-50 rounded px-2 py-1">生产记录</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/5 text-center border-t-4 border-blue-300">
<h3 class="text-lg font-semibold text-blue-700 mb-2">市场与互联网数据</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">批发市场</div>
<div class="bg-blue-50 rounded px-2 py-1">电商</div>
<div class="bg-blue-50 rounded px-2 py-1">舆情监测</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/5 text-center border-t-4 border-blue-300">
<h3 class="text-lg font-semibold text-blue-700 mb-2">空间地理数据</h3>
<div class="text-sm text-gray-600 space-y-1">
<div class="bg-blue-50 rounded px-2 py-1">遥感影像</div>
<div class="bg-blue-50 rounded px-2 py-1">行政区划</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-4 w-full md:w-1/5 text-center border-t-4 border-blue-300">
<h3 class="text-lg font-semibold text-blue-700 mb-2">数据治理中心</h3>
<div class="text-sm text-gray-600">
<div class="bg-blue-50 rounded px-2 py-1 italic">详见4.2节</div>
</div>
</div>
</div>
<!-- 箭头 -->
<div class="flex justify-center mb-2 arrow">
<div class="h-8 w-8 bg-blue-500 rounded-full flex items-center justify-center text-white">
<i class="fas fa-arrow-up"></i>
</div>
</div>
<!-- 基础设施层 -->
<div class="flex flex-wrap justify-center gap-4">
<div class="layer bg-white rounded-lg shadow-md p-6 w-full md:w-1/2 text-center border-t-4 border-blue-200">
<h3 class="text-xl font-semibold text-blue-700 mb-2">云平台 / 私有云</h3>
<div class="flex justify-center space-x-4 mt-4">
<div class="bg-blue-100 rounded-full p-3">
<i class="fas fa-cloud text-blue-600 text-2xl"></i>
</div>
<div class="bg-blue-100 rounded-full p-3">
<i class="fas fa-server text-blue-600 text-2xl"></i>
</div>
</div>
</div>
<div class="layer bg-white rounded-lg shadow-md p-6 w-full md:w-1/2 text-center border-t-4 border-blue-200">
<h3 class="text-xl font-semibold text-blue-700 mb-2">大数据存储与计算</h3>
<div class="flex justify-center space-x-4 mt-4">
<div class="bg-blue-100 rounded-full p-3">
<i class="fas fa-database text-blue-600 text-2xl"></i>
</div>
<div class="bg-blue-100 rounded-full p-3">
<i class="fas fa-microchip text-blue-600 text-2xl"></i>
</div>
</div>
</div>
</div>
<!-- 数据流说明 -->
<div class="mt-12 bg-blue-50 rounded-lg p-4 max-w-3xl mx-auto">
<div class="flex items-center justify-center space-x-4">
<div class="flex items-center">
<div class="h-4 w-4 bg-blue-500 rounded-full mr-2"></div>
<span class="text-sm">数据流上行</span>
</div>
<div class="flex items-center">
<div class="h-4 w-4 bg-blue-300 rounded-full mr-2"></div>
<span class="text-sm">智能分析支持上层业务</span>
</div>
</div>
</div>
</div>
<script>
// 添加简单的交互效果
document.addEventListener('DOMContentLoaded', function() {
const layers = document.querySelectorAll('.layer');
layers.forEach(layer => {
layer.addEventListener('mouseenter', function() {
this.style.boxShadow = '0 10px 25px -5px rgba(0, 0, 0, 0.1)';
});
layer.addEventListener('mouseleave', function() {
this.style.boxShadow = '';
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=maomaobj/apple5" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |