xctdetail.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. page {
  28. padding: 20rpx;
  29. box-sizing: border-box;
  30. }
  31. page .info {
  32. padding: 20rpx 40rpx;
  33. color: #fff;
  34. line-height: 50rpx;
  35. font-size: 26rpx;
  36. background-size: 100% auto;
  37. background-repeat: no-repeat;
  38. background-color: #0DC6B6;
  39. background-position: top left;
  40. box-sizing: border-box;
  41. width: 100%;
  42. }
  43. page .info .tishi {
  44. width: 28rpx;
  45. height: 28rpx;
  46. margin: 0rpx 0 0 20rpx;
  47. }
  48. page .on {
  49. background-image: url("http://www.hnyfwlw.com:8006/bigdata_app/image/cb/onBg.png");
  50. }
  51. page .off {
  52. background-image: url("http://www.hnyfwlw.com:8006/bigdata_app/image/cb/offBg.png");
  53. }
  54. page .caobox {
  55. display: flex;
  56. flex-wrap: wrap;
  57. text-align: center;
  58. font-size: 28rpx;
  59. color: #666;
  60. line-height: 50rpx;
  61. }
  62. page .caobox image {
  63. width: 52rpx;
  64. }
  65. page .caobox .caobox_item {
  66. padding: 20rpx 0;
  67. box-sizing: border-box;
  68. flex-basis: 25%;
  69. }
  70. page .timebox {
  71. box-shadow: 0 0 10rpx #bcb9ca;
  72. display: flex;
  73. background-color: #fff;
  74. padding: 10px;
  75. border-top-right-radius: 5px;
  76. border-top-left-radius: 5px;
  77. margin-top: 30rpx;
  78. }
  79. page .timebox .jiange {
  80. width: 5%;
  81. text-align: center;
  82. }
  83. page .timebox .firsttime,
  84. page .timebox .endtime {
  85. width: 45%;
  86. text-align: center;
  87. }
  88. page .shuju_one {
  89. position: relative;
  90. width: 100%;
  91. margin: 40rpx auto;
  92. box-shadow: 0 0 10rpx #bcb9ca;
  93. padding-top: 20rpx;
  94. height: 550rpx;
  95. }
  96. page .shuju_one .canvastishi {
  97. font-size: 32rpx;
  98. position: absolute;
  99. top: 50%;
  100. left: 50%;
  101. margin-left: -64rpx;
  102. margin-top: -21rpx;
  103. }
  104. page .shuju_one .canvastishi .dataloading:after {
  105. overflow: hidden;
  106. display: inline-block;
  107. vertical-align: bottom;
  108. -webkit-animation: ellipsis 2s infinite;
  109. animation: ellipsis 2s infinite;
  110. content: "\2026";
  111. }
  112. @-webkit-keyframes ellipsis {
  113. from {
  114. width: 2px;
  115. }
  116. to {
  117. width: 15px;
  118. }
  119. }
  120. @keyframes ellipsis {
  121. from {
  122. width: 2px;
  123. }
  124. to {
  125. width: 15px;
  126. }
  127. }
  128. page .shuju_one .shuju_one_title {
  129. width: 70%;
  130. margin: 0 auto;
  131. display: flex;
  132. }
  133. page .shuju_one .shuju_one_title .tltle_text {
  134. width: 25%;
  135. border: 2rpx solid #B2B2B2;
  136. color: #57c878;
  137. text-align: center;
  138. font-size: 24rpx;
  139. height: 50rpx;
  140. line-height: 50rpx;
  141. }
  142. page .shuju_one .shuju_one_title .title_text_color {
  143. width: 25%;
  144. border: 2rpx solid #57c878;
  145. background-color: #57c878;
  146. color: #fff;
  147. text-align: center;
  148. font-size: 24rpx;
  149. height: 50rpx;
  150. line-height: 50rpx;
  151. }
  152. .condition {
  153. display: flex;
  154. flex-wrap: wrap;
  155. width: 100%;
  156. margin: 30rpx auto;
  157. box-shadow: 0 0 10rpx #bcb9ca;
  158. margin-bottom: 30rpx;
  159. }
  160. .condition .scroll-X {
  161. width: 95%;
  162. margin: 20rpx auto;
  163. }
  164. .condition .scroll-X .table {
  165. width: 1164px;
  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: 240rpx;
  176. text-align: center;
  177. height: 52rpx;
  178. line-height: 52rpx;
  179. border: 2rpx solid #F1F1F1;
  180. }
  181. .condition .scroll-X .tr .th:first-child,
  182. .condition .scroll-X .tr .td:first-child {
  183. width: 300rpx;
  184. }
  185. .condition .scroll-X .tr:nth-child(2n-1) {
  186. background-color: #f5fff8;
  187. }
  188. .condition .scroll-X .tr:first-child {
  189. background-color: #57c878;
  190. color: #fff;
  191. }
  192. .condition .pagenumber {
  193. display: flex;
  194. margin: 20rpx auto;
  195. }
  196. .condition .pagenumber button {
  197. width: 150rpx;
  198. height: 50rpx;
  199. line-height: 50rpx;
  200. font-size: 26rpx;
  201. text-align: center;
  202. background-color: #57c878;
  203. color: #FFFFFF;
  204. }
  205. .condition .pagenumber .pagenumber_page {
  206. width: 100rpx;
  207. height: 50rpx;
  208. line-height: 50rpx;
  209. font-size: 26rpx;
  210. text-align: center;
  211. }
  212. .u-calendar__action {
  213. display: flex;
  214. justify-content: space-around;
  215. }
  216. .u-calendar__action .u-calendar__action__text {
  217. line-height: 25px;
  218. }