paging.css
1.4 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
* {
margin: 0;
padding: 0;
list-style: none;
}
.fl {
float: left;
}
.box {
width: 3.2rem;
margin: 0 auto;
height: 0.96rem;
line-height: 0.96rem;
box-sizing: border-box;
/*padding-top: 0.23rem;*/
text-align: center;
display: flex;
align-items: center;
}
.box button {
width: 0.44rem;
padding: 0 0.15rem;
margin: 0 0.1rem;
height: 0.44rem;
float: left;
cursor: pointer;
border: 1px solid #e6e6e6;
background-color: #ffffff;
}
.box button img {
width: 100%;
height: 100%;
}
.box .first-page,
.box .last-page {
margin: 0;
}
.box .pageWrap {
height: 0.4rem;
float: left;
overflow: hidden;
}
.box .pageWrap ul {
width: 3rem;
height: 0.4rem;
float: left;
}
.box .pageWrap ul li {
width: 0.4rem;
height: 0.43rem;
margin: 0 2px;
border: 1px solid #e6e6e6;
line-height: 0.4rem;
box-sizing: border-box;
cursor: pointer;
float: left;
font-size: 0.3rem;
}
.box .pageWrap ul .sel-page {
background: rgba(209, 51, 51, 1);
color: #fff;
}
.box .jump-text {
width: 60px;
height: 40px;
box-sizing: border-box;
text-align: center;
margin: 0 5px;
float: left;
}
.box .jump-button {
margin: 0;
float: left;
}
.box .total-pages,
.box .total-count {
margin-left: 10px;
float: left;
font-size: 14px;
}