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
| .emptyBox {
| width: 100%;
| height: 100px;
| border: solid 1px $LIGHT_GREY;
| text-align: center;
| border-radius: 10px;
|
| .smTxt {
| line-height: 100px;
| }
| }
|
| .recommendStyle {
| box-shadow: 0 0 6px #00000029;
| background-color: $PRIMARY_WHITE;
| }
|
| .quickBtnBlock {
| display: flex;
| width: 100%;
| height: 132px;
| flex-wrap: wrap;
| justify-content: space-between;
|
| .quickBtn {
| width: 48%;
| height: 56px;
| text-align: center;
| box-shadow: 0 0 6px #22222229;
| border-radius: 10px;
| border-color: $CORAL;
|
| &.isActive {
| background-color: $CORAL;
| color: $PRIMARY_WHITE;
| }
| }
| .quickBtn+.quickBtn {
| margin-left: 0;
| }
|
| }
|
| .recommend {
| position: relative;
|
| .img {
| position: absolute;
| top: -50px;
| right: 10px;
| }
| }
|
|