File size: 20,711 Bytes
d838d07 | 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 | <!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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2563eb',
secondary: '#4b5563',
accent: '#1d4ed8',
light: '#f8fafc',
dark: '#1e293b'
}
}
}
}
</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: linear-gradient(to bottom, #f0f9ff, #ffffff);
min-height: 100vh;
}
.search-shadow {
box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.trend-tag {
transition: all 0.2s ease;
}
.trend-tag:hover {
background-color: #2563eb;
color: white;
}
.floating-btn {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
}
70% {
box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
}
}
.suggestions-dropdown {
max-height: 300px;
overflow-y: auto;
}
.chart-container {
background: linear-gradient(to top, #e0f2fe, #f0f9ff);
}
</style>
</head>
<body class="text-gray-800">
<!-- Header Bar -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center">
<h1 class="text-xl md:text-2xl font-bold text-primary">智研汇 · 科技知识平台</h1>
<nav class="hidden md:flex ml-10 space-x-7">
<a href="#" class="font-medium hover:text-primary transition">首页</a>
<a href="#" class="font-medium hover:text-primary transition">探索</a>
<a href="#" class="font-medium hover:text-primary transition">趋势</a>
<a href="#" class="font-medium hover:text-primary transition">专家</a>
<a href="#" class="font-medium hover:text-primary transition">项目</a>
<a href="#" class="font-medium text-primary">AI问答</a>
</nav>
</div>
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-xl"></i>
</button>
<div class="relative">
<div class="w-10 h-10 rounded-full bg-primary flex items-center justify-center text-white font-semibold cursor-pointer">
<i class="fas fa-user"></i>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="max-w-4xl mx-auto text-center mb-16 mt-10">
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-gray-800">探索科技前沿,汇聚知识智慧</h2>
<p class="text-gray-600 mb-10 max-w-2xl mx-auto">连接全球科技资源,加速科研创新与知识转化</p>
<!-- Search Area -->
<div class="relative">
<div class="flex items-center bg-white rounded-full px-4 py-3 search-shadow">
<input type="text" placeholder="Try: 碳纳米管改性方法有哪些?" class="w-full py-3 px-4 text-gray-700 focus:outline-none rounded-full">
<button class="bg-primary text-white rounded-full p-3 hover:bg-accent transition">
<i class="fas fa-search"></i>
</button>
</div>
<div class="absolute right-16 top-3">
<button class="text-gray-500 hover:text-primary">
<i class="fas fa-microphone"></i>
</button>
</div>
<!-- Suggestions Dropdown -->
<div class="absolute left-0 mt-2 w-full bg-white rounded-xl shadow-lg z-10 hidden suggestions-dropdown">
<div class="py-2">
<div class="px-4 py-2 text-left text-sm text-gray-500">热门搜索</div>
<div class="px-4 py-3 hover:bg-gray-50 cursor-pointer flex items-center">
<i class="fas fa-fire text-red-500 mr-2"></i>
<span>高性能钙钛矿太阳能材料</span>
</div>
<div class="px-4 py-3 hover:bg-gray-50 cursor-pointer flex items-center">
<i class="fas fa-fire text-red-500 mr-2"></i>
<span>激光熔覆工艺的参数优化</span>
</div>
<div class="px-4 py-3 hover:bg-gray-50 cursor-pointer flex items-center">
<i class="fas fa-fire text-red-500 mr-2"></i>
<span>AI在药物筛选中的应用</span>
</div>
</div>
</div>
</div>
</section>
<!-- Quick Access Modules -->
<section class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-16">
<!-- Card 1 -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 mr-3">
<i class="fas fa-brain"></i>
</div>
<h3 class="text-xl font-semibold">猜你想问</h3>
</div>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-question-circle text-blue-400 mt-1 mr-2"></i>
<span class="hover:text-primary cursor-pointer transition">稀土磁性材料有哪些主流研究方向?</span>
</li>
<li class="flex items-start">
<i class="fas fa-question-circle text-blue-400 mt-1 mr-2"></i>
<span class="hover:text-primary cursor-pointer transition">高温合金的抗氧化策略?</span>
</li>
<li class="flex items-start">
<i class="fas fa-question-circle text-blue-400 mt-1 mr-2"></i>
<span class="hover:text-primary cursor-pointer transition">量子计算在材料模拟中的应用现状?</span>
</li>
<li class="flex items-start">
<i class="fas fa-question-circle text-blue-400 mt-1 mr-2"></i>
<span class="hover:text-primary cursor-pointer transition">柔性电子材料的最新研究进展?</span>
</li>
</ul>
</div>
<!-- Card 2 -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 mr-3">
<i class="fas fa-book"></i>
</div>
<h3 class="text-xl font-semibold">找技术成果</h3>
</div>
<div class="grid grid-cols-2 gap-3 mt-6">
<button class="bg-blue-50 hover:bg-blue-100 text-primary font-medium py-3 rounded-lg transition flex items-center justify-center">
<i class="fas fa-file-alt mr-2"></i>论文
</button>
<button class="bg-blue-50 hover:bg-blue-100 text-primary font-medium py-3 rounded-lg transition flex items-center justify-center">
<i class="fas fa-scroll mr-2"></i>专利
</button>
<button class="bg-blue-50 hover:bg-blue-100 text-primary font-medium py-3 rounded-lg transition flex items-center justify-center">
<i class="fas fa-project-diagram mr-2"></i>项目报告
</button>
<button class="bg-blue-50 hover:bg-blue-100 text-primary font-medium py-3 rounded-lg transition flex items-center justify-center">
<i class="fas fa-flask mr-2"></i>实验数据
</button>
</div>
</div>
<!-- Card 3 -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-teal-100 flex items-center justify-center text-teal-600 mr-3">
<i class="fas fa-user-graduate"></i>
</div>
<h3 class="text-xl font-semibold">找专家</h3>
</div>
<div class="space-y-4 mt-6">
<div class="flex items-center p-3 hover:bg-gray-50 rounded-lg cursor-pointer">
<div class="w-12 h-12 rounded-full bg-blue-200 flex items-center justify-center text-blue-800 font-bold mr-3">王</div>
<div>
<h4 class="font-medium">王强 · 材料科学</h4>
<p class="text-sm text-gray-600">清华大学</p>
</div>
</div>
<div class="flex items-center p-3 hover:bg-gray-50 rounded-lg cursor-pointer">
<div class="w-12 h-12 rounded-full bg-purple-200 flex items-center justify-center text-purple-800 font-bold mr-3">李</div>
<div>
<h4 class="font-medium">李雪 · 生物医学</h4>
<p class="text-sm text-gray-600">上海交通大学</p>
</div>
</div>
<div class="flex items-center p-3 hover:bg-gray-50 rounded-lg cursor-pointer">
<div class="w-12 h-12 rounded-full bg-green-200 flex items-center justify-center text-green-800 font-bold mr-3">张</div>
<div>
<h4 class="font-medium">张明 · 人工智能</h4>
<p class="text-sm text-gray-600">浙江大学</p>
</div>
</div>
</div>
</div>
</section>
<!-- Knowledge Trend Panel -->
<section class="bg-white rounded-xl shadow-md mb-16 overflow-hidden">
<div class="p-6 border-b">
<h3 class="text-xl font-semibold">碳材料研究热度趋势</h3>
</div>
<div class="chart-container p-4 md:p-8">
<!-- Chart Placeholder -->
<div class="relative h-64">
<!-- Chart lines -->
<div class="absolute bottom-0 left-0 w-full h-4/5">
<!-- Grid lines -->
<div class="absolute top-0 left-0 w-full h-full flex flex-col justify-between">
<div class="border-t border-gray-200"></div>
<div class="border-t border-gray-200"></div>
<div class="border-t border-gray-200"></div>
<div class="border-t border-gray-200"></div>
<div class="border-t border-gray-200"></div>
</div>
<!-- Year labels -->
<div class="absolute bottom-0 left-0 w-full flex justify-between text-sm text-gray-500 px-2">
<span>2019</span>
<span>2020</span>
<span>2021</span>
<span>2022</span>
<span>2023</span>
</div>
<!-- Data lines -->
<div class="absolute bottom-0 left-0 w-full h-full">
<!-- Graphene line -->
<div class="absolute" style="bottom: 10%; left: 5%; width: 90%; height: 80%">
<svg viewBox="0 0 100 100" preserveAspectRatio="none" class="w-full h-full">
<path d="M0,90 C20,70 40,30 60,50 C80,70 100,20 100,10" stroke="#3b82f6" stroke-width="2" fill="none" />
</svg>
<div class="absolute -top-6 -right-2 text-xs text-blue-600">石墨烯</div>
</div>
<!-- Carbon Nanotubes line -->
<div class="absolute" style="bottom: 20%; left: 5%; width: 90%; height: 80%">
<svg viewBox="0 0 100 100" preserveAspectRatio="none" class="w-full h-full">
<path d="M0,80 C20,40 40,60 60,30 C80,0 100,40 100,20" stroke="#10b981" stroke-width="2" fill="none" />
</svg>
<div class="absolute -top-6 right-1/4 text-xs text-green-500">碳纳米管</div>
</div>
<!-- Carbon Fiber line -->
<div class="absolute" style="bottom: 30%; left: 5%; width: 90%; height: 80%">
<svg viewBox="0 0 100 100" preserveAspectRatio="none" class="w-full h-full">
<path d="M0,60 C20,50 40,70 60,40 C80,10 100,30 100,20" stroke="#8b5cf6" stroke-width="2" fill="none" />
</svg>
<div class="absolute -top-6 right-1/2 text-xs text-purple-500">碳纤维</div>
</div>
</div>
</div>
</div>
</div>
<div class="p-4 bg-gray-50 flex flex-wrap gap-2">
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">石墨烯</span>
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">碳纳米管</span>
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">碳纤维</span>
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">富勒烯</span>
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">碳量子点</span>
<span class="trend-tag px-3 py-1 bg-gray-200 rounded-full text-sm cursor-pointer">石墨炔</span>
</div>
</section>
</main>
<!-- Floating AI Assistant -->
<div class="fixed bottom-6 right-6">
<button class="floating-btn bg-primary text-white rounded-full p-4 shadow-lg hover:bg-accent transition flex items-center">
<i class="fas fa-robot text-xl mr-2"></i>
<span class="hidden md:inline-block">智能问答助手 · 问我任何科技问题</span>
<span class="md:hidden">AI助手</span>
</button>
</div>
<!-- Footer -->
<footer class="bg-gray-50 border-t py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-6 md:mb-0">
<h3 class="text-lg font-semibold text-primary mb-3">智研汇 · 科技知识平台</h3>
<p class="text-gray-600 max-w-md">连接全球科技资源,加速科研创新与知识转化</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="font-semibold mb-3">资源</h4>
<ul class="space-y-2 text-gray-600">
<li><a href="#" class="hover:text-primary">研究论文</a></li>
<li><a href="#" class="hover:text-primary">技术专利</a></li>
<li><a href="#" class="hover:text-primary">科研项目</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3">服务</h4>
<ul class="space-y-2 text-gray-600">
<li><a href="#" class="hover:text-primary">专家咨询</a></li>
<li><a href="#" class="hover:text-primary">技术评估</a></li>
<li><a href="#" class="hover:text-primary">知识图谱</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3">关于我们</h4>
<ul class="space-y-2 text-gray-600">
<li><a href="#" class="hover:text-primary">平台介绍</a></li>
<li><a href="#" class="hover:text-primary">加入我们</a></li>
<li><a href="#" class="hover:text-primary">联系我们</a></li>
</ul>
</div>
</div>
</div>
<div class="border-t mt-8 pt-6 text-center text-gray-500 text-sm">
© 2023 智研汇科技知识平台. 保留所有权利.
</div>
</div>
</footer>
<script>
// Toggle search suggestions
const searchInput = document.querySelector('input');
const suggestionsDropdown = document.querySelector('.suggestions-dropdown');
searchInput.addEventListener('focus', () => {
suggestionsDropdown.classList.remove('hidden');
});
searchInput.addEventListener('blur', () => {
setTimeout(() => {
suggestionsDropdown.classList.add('hidden');
}, 200);
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('button.md\\:hidden');
mobileMenuButton.addEventListener('click', () => {
alert('移动端菜单功能需要实现');
});
// Trend tag interaction
const trendTags = document.querySelectorAll('.trend-tag');
trendTags.forEach(tag => {
tag.addEventListener('click', () => {
alert('趋势标签 "' + tag.textContent + '" 被选中');
});
});
</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/search1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |