-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
64 lines (64 loc) · 1002 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
page{
background-color: #F4F4F4;
}
/*字体*/
.f12{
font-size: 12px;
}
.f14{
font-size: 14px;
}
.f16{
font-size: 16px;
}
/*横线*/
.lines{
display: inline-block;
width: 12px;
height: 1px;
background-color: #d9d9d9;
vertical-align: middle;
margin: 0 25rpx;
}
.center-title{
display: flex;
align-items: center;
justify-content: center;
height: 100rpx;
line-height: 100rpx;
border-bottom:1rpx solid #ddd ;
}
.container0{
margin-top: 20rpx;
background-color: #fff;
font-size: 12px;
}
.container1{
padding: 25rpx;
position: relative;
}
/*列表*/
.cell{
background-color:#fff;
font-size:16px;
}
.cell-item{
border-bottom:1rpx solid #ddd;
padding:20rpx 30rpx;
}
/*取消滚动条*/
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}