myAttention.wxss
842 字节
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
/* pages/my/myAttention/myAttention.wxss */
page {
background: #f7f7f7;
}
.box {
padding: 0 30rpx;
box-sizing: border-box;
}
.item_list {
display: flex;
align-items: center;
padding: 16rpx;
box-sizing: border-box;
background: #fff;
margin-bottom: 16rpx;
}
.item_list image {
width: 96rpx;
height: 96rpx;
border-radius: 50%;
margin-right: 20rpx;
}
.user_name {
font-size: 30rpx;
font-weight: bold;
color: #333;
}
.list_time {
font-size: 22rpx;
color: #ccc;
margin-top: 10rpx;
}
.list_right {
width: 80%;
display: flex;
align-items: center;
justify-content: space-between;
}
.list_btn {
width: 144rpx;
height: 48rpx;
background: rgba(204, 204, 204, 1);
border-radius: 8rpx;
font-size: 24rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}