history.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. z-index: -1;
  39. }
  40. .graph .canvasbox .charts {
  41. z-index: -1;
  42. }
  43. .graph .canvasbox .canvastishi {
  44. font-size: 32rpx;
  45. position: absolute;
  46. top: 50%;
  47. left: 50%;
  48. margin-left: -64rpx;
  49. margin-top: -21rpx;
  50. }
  51. .graph .none_hint {
  52. font-size: 32rpx;
  53. font-weight: 700;
  54. position: absolute;
  55. top: 0;
  56. left: 50%;
  57. margin-left: -64rpx;
  58. }
  59. .shuju_one_title {
  60. width: 70%;
  61. margin: 0 auto;
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: flex;
  65. }
  66. .shuju_one_title .tltle_text {
  67. width: 25%;
  68. border: 2rpx solid #B2B2B2;
  69. color: #B2B2B2;
  70. text-align: center;
  71. font-size: 24rpx;
  72. height: 50rpx;
  73. line-height: 50rpx;
  74. }
  75. .shuju_one_title .title_text_color {
  76. width: 25%;
  77. border: 2rpx solid #28AE4F;
  78. color: #28AE4F;
  79. text-align: center;
  80. font-size: 24rpx;
  81. height: 50rpx;
  82. line-height: 50rpx;
  83. }
  84. .selecttimes {
  85. width: 100%;
  86. box-shadow: 0 0 10rpx #bcb9ca;
  87. margin-top: 20rpx;
  88. }
  89. .selecttimes .tishi {
  90. width: 90%;
  91. margin: 0 auto;
  92. color: #f00000;
  93. text-align: center;
  94. font-size: 24rpx;
  95. }
  96. .selecttimes .btnser {
  97. width: 90%;
  98. margin: 10rpx auto;
  99. color: #FFFFFF;
  100. text-align: center;
  101. font-size: 28rpx;
  102. background-color: #58BD4D;
  103. border-radius: 20rpx;
  104. height: 50rpx;
  105. line-height: 50rpx;
  106. }
  107. .selecttimes .newtimes {
  108. width: 100%;
  109. padding: 20rpx 20rpx;
  110. box-sizing: border-box;
  111. }
  112. .selecttimes .newtimes .newtimes_state,
  113. .selecttimes .newtimes .newtimes_end {
  114. display: -webkit-box;
  115. display: -webkit-flex;
  116. display: flex;
  117. -webkit-box-pack: justify;
  118. -webkit-justify-content: space-between;
  119. justify-content: space-between;
  120. margin-bottom: 20rpx;
  121. }
  122. .selecttimes .newtimes .newtimes_state .oldtimes_left,
  123. .selecttimes .newtimes .newtimes_end .oldtimes_left {
  124. position: relative;
  125. padding-left: 36rpx;
  126. font-size: 28rpx;
  127. }
  128. .selecttimes .newtimes .newtimes_state .oldtimes_left image,
  129. .selecttimes .newtimes .newtimes_end .oldtimes_left image {
  130. width: 30rpx;
  131. height: 30rpx;
  132. vertical-align: top;
  133. position: absolute;
  134. top: 7rpx;
  135. left: 0;
  136. }
  137. .condition {
  138. display: -webkit-box;
  139. display: -webkit-flex;
  140. display: flex;
  141. -webkit-flex-wrap: wrap;
  142. flex-wrap: wrap;
  143. width: 100%;
  144. box-shadow: 0 0 10rpx #bcb9ca;
  145. margin: 30rpx 0;
  146. }
  147. .condition .scroll-X {
  148. width: 95%;
  149. margin: 20rpx auto;
  150. }
  151. .condition .scroll-X .table {
  152. width: 1042px;
  153. }
  154. .condition .scroll-X .tr {
  155. display: -webkit-box;
  156. display: -webkit-flex;
  157. display: flex;
  158. overflow: hidden;
  159. }
  160. .condition .scroll-X .tr .th,
  161. .condition .scroll-X .tr .td {
  162. display: inline-block;
  163. padding: 5rpx;
  164. width: 240rpx;
  165. text-align: center;
  166. height: 52rpx;
  167. line-height: 52rpx;
  168. border: 2rpx solid #F1F1F1;
  169. }
  170. .condition .scroll-X .tr .th:first-child,
  171. .condition .scroll-X .tr .td:first-child {
  172. width: 300rpx;
  173. }
  174. .condition .pagenumber {
  175. display: -webkit-box;
  176. display: -webkit-flex;
  177. display: flex;
  178. margin: 20rpx auto;
  179. }
  180. .condition .pagenumber button {
  181. width: 150rpx;
  182. height: 50rpx;
  183. line-height: 50rpx;
  184. font-size: 26rpx;
  185. text-align: center;
  186. background-color: #17BB89;
  187. color: #FFFFFF;
  188. }
  189. .condition .pagenumber .pagenumber_page {
  190. width: 150rpx;
  191. height: 50rpx;
  192. line-height: 50rpx;
  193. font-size: 26rpx;
  194. text-align: center;
  195. }