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
| .content-drawer {
| height: 100%;
| font-size: 12px;
| }
| // 购物车样式
| .cart-con{
| position: relative;
| background: #fff;
| height: 100%;
| ul>li{
| font-size: 12px;
| border-bottom: 1px dashed #999;
| margin: 0 10px;
| display: flex;
| padding: 10px 0;
| align-items: center;
| position: relative;
| p{margin-bottom: 10px;}
| .del{
| position: absolute;
| right: 10px;
| bottom: 30px;
| }
|
| .price {
| color: $theme_color;
| span{color: #999;}
| }
|
| &:last-child{border: none;}
| }
|
| }
| // 订单样式
| .order-con{
| ul>li {
| margin: 10px;
| background-color: #fff;
| .order-status {
| display: flex;
| background-color: #666;
| border-radius: 3px 3px 0 0;
| color: #fff;
| justify-content: space-between;
| padding: 0 10px;
| }
|
| .goods-img {
| padding-left: 10px;
| padding-top: 10px;
| img{
| border: 1px solid #eee;
| margin-right: 10px;
|
| &:hover{
| cursor: pointer;
| }
| }
| }
|
| .order-handle{
| display: flex;
| justify-content: space-between;
| padding:5px 10px;
| border-top: 1px solid #eee;
| span:nth-child(1){
| color: $theme_color;
| }
| }
| }
| }
| // 优惠券样式
| .coupon-con{
| margin-top: 10px;
| }
| // 足迹样式
| .tracks-con,.collect-con{
| ul{
| display: flex;
| flex-wrap: wrap;
| padding: 10px;
| }
| li {
| background-color: #fff;
| margin: 10px;
| width: 120px;
| position: relative;
| text-align: center;
| &:hover{
| div,.del-icon{
| display: block;
| }
|
| }
|
| img{
| cursor: pointer;
| }
|
| div{
| display: none;
| position: absolute;
| bottom: 18px;
| width: 100%;
| background-color: #666;
| color: #fff;
| &:hover{
| background-color: $theme_color;
| cursor: pointer;
| }
| }
| .del-icon{
| display: none;
| font-size: 20px;
| position: absolute;
| width: 30px;
| height: 30px;
| line-height: 30px;
| text-align: center;
| right: 0;
| top: 0;
| cursor: pointer;
| color: $theme_color;
| }
| }
| }
| // 我的收藏样式
| .collect-con{
|
| }
|
|