paging.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * 外面盒子样式---自己定义
  3. */
  4. .page_div {
  5. width: 1378px;
  6. height: 54px;
  7. font-size: 14px;
  8. font-family: "microsoft yahei";
  9. color: #666666;
  10. box-sizing: border-box;
  11. background-color: #f2f4f6;
  12. border-radius: 10px;
  13. line-height: 54px;
  14. text-align: center;
  15. }
  16. /*
  17. * 页数按钮样式
  18. */
  19. .page_div a {
  20. min-width: 40px;
  21. height: 32px;
  22. text-align: center;
  23. cursor: pointer;
  24. line-height: 32px;
  25. color: #000000;
  26. font-size: 14px;
  27. display: inline-block;
  28. font-weight: bold;
  29. margin-left: 10px;
  30. }
  31. #firstPage,
  32. #lastPage {
  33. width: 50px;
  34. color: #9a9ea5;
  35. /* border: 1px solid #0073A9!important; */
  36. }
  37. #prePage,
  38. #nextPage {
  39. width: 70px;
  40. color: #9a9ea5;
  41. /* border: 1px solid #0073A9!important; */
  42. }
  43. .page_div .current {
  44. /* background-color: #0073A9;
  45. border-color: #0073A9; */
  46. color: #007aff;
  47. }
  48. .totalPages {
  49. margin: 0 10px;
  50. }
  51. .totalPages span,
  52. .totalSize span {
  53. color: #0073a9;
  54. margin: 0 5px;
  55. }