rank-gift.scss
1.32 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
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
$contentWidth:690px;
.page {
.bgc {}
.bg {}
.main {
font-size: 28px;
color: #333333;
.top-space {
height: 20px;
}
.content {
position: relative;
.gift {
width: $contentWidth;
margin: 0 auto 0;
&-item {
@extend .bb;
padding: 30px 0;
display: flex;
justify-content: space-between;
align-items: center;
.prize {
margin: 0 30px;
.image {
width: 120px;
height: 120px;
}
}
.cont {
position: relative;
height: 100%;
flex: 1;
display: flex;
flex-wrap: wrap;
align-content: space-between;
.t1 {
align-self: center;
padding: 4px 0;
}
.t2 {
font-size: 24px;
color: #999999;
}
.t3 {
font-size: 24px;
color: #3680EB;
}
}
.btn {
@include cb(120px, 60px);
margin-right: 20px;
}
.disable{
background-color: #999999;
}
}
}
}
}
}