pagestyle.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <style>
  2. /*.fy .pag li a {width: auto;float: none;color: #333;}*/
  3. /*.fy .pag {*/
  4. /*text-align: center;*/
  5. /*height: 20px;*/
  6. /*line-height: 20px;*/
  7. /*clear: both;*/
  8. /*float: none;*/
  9. /*padding: 0px;*/
  10. /*}*/
  11. /*!*.fy .pag li {*!*/
  12. /*!*text-align: center;*!*/
  13. /*!*margin: 0px 2px;*!*/
  14. /*!*padding: 0px 8px;*!*/
  15. /*!*height: 20px;*!*/
  16. /*!*line-height: 20px;*!*/
  17. /*!*text-decoration: none;*!*/
  18. /*!*display: inline-block;*!*/
  19. /*!*border: 1px solid #006ada;*!*/
  20. /*!*width: auto;*!*/
  21. /*!*}*!*/
  22. /*.fy .pag .current {*/
  23. /*background-color: #006ada;*/
  24. /*}*/
  25. .fy {
  26. text-align: center;
  27. }
  28. .fy .pag {
  29. list-style: none;
  30. padding-left: 0;
  31. }
  32. .fy .pag li {
  33. padding: 0 10px;
  34. vertical-align: top;
  35. display: inline-block;
  36. font-size: 14px;
  37. min-width: 36px;
  38. min-height: 28px;
  39. line-height: 28px;
  40. cursor: pointer;
  41. box-sizing: border-box;
  42. text-align: center;
  43. background-color: #ffffff;
  44. color: #333;
  45. border-radius: 6px;
  46. margin: 0 1px;
  47. border: 1px solid #ebebeb;
  48. height: 30px;
  49. }
  50. .fy .pag li:hover {
  51. transform: scale(1.1);
  52. background-color: #006ada;
  53. color: #fff;
  54. }
  55. .fy .pag li.current {
  56. background: #006ada;
  57. color: white;
  58. cursor: not-allowed;
  59. }
  60. .fy .pag li.disabled {
  61. cursor: not-allowed;
  62. }
  63. .fy .pag li.totalPage {
  64. background: transparent;
  65. cursor: default;
  66. border: none;
  67. padding: 0 6px;
  68. }
  69. .fy .pag li.totalPage:hover {
  70. transform: none;
  71. background-color: #ffffff;
  72. color: #333;
  73. }
  74. .fy .pag li input {
  75. -webkit-appearance: none;
  76. background-color: #fff;
  77. background-image: none;
  78. border-radius: 4px;
  79. border: 1px solid #dcdfe6;
  80. box-sizing: border-box;
  81. color: #606266;
  82. display: inline-block;
  83. font-size: inherit;
  84. outline: none;
  85. padding: 3px 5px;
  86. transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
  87. width: 40px;
  88. height: 25px;
  89. margin: 0 6px;
  90. }
  91. .fy .pag li input:focus {
  92. border-color: #98A6AD;
  93. }
  94. .pagination {
  95. user-select: none;
  96. text-align: center;
  97. }
  98. .pagination ul:nth-child(2) {
  99. border-radius: 6px;
  100. }
  101. input[type=number] {
  102. -moz-appearance: textfield;
  103. }
  104. input[type=number]::-webkit-inner-spin-button,
  105. input[type=number]::-webkit-outer-spin-button {
  106. -webkit-appearance: none;
  107. margin: 0;
  108. }
  109. </style>