recharge-log.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. ax-body >>> .ax-body{
  2. background-color: #F5F7FB;
  3. }
  4. >>> .ax-custom-title{
  5. background-color: #fff;
  6. }
  7. .page-background{
  8. display: block;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. height: 100%;
  14. }
  15. .body{
  16. display: flex;
  17. flex-direction: column;
  18. width: 100%;
  19. height: 100%;
  20. padding: 10px 0;
  21. overflow: auto;
  22. position: relative;
  23. z-index: 1;
  24. }
  25. .list .item + .item{
  26. margin-top: 10px;
  27. }
  28. .list .item{
  29. display: block;
  30. background-color: #fff;
  31. border-radius: 10px;
  32. padding: 20px 10px;
  33. }
  34. .list .item .title{
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. border-bottom: 1px solid #f0f0f0;
  39. padding-bottom: 10px;
  40. margin-bottom: 10px;
  41. }
  42. .list .item .title .name{
  43. font-size: 16px;
  44. font-weight: bold;
  45. }
  46. .list .item .title .state{
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. width: 74px;
  51. height: 22px;
  52. font-size: 14px;
  53. color: #fff;
  54. background-color: #4EDC86;
  55. border-radius: 100px 0 0 0;
  56. margin-right: -10px;
  57. }
  58. .list .item .title .state:before{
  59. content: '';
  60. display: inline-block;
  61. width: 4px;
  62. height: 4px;
  63. border-radius: 100%;
  64. background-color: #fff;
  65. margin-right: 5px;
  66. }
  67. .list .item .cell{
  68. font-size: 12px;
  69. color: #aaa;
  70. line-height: 26px;
  71. }
  72. .list .loadmore{
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. font-size: 12px;
  77. color: #aaa;
  78. height: 60px;
  79. }
  80. .nothing{
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. flex-direction: column;
  85. width: 100%;
  86. height: 100%;
  87. background-color: #fff;
  88. border-radius: 16px;
  89. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  90. font-size: 14px;
  91. color: #ccc;
  92. }
  93. .nothing .icon{
  94. display: block;
  95. width: 25vw;
  96. margin-bottom: 10px;
  97. }