history.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .history.data-v-1a0ca80d {
  8. padding: 10px 15px;
  9. overflow: hidden;
  10. }
  11. .history .enptyStatus.data-v-1a0ca80d {
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. flex-direction: column;
  16. padding: 30px 10px;
  17. }
  18. .history .enptyStatus image.data-v-1a0ca80d {
  19. width: 120px;
  20. height: 150px;
  21. margin-top: 100px;
  22. }
  23. .history .enptyStatus .words.data-v-1a0ca80d {
  24. color: #ffae21;
  25. font-size: 18px;
  26. padding-top: 18px;
  27. }
  28. .history .item.data-v-1a0ca80d {
  29. background: #F4F9FD;
  30. padding: 12px 10px;
  31. border-radius: 12px;
  32. display: flex;
  33. align-items: center;
  34. position: relative;
  35. margin-bottom: 10px;
  36. }
  37. .history .item .tips.data-v-1a0ca80d,
  38. .history .item .fail.data-v-1a0ca80d,
  39. .history .item .loading.data-v-1a0ca80d {
  40. position: absolute;
  41. padding: 0 5px;
  42. top: 0;
  43. right: 0;
  44. height: 20px;
  45. line-height: 20px;
  46. font-size: 11px;
  47. font-family: PingFang SC;
  48. font-weight: 400;
  49. line-height: 20px;
  50. color: #FFFFFF;
  51. border-radius: 12px 12px 0px 12px;
  52. }
  53. .history .item .tips.data-v-1a0ca80d {
  54. background: #3B7652;
  55. }
  56. .history .item .fail.data-v-1a0ca80d {
  57. background: #888888;
  58. }
  59. .history .item .loading.data-v-1a0ca80d {
  60. background: #f24a14;
  61. }
  62. .history .item .image.data-v-1a0ca80d {
  63. flex: 0 0 60px;
  64. height: 60px;
  65. width: 60px;
  66. margin-right: 6px;
  67. background-position: center;
  68. background-repeat: no-repeat;
  69. background-size: cover;
  70. }
  71. .history .item .right.data-v-1a0ca80d {
  72. flex: 1;
  73. width: 100%;
  74. margin-left: 5px;
  75. }
  76. .history .item .right .title.data-v-1a0ca80d {
  77. width: 70%;
  78. white-space: nowrap;
  79. /*设置不换行*/
  80. overflow: hidden;
  81. /*设置隐藏*/
  82. text-overflow: ellipsis;
  83. /*设置隐藏部分为省略号*/
  84. font-size: 16px;
  85. font-family: PingFang SC;
  86. font-weight: bold;
  87. line-height: 20px;
  88. color: #282828;
  89. opacity: 1;
  90. }
  91. .history .item .right .name.data-v-1a0ca80d {
  92. font-size: 13px;
  93. font-family: PingFang SC;
  94. font-weight: 400;
  95. line-height: 20px;
  96. color: rgba(40, 40, 40, 0.47);
  97. }
  98. .history .item .right .time.data-v-1a0ca80d {
  99. font-size: 10px;
  100. font-family: PingFang SC;
  101. font-weight: 400;
  102. line-height: 20px;
  103. color: rgba(40, 40, 40, 0.47);
  104. }