tips-wish-comp.scss
2.21 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
133
134
135
136
137
138
139
140
141
142
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
.comp-item {
position: relative;
width: 654px;
height: 951px;
// background-color: wheat;
.bg {
position: absolute;
width: 654px;
height: 951px;
}
.cont {
position: relative;
.space1 {
height: 250px;
}
// 心愿列表
.wish {
@extend .bb;
padding: 0 80px;
.row {
display: flex;
}
.row2 {
justify-content: flex-end;
.desc {
padding-left: 32px;
}
}
.wish-item {
width: 420px;
height: 122px;
box-shadow: 0px 6px 30px 0 rgba(0, 0, 0, 0.3);
background-color: #ffffff;
display: flex;
justify-content: center;
margin-bottom: 32px;
.prod {
position: relative;
width: 122px;
height: 122px;
text-align: center;
image {
position: absolute;
max-width: 120px;
max-height: 120px;
bottom: 12px;
left: 0;
right: 0;
margin: 0 auto;
}
}
.desc {
width: 300px;
font-weight: 300;
font-size: 22px;
display: flex;
flex-wrap: wrap;
align-content: center;
@extend .bb;
.name {
color: #333333;
}
.val {
font-size: 18px;
color: #999999;
margin-top: 4px;
}
}
}
&-item2 {
justify-self: flex-end;
align-self: flex-end;
}
}
// 累计心愿值
.wish-val {
@extend .fcc;
color: #333333;
font-size: 24px;
.icon {
width: 12px;
height: 25px;
margin-right: 8px;
}
.val {
color: #b93138;
}
}
}
.btn-wrap {
position: absolute;
left: 0;
right: 0;
bottom: 100px;
display: flex;
justify-content: center;
padding: 0 50px;
@extend .bb;
.btn {
margin: 0 auto;
@include cb(234px, 64px);
}
.btn2 {
border: solid 1px #b83138;
background: transparent;
color: #ba3039;
}
}
}