ucharts.wxss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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 .shuju_one_title,
  48. .shuju_two .shuju_one_title {
  49. width: 70%;
  50. margin: 0 auto;
  51. display: -webkit-box;
  52. display: -webkit-flex;
  53. display: flex;
  54. }
  55. .shuju_one .shuju_one_title .tltle_text,
  56. .shuju_two .shuju_one_title .tltle_text {
  57. width: 25%;
  58. border: 2rpx solid #B2B2B2;
  59. color: #57c878;
  60. text-align: center;
  61. font-size: 24rpx;
  62. height: 50rpx;
  63. line-height: 50rpx;
  64. }
  65. .shuju_one .shuju_one_title .title_text_color,
  66. .shuju_two .shuju_one_title .title_text_color {
  67. width: 25%;
  68. border: 2rpx solid #57c878;
  69. background-color: #57c878;
  70. color: #fff;
  71. text-align: center;
  72. font-size: 24rpx;
  73. height: 50rpx;
  74. line-height: 50rpx;
  75. }
  76. .shuju_one .qiun-columns .qiun-charts,
  77. .shuju_two .qiun-columns .qiun-charts {
  78. width: 650rpx;
  79. height: 400rpx;
  80. background-color: #FFFFFF;
  81. }
  82. .shuju_one .qiun-columns .charts,
  83. .shuju_two .qiun-columns .charts {
  84. width: 650rpx;
  85. height: 400rpx;
  86. background-color: #FFFFFF;
  87. }
  88. .shuju_two {
  89. top: 790rpx;
  90. }
  91. .selecttimes {
  92. position: absolute;
  93. top: 54px;
  94. width: 90%;
  95. box-shadow: 0 0 10rpx #bcb9ca;
  96. left: 5%;
  97. padding: 10rpx 20rpx;
  98. box-sizing: border-box;
  99. }
  100. .selecttimes .timesbox {
  101. display: -webkit-box;
  102. display: -webkit-flex;
  103. display: flex;
  104. -webkit-justify-content: space-around;
  105. justify-content: space-around;
  106. }
  107. .selecttimes .timesbox image {
  108. width: 30rpx;
  109. height: 30rpx;
  110. margin-top: 6rpx;
  111. }
  112. .selecttimes .timesbox .icon {
  113. color: #949494;
  114. text-align: right;
  115. margin-left: 30rpx;
  116. }
  117. .refresh {
  118. position: absolute;
  119. top: 1380rpx;
  120. left: 5%;
  121. width: 160rpx;
  122. height: 50rpx;
  123. background-color: #57c878;
  124. color: #FFFFFF;
  125. line-height: 50rpx;
  126. text-align: center;
  127. box-shadow: 0 0 10rpx #bcb9ca;
  128. }
  129. .condition {
  130. position: absolute;
  131. top: 1450rpx;
  132. display: -webkit-box;
  133. display: -webkit-flex;
  134. display: flex;
  135. -webkit-flex-wrap: wrap;
  136. flex-wrap: wrap;
  137. width: 90%;
  138. left: 5%;
  139. box-shadow: 0 0 10rpx #bcb9ca;
  140. margin-bottom: 30rpx;
  141. }
  142. .condition .scroll-X {
  143. width: 95%;
  144. margin: 20rpx auto;
  145. }
  146. .condition .scroll-X .table {
  147. width: 1056px;
  148. }
  149. .condition .scroll-X .tr {
  150. display: -webkit-box;
  151. display: -webkit-flex;
  152. display: flex;
  153. overflow: hidden;
  154. }
  155. .condition .scroll-X .tr .th,
  156. .condition .scroll-X .tr .td {
  157. display: inline-block;
  158. padding: 5rpx;
  159. width: 140rpx;
  160. text-align: center;
  161. height: 52rpx;
  162. line-height: 52rpx;
  163. }
  164. .condition .scroll-X .tr .th:first-child,
  165. .condition .scroll-X .tr .td:first-child {
  166. width: 300rpx;
  167. }
  168. .condition .scroll-X .tr .th:nth-last-child(1),
  169. .condition .scroll-X .tr .th:nth-last-child(2),
  170. .condition .scroll-X .tr .td:nth-last-child(1),
  171. .condition .scroll-X .tr .td:nth-last-child(2) {
  172. width: 200rpx;
  173. }
  174. .condition .scroll-X .tr:nth-child(2n-1) {
  175. background-color: #f5fff8;
  176. }
  177. .condition .scroll-X .tr:first-child {
  178. background-color: #57c878;
  179. color: #fff;
  180. }
  181. .condition .pagenumber {
  182. display: -webkit-box;
  183. display: -webkit-flex;
  184. display: flex;
  185. margin: 20rpx auto;
  186. }
  187. .condition .pagenumber button {
  188. width: 150rpx;
  189. height: 50rpx;
  190. line-height: 50rpx;
  191. font-size: 26rpx;
  192. text-align: center;
  193. background-color: #57c878;
  194. color: #FFFFFF;
  195. }
  196. .condition .pagenumber .pagenumber_page {
  197. width: 150rpx;
  198. height: 50rpx;
  199. line-height: 50rpx;
  200. font-size: 26rpx;
  201. text-align: center;
  202. }
  203. .u-calendar__action {
  204. display: -webkit-box;
  205. display: -webkit-flex;
  206. display: flex;
  207. -webkit-justify-content: space-around;
  208. justify-content: space-around;
  209. }
  210. .u-calendar__action .u-calendar__action__text {
  211. line-height: 25px;
  212. }