gshistory.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. .selecttimes {
  28. width: 90%;
  29. box-shadow: 0 0 10rpx #bcb9ca;
  30. padding: 10rpx 20rpx;
  31. box-sizing: border-box;
  32. margin: 0 auto;
  33. font-size: 28rpx;
  34. }
  35. .selecttimes .timesbox {
  36. display: flex;
  37. justify-content: space-around;
  38. }
  39. .selecttimes .timesbox image {
  40. width: 30rpx;
  41. height: 30rpx;
  42. margin-top: 6rpx;
  43. }
  44. .selecttimes .timesbox .icon {
  45. color: #949494;
  46. text-align: right;
  47. margin-left: 30rpx;
  48. }
  49. .selecttimes .u-calendar__action {
  50. display: flex;
  51. justify-content: space-around;
  52. }
  53. .selecttimes .u-calendar__action .u-calendar__action__text {
  54. line-height: 25px;
  55. }
  56. .shuju_one {
  57. width: 90%;
  58. left: 5%;
  59. box-shadow: 0 0 10rpx #bcb9ca;
  60. padding-top: 20rpx;
  61. height: 550rpx;
  62. margin: 20rpx auto;
  63. }
  64. .shuju_one .canvastishi {
  65. font-size: 32rpx;
  66. position: absolute;
  67. top: 50%;
  68. left: 50%;
  69. margin-left: -64rpx;
  70. margin-top: -21rpx;
  71. }
  72. .shuju_one .canvastishi .dataloading:after {
  73. overflow: hidden;
  74. display: inline-block;
  75. vertical-align: bottom;
  76. -webkit-animation: ellipsis 2s infinite;
  77. animation: ellipsis 2s infinite;
  78. content: "\2026";
  79. }
  80. @-webkit-keyframes ellipsis {
  81. from {
  82. width: 2px;
  83. }
  84. to {
  85. width: 15px;
  86. }
  87. }
  88. @keyframes ellipsis {
  89. from {
  90. width: 2px;
  91. }
  92. to {
  93. width: 15px;
  94. }
  95. }
  96. .condition {
  97. display: flex;
  98. flex-wrap: wrap;
  99. width: 90%;
  100. left: 5%;
  101. box-shadow: 0 0 10rpx #bcb9ca;
  102. margin-bottom: 30rpx;
  103. margin: 20rpx auto;
  104. }
  105. .condition .scroll-X {
  106. width: 95%;
  107. margin: 20rpx auto;
  108. }
  109. .condition .scroll-X .tr {
  110. display: flex;
  111. overflow: hidden;
  112. }
  113. .condition .scroll-X .tr .th,
  114. .condition .scroll-X .tr .td {
  115. display: inline-block;
  116. padding: 5rpx;
  117. width: 300rpx;
  118. text-align: center;
  119. height: 52rpx;
  120. line-height: 52rpx;
  121. border: 2rpx solid #F1F1F1;
  122. }
  123. .condition .scroll-X .tr:nth-child(2n-1) {
  124. background-color: #f5fff8;
  125. }
  126. .condition .scroll-X .tr:first-child {
  127. background-color: #57c878;
  128. color: #fff;
  129. }
  130. .condition .pagenumber {
  131. display: flex;
  132. margin: 20rpx auto;
  133. }
  134. .condition .pagenumber button {
  135. width: 150rpx;
  136. height: 50rpx;
  137. line-height: 50rpx;
  138. font-size: 26rpx;
  139. text-align: center;
  140. background-color: #57c878;
  141. color: #FFFFFF;
  142. }
  143. .condition .pagenumber .pagenumber_page {
  144. width: 100rpx;
  145. height: 50rpx;
  146. line-height: 50rpx;
  147. font-size: 26rpx;
  148. text-align: center;
  149. }