ucharts.wxss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. /*样式的width和height一定要与定义的cWidth和cHeight相对应*/
  28. .shuju_one,
  29. .shuju_two {
  30. position: absolute;
  31. top: 190rpx;
  32. width: 90%;
  33. left: 5%;
  34. box-shadow: 0 0 10rpx #bcb9ca;
  35. padding-top: 20rpx;
  36. height: 550rpx;
  37. }
  38. .shuju_one .canvastishi,
  39. .shuju_two .canvastishi {
  40. font-size: 32rpx;
  41. position: absolute;
  42. top: 50%;
  43. left: 50%;
  44. margin-left: -64rpx;
  45. margin-top: -21rpx;
  46. }
  47. .shuju_one .canvastishi .dataloading:after,
  48. .shuju_two .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. .shuju_one .shuju_one_title,
  73. .shuju_two .shuju_one_title {
  74. width: 70%;
  75. margin: 0 auto;
  76. display: flex;
  77. }
  78. .shuju_one .shuju_one_title .tltle_text,
  79. .shuju_two .shuju_one_title .tltle_text {
  80. width: 25%;
  81. border: 2rpx solid #B2B2B2;
  82. color: #B2B2B2;
  83. text-align: center;
  84. font-size: 24rpx;
  85. height: 50rpx;
  86. line-height: 50rpx;
  87. }
  88. .shuju_one .shuju_one_title .title_text_color,
  89. .shuju_two .shuju_one_title .title_text_color {
  90. width: 25%;
  91. border: 2rpx solid #28AE4F;
  92. color: #28AE4F;
  93. text-align: center;
  94. font-size: 24rpx;
  95. height: 50rpx;
  96. line-height: 50rpx;
  97. }
  98. .shuju_one .qiun-columns .qiun-charts,
  99. .shuju_two .qiun-columns .qiun-charts {
  100. width: 650rpx;
  101. height: 400rpx;
  102. background-color: #FFFFFF;
  103. }
  104. .shuju_one .qiun-columns .charts,
  105. .shuju_two .qiun-columns .charts {
  106. width: 650rpx;
  107. height: 400rpx;
  108. background-color: #FFFFFF;
  109. }
  110. .shuju_two {
  111. top: 790rpx;
  112. }
  113. .selecttimes {
  114. position: absolute;
  115. top: 54px;
  116. width: 90%;
  117. box-shadow: 0 0 10rpx #bcb9ca;
  118. left: 5%;
  119. padding: 10rpx 20rpx;
  120. box-sizing: border-box;
  121. }
  122. .selecttimes .timesbox {
  123. display: flex;
  124. justify-content: space-around;
  125. }
  126. .selecttimes .timesbox image {
  127. width: 30rpx;
  128. height: 30rpx;
  129. margin-top: 6rpx;
  130. }
  131. .selecttimes .timesbox .icon {
  132. color: #949494;
  133. text-align: right;
  134. margin-left: 30rpx;
  135. }
  136. .refresh {
  137. position: absolute;
  138. top: 1380rpx;
  139. left: 5%;
  140. width: 160rpx;
  141. height: 50rpx;
  142. background-color: #28AE4F;
  143. color: #FFFFFF;
  144. line-height: 50rpx;
  145. text-align: center;
  146. }
  147. .condition {
  148. position: absolute;
  149. top: 1450rpx;
  150. display: flex;
  151. flex-wrap: wrap;
  152. width: 90%;
  153. left: 5%;
  154. box-shadow: 0 0 10rpx #bcb9ca;
  155. margin-bottom: 30rpx;
  156. }
  157. .condition .scroll-X {
  158. width: 95%;
  159. margin: 20rpx auto;
  160. }
  161. .condition .scroll-X .table {
  162. width: 1056px;
  163. }
  164. .condition .scroll-X .table2 {
  165. width: 800px;
  166. }
  167. .condition .scroll-X .tr {
  168. display: flex;
  169. overflow: hidden;
  170. }
  171. .condition .scroll-X .tr .th,
  172. .condition .scroll-X .tr .td {
  173. display: inline-block;
  174. padding: 5rpx;
  175. width: 140rpx;
  176. text-align: center;
  177. height: 52rpx;
  178. line-height: 52rpx;
  179. }
  180. .condition .scroll-X .tr .th:first-child,
  181. .condition .scroll-X .tr .td:first-child {
  182. width: 300rpx;
  183. }
  184. .condition .scroll-X .tr .th:nth-last-child(1),
  185. .condition .scroll-X .tr .th:nth-last-child(2),
  186. .condition .scroll-X .tr .td:nth-last-child(1),
  187. .condition .scroll-X .tr .td:nth-last-child(2) {
  188. width: 200rpx;
  189. }
  190. .condition .scroll-X .tr:nth-child(2n-1) {
  191. background-color: #f5fff8;
  192. }
  193. .condition .scroll-X .tr:first-child {
  194. background-color: #57c878;
  195. color: #fff;
  196. }
  197. .condition .pagenumber {
  198. display: flex;
  199. margin: 20rpx auto;
  200. }
  201. .condition .pagenumber button {
  202. width: 150rpx;
  203. height: 50rpx;
  204. line-height: 50rpx;
  205. font-size: 26rpx;
  206. text-align: center;
  207. background-color: #17BB89;
  208. color: #FFFFFF;
  209. }
  210. .condition .pagenumber .pagenumber_page {
  211. width: 150rpx;
  212. height: 50rpx;
  213. line-height: 50rpx;
  214. font-size: 26rpx;
  215. text-align: center;
  216. }
  217. .u-calendar__action {
  218. display: flex;
  219. justify-content: space-around;
  220. }
  221. .u-calendar__action .u-calendar__action__text {
  222. line-height: 25px;
  223. }