forecastResult.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. }
  30. .info .info_item {
  31. width: 90%;
  32. margin: 0 auto;
  33. padding: 50rpx 50rpx;
  34. position: relative;
  35. box-sizing: border-box;
  36. }
  37. .info .info_item .bgi {
  38. width: 100%;
  39. height: 100%;
  40. position: absolute;
  41. top: 0;
  42. left: 0;
  43. z-index: -1;
  44. }
  45. .info .info_item ._p {
  46. font-size: 28rpx;
  47. color: #ffffff;
  48. margin-bottom: 10rpx;
  49. }
  50. .info .info_item ._p .tishi {
  51. width: 30rpx;
  52. height: 30rpx;
  53. margin: 0rpx 0 0 20rpx;
  54. }
  55. .his_box {
  56. width: 100%;
  57. position: relative;
  58. }
  59. .his_box .title {
  60. padding: 20rpx 50rpx;
  61. font-weight: 600;
  62. font-size: 28rpx;
  63. }
  64. .condition {
  65. display: flex;
  66. flex-wrap: wrap;
  67. width: 90%;
  68. box-shadow: 0 0 10rpx #bcb9ca;
  69. margin: 0 auto 30rpx;
  70. }
  71. .condition .scroll-X {
  72. width: 95%;
  73. margin: 20rpx auto;
  74. }
  75. .condition .scroll-X .tr {
  76. display: flex;
  77. overflow: hidden;
  78. }
  79. .condition .scroll-X .tr .th,
  80. .condition .scroll-X .tr .td {
  81. display: inline-block;
  82. padding: 5rpx;
  83. width: 300rpx;
  84. text-align: center;
  85. height: 52rpx;
  86. line-height: 52rpx;
  87. border: 2rpx solid #f1f1f1;
  88. }
  89. .condition .scroll-X .tr:nth-child(2n-1) {
  90. background-color: #f5fff8;
  91. }
  92. .condition .scroll-X .tr:first-child {
  93. background-color: #57c878;
  94. color: #fff;
  95. }
  96. .condition .pagenumber {
  97. display: flex;
  98. margin: 20rpx auto;
  99. }
  100. .condition .pagenumber button {
  101. width: 150rpx;
  102. height: 50rpx;
  103. line-height: 50rpx;
  104. font-size: 26rpx;
  105. text-align: center;
  106. background-color: #57c878;
  107. color: #ffffff;
  108. }
  109. .condition .pagenumber .pagenumber_page {
  110. width: 100rpx;
  111. height: 50rpx;
  112. line-height: 50rpx;
  113. font-size: 26rpx;
  114. text-align: center;
  115. }