page.css
1.0 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
.pageTest{
display: flex;
}
.pagingUl{
float:right;
padding:0;
margin:0;
list-style: none;
}
.pagingUl li{
float: left;
width: 0.44rem;
height: 0.44rem;
text-align: center;
margin-left: 0.1rem;
display: flex;
}
.pagingUl li:last-child{
margin-right: 0.1rem;
}
.pagingUl li a{
text-decoration: none;
display: inline-block;
width: 0.44rem;
height: 0.44rem;
line-height: 0.44rem;
text-align: center;
/*line-height: 28px;*/
padding: 0;
background: #fafafa;
color: #4D4F5C;
font-size: 12px;
border: 1px solid #ddd;
}
.prv, .next {
width: 0.44rem;
height: 0.44rem;
float: left;
text-align: center;
line-height: 0.44rem;
border: 1px solid #e6e6e6;
cursor: pointer;
/*color:#4D4F5C;*/
font-size: 14px;
color: #999999;
}
.first, .last {
width: 45px;
height: 32px;
font-size: 12px;
text-align: center;
line-height: 30px;
border: 1px solid #ddd;
cursor: pointer;
color:#4D4F5C;
}
.activP{
background-color: #922020 !important;
color: #ffffff !important;
}