forked from nmgwap/WX-PersonalButler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
147 lines (121 loc) · 1.77 KB
/
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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/* 字体大小 */
.fs20 {
font-size: 20rpx;
}
.fs22 {
font-size: 22rpx;
}
.fs24 {
font-size: 24rpx;
}
.fs26 {
font-size: 26rpx;
}
.fs28 {
font-size: 28rpx;
}
.fs30 {
font-size: 30rpx;
}
.fs32 {
font-size: 32rpx;
}
.fs34 {
font-size: 34rpx;
}
.fs36 {
font-size: 36rpx;
}
/* 字体颜色 */
.fc99 {
color: #999;
}
.fcff{
color:#fff;
}
/* 页面整体配置文件 */
.pages-box {
box-sizing: border-box;
padding: 30rpx 30rpx;
}
.inp-box {
box-sizing: border-box;
padding-top: 30rpx;
position: relative;
}
.inp {
border: 3rpx solid #4cc0e9;
height: 80rpx;
border-radius: 10rpx;
line-height: 80rpx;
box-sizing: border-box;
padding-left: 130rpx;
}
.inpimg {
width: 120rpx;
height: 74rpx;
background-color: #f1f2f6;
border-top-left-radius: 10rpx;
border-bottom-left-radius: 10rpx;
position: absolute;
top: 33rpx;
left: 3rpx;
}
.pagesimg {
width: 40rpx;
height: 40rpx;
margin-top: 17rpx;
margin-left: 38rpx;
}
.btn-box {
margin-top: 30rpx;
text-align: center;
margin-bottom: 30rpx;
}
.btn {
width: 200rpx;
background-color: #50c1e9;
color: #fff;
text-align: center;
}
.det-box {
border-top: 10rpx solid #e3e4e9;
box-sizing: border-box;
padding: 0rpx 30rpx;
}
.pg-t {
padding: 20rpx 0rpx;
border-bottom: 3rpx solid #f0f0f0;
}
.pglist {
border-bottom: 3rpx solid #f0f0f0;
box-sizing: border-box;
padding: 10rpx 0rpx;
}
.pg-l {
display: inline-block;
width: 25%;
}
.pg-r {
display: inline-block;
width: 75%;
}
.dp-n{
display: none;
}
.clear{
clear:both;
}
.dp-ib{
display: inline-block;
}