index.scss
2.95 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
background-color: #f0f0f0;
}
.my-prize-wrap {
padding: 20px 30px;
font-size: 0;
.prize-item {
background-color: #FFFFFF;
height: 300px;
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.item-top {
position: relative;
height: 220px;
padding: 40px 30px;
box-sizing: border-box;
.prize-img {
position: absolute;
top: 40px;
left: 30px;
width: 200px;
height: 140px;
}
.prize-info {
margin-left: 230px;
height: 140px;
box-sizing: border-box;
}
.prize-name {
font-family: PingFang-SC-Regular;
font-size: 30px;
color: #444444;
letter-spacing: 0;
line-height: 1.5;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.got-time {
font-family: PingFangSC-Regular;
font-size: 24px;
color: #B0B0B0;
letter-spacing: 0;
line-height: 1.5;
margin-top: 10px;
}
}
.item-bottom {
position: relative;
height: 80px;
.fix-line {
position: absolute;
height: 1px;
top: 0;
left: 0;
right: 0;
background-color: #e0e0e0;
transform: scale(1, 0.5);
}
.detail {
position: relative;
height: 80px;
padding-right: 64px;
font-family: PingFang-SC-Regular;
font-size: 28px;
line-height: 80px;
color: #B0B0B0;
letter-spacing: 0;
text-align: right;
float: right;
}
.detail-img {
position: absolute;
top: 25px;
right: 30px;
width: 30px;
height: 30px;
}
}
.empty-prize {
text-align: center;
padding-top: 272px;
.empty-img {
width: 180px;
height: 180px;
}
.empty-tip {
font-family: PingFang-SC-Regular;
font-size: 24px;
color: #444444;
letter-spacing: 0;
text-align: center;
margin-top: 60px;
}
.back-try {
height: 80px;
width: 426px;
margin: 130px auto 0;
background: #363636;
border-radius: 2px;
font-family: PingFang-SC-Regular;
font-size: 28px;
color: #FFFFFF;
letter-spacing: 0;
text-align: center;
line-height: 80px;
}
}
}