File size: 31,860 Bytes
c18336f | 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 502 503 504 505 506 507 508 509 510 511 | <!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 href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<style>
:root {
--primary-blue: #2563eb;
--light-blue: #eff6ff;
--dark-blue: #1d4ed8;
--accent-gray: #f3f4f6;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: #f9fafb;
color: #1f2937;
}
.floating-btn {
box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.3);
transition: all 0.3s ease;
}
.floating-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0, 118, 255, 0.4);
}
.scrollable-cards {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scrollable-cards::-webkit-scrollbar {
display: none;
}
.tag-line::after {
content: "";
flex: 1;
margin-left: 0.5rem;
height: 1px;
background-color: #e5e7eb;
}
</style>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'primary-blue': '#2563eb',
'light-blue': '#eff6ff',
'accent-gray': '#f3f4f6',
'dark-blue': '#1d4ed8',
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<!-- 顶部导航栏 -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4">
<div class="flex items-center justify-between py-3">
<!-- 左侧Logo -->
<div class="flex items-center">
<div class="bg-blue-600 text-white w-10 h-10 rounded-lg flex items-center justify-center mr-2">
<i class="fas fa-atom text-xl"></i>
</div>
<h1 class="text-xl font-bold tracking-tight text-gray-800">智研汇 · 科技知识平台</h1>
</div>
<!-- 导航链接 -->
<div class="hidden md:flex space-x-8">
<a href="#" class="text-blue-600 font-medium border-b-2 border-blue-600 py-2">首页</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition py-2">知识检索</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition py-2">专家库</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition py-2">智能问答</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition py-2">我的收藏</a>
</div>
<!-- 用户头像 -->
<div class="flex items-center">
<div class="flex items-center space-x-2">
<div class="relative">
<button class="text-gray-500 hover:text-blue-600 transition">
<i class="fas fa-bell text-xl"></i>
</button>
<span class="absolute top-0 right-0 block h-2 w-2 rounded-full bg-red-500"></span>
</div>
<div class="relative">
<button class="text-gray-500 hover:text-blue-600 transition">
<i class="fas fa-user-circle text-3xl"></i>
</button>
</div>
</div>
</div>
</div>
<!-- 移动端导航 -->
<div class="flex md:hidden py-3 border-t border-gray-200">
<div class="flex justify-around w-full">
<a href="#" class="text-sm px-2 text-blue-600 font-medium"><i class="fas fa-home mb-1 block text-center w-full"></i>首页</a>
<a href="#" class="text-sm px-2 text-gray-600"><i class="fas fa-search mb-1 block text-center w-full"></i>检索</a>
<a href="#" class="text-sm px-2 text-gray-600"><i class="fas fa-users mb-1 block text-center w-full"></i>专家</a>
<a href="#" class="text-sm px-2 text-gray-600"><i class="fas fa-comments mb-1 block text-center w-full"></i>问答</a>
<a href="#" class="text-sm px-2 text-gray-600"><i class="fas fa-bookmark mb-1 block text-center w-full"></i>收藏</a>
</div>
</div>
</div>
</header>
<!-- 主内容区 -->
<main class="container mx-auto px-4 py-8">
<!-- 查询横幅 -->
<div class="bg-white rounded-xl shadow-sm p-6 mb-8">
<div class="max-w-4xl mx-auto">
<div class="flex items-center justify-between mb-2">
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">方法类问题</span>
<button class="flex items-center text-blue-600">
<i class="fas fa-star mr-1 text-sm"></i> 收藏问题
</button>
</div>
<h1 class="text-2xl font-bold text-gray-800 mb-3 leading-tight">“碳纳米管增强复合材料的主要改性手段?”</h1>
<div class="text-gray-600 mb-4">系统识别为『方法类问题』,为您找到以下<span class="text-blue-600 font-medium"> 4 类结果</span></div>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-600">材料科学</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-600">纳米技术</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-600">复合材料</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-600">表面改性</span>
</div>
</div>
</div>
<!-- 内容卡片区域 -->
<div class="grid grid-cols-1 gap-8 max-w-4xl mx-auto">
<!-- Block 1: AI快速总结 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<div class="p-6 border-b border-gray-200 flex items-center">
<div class="bg-blue-100 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
<i class="fas fa-lightbulb text-blue-700 text-lg"></i>
</div>
<h2 class="text-xl font-bold text-gray-800">AI 快速总结</h2>
</div>
<div class="p-6">
<div class="bg-blue-50 border-l-4 border-blue-600 p-4 rounded mb-4">
<p class="text-gray-700 leading-relaxed">
“碳纳米管增强复合材料的常用改性手段包括:羧基化、氨基化、溶液分散、等离子体处理与聚合物包覆。每种方法改善的性能略有差异,需结合材料目标选择。”
</p>
</div>
<div class="flex flex-wrap gap-2">
<a href="#" class="bg-blue-100 text-blue-700 px-3 py-1 rounded text-sm hover:bg-blue-200 transition">论文链接1</a>
<a href="#" class="bg-blue-100 text-blue-700 px-3 py-1 rounded text-sm hover:bg-blue-200 transition">项目报告</a>
</div>
</div>
<div class="px-6 pb-6 flex justify-end">
<button class="text-blue-600 hover:text-blue-800 flex items-center">
<i class="fas fa-clipboard mr-1"></i> 复制总结
</button>
</div>
</div>
<!-- Block 2: 改性方法卡片 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<div class="p-6 border-b border-gray-200 flex items-center">
<div class="bg-green-100 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
<i class="fas fa-flask text-green-700 text-lg"></i>
</div>
<h2 class="text-xl font-bold text-gray-800">改性方法详情</h2>
</div>
<div class="p-6 grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- 卡片1 -->
<div class="border border-gray-200 rounded-xl hover:border-blue-300 transition-all">
<div class="p-5">
<div class="flex items-center mb-3">
<div class="bg-blue-100 text-blue-800 w-8 h-8 rounded-full flex items-center justify-center mr-2">
<span class="font-bold">1</span>
</div>
<h3 class="font-semibold text-gray-800">羧基化处理</h3>
</div>
<p class="text-gray-600 mb-4">
引入COOH基团提升亲水性和界面键合力
</p>
<div class="flex flex-wrap gap-1">
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded text-xs">化学改性</span>
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded text-xs">增强结合力</span>
</div>
</div>
<div class="bg-gray-50 px-5 py-3 border-t border-gray-100 rounded-b-xl">
<div class="flex justify-between items-center">
<div class="flex items-center text-xs">
<i class="fas fa-chart-line text-blue-600 mr-1"></i>
<span class="text-gray-500">应用率: 78%</span>
</div>
<button class="text-xs text-blue-600 hover:text-blue-800">查看详情</button>
</div>
</div>
</div>
<!-- 卡片2 -->
<div class="border border-gray-200 rounded-xl hover:border-blue-300 transition-all">
<div class="p-5">
<div class="flex items-center mb-3">
<div class="bg-green-100 text-green-800 w-8 h-8 rounded-full flex items-center justify-center mr-2">
<span class="font-bold">2</span>
</div>
<h3 class="font-semibold text-gray-800">聚合物包覆</h3>
</div>
<p class="text-gray-600 mb-4">
表面包覆环氧树脂提升均匀性与界面结合
</p>
<div class="flex flex-wrap gap-1">
<span class="bg-green-100 text-green-700 px-2 py-1 rounded text-xs">复合增强</span>
<span class="bg-green-100 text-green-700 px-2 py-1 rounded text-xs">工程应用</span>
</div>
</div>
<div class="bg-gray-50 px-5 py-3 border-t border-gray-100 rounded-b-xl">
<div class="flex justify-between items-center">
<div class="flex items-center text-xs">
<i class="fas fa-chart-line text-green-500 mr-1"></i>
<span class="text-gray-500">应用率: 65%</span>
</div>
<button class="text-xs text-blue-600 hover:text-blue-800">查看详情</button>
</div>
</div>
</div>
<!-- 卡片3 -->
<div class="border border-gray-200 rounded-xl hover:border-blue-300 transition-all">
<div class="p-5">
<div class="flex items-center mb-3">
<div class="bg-purple-100 text-purple-800 w-8 h-8 rounded-full flex items-center justify-center mr-2">
<span class="font-bold">3</span>
</div>
<h3 class="font-semibold text-gray-800">等离子体改性</h3>
</div>
<p class="text-gray-600 mb-4">
提高表面能,改善分散性与润湿性
</p>
<div class="flex flex-wrap gap-1">
<span class="bg-purple-100 text-purple-700 px-2 py-1 rounded text-xs">表面处理</span>
<span class="bg-purple-100 text-purple-700 px-2 py-1 rounded text-xs">实验性强</span>
</div>
</div>
<div class="bg-gray-50 px-5 py-3 border-t border-gray-100 rounded-b-xl">
<div class="flex justify-between items-center">
<div class="flex items-center text-xs">
<i class="fas fa-chart-line text-purple-500 mr-1"></i>
<span class="text-gray-500">应用率: 42%</span>
</div>
<button class="text-xs text-blue-600 hover:text-blue-800">查看详情</button>
</div>
</div>
</div>
</div>
<div class="px-6 pb-4 border-t border-gray-100 pt-4">
<div class="flex items-center text-blue-600">
<span class="mr-2">其他相关方法</span>
<i class="fas fa-chevron-right text-xs"></i>
</div>
</div>
</div>
<!-- Block 3: 推荐论文列表 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<div class="p-6 border-b border-gray-200 flex items-center">
<div class="bg-orange-100 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
<i class="fas fa-book text-orange-700 text-lg"></i>
</div>
<h2 class="text-xl font-bold text-gray-800">推荐科研论文</h2>
</div>
<div class="p-6">
<!-- Paper 1 -->
<div class="pb-6 mb-6 border-b border-gray-100 last:mb-0 last:pb-0 last:border-none">
<div class="flex items-start">
<div class="mr-4 mt-1">
<span class="bg-blue-100 text-blue-700 w-8 h-8 rounded-full flex items-center justify-center">
<i class="fas fa-file-pdf"></i>
</span>
</div>
<div class="flex-1">
<h3 class="font-bold text-lg mb-1 text-gray-800">Functionalization of carbon nanotube-based composites: A review</h3>
<div class="flex flex-wrap gap-x-4 gap-y-1 mb-2 text-sm text-gray-600">
<div class="flex items-center">
<i class="fas fa-user-circle mr-1 text-gray-500"></i>
<span>Zhang H. et al.</span>
</div>
<div class="flex items-center">
<i class="fas fa-book mr-1 text-gray-500"></i>
<span>Advanced Materials, 2022</span>
</div>
<div class="flex items-center">
<i class="fas fa-eye mr-1 text-gray-500"></i>
<span>684 次阅读</span>
</div>
</div>
<p class="text-gray-700 mb-4">
本文系统综述了碳纳米管表面功能化方法的最新研究进展,阐述了各类改性手段对碳纳米管/聚合物复合材料界面相互作用及力学性能的影响机理。
</p>
<div class="flex justify-between flex-wrap gap-4">
<div class="flex flex-wrap gap-2">
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">界面工程</span>
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">表面改性</span>
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">力学性能</span>
</div>
<div>
<button class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm hover:bg-blue-700 transition">查看全文</button>
</div>
</div>
</div>
</div>
</div>
<!-- Paper 2 -->
<div class="pb-6 mb-6 border-b border-gray-100 last:mb-0 last:pb-0 last:border-none">
<div class="flex items-start">
<div class="mr-4 mt-1">
<span class="bg-green-100 text-green-700 w-8 h-8 rounded-full flex items-center justify-center">
<i class="fas fa-file-alt"></i>
</span>
</div>
<div class="flex-1">
<h3 class="font-bold text-lg mb-1 text-gray-800">Effects of plasma treatment on interfacial bonding in CNT composites</h3>
<div class="flex flex-wrap gap-x-4 gap-y-1 mb-2 text-sm text-gray-600">
<div class="flex items-center">
<i class="fas fa-user-circle mr-1 text-gray-500"></i>
<span>Lee C. et al.</span>
</div>
<div class="flex items-center">
<i class="fas fa-book mr-1 text-gray-500"></i>
<span>Composite Interfaces, 2021</span>
</div>
<div class="flex items-center">
<i class="fas fa-eye mr-1 text-gray-500"></i>
<span>452 次阅读</span>
</div>
</div>
<p class="text-gray-700 mb-4">
详细研究了等离子体处理技术在碳纳米管表面改性中的应用,分析处理后碳管表面化学组成的变化及其对复合材料界面粘结性能的影响规律。
</p>
<div class="flex justify-between flex-wrap gap-4">
<div class="flex flex-wrap gap-2">
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">等离子处理</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">界面性能</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">实验研究</span>
</div>
<div>
<button class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm hover:bg-blue-700 transition">阅读全文</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Block 4: 推荐专家 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden">
<div class="p-6 border-b border-gray-200 flex items-center">
<div class="bg-purple-100 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
<i class="fas fa-user-friends text-purple-700 text-lg"></i>
</div>
<h2 class="text-xl font-bold text-gray-800">推荐领域专家</h2>
</div>
<div class="p-6">
<div class="scrollable-cards flex gap-6 overflow-x-auto pb-4 mb-4 -mx-2 pl-2">
<!-- Expert 1 -->
<div class="flex-shrink-0 w-72 border border-gray-200 rounded-xl bg-white">
<div class="p-5">
<div class="flex items-start mb-4">
<div class="bg-blue-200 w-16 h-16 rounded-lg flex items-center justify-center text-blue-800 font-bold text-xl mr-4">
王
</div>
<div>
<h3 class="font-bold text-lg text-gray-800">王强 教授</h3>
<div class="text-sm text-gray-600 flex items-center mt-1">
<i class="fas fa-university mr-1 text-gray-500"></i>
<span>清华大学 · 材料科学与工程</span>
</div>
</div>
</div>
<div class="bg-purple-50 rounded-lg p-4 mb-4">
<p class="text-sm text-gray-700">
研究方向: 碳纳米材料界面改性、高性能复合材料设计、聚合物基底增强
</p>
</div>
<div class="flex flex-wrap gap-1 mb-4">
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded-full text-xs">界面改性</span>
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded-full text-xs">高性能复材</span>
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded-full text-xs">聚合物基</span>
</div>
<div class="flex justify-between items-center">
<button class="bg-blue-50 text-blue-700 px-4 py-2 rounded-lg text-sm hover:bg-blue-100 transition">查看成果</button>
<button class="text-blue-600 hover:text-blue-800 text-sm">展开合作</button>
</div>
</div>
</div>
<!-- Expert 2 -->
<div class="flex-shrink-0 w-72 border border-gray-200 rounded-xl bg-white">
<div class="p-5">
<div class="flex items-start mb-4">
<div class="bg-purple-200 w-16 h-16 rounded-lg flex items-center justify-center text-purple-800 font-bold text-xl mr-4">
李
</div>
<div>
<h3 class="font-bold text-lg text-gray-800">李雪 研究员</h3>
<div class="text-sm text-gray-600 flex items-center mt-1">
<i class="fas fa-university mr-1 text-gray-500"></i>
<span>中科院宁波材料所 · 纳米材料</span>
</div>
</div>
</div>
<div class="bg-purple-50 rounded-lg p-4 mb-4">
<p class="text-sm text-gray-700">
擅长: 碳纳米材料表面功能化、复合材料界面控制、增强机理研究
</p>
</div>
<div class="flex flex-wrap gap-1 mb-4">
<span class="bg-purple-100 text-purple-700 px-2 py-1 rounded-full text-xs">功能化</span>
<span class="bg-purple-100 text-purple-700 px-2 py-1 rounded-full text-xs">界面控制</span>
<span class="bg-purple-100 text-purple-700 px-2 py-1 rounded-full text-xs">增强机理</span>
</div>
<div class="flex justify-between items-center">
<button class="bg-blue-50 text-blue-700 px-4 py-2 rounded-lg text-sm hover:bg-blue-100 transition">联系专家</button>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span>4.92/5</span>
</div>
</div>
</div>
</div>
<!-- Expert 3 -->
<div class="flex-shrink-0 w-72 border border-gray-200 rounded-xl bg-white">
<div class="p-5">
<div class="flex items-start mb-4">
<div class="bg-green-200 w-16 h-16 rounded-lg flex items-center justify-center text-green-800 font-bold text-xl mr-4">
张
</div>
<div>
<h3 class="font-bold text-lg text-gray-800">张立波 教授</h3>
<div class="text-sm text-gray-600 flex items-center mt-1">
<i class="fas fa-university mr-1 text-gray-500"></i>
<span>上海交通大学 · 材料学院</span>
</div>
</div>
</div>
<div class="bg-purple-50 rounded-lg p-4 mb-4">
<p class="text-sm text-gray-700">
研究领域: 纳米复合材料先进表征、改性工艺优化、多功能复合材料开发
</p>
</div>
<div class="flex flex-wrap gap-1 mb-4">
<span class="bg-green-100 text-green-700 px-2 py-1 rounded-full text-xs">工艺优化</span>
<span class="bg-green-100 text-green-700 px-2 py-1 rounded-full text-xs">表征技术</span>
<span class="bg-green-100 text-green-700 px-2 py-1 rounded-full text-xs">多功能复材</span>
</div>
<div class="flex justify-between items-center">
<button class="bg-blue-50 text-blue-700 px-4 py-2 rounded-lg text-sm hover:bg-blue-100 transition">学术主页</button>
<button class="text-blue-600 hover:text-blue-800 text-sm">预约咨询</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-2">
<button class="text-blue-600 hover:text-blue-800 text-sm flex items-center justify-center w-full">
<span>查看更多推荐专家</span>
<i class="fas fa-angle-down ml-2 text-xs"></i>
</button>
</div>
</div>
</div>
</div>
</main>
<!-- 底部浮动助手 -->
<div class="fixed bottom-8 right-8">
<button class="floating-btn bg-blue-600 text-white rounded-full p-4 flex items-center justify-center shadow-lg">
<i class="fas fa-comment-alt text-2xl"></i>
<div class="absolute -top-1 -right-1 bg-red-500 text-white text-xs rounded-full w-6 h-6 flex items-center justify-center">?</div>
</button>
</div>
<!-- Footer -->
<footer class="bg-gray-100 py-8 mt-12">
<div class="container mx-auto px-4">
<div class="text-center text-gray-600 text-sm">
<div class="mb-4">
<span class="inline-block mx-2">关于我们</span>
<span class="inline-block mx-2">服务条款</span>
<span class="inline-block mx-2">隐私政策</span>
<span class="inline-block mx-2">联系我们</span>
</div>
<p>智研汇 · 科技知识平台 © 2023 版权所有</p>
<p class="mt-2">提供最前沿的科研知识服务,助力科技创新</p>
</div>
</div>
</footer>
<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/search3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |