waterabnormal.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /* pages/waterabnormal/waterabnormal.wxss */
  2. .water-abnormal {
  3. background-color: rgba(250, 252, 255, 1);
  4. padding: 20rpx 0;
  5. overflow-x: hidden;
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. bottom: 0;
  10. right: 0;
  11. }
  12. .date-panel {
  13. padding: 20rpx 0;
  14. background-color: #FFF;
  15. }
  16. .date-panel .header {
  17. height: 40rpx;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. margin-bottom: 20rpx;
  22. padding: 0 40rpx;
  23. }
  24. .date-panel .picker {
  25. display: flex;
  26. align-items: center;
  27. }
  28. .date-panel .picker text {
  29. font-size: 28rpx;
  30. font-weight: 400;
  31. color: rgba(55, 59, 73, 1);
  32. }
  33. .date-panel .picker image {
  34. display: inline-block;
  35. width: 28rpx;
  36. height: 16rpx;
  37. margin-left: 8rpx;
  38. flex-shrink: 1;
  39. }
  40. .date-panel .settings {
  41. font-size: 28rpx;
  42. font-weight: 400;
  43. color: rgba(0, 145, 255, 1);
  44. }
  45. .date-panel .item {
  46. width: calc(100% / 7);
  47. font-size: 28rpx;
  48. line-height: 60rpx;
  49. margin-bottom: 10rpx;
  50. color: rgba(104, 107, 120, 1);
  51. display: inline-flex;
  52. align-items: center;
  53. justify-content: center;
  54. overflow: hidden;
  55. }
  56. .date-panel .week {
  57. color: rgba(188, 191, 202, 1);
  58. }
  59. .date-panel .item .txt {
  60. width: 60rpx;
  61. height: 60rpx;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. border-radius: 100%;
  66. }
  67. .date-panel .item .abnormal {
  68. background: rgba(255, 159, 159, 1);
  69. color: #FFF;
  70. }
  71. .date-panel .item .handled {
  72. background: rgba(153, 211, 255, 1);
  73. color: #FFF;
  74. }
  75. .date-panel .item .active {
  76. background: rgba(0, 145, 255, 1);
  77. color: #FFF;
  78. }
  79. .date-panel .item .abnormal.active {
  80. background: rgba(255, 113, 113, 1);
  81. }
  82. .list .item {
  83. background-color: rgba(255, 255, 255, 1);
  84. padding: 40rpx;
  85. display: inline-block;
  86. margin-top: 20rpx;
  87. display: flex;
  88. align-items: center;
  89. }
  90. .list .item.item-touch-active {
  91. transform: translateX(-100rpx) !important;
  92. }
  93. /* .list .item.disabled {
  94. filter: gray;
  95. filter: grayscale(100%);
  96. } */
  97. .list .item .left {
  98. float: left;
  99. width: 180rpx;
  100. }
  101. .list .item image {
  102. display: inline-block;
  103. width: 160rpx;
  104. height: 160rpx;
  105. }
  106. .list .item .right {
  107. float: left;
  108. width: calc(100% - 180rpx);
  109. }
  110. .list .item .right .title {
  111. display: flex;
  112. align-items: center;
  113. justify-content: space-between;
  114. font-size: 28rpx;
  115. color: rgba(188, 191, 202, 1);
  116. }
  117. .list .item .right .title .name {
  118. font-size: 34rpx;
  119. font-weight: bold;
  120. color: #373B49;
  121. line-height: 48rpx;
  122. }
  123. .list .item .right .desc {
  124. font-size: 28rpx;
  125. line-height: 40rpx;
  126. color: #79C3FC;
  127. margin: 10rpx 0 14rpx;
  128. }
  129. .list .item .right .desc .tip {
  130. font-size: 28rpx;
  131. color: #686B78;
  132. }
  133. .list .item .right .desc .handle {
  134. color: #FF7171;
  135. }
  136. .list .item .right .tip {
  137. font-size: 24rpx;
  138. color: rgba(188, 191, 202, 1);
  139. line-height: 34rpx;
  140. }
  141. .list .item .opt {
  142. width: 100rpx;
  143. height: 100%;
  144. position: absolute;
  145. top: 0;
  146. right: -100rpx;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. color: #FFFFFF;
  151. background: #99D3FF;
  152. font-size: 24rpx;
  153. font-weight: 500;
  154. }
  155. .list .no-abnormal-tip {
  156. text-align: center;
  157. }
  158. .list .no-abnormal-tip image {
  159. display: block;
  160. width: 302rpx;
  161. height: 220rpx;
  162. margin: 112rpx auto 20rpx;
  163. }
  164. .list .no-abnormal-tip text {
  165. font-size: 28rpx;
  166. color: rgba(188, 191, 202, 1);
  167. }