historydatas.wxss 3.4 KB

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