jquery.page.css
1.31 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
93
94
@charset "utf-8";
/*样式参考*/
a {
text-decoration: none;
}
#page {
height: 50px;
display: table;
margin: 0 auto;
}
.page {
text-align: center;
}
.fl {
float: left;
}
.fr {
float: right;
}
.pagingUl {
float: right;
padding: 0;
margin: 0;
list-style: none;
height: 30px;
}
.pagingUl li {
float: left;
width: 30px;
height: 30px;
background: #fff;
text-align: center;
margin-right: 5px;
border-radius: 5px
}
.pagingUl li a {
display: inline-block;
width: 30px;
height: 30px;
text-align: center;
line-height: 28px;
color: #999;
font-size: 12px;
border-radius: 5px
}
.prv,
.next {
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
cursor: pointer;
background: #fff;
padding: 0 5px;
border-radius: 5px;
}
.prv {
margin-right: 10px;
}
.first,
.last {
width: 38px;
height: 30px;
font-size: 12px;
text-align: center;
line-height: 30px;
/*border: 1px solid #ddd;*/
cursor: pointer;
background: #fff;
padding: 0 5px;
border-radius: 5px;
margin-right: 10px;
color: #666666;
}
.prv:hover,
.next:hover,
.first:hover,
.last:hover,
.pagingUl li a:hover,
.activP {
background-color: #126ae6!important;
color: #fff!important;
}