-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.wxss
103 lines (89 loc) · 1.5 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
/**app.wxss**/
@import 'style/weui.wxss';
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/* header.wxml 样式表 */
.logo{
height: 300rpx;
width: 755rpx;
}
/* list.wxml history.wxml 样式表 */
.nav{
background-color: #fff;
}
.nav text{
font-weight: 700;
font-size: 13.5px;
color: black;
margin-left: 15rpx;
}
.empty {
display:flex;
flex-direction: column;
margin-top: 100rpx;
height: 100%;
align-items:center;
}
.empty view {
margin-top: 30rpx;
font-size: 14px;
color: cadetblue;
text-align: center;
}
.empty image{
width: 400rpx;
height: 550rpx;
}
.list{
display: flex;
flex-direction: row;
margin: 10rpx;
height: 240rpx;
border-width: 4rpx 4rpx 0 0 0 0;
border-color: rgb(0, 236, 158);
border-style: solid;
}
.list text{
margin-top: 15rpx;
font-size: 14px;
color: gray;
line-height: 40rpx;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-line-clamp:1;
-webkit-box-orient:vertical;
width: 350rpx;
}
.list image{
width: 300rpx;
height: 240rpx;
}
.list view{
display: flex;
flex-direction: column;
margin-left: 30rpx;
}
.btn{
margin-left: 240rpx;
margin-top: 10rpx;
}
.btn_group {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 100rpx 0;
box-sizing: border-box;
}
.btn_group van-button {
margin-top: 30rpx;
}