-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
119 lines (103 loc) · 1.96 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
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.vercialLine {
width: 1px;
height: 100%;
background: #ccc;
}
.horizontalLine {
height: 1px;
background: #ccc;
}
.commonBtn, .commonBtnHover {
display: block;
color: white;
font-size: 32rpx;
padding: 10px;
border-radius: 5px;
margin: 40rpx;
text-align: center;
}
.commonBtn {
background: #06A1F6;
}
.commonBtnHover {
background: rgb(0, 161, 248);
}
.common_search_input {
display: flex;
flex: 1;
margin: 16rpx;
padding: 8rpx 14rpx 8rpx 8rpx;
font-size: 24rpx;
border-radius: 16rpx;
border: 1rpx solid gray;
align-items: center;
background: white;
}
.common_search_img {
width: 32rpx;
height: 32rpx;
vertical-align: center;
}
.header_tab {
display: flex;
flex-direction: row;
background-color: white;
}
.header_tab .tab_item_default {
flex: 1;
padding: 16rpx;
font-size: 24rpx;
text-align: center;
color: black;
border-bottom: 2px solid #dedede;
}
.header_tab .tab_item_selected {
flex: 1;
padding: 16rpx;
font-size: 24rpx;
text-align: center;
color: #1EA3EB;
border-bottom: 2px solid #1EA3EB;
}
.empty_view {
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
.empty_icon {
width: 100rpx;
height: 100rpx;
margin: 0 auto;
}
.loading {
width: 60rpx;
height: 60rpx;
}
.loadmore {
width: 100%;
height: 100rpx;
font-size: 28rpx;
background-color: #eee;
color: gray;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.viewHidden {
display: none;
}