-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
45 lines (39 loc) · 847 Bytes
/
app.wxss
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
page {
--primary-color: #0052d9;
--secondary-color: #666666;
--background-color: #fff;
--text-primary: #333333;
--text-secondary: #666666;
--border-radius: 12rpx;
--shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.1);
--spacing-xs: 10rpx;
--spacing-sm: 20rpx;
--spacing-md: 32rpx;
--spacing-lg: 40rpx;
min-height: 100vh;
background: var(--background-color);
color: var(--text-primary);
font-size: 28rpx;
}
/* 通用布局类 */
.container {
padding: var(--spacing-md);
}
.flex-row {
display: flex;
align-items: center;
}
.flex-column {
display: flex;
flex-direction: column;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.steps {
padding: 40rpx 0; /* 增加上下间距 */
margin: 20rpx 0; /* 与相邻元素保持间距 */
background: #fff; /* 可选:添加背景色提升视觉分层 */
}