-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (79 loc) · 2.7 KB
/
index.html
File metadata and controls
79 lines (79 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PaperShare - 论文分享</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.6;
}
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 80px 20px;
text-align: center;
min-height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hero h1 { font-size: 3em; margin-bottom: 16px; }
.hero p { font-size: 1.3em; opacity: 0.9; margin-bottom: 40px; }
.cards {
display: flex;
gap: 30px;
flex-wrap: wrap;
justify-content: center;
max-width: 800px;
}
.card {
background: white;
color: #333;
border-radius: 16px;
padding: 40px;
width: 320px;
text-align: center;
text-decoration: none;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card h2 { font-size: 1.5em; margin-bottom: 12px; }
.card p { color: #666; font-size: 0.95em; }
.card.papershare { border-top: 4px solid #667eea; }
.card.daily { border-top: 4px solid #11998e; }
.emoji { font-size: 3em; margin-bottom: 16px; }
footer { text-align: center; padding: 40px; color: rgba(255,255,255,0.7); }
</style>
</head>
<body>
<div class="hero">
<h1>📚 PaperShare</h1>
<p>LLM 评测与诊断 · 论文分享平台</p>
<div class="cards">
<a href="/papershare-github/papershare/" class="card papershare">
<div class="emoji">📚</div>
<h2>论文分享</h2>
<p>分类整理的论文阅读笔记<br>涵盖评测、诊断、优化</p>
</a>
<a href="/papershare-github/daily-paper/" class="card daily">
<div class="emoji">📰</div>
<h2>每日论文</h2>
<p>每日arXiv论文调研<br>持续更新中</p>
</a>
</div>
</div>
<footer>
PaperShare © 2026 | Built with ❤️
</footer>
</body>
</html>