_bundle.css
2.27 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
.bundle-title {
height: 80px;
display: flex;
overflow: hidden;
.opt {
width: 100px;
display: flex;
align-items: center;
justify-content: center;
.select {
display: block;
}
.edit {
display: none;
}
.disable {
background-color: #7f7f7f;
}
}
.title {
display: flex;
align-items: center;
span {
height: 40px;
padding: 4px;
font-size: 16px;
background-color: #d1021c;
color: #fff;
border-radius: 5px;
}
}
}
.bundle-nums {
height: 80px;
display: none;
overflow: hidden;
.label {
width: 284px;
height: 80px;
display: flex;
align-items: center;
span {
padding-left: 100px;
}
}
.num-opt {
border: solid 1PX #dfdfdf;
border-radius: 5px;
display: flex;
align-items: center;
overflow: hidden;
.btn {
width: 78px;
display: block;
height: 100%;
text-align: center;
line-height: 74px;
.iconfont {
color: #444;
}
&.disabled {
.iconfont {
color: #b0b0b0;
}
}
&.btn-opt-minus {
border-right: 1PX solid #dfdfdf;
.iconfont:before {
content: "\e625";
}
}
&.btn-opt-plus {
border-left: 1px solid #dfdfdf;
.iconfont:before {
content: "\e624";
}
}
}
.good-num {
width: 120px;
text-align: center;
color: #444;
font-size: 32px;
background-color: #fff;
border: none;
line-height: 74px;
height: 74px;
&:disabled {
color: initial;
}
}
}
.count {
width: 155px;
text-align: right;
margin-right: 30px;
line-height: 80px;
color: #999;
}
}
.edit .bundle-nums {
display: flex;
}