historydatas.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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: #B2B2B2;
  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 #28AE4F;
  68. color: #28AE4F;
  69. text-align: center;
  70. font-size: 24rpx;
  71. height: 50rpx;
  72. line-height: 50rpx;
  73. }
  74. .refresh {
  75. position: absolute;
  76. top: 630rpx;
  77. left: 5%;
  78. width: 160rpx;
  79. height: 50rpx;
  80. background-color: #28AE4F;
  81. color: #FFFFFF;
  82. line-height: 50rpx;
  83. text-align: center;
  84. }
  85. .condition {
  86. position: absolute;
  87. top: 720rpx;
  88. display: -webkit-box;
  89. display: -webkit-flex;
  90. display: flex;
  91. -webkit-flex-wrap: wrap;
  92. flex-wrap: wrap;
  93. width: 90%;
  94. left: 5%;
  95. box-shadow: 0 0 10rpx #bcb9ca;
  96. margin-bottom: 30rpx;
  97. }
  98. .condition .scroll-X {
  99. width: 95%;
  100. margin: 20rpx auto;
  101. }
  102. .condition .scroll-X .table {
  103. width: 1042px;
  104. }
  105. .condition .scroll-X .tr {
  106. display: -webkit-box;
  107. display: -webkit-flex;
  108. display: flex;
  109. overflow: hidden;
  110. }
  111. .condition .scroll-X .tr .th,
  112. .condition .scroll-X .tr .td {
  113. display: inline-block;
  114. padding: 5rpx;
  115. width: 240rpx;
  116. text-align: center;
  117. height: 52rpx;
  118. line-height: 52rpx;
  119. border: 2rpx solid #F1F1F1;
  120. }
  121. .condition .scroll-X .tr .th:first-child,
  122. .condition .scroll-X .tr .td:first-child {
  123. width: 300rpx;
  124. }
  125. .condition .pagenumber {
  126. display: -webkit-box;
  127. display: -webkit-flex;
  128. display: flex;
  129. margin: 20rpx auto;
  130. }
  131. .condition .pagenumber button {
  132. width: 150rpx;
  133. height: 50rpx;
  134. line-height: 50rpx;
  135. font-size: 26rpx;
  136. text-align: center;
  137. background-color: #17BB89;
  138. color: #FFFFFF;
  139. }
  140. .condition .pagenumber .pagenumber_page {
  141. width: 100rpx;
  142. height: 50rpx;
  143. line-height: 50rpx;
  144. font-size: 26rpx;
  145. text-align: center;
  146. }