style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. @charset "utf-8";
  2. a {
  3. text-decoration:none;
  4. }
  5. a:hover {
  6. text-decoration:none;
  7. }
  8. article {
  9. min-height: 600px;
  10. }
  11. label.error {
  12. right: -100px !important;
  13. }
  14. #thumbview {
  15. position: absolute;
  16. }
  17. .card {
  18. box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
  19. margin-bottom: 1rem;
  20. }
  21. .card-header {
  22. background-color: transparent;
  23. border-bottom: 1px solid rgba(0,0,0,.125);
  24. position: relative;
  25. border-top-left-radius: .25rem;
  26. border-top-right-radius: .25rem;
  27. }
  28. .card-body .btn-app {
  29. height: auto;
  30. padding: 12px 5px 8px 5px;
  31. width: 22%;
  32. margin: 1%;
  33. }
  34. /* 分页 */
  35. .pagination {
  36. display: inline-block;
  37. padding-left: 0;
  38. border-radius: 4px;
  39. list-style: none;
  40. }
  41. .pagination li {
  42. float: left;
  43. border: 1px solid #DDD;
  44. border-left: none;
  45. min-width: 31px;
  46. height: 28px;
  47. line-height: 28px;
  48. text-align: center;
  49. }
  50. .pagination li.active,
  51. li.disabled {
  52. width: 31px;
  53. height: 28px;
  54. text-align: center;
  55. line-height: 28px;
  56. color: #737373;
  57. cursor: default;
  58. background: #f5f5f5;
  59. }
  60. .pagination li a {
  61. color: #3399d5;
  62. }
  63. .pagination li:first-child {
  64. border-left: 1px solid #DDD;
  65. border-bottom-left-radius: 5px;
  66. border-top-left-radius: 5px;
  67. }
  68. .pagination li:last-child {
  69. border-bottom-right-radius: 5px;
  70. border-top-right-radius: 5px;
  71. }
  72. .pagination li:hover {
  73. background: #f5f5f5;
  74. }
  75. /* topalert 右上角*/
  76. .topalert {
  77. position: absolute;
  78. display: none;
  79. top: 50px;
  80. right: 50px;
  81. width: 160px;
  82. z-index: 99;
  83. }
  84. .topalert0 {
  85. top: 50px;
  86. }
  87. .topalert1 {
  88. top: calc(50px + 50px*1);
  89. }
  90. .topalert2 {
  91. top: calc(50px + 50px*2);
  92. }
  93. .topalert3 {
  94. top: calc(50px + 50px*3);
  95. }