cmb.wxss 4.0 KB

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