Files
SWebStatic/res/index.html
T
2026-07-08 15:11:33 +08:00

209 lines
6.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SWE-ISS</title>
<style>//AI完成自行修改
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0A2463 0%, #1e3c72 100%);
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
line-height: 1.6;
}
.container {
text-align: center;
max-width: 800px;
width: 100%;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
font-weight: 700;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.subtitle {
font-size: 1.2rem;
margin-bottom: 40px;
color: #a8c9ff;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.button-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
.btn {
display: inline-block;
padding: 16px 40px;
font-size: 18px;
font-weight: 600;
text-align: center;
text-decoration: none;
color: white;
background: rgba(40, 80, 160, 0.7);
border: 2px solid rgba(100, 150, 255, 0.5);
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
min-width: 200px;
letter-spacing: 1px;
}
.btn:hover {
background: rgba(60, 120, 220, 0.9);
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(100, 150, 255, 0.4);
border-color: rgba(150, 200, 255, 0.8);
}
.btn:active {
transform: translateY(-2px);
box-shadow: 0 5px 10px rgba(100, 150, 255, 0.3);
}
.btn-primary {
background: rgba(40, 80, 160, 0.7);
border: 2px solid rgba(100, 150, 255, 0.5);
}
.btn-secondary {
background: rgba(160, 40, 80, 0.7);
border: 2px solid rgba(255, 100, 150, 0.5);
}
.btn-secondary:hover {
background: rgba(220, 60, 120, 0.9);
box-shadow: 0 8px 20px rgba(255, 100, 150, 0.4);
border-color: rgba(255, 150, 200, 0.8);
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 50px;
}
.feature {
flex: 1;
min-width: 200px;
max-width: 250px;
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature h3 {
margin-bottom: 10px;
color: #a8c9ff;
}
.footer {
margin-top: 50px;
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
text-align: center;
}
/* 响应式设计 */
@media (max-width: 768px) {
.container {
padding: 30px 15px;
}
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
.btn {
padding: 14px 30px;
font-size: 16px;
min-width: 180px;
}
.button-container {
gap: 20px;
}
}
@media (max-width: 480px) {
.button-container {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 280px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>一班_自学支持_资源下载</h1>
<p class="subtitle">不是每位学生都可以在校内完成全部任务,当学业繁重时,这个页面或许会成为你查漏补缺的好帮手。注意:点击后需等待几秒,密码会自行解开</p>
<div class="button-container">
<a href="https://swe-iss.rth1.xyz/res/filelist.html" class="btn btn-primary">下载源:蓝奏云</a>
<a href="https://www.alipan.com/s/PbHuzxXvgAi" class="btn btn-secondary">阿里云盘(在线预览,需登录)</a>
</div>
<div class="features">
<div class="feature">
<h3>查漏补缺</h3>
<p>在课上放心紧跟老师思路,笔记可以慢慢补</p>
</div>
<div class="feature">
<h3>习题重练</h3>
<p>课上来不及,没做完的题可以现在练</p>
</div>
<div class="feature">
<h3>预习复习</h3>
<p>在未来,我有时间的话,老师们也可以把预习课件,提优资源放在这里,欲穷千里目,更上一层楼</p>
</div>
</div>
</div>
<div class="footer">
© 2025 * S.A. | SNOWARE
</div>
</body>
</html>