_order-area.css
1.68 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
.order-area {
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
color: #878787;
font-weight: 700;
.order {
display: inline-block;
margin: 14px 15px;
height: 24px;
line-height: 24px;
cursor: pointer;
}
.dest {
display: inline-block;
position: relative;
width: 15px;
height: 24px;
line-height: 24px;
margin: 14px 15px;
margin-left: -10px;
margin-bottom: -10px;
cursor: pointer;
.iconfont {
display: block;
font-size: 12px;
height: 12px;
line-height: 12px;
position: absolute;
}
.iconfont.selected {
color: #1b1b1b;
}
.iconfont.up {
top: -2px;
}
.iconfont.down {
top: 8px;
}
}
.order.selected {
color: #1b1b1b;
}
.order-page {
height: 24px;
line-height: 24px;
margin-top: 12px;
float: right;
label {
color: #1b1b1b;
font-weight: 700;
display: inline-block;
}
label.page-info {
margin: 0 25px;
}
.page {
color: #1b1b1b;
font-weight: 700;
border: 2px solid #1b1b1b;
width: 24px;
height: 24px;
line-height: 24px;
display: inline-block;
font-size: 14px;
text-align: center;
margin-right: 8px;
cursor: pointer;
}
.page.disable {
color: #878787;
border: 2px solid #878787;
}
}
}