-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
68 lines (57 loc) · 936 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
65
66
67
68
page {
font-family: 'Microsoft YaHei';
background-color: #fff;
display: flex;
flex-direction: column;
}
.page-header {
display: flex;
justify-content: center;
border-bottom: 1rpx solid #ccc;
margin-bottom: 10rpx;
}
.page-header-text {
padding: 20rpx 40rpx;
color: #999;
font-size: 40rpx;
text-align: center;
}
.page-body {
display: flex;
flex: 1;
flex-direction: column;
}
.item {
display: flex;
padding: 20rpx 40rpx;
border-bottom: 1rpx solid #eee;
}
.item .poster {
width: 128rpx;
height: 128rpx;
margin-right: 20rpx;
}
.item .meta {
flex: 1;
}
.item .meta .title,
.item .meta .sub-title {
display: block;
margin-bottom: 15rpx;
}
.item .meta .title {
font-size: 32rpx;
}
.item .meta .sub-title {
font-size: 22rpx;
color: #c0c0c0;
}
.item .meta .artists {
font-size: 26rpx;
color: #999;
}
.item .rating {
font-size: 28rpx;
font-weight: bold;
color: #f74c31;
}