page.less 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .page-wrap {
  2. text-align: center;
  3. }
  4. .pagination {
  5. display: inline-block;
  6. *display: inline;
  7. *zoom: 1;
  8. text-align: center;
  9. margin: 10px 0;
  10. font-size: 0;
  11. li {
  12. position: relative;
  13. display: inline-block;
  14. *display: inline;
  15. *zoom: 1;
  16. border: 1px solid #e2e2e2;
  17. width: 28px;
  18. height: 28px;
  19. line-height: 28px;
  20. margin: 0 -1px 5px 0;
  21. background-color: #fff;
  22. color: #333;
  23. font-size: 12px;
  24. text-align: center;
  25. a {
  26. display: block;
  27. width: 100%;
  28. height: 100%;
  29. }
  30. &.active {
  31. border: 1px solid #1E9FFF;
  32. span {
  33. display: block;
  34. width: 100%;
  35. height: 100%;
  36. background-color: #1E9FFF;
  37. color: #fff;
  38. }
  39. }
  40. &.disabled {
  41. background: #f2f2f2;
  42. }
  43. }
  44. }