prizeUserList.wxss
1.7 KB
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
page {
background-color: #222;
}
image {
width: 100%;
height: 100%;
}
.container {
display: flex;
height: 100%;
flex-direction: column;
align-items: center;
justify-content: flex-start;
box-sizing: border-box;
padding: 0;
}
.queue-list {
width: 100%;
display: flex;
flex-direction: row;
align-content: flex-start;
flex-wrap: wrap;
box-sizing: border-box;
}
.queue-item {
display: flex;
flex-shrink: 0;
flex-direction: row;
align-items: center;
width: 374rpx;
height: 176rpx;
border-top: 1rpx solid #222;
background-color: #3a3a3a;
font-size: 24rpx;
color: #fff;
}
.queue-item:nth-child(odd) {
margin-right: 1rpx;
}
.queue-item .head-container {
display: flex;
position: relative;
align-items: center;
justify-content: center;
width: 156rpx;
height: 156rpx;
}
.head-container image {
width: 96rpx;
height: 96rpx;
border-radius: 50%;
box-sizing: border-box;
}
.head-container .gift-icon {
position: absolute;
width: 30rpx;
height: 30rpx;
right: 24rpx;
bottom: 34rpx;
z-index: 5;
}
.gift-icon image {
width: 100%;
height: 100%;
border: none;
}
.queue-item .info-container {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 210rpx;
height: 156rpx;
overflow: hidden;
}
.user-rank { /* item 用户排名 */
font-size: 36rpx;
font-weight: bold;
line-height: 40rpx;
}
.user-name {
width: 100%;
font-size: 24rpx;
line-height: 36rpx;
overflow: hidden;
white-space: nowrap;
}
.info-container .user-vip-level {
width: 40rpx;
height: 25rpx;
}