history.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. .graph {
  28. position: absolute;
  29. top: 54px;
  30. width: 90%;
  31. left: 5%;
  32. }
  33. .graph .canvasbox {
  34. width: 100%;
  35. height: 550rpx;
  36. position: relative;
  37. box-shadow: 0 0 10rpx #bcb9ca;
  38. padding-top: 20px;
  39. }
  40. .graph .canvasbox .canvastishi {
  41. font-size: 32rpx;
  42. position: absolute;
  43. top: 50%;
  44. left: 50%;
  45. margin-left: -64rpx;
  46. margin-top: -21rpx;
  47. }
  48. .graph .canvasbox .canvastishi .dataloading:after {
  49. overflow: hidden;
  50. display: inline-block;
  51. vertical-align: bottom;
  52. -webkit-animation: ellipsis 2s infinite;
  53. animation: ellipsis 2s infinite;
  54. content: "\2026";
  55. }
  56. @-webkit-keyframes ellipsis {
  57. from {
  58. width: 2px;
  59. }
  60. to {
  61. width: 15px;
  62. }
  63. }
  64. @keyframes ellipsis {
  65. from {
  66. width: 2px;
  67. }
  68. to {
  69. width: 15px;
  70. }
  71. }
  72. .graph .canvasbox .schedule {
  73. display: -webkit-box;
  74. display: -webkit-flex;
  75. display: flex;
  76. width: 280rpx;
  77. height: 50rpx;
  78. border: 2rpx solid #F0F0F0;
  79. margin-right: 40rpx;
  80. }
  81. .graph .canvasbox .schedule .schedule_value {
  82. width: 70%;
  83. text-align: center;
  84. line-height: 50rpx;
  85. font-size: 24rpx;
  86. }
  87. .graph .canvasbox .schedule .schedule_icon {
  88. width: 30%;
  89. background-color: #F2F2F2;
  90. text-align: center;
  91. line-height: 50rpx;
  92. }
  93. .graph .none_hint {
  94. font-size: 32rpx;
  95. font-weight: 700;
  96. position: absolute;
  97. top: 0;
  98. left: 50%;
  99. margin-left: -64rpx;
  100. }
  101. .shuju_one_title {
  102. width: 70%;
  103. margin: 0 auto;
  104. display: -webkit-box;
  105. display: -webkit-flex;
  106. display: flex;
  107. }
  108. .shuju_one_title .tltle_text {
  109. width: 25%;
  110. border: 2rpx solid #B2B2B2;
  111. color: #B2B2B2;
  112. text-align: center;
  113. font-size: 24rpx;
  114. height: 50rpx;
  115. line-height: 50rpx;
  116. }
  117. .shuju_one_title .title_text_color {
  118. width: 25%;
  119. border: 2rpx solid #28AE4F;
  120. color: #28AE4F;
  121. text-align: center;
  122. font-size: 24rpx;
  123. height: 50rpx;
  124. line-height: 50rpx;
  125. }
  126. .selecttimes {
  127. width: 100%;
  128. box-shadow: 0 0 10rpx #bcb9ca;
  129. margin-top: 20rpx;
  130. padding: 10rpx 20rpx;
  131. box-sizing: border-box;
  132. }
  133. .selecttimes .timesbox {
  134. display: -webkit-box;
  135. display: -webkit-flex;
  136. display: flex;
  137. -webkit-justify-content: space-around;
  138. justify-content: space-around;
  139. }
  140. .selecttimes .timesbox image {
  141. width: 30rpx;
  142. height: 30rpx;
  143. margin-top: 6rpx;
  144. }
  145. .selecttimes .timesbox .icon {
  146. color: #949494;
  147. text-align: right;
  148. margin-left: 30rpx;
  149. }
  150. .condition {
  151. display: -webkit-box;
  152. display: -webkit-flex;
  153. display: flex;
  154. -webkit-flex-wrap: wrap;
  155. flex-wrap: wrap;
  156. width: 100%;
  157. box-shadow: 0 0 10rpx #bcb9ca;
  158. margin: 30rpx 0;
  159. }
  160. .condition .scroll-X {
  161. width: 95%;
  162. margin: 20rpx auto;
  163. }
  164. .condition .scroll-X .tr {
  165. display: -webkit-box;
  166. display: -webkit-flex;
  167. display: flex;
  168. overflow: hidden;
  169. }
  170. .condition .scroll-X .tr .th,
  171. .condition .scroll-X .tr .td {
  172. display: inline-block;
  173. padding: 5rpx;
  174. width: 240rpx;
  175. text-align: center;
  176. height: 52rpx;
  177. line-height: 52rpx;
  178. border: 2rpx solid #F1F1F1;
  179. }
  180. .condition .scroll-X .tr .th:first-child,
  181. .condition .scroll-X .tr .td:first-child {
  182. width: 300rpx;
  183. }
  184. .condition .pagenumber {
  185. display: -webkit-box;
  186. display: -webkit-flex;
  187. display: flex;
  188. margin: 20rpx auto;
  189. }
  190. .condition .pagenumber button {
  191. width: 150rpx;
  192. height: 50rpx;
  193. line-height: 50rpx;
  194. font-size: 26rpx;
  195. text-align: center;
  196. background-color: #17BB89;
  197. color: #FFFFFF;
  198. }
  199. .condition .pagenumber .pagenumber_page {
  200. width: 150rpx;
  201. height: 50rpx;
  202. line-height: 50rpx;
  203. font-size: 26rpx;
  204. text-align: center;
  205. }
  206. .u-calendar__action {
  207. display: -webkit-box;
  208. display: -webkit-flex;
  209. display: flex;
  210. -webkit-justify-content: space-around;
  211. justify-content: space-around;
  212. }
  213. .u-calendar__action .u-calendar__action__text {
  214. line-height: 25px;
  215. }