order.wxss
494 Bytes
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
/* order.wxss */
.item-list{
margin: 1rem ;
border-top:1px solid #ddd;
}
.item{
color: #39f;
}
.item-info{
width: 100%;
border-bottom:1px solid #ddd;
padding: 0.5rem 0;
font-size: 12px;
min-height: 2rem;
}
.item-title{
font-size: 14px;
}
.item-info .name{
float:left;
line-height: 1rem;
width: 70%;
padding: 0 0.5rem;
}
.item-info .price{
float:left;
line-height: 1rem;
width: 30%;
padding: 0 0.5rem;
}
.tip{
line-height: 2rem;
text-align: center
}