dataIndex.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .boxlable.data-v-603b1560 {
  28. width: 47%;
  29. }
  30. .morelable.data-v-603b1560 {
  31. width: 100%;
  32. overflow-x: auto;
  33. /* 添加横向滚动条 */
  34. white-space: nowrap;
  35. }
  36. .containers.data-v-603b1560 {
  37. font-family: PingFang SC, PingFang SC;
  38. font-weight: 400;
  39. font-size: 14px;
  40. color: #222222;
  41. }
  42. .calendar-day.data-v-603b1560 {
  43. font-family: PingFang SC, PingFang SC;
  44. font-weight: 400;
  45. font-size: 12px;
  46. color: #999;
  47. flex: 1;
  48. margin: 10px 10px 0 10px;
  49. background-color: #f5f5f5;
  50. border-radius: 4px;
  51. }
  52. .topdata.data-v-603b1560 {
  53. background: linear-gradient(to right, #e1eeff, #dfe0fe);
  54. }
  55. .topdata-box.data-v-603b1560 {
  56. padding: 12px;
  57. margin: 0 12px 0 12px;
  58. background-color: rgba(255, 255, 255, 0.5);
  59. border-radius: 8px 8px;
  60. font-family: PingFang SC, PingFang SC;
  61. font-weight: 400;
  62. font-size: 14px;
  63. color: #222222;
  64. }
  65. .topdata-item.data-v-603b1560 {
  66. width: 50%;
  67. text-align: center;
  68. padding: 8px;
  69. box-sizing: border-box;
  70. }
  71. .topdata-item-num.data-v-603b1560 {
  72. color: #1677ff;
  73. }
  74. .topdata-item-num text.data-v-603b1560 {
  75. font-family: DIN, DIN;
  76. font-weight: bold;
  77. font-size: 25px;
  78. }
  79. .topdata .searchbox.data-v-603b1560 {
  80. background-color: #fff;
  81. border-radius: 8rpx 8rpx 0 0;
  82. padding: 15px;
  83. }
  84. .topdata .searchbox-item.data-v-603b1560 {
  85. height: 23px;
  86. line-height: 23px;
  87. width: 65px;
  88. background: #f5f5f5;
  89. text-align: center;
  90. border-radius: 5px;
  91. font-family: PingFang SC, PingFang SC;
  92. font-weight: 400;
  93. font-size: 12px;
  94. color: #888;
  95. }
  96. .topdata .searchbox-active.data-v-603b1560 {
  97. color: #fff !important;
  98. background-color: #1677ff !important;
  99. }
  100. .statistics.data-v-603b1560 {
  101. background-color: #fff;
  102. overflow-y: auto;
  103. box-sizing: border-box;
  104. }
  105. .statistics-title.data-v-603b1560 {
  106. font-family: PingFang SC, PingFang SC;
  107. font-weight: bold;
  108. font-size: 16px;
  109. color: #222222;
  110. }
  111. .statistics-slot-title.data-v-603b1560 {
  112. font-size: 12px;
  113. color: #1677ff;
  114. }
  115. .statistics .collapse-content.data-v-603b1560 {
  116. margin: 0 -8px -8rpx 0;
  117. }
  118. .statistics .collapse-content-item.data-v-603b1560 {
  119. flex: 1;
  120. padding: 12px;
  121. box-sizing: border-box;
  122. border-radius: 10px;
  123. background: #f5f5f5;
  124. font-family: PingFang SC, PingFang SC;
  125. font-weight: 400;
  126. font-size: 10px;
  127. color: #222222;
  128. margin: 0 8px 8rpx 0;
  129. }
  130. .statistics .collapse-content-title.data-v-603b1560 {
  131. font-size: 14px;
  132. margin-bottom: 10px;
  133. }
  134. .statistics .collapse-content-num.data-v-603b1560 {
  135. color: #1677ff;
  136. font-size: 10px;
  137. }
  138. .statistics .collapse-content-num text.data-v-603b1560 {
  139. font-family: DIN, DIN;
  140. font-weight: bold;
  141. font-size: 25px;
  142. }