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.
201 lines
5.9 KiB
201 lines
5.9 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>【东师理想】教学大模型</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--primary-color: #4361ee;
|
|
--secondary-color: #3a0ca3;
|
|
--accent-color: #4cc9f0;
|
|
--light-color: #f8f9fa;
|
|
--dark-color: #212529;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
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);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #6c757d;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.card-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.card i {
|
|
font-size: 2.5rem;
|
|
color: var(--primary-color);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.card h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
.card p {
|
|
color: #6c757d;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.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;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 3rem;
|
|
padding: 1.5rem;
|
|
color: #6c757d;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.card-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>【东师理想】教育大模型</h1>
|
|
<p class="subtitle">智能教育解决方案,助力教学创新</p>
|
|
</header>
|
|
|
|
<div class="card-container">
|
|
<div class="card">
|
|
<i class="fas fa-book"></i>
|
|
<h3>小学数学</h3>
|
|
<p>探索小学数学知识库示例</p>
|
|
<a href="Math.html" class="btn" target="_blank">进入 <i class="fas fa-arrow-right"></i></a>
|
|
</div>
|
|
|
|
<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>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2023 东师理想教育大模型 | 智能教育平台</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |