-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
81 lines (69 loc) · 1.22 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
/**app.wxss**/
.container {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
box-sizing: border-box;
}
/*************** employee card *****************/
.employee-group {
width: 100%;
margin-bottom: 100rpx;
}
.employee-item {
width: 100%;
margin-bottom: 5px;
display: flex;
position:relative;
padding:5px 15px;
font-size:12px;
color:#333;
background-color:#fafafa;
box-sizing:border-box;
}
.employee-item .thumb {
width:66px;
height:100px;
margin-right:10px;
-webkit-flex:none;
flex:none;
display:block;
}
.employee-item .thumb image{
width:100%;
height:100%;
display:inline-block;
overflow:hidden;
}
.employee-item .info .price {
position: absolute;
right:15px;
top: 8px;
font-size: 14px;
font-weight: bold;
color: #ff4040;
}
.employee-item .info .title {
font-weight:700;
line-height:24px;
}
.employee-item .info .text {
line-height:18px;
color:#7d7e80;
display: block;
}
.employee-item .info .star {
color: #f7cf5e;
}
.employee-item .info .like {
position: absolute;
right:10px;
bottom:2px;
font-size: 16px;
font-weight: bold;
color: #ff4040;
}