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.

206 lines
6.1 KiB

2 weeks ago
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2 weeks ago
<title>【东师理想】教学大模型</title>
1 week ago
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
2 weeks ago
<style>
1 week ago
:root {
--primary-color: #4361ee;
--secondary-color: #3a0ca3;
--accent-color: #4cc9f0;
--light-color: #f8f9fa;
--dark-color: #212529;
}
* {
box-sizing: border-box;
2 weeks ago
margin: 0;
padding: 0;
1 week ago
}
body {
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: var(--dark-color);
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
2 weeks ago
}
.container {
1 week ago
max-width: 1200px;
2 weeks ago
margin: 0 auto;
1 week ago
padding: 2rem;
2 weeks ago
}
1 week ago
header {
2 weeks ago
text-align: center;
1 week ago
margin-bottom: 3rem;
padding: 2rem 0;
background: rgba(255, 255, 255, 0.9);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
2 weeks ago
}
1 week ago
h1 {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 1rem;
background: linear-gradient(to right, #4361ee, #3a0ca3);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
2 weeks ago
}
1 week ago
.subtitle {
color: #6c757d;
font-size: 1.1rem;
margin-bottom: 1.5rem;
2 weeks ago
}
1 week ago
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
2 weeks ago
}
1 week ago
.card {
background: rgba(255, 255, 255, 0.9);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
text-align: center;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
2 weeks ago
}
1 week ago
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
2 weeks ago
}
1 week ago
.card i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
2 weeks ago
}
1 week ago
.card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--secondary-color);
2 weeks ago
}
1 week ago
.card p {
color: #6c757d;
margin-bottom: 1.5rem;
2 weeks ago
}
1 week ago
.btn {
display: inline-block;
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
color: white;
padding: 0.8rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
2 weeks ago
cursor: pointer;
}
1 week ago
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
2 weeks ago
}
1 week ago
.btn i {
margin-left: 0.5rem;
vertical-align: middle;
margin-top: 8px;
}
1 week ago
footer {
text-align: center;
margin-top: 3rem;
padding: 1.5rem;
color: #6c757d;
font-size: 0.9rem;
2 weeks ago
}
1 week ago
@media (max-width: 768px) {
.container {
padding: 1rem;
}
2 weeks ago
1 week ago
h1 {
font-size: 2rem;
}
2 weeks ago
1 week ago
.card-container {
grid-template-columns: 1fr;
}
2 weeks ago
}
</style>
</head>
<body>
1 week ago
<div class="container">
<header>
<h1>【东师理想】教育大模型</h1>
1 week ago
<p class="subtitle">智慧教育解决方案,助力教学创新</p>
1 week ago
</header>
<div class="card-container">
<div class="card">
<i class="fas fa-book"></i>
<h3>小学数学</h3>
1 week ago
<p>探索小学数学垂直模型示例</p>
1 week ago
<a href="Math.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
1 week ago
</div>
1 week ago
<div class="card">
<i class="fas fa-user-graduate"></i>
<h3>苏轼专题</h3>
<p>宋代文学家苏轼专题研究</p>
<a href="SuShi.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
</div>
<div class="card">
<i class="fas fa-project-diagram"></i>
<h3>少年读史记</h3>
<p>关系图谱应用示例</p>
<a href="ShiJi.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
</div>
<div class="card">
<i class="fas fa-globe"></i>
<h3>长春教育资讯</h3>
<p>网络爬虫采集的教育信息库</p>
<a href="ChangChun.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
</div>
<div class="card">
<i class="fas fa-flask"></i>
<h3>化学专题</h3>
<p>化学知识专题库</p>
<a href="Chemistry.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
</div>
<div class="card">
<i class="fas fa-sitemap"></i>
<h3>知识图谱</h3>
<p>小学数学知识图谱(开发中)</p>
<a href="tree.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
</div>
1 week ago
</div>
1 week ago
<footer>
1 week ago
<p>© 2025 东师理想教育大模型 | 智慧教育平台</p>
1 week ago
</footer>
</div>
2 weeks ago
</body>
2 weeks ago
</html>