916 lines
33 KiB
HTML
916 lines
33 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">
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
|
<style>
|
||
|
/* 全局样式 */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: 'Microsoft YaHei', Arial, sans-serif;
|
||
|
background-color: #f5f7fa;
|
||
|
color: #333;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
padding: 0 15px;
|
||
|
}
|
||
|
|
||
|
/* 顶部导航栏 */
|
||
|
.navbar {
|
||
|
background-color: #fff;
|
||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
|
||
|
.navbar-content {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
padding: 15px 0;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.logo-placeholder {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.nav-links {
|
||
|
display: flex;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.nav-links li {
|
||
|
margin-left: 30px;
|
||
|
}
|
||
|
|
||
|
.nav-links a {
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
font-weight: 500;
|
||
|
transition: color 0.3s;
|
||
|
}
|
||
|
|
||
|
.nav-links a:hover {
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.user-actions {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.user-actions a {
|
||
|
margin-left: 20px;
|
||
|
color: #333;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.user-actions i {
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
/* 页面标题区 */
|
||
|
.page-header {
|
||
|
background: linear-gradient(135deg, #1E9FFF, #00BFFF);
|
||
|
color: white;
|
||
|
padding: 40px 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.page-title {
|
||
|
font-size: 32px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.page-subtitle {
|
||
|
font-size: 18px;
|
||
|
opacity: 0.9;
|
||
|
}
|
||
|
|
||
|
/* 内容区域 */
|
||
|
.content-section {
|
||
|
padding: 40px 0;
|
||
|
}
|
||
|
|
||
|
.section-title {
|
||
|
font-size: 24px;
|
||
|
margin-bottom: 20px;
|
||
|
color: #333;
|
||
|
position: relative;
|
||
|
padding-left: 15px;
|
||
|
}
|
||
|
|
||
|
.section-title::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 5px;
|
||
|
height: 24px;
|
||
|
width: 4px;
|
||
|
background-color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
/* 资源筛选区 */
|
||
|
.filter-section {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
padding: 20px;
|
||
|
margin-bottom: 30px;
|
||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
|
||
|
.filter-row {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 20px;
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
.filter-group {
|
||
|
flex: 1;
|
||
|
min-width: 200px;
|
||
|
}
|
||
|
|
||
|
.filter-label {
|
||
|
display: block;
|
||
|
margin-bottom: 8px;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
/* 下拉框样式 */
|
||
|
.layui-select {
|
||
|
width: 100%;
|
||
|
height: 40px;
|
||
|
padding: 0 10px;
|
||
|
border: 1px solid #e6e6e6;
|
||
|
background-color: #fff;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.form-group {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.form-group::after {
|
||
|
content: '\e61a';
|
||
|
font-family: layui-icon !important;
|
||
|
position: absolute;
|
||
|
right: 10px;
|
||
|
top: 40%;
|
||
|
color: #666;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.search-box::after {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.filter-group::after {
|
||
|
content: '\e61a';
|
||
|
font-family: layui-icon !important;
|
||
|
position: absolute;
|
||
|
right: 10px;
|
||
|
top: 40%;
|
||
|
color: #666;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.search-box {
|
||
|
position: relative;
|
||
|
flex: 2;
|
||
|
}
|
||
|
|
||
|
.search-input {
|
||
|
width: 100%;
|
||
|
height: 40px;
|
||
|
padding: 0 40px 0 15px;
|
||
|
border: 1px solid #e6e6e6;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.search-btn {
|
||
|
position: absolute;
|
||
|
right: 10px;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
background: none;
|
||
|
border: none;
|
||
|
color: #666;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
/* 资源卡片 */
|
||
|
.resource-grid {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||
|
gap: 25px;
|
||
|
margin-bottom: 40px;
|
||
|
}
|
||
|
|
||
|
.resource-card {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
overflow: hidden;
|
||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
||
|
transition: transform 0.3s, box-shadow 0.3s;
|
||
|
}
|
||
|
|
||
|
.resource-card:hover {
|
||
|
transform: translateY(-5px);
|
||
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
.resource-image {
|
||
|
height: 160px;
|
||
|
background-color: #f0f2f5;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
color: #999;
|
||
|
}
|
||
|
|
||
|
.resource-content {
|
||
|
padding: 15px;
|
||
|
}
|
||
|
|
||
|
.resource-type {
|
||
|
display: inline-block;
|
||
|
padding: 3px 8px;
|
||
|
background-color: #e6f7ff;
|
||
|
color: #1E9FFF;
|
||
|
border-radius: 4px;
|
||
|
font-size: 12px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.resource-title {
|
||
|
font-size: 16px;
|
||
|
margin-bottom: 10px;
|
||
|
height: 48px;
|
||
|
overflow: hidden;
|
||
|
display: -webkit-box;
|
||
|
-webkit-line-clamp: 2;
|
||
|
-webkit-box-orient: vertical;
|
||
|
}
|
||
|
|
||
|
.resource-meta {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 10px;
|
||
|
font-size: 12px;
|
||
|
color: #999;
|
||
|
}
|
||
|
|
||
|
.resource-meta span {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.resource-meta i {
|
||
|
margin-right: 4px;
|
||
|
}
|
||
|
|
||
|
.resource-tags {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 5px;
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
.resource-tags span {
|
||
|
padding: 2px 8px;
|
||
|
background-color: #f5f5f5;
|
||
|
border-radius: 4px;
|
||
|
font-size: 12px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
display: inline-block;
|
||
|
padding: 8px 15px;
|
||
|
border-radius: 4px;
|
||
|
text-align: center;
|
||
|
cursor: pointer;
|
||
|
transition: all 0.3s;
|
||
|
border: none;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.btn-primary {
|
||
|
background-color: #1E9FFF;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.btn-primary:hover {
|
||
|
background-color: #0d8adb;
|
||
|
}
|
||
|
|
||
|
.btn-outline {
|
||
|
background-color: transparent;
|
||
|
border: 1px solid #1E9FFF;
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.btn-outline:hover {
|
||
|
background-color: #1E9FFF;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.view-btn {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/* 分页 */
|
||
|
.pagination {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
margin: 30px 0;
|
||
|
}
|
||
|
|
||
|
/* 热度榜 */
|
||
|
.hot-resources {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
padding: 20px;
|
||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
|
||
|
.hot-list {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.hot-item {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 12px 0;
|
||
|
border-bottom: 1px solid #f0f0f0;
|
||
|
}
|
||
|
|
||
|
.hot-item:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
|
||
|
.rank {
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
background-color: #f5f5f5;
|
||
|
color: #999;
|
||
|
border-radius: 50%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-weight: bold;
|
||
|
margin-right: 15px;
|
||
|
}
|
||
|
|
||
|
.top1 .rank {
|
||
|
background-color: #ff4d4f;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.top2 .rank {
|
||
|
background-color: #ff7a45;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.top3 .rank {
|
||
|
background-color: #ffa940;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.info {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.info h4 {
|
||
|
font-size: 14px;
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
.info p {
|
||
|
font-size: 12px;
|
||
|
color: #999;
|
||
|
}
|
||
|
|
||
|
.trend {
|
||
|
font-size: 12px;
|
||
|
color: #ff4d4f;
|
||
|
}
|
||
|
|
||
|
.trend i {
|
||
|
margin-right: 4px;
|
||
|
}
|
||
|
|
||
|
/* 页脚 */
|
||
|
.footer {
|
||
|
background-color: #2c3e50;
|
||
|
color: #ecf0f1;
|
||
|
padding: 50px 0 20px;
|
||
|
}
|
||
|
|
||
|
.footer-content {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.footer-logo {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.footer-links {
|
||
|
display: flex;
|
||
|
flex: 2;
|
||
|
}
|
||
|
|
||
|
.link-group {
|
||
|
flex: 1;
|
||
|
margin-right: 30px;
|
||
|
}
|
||
|
|
||
|
.link-group h3 {
|
||
|
font-size: 16px;
|
||
|
margin-bottom: 15px;
|
||
|
color: #ecf0f1;
|
||
|
}
|
||
|
|
||
|
.link-group ul {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.link-group li {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.link-group a {
|
||
|
color: #bdc3c7;
|
||
|
text-decoration: none;
|
||
|
font-size: 14px;
|
||
|
transition: color 0.3s;
|
||
|
}
|
||
|
|
||
|
.link-group a:hover {
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.contact-info {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.contact-info p {
|
||
|
margin-bottom: 10px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.social-links {
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
|
||
|
.social-links a {
|
||
|
display: inline-block;
|
||
|
width: 36px;
|
||
|
height: 36px;
|
||
|
background-color: #34495e;
|
||
|
border-radius: 50%;
|
||
|
text-align: center;
|
||
|
line-height: 36px;
|
||
|
margin-right: 10px;
|
||
|
color: #ecf0f1;
|
||
|
transition: background-color 0.3s;
|
||
|
}
|
||
|
|
||
|
.social-links a:hover {
|
||
|
background-color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.copyright {
|
||
|
text-align: center;
|
||
|
padding-top: 20px;
|
||
|
border-top: 1px solid #34495e;
|
||
|
font-size: 14px;
|
||
|
color: #95a5a6;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- 顶部导航栏 -->
|
||
|
<nav class="navbar">
|
||
|
<div class="container">
|
||
|
<div class="navbar-content">
|
||
|
<div class="logo">
|
||
|
<div class="logo-placeholder">东师理想AI教育云平台</div>
|
||
|
</div>
|
||
|
<ul class="nav-links">
|
||
|
<li><a href="#">首页</a></li>
|
||
|
<li><a href="#">AI资源工坊</a></li>
|
||
|
<li><a href="#">AI资源库</a></li>
|
||
|
<li><a href="#">AI备课助手</a></li>
|
||
|
<li><a href="#">AI教学助手</a></li>
|
||
|
<li><a href="#">帮助中心</a></li>
|
||
|
</ul>
|
||
|
<div class="user-actions">
|
||
|
<a href="#"><i class="fas fa-bell"></i> 通知</a>
|
||
|
<a href="#"><i class="fas fa-user"></i> 个人中心</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
|
||
|
<!-- 页面标题区 -->
|
||
|
<div class="page-header">
|
||
|
<div class="container">
|
||
|
<h1 class="page-title">AI资源库</h1>
|
||
|
<p class="page-subtitle">海量优质教育资源,助力教学创新</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 内容区域 -->
|
||
|
<section class="content-section">
|
||
|
<div class="container">
|
||
|
<div class="main-content">
|
||
|
<!-- 资源筛选区 -->
|
||
|
<div class="filter-section">
|
||
|
<div class="filter-row">
|
||
|
<div class="filter-group">
|
||
|
<label class="filter-label">资源类型</label>
|
||
|
<div class="form-group">
|
||
|
<select class="layui-select">
|
||
|
<option>全部类型</option>
|
||
|
<option>教案</option>
|
||
|
<option>课件</option>
|
||
|
<option>习题</option>
|
||
|
<option>视频</option>
|
||
|
<option>音频</option>
|
||
|
<option>图片</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="filter-group">
|
||
|
<label class="filter-label">学科</label>
|
||
|
<div class="form-group">
|
||
|
<select class="layui-select">
|
||
|
<option>全部学科</option>
|
||
|
<option>语文</option>
|
||
|
<option>数学</option>
|
||
|
<option>英语</option>
|
||
|
<option>物理</option>
|
||
|
<option>化学</option>
|
||
|
<option>生物</option>
|
||
|
<option>历史</option>
|
||
|
<option>地理</option>
|
||
|
<option>政治</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="filter-group">
|
||
|
<label class="filter-label">学段</label>
|
||
|
<div class="form-group">
|
||
|
<select class="layui-select">
|
||
|
<option>全部学段</option>
|
||
|
<option>小学</option>
|
||
|
<option>初中</option>
|
||
|
<option>高中</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="filter-row">
|
||
|
<div class="filter-group">
|
||
|
<label class="filter-label">年级</label>
|
||
|
<div class="form-group">
|
||
|
<select class="layui-select">
|
||
|
<option>全部年级</option>
|
||
|
<option>一年级</option>
|
||
|
<option>二年级</option>
|
||
|
<option>三年级</option>
|
||
|
<option>四年级</option>
|
||
|
<option>五年级</option>
|
||
|
<option>六年级</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="filter-group">
|
||
|
<label class="filter-label">排序方式</label>
|
||
|
<div class="form-group">
|
||
|
<select class="layui-select">
|
||
|
<option>综合排序</option>
|
||
|
<option>最新上传</option>
|
||
|
<option>最多下载</option>
|
||
|
<option>最高评分</option>
|
||
|
<option>最多收藏</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="search-box">
|
||
|
<label class="filter-label">搜索资源</label>
|
||
|
<div class="form-group">
|
||
|
<input type="text" class="search-input" placeholder="输入关键词搜索资源">
|
||
|
<button class="search-btn"><i class="fas fa-search"></i></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 资源库区域 -->
|
||
|
<div class="resource-library">
|
||
|
<h2 class="section-title">热门资源库</h2>
|
||
|
<div class="resource-grid">
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-alt fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">教案</div>
|
||
|
<h3 class="resource-title">《分数的初步认识》教学设计</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 王老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 1.2k</span>
|
||
|
<span><i class="fas fa-download"></i> 328</span>
|
||
|
<span><i class="fas fa-star"></i> 4.8</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>小学数学</span>
|
||
|
<span>三年级</span>
|
||
|
<span>数与代数</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-powerpoint fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">课件</div>
|
||
|
<h3 class="resource-title">《一元二次方程解法》多媒体课件</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 李老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 986</span>
|
||
|
<span><i class="fas fa-download"></i> 256</span>
|
||
|
<span><i class="fas fa-star"></i> 4.7</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>初中数学</span>
|
||
|
<span>九年级</span>
|
||
|
<span>代数</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-alt fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">习题</div>
|
||
|
<h3 class="resource-title">《函数的单调性》同步练习题</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 张老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 753</span>
|
||
|
<span><i class="fas fa-download"></i> 198</span>
|
||
|
<span><i class="fas fa-star"></i> 4.5</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>高中数学</span>
|
||
|
<span>一年级</span>
|
||
|
<span>函数</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-video fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">视频</div>
|
||
|
<h3 class="resource-title">《牛顿第一定律》实验教学视频</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 赵老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 1.5k</span>
|
||
|
<span><i class="fas fa-download"></i> 425</span>
|
||
|
<span><i class="fas fa-star"></i> 4.9</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>初中物理</span>
|
||
|
<span>八年级</span>
|
||
|
<span>力学</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-audio fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">音频</div>
|
||
|
<h3 class="resource-title">《英语口语训练》情景对话音频</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 刘老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 892</span>
|
||
|
<span><i class="fas fa-download"></i> 312</span>
|
||
|
<span><i class="fas fa-star"></i> 4.6</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>初中英语</span>
|
||
|
<span>七年级</span>
|
||
|
<span>口语</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="resource-card">
|
||
|
<div class="resource-image">
|
||
|
<i class="fas fa-file-image fa-3x"></i>
|
||
|
</div>
|
||
|
<div class="resource-content">
|
||
|
<div class="resource-type">图片</div>
|
||
|
<h3 class="resource-title">《中国历史朝代演变》时间轴图</h3>
|
||
|
<div class="resource-meta">
|
||
|
<span><i class="fas fa-user"></i> 陈老师</span>
|
||
|
<span><i class="fas fa-eye"></i> 1.1k</span>
|
||
|
<span><i class="fas fa-download"></i> 387</span>
|
||
|
<span><i class="fas fa-star"></i> 4.8</span>
|
||
|
</div>
|
||
|
<div class="resource-tags">
|
||
|
<span>初中历史</span>
|
||
|
<span>八年级</span>
|
||
|
<span>中国历史</span>
|
||
|
</div>
|
||
|
<button class="btn btn-outline view-btn">查看详情</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="pagination">
|
||
|
<div class="layui-box layui-laypage layui-laypage-default">
|
||
|
<a href="" class="layui-laypage-prev">上一页</a>
|
||
|
<span class="layui-laypage-curr"><em class="layui-laypage-em"></em><i>1</i></span>
|
||
|
<a href="">2</a>
|
||
|
<a href="">3</a>
|
||
|
<a href="">4</a>
|
||
|
<a href="">5</a>
|
||
|
<a href="" class="layui-laypage-next">下一页</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 实时热度榜 -->
|
||
|
<div class="hot-resources">
|
||
|
<h2 class="section-title">实时热度榜</h2>
|
||
|
<div class="hot-list">
|
||
|
<div class="hot-item top1">
|
||
|
<div class="rank">1</div>
|
||
|
<div class="info">
|
||
|
<h4>《分数的初步认识》教案</h4>
|
||
|
<p>小学数学 · 三年级</p>
|
||
|
</div>
|
||
|
<div class="trend"><i class="fas fa-arrow-up"></i> 248</div>
|
||
|
</div>
|
||
|
<div class="hot-item top2">
|
||
|
<div class="rank">2</div>
|
||
|
<div class="info">
|
||
|
<h4>《牛顿第一定律》实验教学视频</h4>
|
||
|
<p>初中物理 · 八年级</p>
|
||
|
</div>
|
||
|
<div class="trend"><i class="fas fa-arrow-up"></i> 186</div>
|
||
|
</div>
|
||
|
<div class="hot-item top3">
|
||
|
<div class="rank">3</div>
|
||
|
<div class="info">
|
||
|
<h4>《文言文阅读技巧》专题训练</h4>
|
||
|
<p>初中语文 · 九年级</p>
|
||
|
</div>
|
||
|
<div class="trend"><i class="fas fa-arrow-down"></i> 42</div>
|
||
|
</div>
|
||
|
<div class="hot-item">
|
||
|
<div class="rank">4</div>
|
||
|
<div class="info">
|
||
|
<h4>《化学方程式配平》微课视频</h4>
|
||
|
<p>初中化学 · 九年级</p>
|
||
|
</div>
|
||
|
<div class="trend"><i class="fas fa-arrow-up"></i> 129</div>
|
||
|
</div>
|
||
|
<div class="hot-item">
|
||
|
<div class="rank">5</div>
|
||
|
<div class="info">
|
||
|
<h4>《英语时态专项练习》题库</h4>
|
||
|
<p>高中英语 · 一年级</p>
|
||
|
</div>
|
||
|
<div class="trend"><i class="fas fa-arrow-up"></i> 95</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<!-- 页脚 -->
|
||
|
<footer class="footer">
|
||
|
<div class="container">
|
||
|
<div class="footer-content">
|
||
|
<div class="footer-logo">
|
||
|
<div class="logo-placeholder">东师理想AI教育云平台</div>
|
||
|
<p>东师理想AI教育云平台 © 2023 版权所有</p>
|
||
|
</div>
|
||
|
<div class="footer-links">
|
||
|
<div class="link-group">
|
||
|
<h3>平台服务</h3>
|
||
|
<ul>
|
||
|
<li><a href="#">关于我们</a></li>
|
||
|
<li><a href="#">联系我们</a></li>
|
||
|
<li><a href="#">帮助中心</a></li>
|
||
|
<li><a href="#">用户协议</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="link-group">
|
||
|
<h3>资源中心</h3>
|
||
|
<ul>
|
||
|
<li><a href="#">教案库</a></li>
|
||
|
<li><a href="#">课件库</a></li>
|
||
|
<li><a href="#">习题库</a></li>
|
||
|
<li><a href="#">视频课程</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="link-group">
|
||
|
<h3>技术支持</h3>
|
||
|
<ul>
|
||
|
<li><a href="#">API文档</a></li>
|
||
|
<li><a href="#">开发者社区</a></li>
|
||
|
<li><a href="#">技术博客</a></li>
|
||
|
<li><a href="#">常见问题</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="contact-info">
|
||
|
<p><i class="fas fa-phone"></i> 400-123-4567</p>
|
||
|
<p><i class="fas fa-envelope"></i> support@dsideal.edu.cn</p>
|
||
|
<div class="social-links">
|
||
|
<a href="#"><i class="fab fa-weixin"></i></a>
|
||
|
<a href="#"><i class="fab fa-weibo"></i></a>
|
||
|
<a href="#"><i class="fab fa-qq"></i></a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="copyright">
|
||
|
<p>© 2023 东师理想科技有限公司 版权所有 | 吉ICP备12345678号</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<!-- 引入外部JS -->
|
||
|
<script src="https://gcore.jsdelivr.net/npm/layui@2.9.12/dist/layui.min.js"></script>
|
||
|
<!-- 仅引入页面所需的JS -->
|
||
|
<script src="../js/ai-resource-library.js"></script>
|
||
|
<script>
|
||
|
// 页面专属JS代码
|
||
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
// 初始化Layui组件
|
||
|
layui.use(['form', 'element'], function() {
|
||
|
var form = layui.form;
|
||
|
var element = layui.element;
|
||
|
// 表单渲染
|
||
|
form.render();
|
||
|
});
|
||
|
|
||
|
// 搜索按钮点击事件
|
||
|
document.querySelector('.search-btn')?.addEventListener('click', function() {
|
||
|
const searchInput = document.querySelector('.search-input');
|
||
|
if (searchInput.value.trim()) {
|
||
|
alert('搜索功能将在后续版本中实现');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// 查看详情按钮点击事件
|
||
|
document.querySelectorAll('.view-btn').forEach(btn => {
|
||
|
btn.addEventListener('click', function() {
|
||
|
alert('资源详情功能将在后续版本中实现');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|