settings.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* pages/waterabnormal/settings/settings.wxss */
  2. .alarm-rules-settings {
  3. background-color: rgba(250, 252, 255, 1);
  4. padding: 20rpx 0;
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. bottom: 0;
  9. right: 0;
  10. }
  11. .form {
  12. padding: 40rpx 40rpx 60rpx;
  13. background-color: #FFF;
  14. }
  15. .form .from-item {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. font-size: 28rpx;
  20. margin-bottom: 30rpx;
  21. }
  22. .form .from-item.last {
  23. margin-bottom: 56rpx;
  24. }
  25. .form .from-item .label {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .form .from-item .label::before {
  30. content: '*';
  31. font-size: 28rpx;
  32. color: rgba(255, 113, 113, 1);
  33. }
  34. .picker {
  35. width: 498rpx;
  36. background: white;
  37. font-size: 28rpx;
  38. position: relative;
  39. height: 70rpx;
  40. line-height: 70rpx;
  41. border-radius: 4rpx;
  42. border: 2rpx solid rgba(238, 238, 238, 1);
  43. padding-left: 20rpx;
  44. }
  45. .picker image {
  46. display: inline-block;
  47. width: 34rpx;
  48. height: 34rpx;
  49. position: absolute;
  50. right: 20rpx;
  51. top: 18rpx;
  52. }
  53. .radio-group {
  54. width: 520rpx;
  55. }
  56. .radio {
  57. margin-right: 40rpx;
  58. font-size: 28rpx;
  59. color: rgba(104, 107, 120, 1);
  60. }
  61. radio .wx-radio-input {
  62. border-radius: 50%;
  63. width: 30rpx;
  64. height: 30rpx;
  65. border-width: 1.5rpx;
  66. margin-right: 20rpx;
  67. }
  68. radio .wx-radio-input.wx-radio-input-checked {
  69. border-color: rgba(0, 145, 255, 1) !important;
  70. background: none !important;
  71. }
  72. radio .wx-radio-input.wx-radio-input-checked::before {
  73. content: '';
  74. border-radius: 50%;
  75. width: 18rpx;
  76. height: 18rpx;
  77. background: rgba(0, 145, 255, 1);
  78. transform: translate(-50%, -50%) scale(1);
  79. }
  80. .alarm-rules-settings .btn-big {
  81. margin-bottom: 0 !important;
  82. }
  83. .rules .rule-title {
  84. font-size: 28rpx;
  85. color: rgba(55, 59, 73, 1);
  86. height: 80rpx;
  87. line-height: 80rpx;
  88. padding: 0 40rpx;
  89. }
  90. .rules .rule-item {
  91. font-size: 28rpx;
  92. color: rgba(104, 107, 120, 1);
  93. background-color: #FFF;
  94. padding: 20rpx 40rpx;
  95. display: flex;
  96. justify-content: space-between;
  97. margin-bottom: 20rpx;
  98. }
  99. .rules .rule-item .left {
  100. width: 82rpx;
  101. }
  102. .rules .rule-item .center {
  103. font-size: 28rpx;
  104. color: rgba(104, 107, 120, 1);
  105. width: calc(100% - 150rpx);
  106. }
  107. .rules .rule-item .center .name {
  108. line-height: 40rpx;
  109. }
  110. .rules .rule-item .center .info {
  111. display: flex;
  112. align-items: center;
  113. }
  114. .rules .rule-item .center .info .line {
  115. width: 2rpx;
  116. color: rgba(216, 216, 216, 1);
  117. margin: 0 50rpx;
  118. }
  119. .rules .rule-item .right {
  120. display: flex;
  121. align-items: center;
  122. }
  123. .rules .rule-item .right image {
  124. display: inline-block;
  125. width: 40rpx;
  126. height: 40rpx;
  127. }