Add zijin-ultraclass files to doc folder

dys_branch
YishengDu 5 months ago
commit baa8c1a44a

BIN
.DS_Store vendored

Binary file not shown.

Binary file not shown.

@ -0,0 +1,158 @@
/* ======= 全局基础 ======= */
body {
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
background: #f3f6fa; /* 柔和的浅灰蓝背景 */
color: #333;
margin: 0;
line-height: 1.7;
}
/* ======= 链接样式 ======= */
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
color: #004b9a;
}
/* ======= 顶部导航 ======= */
header {
background: linear-gradient(90deg, #0059b3, #0078ff);
color: white;
padding: 15px 0;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 5%;
padding-right: 5%;
}
header .logo {
font-size: 20px;
font-weight: bold;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin: 0 15px;
}
nav a {
color: white;
font-weight: 500;
}
nav a:hover {
text-decoration: underline;
}
/* ======= 主体布局 ======= */
main {
display: flex;
justify-content: center;
width: 90%;
margin: 40px auto;
max-width: 1200px;
gap: 30px;
}
/* ======= 文章卡片样式 ======= */
.content {
flex: 3;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
padding: 20px 25px;
margin-bottom: 30px;
transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.card h2 {
color: #003d80;
}
.meta {
font-size: 0.9em;
color: #666;
}
.btn {
display: inline-block;
background: #0070cc;
color: white;
padding: 8px 14px;
border-radius: 5px;
margin-top: 10px;
}
.btn:hover {
background: #005da8;
}
/* ======= 侧边栏 ======= */
.sidebar {
flex: 1;
}
.widget {
background: white;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.widget h3 {
border-bottom: 2px solid #0070cc;
padding-bottom: 5px;
margin-bottom: 15px;
color: #004b9a;
}
/* 搜索框 */
.search {
display: flex;
align-items: center;
gap: 5px;
}
.search input {
flex: 1;
padding: 6px 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.search button {
background: #0070cc;
border: none;
color: white;
padding: 6px 10px;
border-radius: 5px;
cursor: pointer;
}
.search button:hover {
background: #005da8;
}
/* ======= 页脚 ======= */
footer {
text-align: center;
padding: 25px 0;
background: #e9eef6;
color: #666;
margin-top: 40px;
font-size: 0.9em;
}

@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>紫金U课 · 学习博客</title>
<link rel="stylesheet" href="zijin ultraclass.css">
</head>
<body>
<!-- ======= 顶部导航栏 ======= -->
<header>
<div class="logo">紫金U课 · 学习博客</div>
<nav>
<ul>
<li><a href=" ">首页</a ></li>
<li><a href="#">课程资源</a ></li>
<li><a href="#">学习笔记</a ></li>
<li><a href="#">教师专栏</a ></li>
<li><a href="#">教学活动</a ></li>
</ul>
</nav>
</header>
<!-- ======= 主体部分 ======= -->
<main>
<div class="content">
<!-- 单篇文章卡片 -->
<article class="card">
<h2><a href="#">如何高效利用紫金U课进行自主学习</a ></h2>
<p class="meta">发表于 2025-09-20 · 教学中心 · 分类:学习指南</p >
<p>紫金U课是一个集在线学习、作业提交、课程互动于一体的教学平台。本文分享如何利用平台功能高效学习让你的时间更有价值。</p >
<a class="btn" href="#">阅读全文</a >
</article>
<article class="card">
<h2><a href="#">教师如何设计优质在线课程</a ></h2>
<p class="meta">发表于 2025-09-12 · 张老师 · 分类:教学交流</p >
<p>紫金U课为教师提供了丰富的课程管理工具。本文探讨如何创建结构清晰、互动性强的优质课程提升教学体验。</p >
<a class="btn" href="#">阅读全文</a >
</article>
<article class="card">
<h2><a href="#">学生分享我在紫金U课的学习体验</a ></h2>
<p class="meta">发表于 2025-08-30 · 计算机学院学生 · 分类:学习心得</p >
<p>以前觉得线上学习不如线下高效但紫金U课的作业反馈、互动答疑改变了我的看法。现在登录学习已成为我的日常。</p >
<a class="btn" href="#">阅读全文</a >
</article>
</div>
<!-- ======= 侧边栏 ======= -->
<aside class="sidebar">
<!-- 搜索框 -->
<div class="widget search">
<input type="text" placeholder="搜索课程或文章...">
<button>🔍</button>
</div>
<!-- 分类 -->
<div class="widget">
<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="widget">
<h3>热门推荐</h3>
<ul>
<li><a href="#">U课高分秘籍写好实验报告</a ></li>
<li><a href="#">混合式教学的创新探索</a ></li>
<li><a href="#">学霸分享:自学时间规划</a ></li>
</ul>
</div>
</aside>
</main>
<!-- ======= 页脚 ======= -->
<footer>
<p>© 2025 紫金U课 · 学习与分享平台 | Designed for 学习与成长</p >
</footer>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

Binary file not shown.
Loading…
Cancel
Save