Files
pengxiao a594f54cd2 update: 切换品牌至 TeaLab / SI · 空间智能与自主设计
- 全站品牌替换:DAEL / Design AI & Ecology Lab → TeaLab / SI · 空间智能与自主设计
  * 11 个 HTML 页面 title、navbar、页脚、版权统一更新
  * Logo 字母 D → T,配色与版式不变
  * js/common.js 注释 + localStorage 计数键更新
  * backend/app.py /api/health 文案更新
- website.html 内容重写
  * Hero 改为"空间智能 & 自主设计",加序言两行 + 英文 mission
  * 使命段改为研究主线(感知→理解→推理闭环)
  * 研究方向三卡:自主设计 / 深邃之形 / 人本智能(含工具栈)
- research.html 拆分
  * 原 research.html(研究管理后台)重命名为 research-manage.html
  * 新建公开 research.html:研究定位 + 完整段落 + 概念对比表 + 研究维度表
- 基础设施调整
  * 后端端口 5000 → 5001(避开本机 zotero-proxy 占用)
  * start_backend.sh 加可执行位

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-14 01:33:28 +08:00

543 lines
30 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeaLab | SI · 空间智能与自主设计</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/common.css">
<!-- 将 Lucide 脚本移至底部以确保加载顺序,或使用更稳定的 CDN -->
<style>
body {
font-family: 'Inter', 'Noto Sans SC', sans-serif;
background-color: #ffffff;
color: #1a1a1a;
overflow-x: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: -2px;
left: 0;
background-color: #000;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.fade-in-up {
animation: fadeInUp 0.8s ease-out forwards;
opacity: 0;
transform: translateY(20px);
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
/* Canvas container */
#canvas-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.6;
pointer-events: none;
}
</style>
</head>
<body class="antialiased">
<!-- Canvas Background for Hero -->
<div id="canvas-container">
<canvas id="heroCanvas"></canvas>
</div>
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white/90 backdrop-blur-sm border-b border-gray-100 transition-all duration-300" id="navbar">
<div class="max-w-7xl mx-auto px-6 lg:px-12 h-20 flex items-center justify-between">
<!-- Logo -->
<a href="website.html" class="text-xl tracking-tight font-bold flex items-center gap-2">
<div class="w-8 h-8 bg-black text-white flex items-center justify-center font-serif italic">T</div>
<span>TeaLab<span class="text-gray-400 font-light mx-2">/</span><span class="text-sm font-normal text-gray-600 hidden sm:inline">SI · 空间智能与自主设计</span></span>
</a>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="md:hidden p-2 text-gray-600">
<i data-lucide="menu"></i>
</button>
<!-- Desktop Links -->
<div class="hidden md:flex items-center space-x-6 text-sm font-medium tracking-wide text-gray-800">
<a href="#about" class="nav-link hover:text-black">关于实验室</a>
<a href="#research" class="nav-link hover:text-black">研究方向</a>
<a href="publications.html" class="nav-link hover:text-black">成果展示</a>
<a href="#team" class="nav-link hover:text-black">研究团队</a>
<a href="news.html" class="nav-link hover:text-black">新闻资讯</a>
<a href="meetings.html" id="meetings-link" class="hidden nav-link hover:text-black">组会管理</a>
<a href="research.html" class="nav-link hover:text-black">研究详情</a>
<a href="research-manage.html" id="research-link" class="hidden nav-link hover:text-black">研究管理</a>
<a href="#contact" class="nav-link hover:text-black">加入我们</a>
<!-- Search Box -->
<form id="search-form" class="relative search-box">
<input type="text" id="search-input" placeholder="搜索..."
class="px-4 py-2 text-sm border border-gray-300 rounded-full focus:outline-none focus:border-black w-40">
<button type="submit" class="absolute right-2 top-1/2 transform -translate-y-1/2 text-gray-400 hover:text-black">
<i data-lucide="search" class="w-4 h-4"></i>
</button>
<div id="search-results" class="search-results"></div>
</form>
<!-- Login Button -->
<a href="login.html" id="login-btn" class="text-xs border border-gray-300 px-4 py-2 rounded hover:bg-black hover:text-white transition-colors">登录</a>
<a href="admin.html" id="admin-btn" class="hidden text-xs border border-gray-300 px-4 py-2 rounded hover:bg-black hover:text-white transition-colors">管理</a>
<a href="#" id="logout-btn" class="hidden text-xs border border-gray-300 px-4 py-2 rounded hover:bg-black hover:text-white transition-colors">退出</a>
</div>
</div>
<!-- Mobile Menu (Hidden by default) -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-b border-gray-100 absolute w-full px-6 py-4 space-y-4 shadow-lg">
<a href="#about" class="block text-gray-800 hover:text-black">关于实验室</a>
<a href="#research" class="block text-gray-800 hover:text-black">研究方向</a>
<a href="publications.html" class="block text-gray-800 hover:text-black">成果展示</a>
<a href="#team" class="block text-gray-800 hover:text-black">研究团队</a>
<a href="news.html" class="block text-gray-800 hover:text-black">新闻资讯</a>
<a href="meetings.html" id="mobile-meetings-link" class="hidden block text-gray-800 hover:text-black">组会管理</a>
<a href="research.html" class="block text-gray-800 hover:text-black">研究详情</a>
<a href="research-manage.html" id="mobile-research-link" class="hidden block text-gray-800 hover:text-black">研究管理</a>
<a href="#contact" class="block text-gray-800 hover:text-black">加入我们</a>
<a href="login.html" class="block text-gray-800 hover:text-black">登录</a>
</div>
</nav>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center pt-20">
<div class="max-w-7xl mx-auto px-6 lg:px-12 w-full">
<div class="max-w-4xl">
<h1 class="text-5xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-[1.1] mb-8 fade-in-up text-black">
空间智能 <br>
<span class="text-gray-400 italic font-serif font-light">&</span> 自主设计.
</h1>
<p class="text-xl md:text-2xl text-gray-600 font-light leading-relaxed max-w-2xl fade-in-up delay-100">
基于空间智能的自主设计新范式 —— 理解空间之深邃,形塑智能之未来。
</p>
<p class="mt-4 text-sm text-gray-500 italic max-w-2xl fade-in-up delay-100">
Our mission is to develop design agents in complex environments to shape a humanistic and sustainable future.
</p>
<div class="mt-12 fade-in-up delay-200">
<a href="#about" class="inline-flex items-center gap-2 border-b border-black pb-1 text-sm font-bold uppercase tracking-widest hover:text-gray-600 hover:border-gray-600 transition-colors">
了解更多
<i data-lucide="arrow-down" class="w-4 h-4"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Manifesto / About Section -->
<section id="about" class="py-24 bg-black text-white">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="grid grid-cols-1 md:grid-cols-12 gap-12">
<div class="md:col-span-4">
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-4">Mission / 使命</h2>
</div>
<div class="md:col-span-8">
<p class="text-3xl md:text-4xl font-light leading-tight mb-8">
研究复杂空间环境中,空间智能如何通过感知 → 理解 → 推理的闭环实现自主设计。
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 text-gray-400 font-light">
<p>
TeaLab / SI 是一个聚焦空间智能(Spatial Intelligence)与自主设计(Autonomous Design)的跨学科研究平台。我们以复杂环境为背景——多要素耦合、多尺度交织、多主体博弈、数据异构、动态变化、规范密集——研究其中空间智能的形成机制与自主设计实现方法。
</p>
<p>
研究主线为「复杂环境中的设计智能体构建原理与方法」,涵盖生态安全格局、文化遗产保护、城市形态治理、社会空间模拟等典型场景,推动空间设计从「工具辅助」到「智能体自主」的范式转型。
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Research Domains -->
<section id="research" class="py-24 bg-white">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="flex flex-col md:flex-row justify-between items-start md:items-end mb-16">
<div>
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-2">Research Areas</h2>
<h3 class="text-3xl font-bold">研究方向</h3>
</div>
<div class="mt-4 md:mt-0">
<a href="research.html" class="text-sm underline underline-offset-4 hover:text-gray-600">查看研究详情 -></a>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Card 1 -->
<div class="group cursor-pointer">
<div class="aspect-[4/3] bg-gray-100 mb-6 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50 group-hover:scale-105 transition-transform duration-700"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="cpu" class="w-24 h-24"></i>
</div>
</div>
<h4 class="text-xl font-bold mb-2 group-hover:text-gray-600 transition-colors">Autonomous Design<br>自主设计</h4>
<p class="text-gray-500 text-sm leading-relaxed">
基于智能体的算法迭代、拓扑优化与自动方案生成,研究分析—生成—审查多角色协同的设计决策涌现机制。常用工具:Python (PyTorch/TensorFlow)、Rhino/Grasshopper、Unity (ML-Agents)。
</p>
</div>
<!-- Card 2 -->
<div class="group cursor-pointer">
<div class="aspect-[4/3] bg-gray-100 mb-6 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50 group-hover:scale-105 transition-transform duration-700"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="box" class="w-24 h-24"></i>
</div>
</div>
<h4 class="text-xl font-bold mb-2 group-hover:text-gray-600 transition-colors">Deep Forms<br>深邃之形</h4>
<p class="text-gray-500 text-sm leading-relaxed">
过程化建模与拓扑优化驱动的形态生成,探索空间几何的深层结构与最优形式。常用工具:Houdini、Blender (几何节点)、Topos。
</p>
</div>
<!-- Card 3 -->
<div class="group cursor-pointer">
<div class="aspect-[4/3] bg-gray-100 mb-6 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50 group-hover:scale-105 transition-transform duration-700"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="users" class="w-24 h-24"></i>
</div>
</div>
<h4 class="text-xl font-bold mb-2 group-hover:text-gray-600 transition-colors">Humanistic Intelligence<br>人本智能</h4>
<p class="text-gray-500 text-sm leading-relaxed">
以人为本的设计价值对齐,通过人在回路的质量保障实现设计意图的收敛。常用工具:OpenPose、VR/AR (Unreal Engine) 等感知与交互技术。
</p>
</div>
</div>
</div>
</section>
<!-- News Preview Section -->
<section id="news-preview" class="py-24 bg-white">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="flex flex-col md:flex-row justify-between items-start md:items-end mb-16">
<div>
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-2">Latest News</h2>
<h3 class="text-3xl font-bold">最新资讯</h3>
</div>
<div class="mt-4 md:mt-0">
<a href="news.html" class="text-sm underline underline-offset-4 hover:text-gray-600">查看全部 -></a>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- News Card 1 -->
<a href="news.html" class="news-card group">
<div class="aspect-[4/3] bg-gray-100 mb-4 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="newspaper" class="w-16 h-16"></i>
</div>
</div>
<div class="text-xs text-gray-500 mb-2">2024.12.15</div>
<h4 class="text-lg font-bold mb-2 group-hover:text-gray-600 transition-colors">实验室新项目启动:AI驱动的城市生态规划</h4>
<p class="text-gray-500 text-sm leading-relaxed">我们启动了新的研究项目,利用生成式AI技术优化城市生态系统的规划与设计...</p>
</a>
<!-- News Card 2 -->
<a href="news.html" class="news-card group">
<div class="aspect-[4/3] bg-gray-100 mb-4 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="award" class="w-16 h-16"></i>
</div>
</div>
<div class="text-xs text-gray-500 mb-2">2024.11.20</div>
<h4 class="text-lg font-bold mb-2 group-hover:text-gray-600 transition-colors">研究成果在顶级期刊发表</h4>
<p class="text-gray-500 text-sm leading-relaxed">实验室关于生物启发式智能算法的研究成果在Nature子刊发表...</p>
</a>
<!-- News Card 3 -->
<a href="news.html" class="news-card group">
<div class="aspect-[4/3] bg-gray-100 mb-4 overflow-hidden relative">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-200 to-gray-50"></div>
<div class="absolute inset-0 flex items-center justify-center opacity-20">
<i data-lucide="users" class="w-16 h-16"></i>
</div>
</div>
<div class="text-xs text-gray-500 mb-2">2024.10.10</div>
<h4 class="text-lg font-bold mb-2 group-hover:text-gray-600 transition-colors">欢迎新成员加入实验室</h4>
<p class="text-gray-500 text-sm leading-relaxed">我们很高兴地宣布,三位新的博士生和两位研究助理加入了我们的团队...</p>
</a>
</div>
</div>
</section>
<!-- Publications Preview Section -->
<section id="publications-preview" class="py-24 bg-gray-50">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="flex flex-col md:flex-row justify-between items-start md:items-end mb-16">
<div>
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-2">Publications</h2>
<h3 class="text-3xl font-bold">成果展示</h3>
</div>
<div class="mt-4 md:mt-0">
<a href="publications.html" class="text-sm underline underline-offset-4 hover:text-gray-600">查看全部 -></a>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<a href="publications.html" class="group">
<div class="border border-gray-200 p-6 hover:border-black transition-colors">
<i data-lucide="book" class="w-8 h-8 mb-4 text-gray-400 group-hover:text-black transition-colors"></i>
<h4 class="font-bold mb-2">专著教材</h4>
<p class="text-sm text-gray-500">查看实验室出版的专著和教材</p>
</div>
</a>
<a href="publications.html" class="group">
<div class="border border-gray-200 p-6 hover:border-black transition-colors">
<i data-lucide="file-text" class="w-8 h-8 mb-4 text-gray-400 group-hover:text-black transition-colors"></i>
<h4 class="font-bold mb-2">文章目录</h4>
<p class="text-sm text-gray-500">学术论文和研究文章</p>
</div>
</a>
<a href="publications.html" class="group">
<div class="border border-gray-200 p-6 hover:border-black transition-colors">
<i data-lucide="code" class="w-8 h-8 mb-4 text-gray-400 group-hover:text-black transition-colors"></i>
<h4 class="font-bold mb-2">软件开发</h4>
<p class="text-sm text-gray-500">开源软件和工具</p>
</div>
</a>
<a href="publications.html" class="group">
<div class="border border-gray-200 p-6 hover:border-black transition-colors">
<i data-lucide="graduation-cap" class="w-8 h-8 mb-4 text-gray-400 group-hover:text-black transition-colors"></i>
<h4 class="font-bold mb-2">学位论文</h4>
<p class="text-sm text-gray-500">博士和硕士学位论文</p>
</div>
</a>
</div>
</div>
</section>
<!-- Data/Visual Break -->
<section class="py-24 bg-black text-white">
<div class="max-w-7xl mx-auto px-6 lg:px-12 text-center">
<p class="font-serif italic text-2xl md:text-3xl text-gray-400 mb-8">
"Data is the soil, Algorithms are the seeds, Design is the fruit."
</p>
<div class="flex justify-center gap-12 text-center">
<div>
<span class="block text-4xl md:text-5xl font-bold text-white mb-2 stats-counter">20+</span>
<span class="text-xs uppercase tracking-widest text-gray-500">Projects</span>
</div>
<div>
<span class="block text-4xl md:text-5xl font-bold text-white mb-2 stats-counter">15</span>
<span class="text-xs uppercase tracking-widest text-gray-500">Partners</span>
</div>
<div>
<span class="block text-4xl md:text-5xl font-bold text-white mb-2 stats-counter">50+</span>
<span class="text-xs uppercase tracking-widest text-gray-500">Publications</span>
</div>
</div>
</div>
</section>
<!-- Protected Content Section (Login Required) -->
<section id="protected" class="py-24 bg-gray-50">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="mb-12">
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-2">Internal Resources</h2>
<h3 class="text-3xl font-bold">内部资源</h3>
<p class="text-gray-600 mt-4">登录后查看实验室内部资料和详细数据</p>
</div>
<!-- Protected Articles -->
<div id="protected-articles" class="hidden mb-12">
<h4 class="text-lg font-bold mb-6">内部文章</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Content will be loaded dynamically -->
</div>
</div>
<!-- Protected Resources -->
<div id="protected-resources" class="hidden mb-12">
<h4 class="text-lg font-bold mb-6">内部资源</h4>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Content will be loaded dynamically -->
</div>
</div>
<!-- Protected Stats -->
<div id="protected-stats" class="protected-content">
<h4 class="text-lg font-bold mb-6">详细统计</h4>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="text-center">
<div class="text-3xl font-bold mb-2">--</div>
<div class="text-sm text-gray-500">总文章数</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold mb-2">--</div>
<div class="text-sm text-gray-500">总资源数</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold mb-2">--</div>
<div class="text-sm text-gray-500">团队成员</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold mb-2">--</div>
<div class="text-sm text-gray-500">总下载量</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-24 bg-white">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="grid grid-cols-1 md:grid-cols-12 gap-12">
<div class="md:col-span-4">
<h2 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-4">Team / 团队</h2>
<p class="text-gray-600 mb-8 text-sm">
我们是一个聚焦空间智能与自主设计的跨学科团队,背景涵盖人工智能、建筑学、城市规划、人机交互与设计计算。
</p>
<a href="team.html" class="inline-block border border-gray-300 px-6 py-3 text-sm hover:bg-black hover:text-white transition-colors">
查看全体成员名单
</a>
</div>
<div class="md:col-span-8">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-x-8 gap-y-12">
<!-- PI -->
<div>
<div class="w-full h-px bg-gray-200 mb-4"></div>
<h4 class="text-lg font-bold">Dr. Lin Chen</h4>
<p class="text-gray-500 text-sm mb-2">Principal Investigator / 实验室主任</p>
<p class="text-gray-400 text-xs leading-relaxed">
博士毕业于MIT Media Lab,专注于计算设计与人机交互领域的研究。
</p>
</div>
<!-- Member -->
<div>
<div class="w-full h-px bg-gray-200 mb-4"></div>
<h4 class="text-lg font-bold">Sarah Wu</h4>
<p class="text-gray-500 text-sm mb-2">Lead Ecologist / 生态学顾问</p>
<p class="text-gray-400 text-xs leading-relaxed">
城市生态学专家,研究重点为城市微气候与生物多样性修复。
</p>
</div>
<!-- Member -->
<div>
<div class="w-full h-px bg-gray-200 mb-4"></div>
<h4 class="text-lg font-bold">James Zhao</h4>
<p class="text-gray-500 text-sm mb-2">AI Researcher / 算法工程师</p>
<p class="text-gray-400 text-xs leading-relaxed">
专攻深度强化学习在复杂系统模拟中的应用。
</p>
</div>
<!-- Member -->
<div>
<div class="w-full h-px bg-gray-200 mb-4"></div>
<h4 class="text-lg font-bold">Yu Zhang</h4>
<p class="text-gray-500 text-sm mb-2">Design Lead / 设计主创</p>
<p class="text-gray-400 text-xs leading-relaxed">
探索参数化设计与数字建造的结合。
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contact" class="bg-black text-white py-16 border-t border-gray-800">
<div class="max-w-7xl mx-auto px-6 lg:px-12">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-16">
<div>
<h5 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-6">Contact</h5>
<p class="text-sm text-gray-400 leading-loose">
TeaLab · 空间智能与自主设计<br>
SI @ TeaLab / Spatial Intelligence<br>
<a href="mailto:hello@tealab.top" class="text-white hover:underline">hello@tealab.top</a>
</p>
</div>
<div>
<h5 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-6">Social</h5>
<div class="flex flex-col space-y-2 text-sm text-gray-400">
<a href="#" class="hover:text-white transition-colors">WeChat / 微信公众号</a>
<a href="#" class="hover:text-white transition-colors">Instagram</a>
<a href="#" class="hover:text-white transition-colors">Twitter / X</a>
<a href="#" class="hover:text-white transition-colors">GitHub</a>
</div>
</div>
<div>
<h5 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-6">Resources</h5>
<div class="flex flex-col space-y-2 text-sm text-gray-400">
<a href="resources.html" class="hover:text-white transition-colors">资源下载</a>
<a href="academic.html" class="hover:text-white transition-colors">学术资料</a>
<a href="team.html" class="hover:text-white transition-colors">完整团队</a>
</div>
</div>
<div>
<h5 class="text-sm font-bold uppercase tracking-widest text-gray-500 mb-6">Join Us</h5>
<p class="text-sm text-gray-400 mb-4">
我们长期招收博士后、博士生及研究助理。欢迎具有跨学科背景的申请者。
</p>
<a href="#" class="text-white text-sm border-b border-white hover:text-gray-300 hover:border-gray-300 pb-0.5">申请职位</a>
</div>
</div>
<div class="flex flex-col md:flex-row justify-between items-center pt-8 border-t border-gray-800 text-xs text-gray-600">
<div>
<p>&copy; 2024 TeaLab · 空间智能与自主设计. All Rights Reserved.</p>
<p class="mt-2">页面访问数: <span id="visit-counter" class="font-bold">0</span></p>
</div>
<div class="flex gap-4 mt-4 md:mt-0">
<a href="#" class="hover:text-gray-400">Privacy Policy</a>
<a href="#" class="hover:text-gray-400">Terms of Use</a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://unpkg.com/lucide@latest"></script>
<script src="js/api.js"></script>
<script src="js/common.js"></script>
<script src="js/search.js"></script>
<script src="js/auth.js"></script>
</body>
</html>