-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (50 loc) · 2.56 KB
/
style.css
File metadata and controls
55 lines (50 loc) · 2.56 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
/* 基础设置 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; text-align: center; }
/* 导航 */
header { padding: 30px 0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 28px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #333; font-size: 14px; font-weight: 500; }
/* 文本区块 */
.hero { padding: 80px 0; }
.hero .subtitle { color: #999; font-size: 24px; margin-bottom: 10px; }
.hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; letter-spacing: 2px; }
.about { background: #fbfbfb; padding: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
h2 { font-size: 28px; margin-bottom: 30px; }
/* 项目卡片 */
.projects { padding: 80px 0; }
.project-card {
max-width: 420px; margin: 0 auto; background: #fff;
border-radius: 20px; overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: left;
}
.project-banner img { width: 100%; display: block; }
.project-body { padding: 30px; }
.project-body h3 small { font-weight: normal; color: #888; font-size: 14px; margin-left: 5px; }
.btn-group { display: flex; flex-direction: column; gap: 12px; margin-top: 25px; }
.btn { padding: 12px; text-align: center; text-decoration: none; border-radius: 50px; font-size: 14px; }
.btn-blue { background: #007bff; color: #fff; }
.btn-outline { border: 1px solid #333; color: #333; }
.btn-icon { width: 16px; vertical-align: middle; margin-right: 8px; }
/* 联系我们网格 (核心新增) */
.contact { padding: 80px 0; background: #fcfcfc; }
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px; margin-top: 40px;
}
.contact-item {
background: #fff; display: flex; align-items: center; padding: 20px;
border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
text-align: left; transition: transform 0.2s;
}
.contact-item:hover { transform: translateY(-3px); }
.icon-box { width: 40px; height: 40px; margin-right: 15px; display: flex; align-items: center; justify-content: center; }
.icon-box img { width: 24px; height: auto; opacity: 0.8; }
.text-box .label { display: block; font-size: 15px; font-weight: bold; color: #333; }
.text-box .value { display: block; font-size: 12px; color: #888; margin-top: 2px; }
/* 页脚 */
footer { padding: 50px 0; font-size: 13px; color: #999; }