order.less
1.48 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
.orderPage {
// position: relative;
// min-height: 100%;
.m-page {
padding-bottom: 70px;
}
.cell {
.title {
width: 45px;
.m-icon{
margin-left: 3px;
}
}
.text {
margin-left: 45px;
.m-icon {
margin: 12px 10px 0 0;
}
}
}
.m-state{
margin: 12px 10px 0 0;
}
.countdown{
padding-top: 10px;
}
.m-circle {
font-size: 0;
padding: 0 5px;
width: 45px;
height: 45px;
}
.m-footer{
padding: 12px 25px;
}
.actions{
position: relative;
}
.font-blue{
color: #1c69a3 !important;
}
.move{
position: absolute;
z-index: -1;
left: 0;
top: 1px;
bottom: 1px;
width: 33.3%;
// height: 100%;
line-height: 1.5;
text-align: center;
float: left;
background-color: #FFF;
border-right: none;
box-sizing: border-box;
color: #FFF;
background-color: #1c69a3;
border-radius: 16px;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: -webkit-transform .15s ease-in-out;;
-o-transition: -o-transform .15s ease-in-out;;
transition: transform .15s ease-in-out;;
}
}