732 lines
22 KiB
HTML
732 lines
22 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="zh-CN">
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
<title>东师理想AI教育云平台 - 让AI成为教育新基建</title>
|
|||
|
<!-- 引入基础CSS框架 -->
|
|||
|
<link rel="stylesheet" href="https://gcore.jsdelivr.net/npm/layui@2.9.12/dist/css/layui.min.css">
|
|||
|
<script src="https://gcore.jsdelivr.net/npm/layui@2.9.12/dist/layui.min.js"></script>
|
|||
|
<!-- 引入Font Awesome -->
|
|||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|||
|
<!-- 引入Chart.js -->
|
|||
|
<script src="https://gcore.jsdelivr.net/npm/chart.js@4.4.8/dist/chart.umd.min.js"></script>
|
|||
|
<!-- 自定义样式 -->
|
|||
|
<style>
|
|||
|
:root {
|
|||
|
--primary-blue: #0066FF;
|
|||
|
--secondary-green: #00C389;
|
|||
|
--text-dark: #333333;
|
|||
|
--text-light: #666666;
|
|||
|
--bg-light: #F5F7FA;
|
|||
|
--white: #FFFFFF;
|
|||
|
--shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
|
|||
|
}
|
|||
|
|
|||
|
* {
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
box-sizing: border-box;
|
|||
|
}
|
|||
|
|
|||
|
body {
|
|||
|
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
|
|||
|
color: var(--text-dark);
|
|||
|
background-color: var(--white);
|
|||
|
line-height: 1.6;
|
|||
|
}
|
|||
|
|
|||
|
/* 顶部导航 */
|
|||
|
.header {
|
|||
|
position: fixed;
|
|||
|
top: 0;
|
|||
|
left: 0;
|
|||
|
right: 0;
|
|||
|
height: 70px;
|
|||
|
background-color: rgba(255, 255, 255, 0.95);
|
|||
|
backdrop-filter: blur(10px);
|
|||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
|||
|
z-index: 1000;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
padding: 0 40px;
|
|||
|
}
|
|||
|
|
|||
|
.logo {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
font-size: 24px;
|
|||
|
font-weight: bold;
|
|||
|
color: var(--primary-blue);
|
|||
|
}
|
|||
|
|
|||
|
.logo i {
|
|||
|
margin-right: 10px;
|
|||
|
font-size: 28px;
|
|||
|
}
|
|||
|
|
|||
|
.nav-menu {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
gap: 30px;
|
|||
|
}
|
|||
|
|
|||
|
.nav-item {
|
|||
|
position: relative;
|
|||
|
font-size: 16px;
|
|||
|
color: var(--text-dark);
|
|||
|
cursor: pointer;
|
|||
|
transition: all 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.nav-item:hover {
|
|||
|
color: var(--primary-blue);
|
|||
|
}
|
|||
|
|
|||
|
.nav-item::after {
|
|||
|
content: '';
|
|||
|
position: absolute;
|
|||
|
bottom: -5px;
|
|||
|
left: 0;
|
|||
|
width: 0;
|
|||
|
height: 2px;
|
|||
|
background-color: var(--primary-blue);
|
|||
|
transition: width 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.nav-item:hover::after {
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
|
|||
|
.header-actions {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
gap: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.btn {
|
|||
|
padding: 8px 20px;
|
|||
|
border-radius: 25px;
|
|||
|
font-size: 14px;
|
|||
|
font-weight: 500;
|
|||
|
cursor: pointer;
|
|||
|
transition: all 0.3s ease;
|
|||
|
border: none;
|
|||
|
outline: none;
|
|||
|
}
|
|||
|
|
|||
|
.btn-primary {
|
|||
|
background-color: var(--primary-blue);
|
|||
|
color: var(--white);
|
|||
|
}
|
|||
|
|
|||
|
.btn-primary:hover {
|
|||
|
background-color: #0052CC;
|
|||
|
transform: translateY(-2px);
|
|||
|
box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
|
|||
|
}
|
|||
|
|
|||
|
.btn-outline {
|
|||
|
background-color: transparent;
|
|||
|
border: 1px solid var(--primary-blue);
|
|||
|
color: var(--primary-blue);
|
|||
|
}
|
|||
|
|
|||
|
.btn-outline:hover {
|
|||
|
background-color: var(--primary-blue);
|
|||
|
color: var(--white);
|
|||
|
transform: translateY(-2px);
|
|||
|
}
|
|||
|
|
|||
|
/* Hero区域 */
|
|||
|
.hero {
|
|||
|
margin-top: 70px;
|
|||
|
height: calc(100vh - 70px);
|
|||
|
background: linear-gradient(135deg, #f5f7fa 0%, #e9f1fb 100%);
|
|||
|
position: relative;
|
|||
|
overflow: hidden;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
padding: 0 80px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-content {
|
|||
|
max-width: 500px;
|
|||
|
z-index: 10;
|
|||
|
}
|
|||
|
|
|||
|
.hero-title {
|
|||
|
font-size: 48px;
|
|||
|
font-weight: bold;
|
|||
|
color: var(--primary-blue);
|
|||
|
line-height: 1.2;
|
|||
|
margin-bottom: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-subtitle {
|
|||
|
font-size: 24px;
|
|||
|
color: var(--text-light);
|
|||
|
margin-bottom: 40px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-cta {
|
|||
|
display: flex;
|
|||
|
gap: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-image {
|
|||
|
position: relative;
|
|||
|
width: 50%;
|
|||
|
height: 100%;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
|
|||
|
.hero-image img {
|
|||
|
max-width: 100%;
|
|||
|
max-height: 80%;
|
|||
|
border-radius: 20px;
|
|||
|
box-shadow: var(--shadow);
|
|||
|
animation: float 6s ease-in-out infinite;
|
|||
|
}
|
|||
|
|
|||
|
@keyframes float {
|
|||
|
0% { transform: translateY(0px); }
|
|||
|
50% { transform: translateY(-20px); }
|
|||
|
100% { transform: translateY(0px); }
|
|||
|
}
|
|||
|
|
|||
|
/* 波浪背景 - 使用CSS替代图片 */
|
|||
|
.wave {
|
|||
|
position: absolute;
|
|||
|
bottom: 0;
|
|||
|
left: 0;
|
|||
|
width: 100%;
|
|||
|
height: 100px;
|
|||
|
background: linear-gradient(135deg, rgba(0,102,255,0.1) 0%, rgba(0,195,137,0.1) 100%);
|
|||
|
animation: wave-animation 15s linear infinite;
|
|||
|
border-radius: 50% 50% 0 0;
|
|||
|
}
|
|||
|
|
|||
|
@keyframes wave-animation {
|
|||
|
0% { transform: translateX(0); }
|
|||
|
100% { transform: translateX(-1000px); }
|
|||
|
}
|
|||
|
|
|||
|
/* 核心功能区 */
|
|||
|
.features {
|
|||
|
padding: 80px 40px;
|
|||
|
background-color: var(--white);
|
|||
|
}
|
|||
|
|
|||
|
.section-title {
|
|||
|
text-align: center;
|
|||
|
font-size: 36px;
|
|||
|
font-weight: bold;
|
|||
|
color: var(--primary-blue);
|
|||
|
margin-bottom: 60px;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
|
|||
|
.section-title::after {
|
|||
|
content: '';
|
|||
|
position: absolute;
|
|||
|
bottom: -15px;
|
|||
|
left: 50%;
|
|||
|
transform: translateX(-50%);
|
|||
|
width: 80px;
|
|||
|
height: 4px;
|
|||
|
background-color: var(--secondary-green);
|
|||
|
border-radius: 2px;
|
|||
|
}
|
|||
|
|
|||
|
.features-grid {
|
|||
|
display: grid;
|
|||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|||
|
gap: 40px;
|
|||
|
max-width: 1400px;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
|
|||
|
.feature-card {
|
|||
|
background-color: var(--white);
|
|||
|
border-radius: 15px;
|
|||
|
padding: 30px;
|
|||
|
box-shadow: var(--shadow);
|
|||
|
transition: all 0.3s ease;
|
|||
|
position: relative;
|
|||
|
overflow: hidden;
|
|||
|
}
|
|||
|
|
|||
|
.feature-card:hover {
|
|||
|
transform: translateY(-10px);
|
|||
|
box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
|
|||
|
}
|
|||
|
|
|||
|
.feature-card::before {
|
|||
|
content: '';
|
|||
|
position: absolute;
|
|||
|
top: 0;
|
|||
|
left: 0;
|
|||
|
width: 5px;
|
|||
|
height: 100%;
|
|||
|
background-color: var(--primary-blue);
|
|||
|
}
|
|||
|
|
|||
|
.feature-icon {
|
|||
|
font-size: 48px;
|
|||
|
color: var(--primary-blue);
|
|||
|
margin-bottom: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.feature-title {
|
|||
|
font-size: 24px;
|
|||
|
font-weight: bold;
|
|||
|
margin-bottom: 15px;
|
|||
|
color: var(--text-dark);
|
|||
|
}
|
|||
|
|
|||
|
.feature-description {
|
|||
|
font-size: 16px;
|
|||
|
color: var(--text-light);
|
|||
|
line-height: 1.6;
|
|||
|
}
|
|||
|
|
|||
|
/* 联盟与学科工坊 */
|
|||
|
.alliance {
|
|||
|
padding: 80px 40px;
|
|||
|
background-color: var(--bg-light);
|
|||
|
}
|
|||
|
|
|||
|
.alliance-container {
|
|||
|
display: flex;
|
|||
|
flex-wrap: wrap;
|
|||
|
gap: 40px;
|
|||
|
max-width: 1400px;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
|
|||
|
.alliance-banner {
|
|||
|
flex: 1;
|
|||
|
min-width: 400px;
|
|||
|
background-color: var(--white);
|
|||
|
border-radius: 15px;
|
|||
|
padding: 40px;
|
|||
|
box-shadow: var(--shadow);
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
|
|||
|
.workshops {
|
|||
|
flex: 1;
|
|||
|
min-width: 400px;
|
|||
|
}
|
|||
|
|
|||
|
.workshop-tabs {
|
|||
|
background-color: var(--white);
|
|||
|
border-radius: 15px;
|
|||
|
overflow: hidden;
|
|||
|
box-shadow: var(--shadow);
|
|||
|
}
|
|||
|
|
|||
|
.tab-header {
|
|||
|
display: flex;
|
|||
|
background-color: var(--bg-light);
|
|||
|
}
|
|||
|
|
|||
|
.tab-item {
|
|||
|
flex: 1;
|
|||
|
padding: 15px 30px;
|
|||
|
text-align: center;
|
|||
|
font-weight: 500;
|
|||
|
cursor: pointer;
|
|||
|
transition: all 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.tab-item.active {
|
|||
|
background-color: var(--primary-blue);
|
|||
|
color: var(--white);
|
|||
|
}
|
|||
|
|
|||
|
.tab-content {
|
|||
|
padding: 30px;
|
|||
|
}
|
|||
|
|
|||
|
/* 数据统计区 */
|
|||
|
.stats {
|
|||
|
padding: 80px 40px;
|
|||
|
background-color: var(--primary-blue);
|
|||
|
color: var(--white);
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
|
|||
|
.stats-grid {
|
|||
|
display: grid;
|
|||
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|||
|
gap: 40px;
|
|||
|
max-width: 1400px;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
|
|||
|
.stat-item {
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
|
|||
|
.stat-number {
|
|||
|
font-size: 48px;
|
|||
|
font-weight: bold;
|
|||
|
margin-bottom: 10px;
|
|||
|
animation: countUp 2s ease-out forwards;
|
|||
|
}
|
|||
|
|
|||
|
.stat-label {
|
|||
|
font-size: 16px;
|
|||
|
opacity: 0.9;
|
|||
|
}
|
|||
|
|
|||
|
@keyframes countUp {
|
|||
|
from { opacity: 0; transform: translateY(20px); }
|
|||
|
to { opacity: 1; transform: translateY(0); }
|
|||
|
}
|
|||
|
|
|||
|
/* 页脚 */
|
|||
|
.footer {
|
|||
|
background-color: var(--text-dark);
|
|||
|
color: var(--white);
|
|||
|
padding: 60px 40px 20px;
|
|||
|
}
|
|||
|
|
|||
|
.footer-container {
|
|||
|
display: flex;
|
|||
|
flex-wrap: wrap;
|
|||
|
gap: 40px;
|
|||
|
max-width: 1400px;
|
|||
|
margin: 0 auto 40px;
|
|||
|
}
|
|||
|
|
|||
|
.footer-column {
|
|||
|
flex: 1;
|
|||
|
min-width: 200px;
|
|||
|
}
|
|||
|
|
|||
|
.footer-logo {
|
|||
|
font-size: 24px;
|
|||
|
font-weight: bold;
|
|||
|
margin-bottom: 20px;
|
|||
|
color: var(--white);
|
|||
|
}
|
|||
|
|
|||
|
.footer-description {
|
|||
|
font-size: 14px;
|
|||
|
opacity: 0.8;
|
|||
|
margin-bottom: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.footer-title {
|
|||
|
font-size: 18px;
|
|||
|
font-weight: bold;
|
|||
|
margin-bottom: 20px;
|
|||
|
color: var(--white);
|
|||
|
}
|
|||
|
|
|||
|
.footer-links {
|
|||
|
list-style: none;
|
|||
|
}
|
|||
|
|
|||
|
.footer-links li {
|
|||
|
margin-bottom: 10px;
|
|||
|
}
|
|||
|
|
|||
|
.footer-links a {
|
|||
|
color: var(--white);
|
|||
|
opacity: 0.8;
|
|||
|
text-decoration: none;
|
|||
|
transition: opacity 0.3s ease;
|
|||
|
}
|
|||
|
|
|||
|
.footer-links a:hover {
|
|||
|
opacity: 1;
|
|||
|
}
|
|||
|
|
|||
|
.footer-bottom {
|
|||
|
text-align: center;
|
|||
|
padding-top: 20px;
|
|||
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|||
|
font-size: 14px;
|
|||
|
opacity: 0.7;
|
|||
|
}
|
|||
|
|
|||
|
/* 响应式设计 */
|
|||
|
@media (max-width: 1200px) {
|
|||
|
.hero {
|
|||
|
padding: 0 40px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-title {
|
|||
|
font-size: 36px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-subtitle {
|
|||
|
font-size: 20px;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
@media (max-width: 992px) {
|
|||
|
.header {
|
|||
|
padding: 0 20px;
|
|||
|
}
|
|||
|
|
|||
|
.nav-menu {
|
|||
|
display: none;
|
|||
|
}
|
|||
|
|
|||
|
.hero {
|
|||
|
flex-direction: column;
|
|||
|
text-align: center;
|
|||
|
padding: 40px 20px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-content {
|
|||
|
max-width: 100%;
|
|||
|
margin-bottom: 40px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-image {
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
|
|||
|
.hero-cta {
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
@media (max-width: 768px) {
|
|||
|
.section-title {
|
|||
|
font-size: 28px;
|
|||
|
}
|
|||
|
|
|||
|
.features,
|
|||
|
.alliance,
|
|||
|
.stats {
|
|||
|
padding: 60px 20px;
|
|||
|
}
|
|||
|
|
|||
|
.alliance-container {
|
|||
|
flex-direction: column;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
@media (max-width: 576px) {
|
|||
|
.header {
|
|||
|
height: 60px;
|
|||
|
}
|
|||
|
|
|||
|
.hero {
|
|||
|
margin-top: 60px;
|
|||
|
height: auto;
|
|||
|
min-height: calc(100vh - 60px);
|
|||
|
}
|
|||
|
|
|||
|
.hero-title {
|
|||
|
font-size: 28px;
|
|||
|
}
|
|||
|
|
|||
|
.hero-subtitle {
|
|||
|
font-size: 18px;
|
|||
|
}
|
|||
|
|
|||
|
.btn {
|
|||
|
padding: 6px 16px;
|
|||
|
font-size: 12px;
|
|||
|
}
|
|||
|
|
|||
|
.feature-card {
|
|||
|
padding: 20px;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<!-- 顶部导航 -->
|
|||
|
<header class="header">
|
|||
|
<div class="logo">
|
|||
|
<i class="fas fa-graduation-cap"></i>
|
|||
|
<span>东师理想</span>
|
|||
|
</div>
|
|||
|
<nav class="nav-menu">
|
|||
|
<div class="nav-item">首页</div>
|
|||
|
<div class="nav-item">AI资源工坊</div>
|
|||
|
<div class="nav-item">名师云课</div>
|
|||
|
<div class="nav-item">学情中心</div>
|
|||
|
<div class="nav-item">AI教育创新联盟</div>
|
|||
|
</nav>
|
|||
|
<div class="header-actions">
|
|||
|
<button class="btn btn-outline">登录</button>
|
|||
|
<button class="btn btn-primary">注册</button>
|
|||
|
</div>
|
|||
|
</header>
|
|||
|
|
|||
|
<!-- Hero区域 -->
|
|||
|
<section class="hero">
|
|||
|
<div class="hero-content">
|
|||
|
<h1 class="hero-title">让AI成为教育新基建</h1>
|
|||
|
<p class="hero-subtitle">资源共建 · 名师云课 · AI学伴 · 精准学情</p>
|
|||
|
<div class="hero-cta">
|
|||
|
<button class="btn btn-primary">立即体验</button>
|
|||
|
<button class="btn btn-outline">教师入驻</button>
|
|||
|
<button class="btn btn-outline">合作咨询</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="hero-image">
|
|||
|
<!-- 将无法访问的Imgur图片替换为picsum.photos的占位图 -->
|
|||
|
<img src="https://picsum.photos/id/20/800/600" alt="东师理想AI教育云平台">
|
|||
|
</div>
|
|||
|
<div class="wave"></div>
|
|||
|
</section>
|
|||
|
|
|||
|
<!-- 核心功能区 -->
|
|||
|
<section class="features">
|
|||
|
<h2 class="section-title">四大核心场景</h2>
|
|||
|
<div class="features-grid">
|
|||
|
<div class="feature-card">
|
|||
|
<div class="feature-icon">
|
|||
|
<i class="fas fa-tools"></i>
|
|||
|
</div>
|
|||
|
<h3 class="feature-title">AI资源工坊</h3>
|
|||
|
<p class="feature-description">一键生成教案、课件、习题;支持共建共享;展示实时热度榜,满足教师多样化教学需求。</p>
|
|||
|
</div>
|
|||
|
<div class="feature-card">
|
|||
|
<div class="feature-icon">
|
|||
|
<i class="fas fa-chalkboard-teacher"></i>
|
|||
|
</div>
|
|||
|
<h3 class="feature-title">名师云课</h3>
|
|||
|
<p class="feature-description">最新一期教育局精品课+AI学伴入口;倒计时条提醒直播,让优质教育资源触手可及。</p>
|
|||
|
</div>
|
|||
|
<div class="feature-card">
|
|||
|
<div class="feature-icon">
|
|||
|
<i class="fas fa-clipboard-check"></i>
|
|||
|
</div>
|
|||
|
<h3 class="feature-title">AI作业与阅卷</h3>
|
|||
|
<p class="feature-description">教师端一键批改,学生端错题AI讲解视频,提升教学效率,减轻教师负担。</p>
|
|||
|
</div>
|
|||
|
<div class="feature-card">
|
|||
|
<div class="feature-icon">
|
|||
|
<i class="fas fa-chart-line"></i>
|
|||
|
</div>
|
|||
|
<h3 class="feature-title">学情中心</h3>
|
|||
|
<p class="feature-description">家长/教师双视角仪表盘样例截图+一键生成周报按钮,精准掌握学生学习情况。</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
|
|||
|
<!-- 联盟与学科工坊 -->
|
|||
|
<section class="alliance">
|
|||
|
<h2 class="section-title">联盟与学科工坊</h2>
|
|||
|
<div class="alliance-container">
|
|||
|
<div class="alliance-banner">
|
|||
|
<h3 style="font-size: 24px; margin-bottom: 20px; color: var(--primary-blue);">AI教育创新联盟</h3>
|
|||
|
<p style="margin-bottom: 20px; color: var(--text-light);">当前成员校 128 所、共建资源 6.7 万件,携手推动教育数字化转型。</p>
|
|||
|
<button class="btn btn-primary">加入联盟</button>
|
|||
|
</div>
|
|||
|
<div class="workshops">
|
|||
|
<div class="workshop-tabs">
|
|||
|
<div class="tab-header">
|
|||
|
<div class="tab-item active">GeoGebra AI数创工坊</div>
|
|||
|
<div class="tab-item">Algodoo AI物研工坊</div>
|
|||
|
</div>
|
|||
|
<div class="tab-content">
|
|||
|
<h4 style="margin-bottom: 15px; color: var(--primary-blue);">本周研修直播日程</h4>
|
|||
|
<p style="margin-bottom: 20px; color: var(--text-light);">探索数学与AI的完美结合,提升数学教学效率与质量。</p>
|
|||
|
<button class="btn btn-outline">查看详情</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
|
|||
|
<!-- 数据统计区 -->
|
|||
|
<section class="stats">
|
|||
|
<div class="stats-grid">
|
|||
|
<div class="stat-item">
|
|||
|
<div class="stat-number">3,472</div>
|
|||
|
<div class="stat-label">今日活跃教师</div>
|
|||
|
</div>
|
|||
|
<div class="stat-item">
|
|||
|
<div class="stat-number">9,831</div>
|
|||
|
<div class="stat-label">生成课件</div>
|
|||
|
</div>
|
|||
|
<div class="stat-item">
|
|||
|
<div class="stat-number">47,298</div>
|
|||
|
<div class="stat-label">学生提问</div>
|
|||
|
</div>
|
|||
|
<div class="stat-item">
|
|||
|
<div class="stat-number">128</div>
|
|||
|
<div class="stat-label">联盟成员校</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
|
|||
|
<!-- 页脚 -->
|
|||
|
<footer class="footer">
|
|||
|
<div class="footer-container">
|
|||
|
<div class="footer-column">
|
|||
|
<div class="footer-logo">东师理想</div>
|
|||
|
<p class="footer-description">让AI成为教育新基建,推动教育数字化、智能化发展。</p>
|
|||
|
</div>
|
|||
|
<div class="footer-column">
|
|||
|
<h4 class="footer-title">平台服务</h4>
|
|||
|
<ul class="footer-links">
|
|||
|
<li><a href="#">AI资源工坊</a></li>
|
|||
|
<li><a href="#">名师云课</a></li>
|
|||
|
<li><a href="#">学情中心</a></li>
|
|||
|
<li><a href="#">AI教育创新联盟</a></li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
<div class="footer-column">
|
|||
|
<h4 class="footer-title">关于我们</h4>
|
|||
|
<ul class="footer-links">
|
|||
|
<li><a href="#">公司简介</a></li>
|
|||
|
<li><a href="#">发展历程</a></li>
|
|||
|
<li><a href="#">荣誉资质</a></li>
|
|||
|
<li><a href="#">联系方式</a></li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
<div class="footer-column">
|
|||
|
<h4 class="footer-title">法律合规</h4>
|
|||
|
<ul class="footer-links">
|
|||
|
<li><a href="#">用户协议</a></li>
|
|||
|
<li><a href="#">隐私政策</a></li>
|
|||
|
<li><a href="#">未成年人保护</a></li>
|
|||
|
<li><a href="#">版权声明</a></li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="footer-bottom">
|
|||
|
<p>© 2023 东师理想AI教育云平台 版权所有</p>
|
|||
|
</div>
|
|||
|
</footer>
|
|||
|
|
|||
|
<!-- 交互脚本 -->
|
|||
|
<script>
|
|||
|
// 标签页切换
|
|||
|
document.addEventListener('DOMContentLoaded', function() {
|
|||
|
const tabItems = document.querySelectorAll('.tab-item');
|
|||
|
|
|||
|
tabItems.forEach(item => {
|
|||
|
item.addEventListener('click', function() {
|
|||
|
// 移除所有active状态
|
|||
|
tabItems.forEach(tab => tab.classList.remove('active'));
|
|||
|
// 为当前点击项添加active状态
|
|||
|
this.classList.add('active');
|
|||
|
});
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</body>
|
|||
|
</html>
|