select-giftcard.page.css
2.61 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
@use postcss-clearfix;
@define-extend padding-30 {
padding: 30px 30px 0;
}
$title-bg-color: #d0021b;
$title-font-color: #fff;
.nav-rule-right {
float: right;
margin-right: 30px;
}
.select-giftcard-page {
@extend padding-30;
background-color: #f0f0f0;
padding-bottom: 88px;
.hide {
display: none;
}
.active {
background-color: #444 !important;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.clearfix {
clear: fix;
}
.giftcard {
margin-bottom: 30px;
> .card-title {
height: 88px;
line-height: 88px;
background-color: $title-bg-color;
color: $title-font-color;
border-top-left-radius: 12.5px;
border-top-right-radius: 12.5px;
.balance > label {
margin-left: 80px;
font-size: 24px;
font-weight: 400;
}
.balance > span {
font-size: 48px;
}
.logo {
margin-right: 20px;
.iconfont {
font-size: 36px;
}
}
}
> .card-body {
padding: 10px 30px;
height: 188px;
background-color: #fff;
border-bottom-left-radius: 12.5px;
border-bottom-right-radius: 12.5px;
font-size: 11px;
> .content {
width: 590px;
color: #444;
}
> .content > .content-li {
line-height: 54px;
> .left-label {
width: 90px;
font-weight: 600;
}
.tip {
color: #d0021b;
}
}
> .checkbox {
width: 40px;
height: 188px;
padding-top: 54px;
}
> .checkbox > .iconfont {
font-size: 40px;
color: #b0b0b0;
}
> .checkbox > .checked-icon {
display: none;
}
}
}
.checked > .card-body > .checkbox > .checked-icon {
display: block;
}
.checked > .card-body > .checkbox > .no-checked-icon {
display: none;
}
.use-giftcard-btn {
position: fixed;
bottom: 0;
left: 0;
width: 750px;
height: 88px;
border-radius: 2px;
background-color: #bdbdbd;
color: #fff;
font-size: 32px;
text-align: center;
}
}