1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * 外面盒子样式---自己定义
- */
- .page_div {
- width: 1378px;
- height: 54px;
- font-size: 14px;
- font-family: "microsoft yahei";
- color: #666666;
- box-sizing: border-box;
- background-color: #f2f4f6;
- border-radius: 10px;
- line-height: 54px;
- text-align: center;
- }
- /*
- * 页数按钮样式
- */
- .page_div a {
- min-width: 40px;
- height: 32px;
- text-align: center;
- cursor: pointer;
- line-height: 32px;
- color: #000000;
- font-size: 14px;
- display: inline-block;
- font-weight: bold;
- margin-left: 10px;
- }
- #firstPage,
- #lastPage {
- width: 50px;
- color: #9a9ea5;
- /* border: 1px solid #0073A9!important; */
- }
- #prePage,
- #nextPage {
- width: 70px;
- color: #9a9ea5;
- /* border: 1px solid #0073A9!important; */
- }
- .page_div .current {
- /* background-color: #0073A9;
- border-color: #0073A9; */
- color: #007aff;
- }
- .totalPages {
- margin: 0 10px;
- }
- .totalPages span,
- .totalSize span {
- color: #0073a9;
- margin: 0 5px;
- }
|