-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (88 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
98 lines (88 loc) · 2.11 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>文档中心</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #f9fafb;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #333;
}
.container {
max-width: 600px;
width: 90%;
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
padding: 32px;
}
h1 {
text-align: center;
margin-bottom: 24px;
font-size: 24px;
color: #1a73e8;
}
ul {
list-style: none;
padding: 0;
margin: 0 0 24px 0;
}
li {
margin: 12px 0;
}
a {
display: block;
padding: 12px 16px;
text-decoration: none;
color: #1a73e8;
border: 1px solid #e0e0e0;
border-radius: 8px;
transition: all 0.2s ease;
}
a:hover {
background-color: #f0f8ff;
border-color: #1a73e8;
color: #0d47a1;
box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}
.section-title {
font-size: 18px;
font-weight: 600;
margin-top: 24px;
margin-bottom: 12px;
color: #5f6368;
}
@media (max-width: 600px) {
.container {
padding: 20px;
}
h1 {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>文档中心</h1>
<div class="section-title">Office 文档</div>
<ul>
<li><a href="/documentation/office/zh-hans/">Office 文档中文版</a></li>
<li><a href="/documentation/office/en-us/">Office Documentation (English)</a></li>
</ul>
<div class="section-title">Meet 文档</div>
<ul>
<li><a href="/documentation/meet/zh-hans/">Meet 文档中文版</a></li>
<li><a href="/documentation/meet/en-us/">Meet Documentation (English)</a></li>
</ul>
</div>
</body>
</html>