aircondition.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .aircondition-box {
  10. padding: 30rpx;
  11. }
  12. .aircondition-box .popup-content {
  13. border-radius: 16rpx 16rpx 0 0;
  14. background: #fff;
  15. }
  16. .aircondition-box .popup-content .popup-operation {
  17. padding: 30rpx 0;
  18. }
  19. .aircondition-box .popup-content .model-popup {
  20. display: flex;
  21. }
  22. .aircondition-box .popup-content .model-popup .model-popup-item {
  23. flex: 1;
  24. text-align: center;
  25. }
  26. .aircondition-box .popup-content .model-popup .model-popup-item.active {
  27. color: #08979c;
  28. }
  29. .aircondition-box .popup-content .model-popup .model-popup-label {
  30. font-size: 24rpx;
  31. margin-top: 10rpx;
  32. font-weight: 300;
  33. }
  34. .aircondition-box .popup-content .wind-popup {
  35. padding: 0 30rpx;
  36. box-sizing: border-box;
  37. }
  38. .aircondition-box .popup-content .wind-popup .wind-title {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .aircondition-box .popup-content .wind-popup .big-title {
  43. font-size: 32rpx;
  44. }
  45. .aircondition-box .popup-content .wind-popup .line {
  46. width: 2rpx;
  47. height: 26rpx;
  48. background: #f2f2f2;
  49. margin: 0 16rpx;
  50. }
  51. .aircondition-box .popup-content .wind-popup .wind-auto {
  52. padding: 20rpx 30rpx;
  53. border-radius: 26rpx;
  54. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  55. display: flex;
  56. align-items: center;
  57. margin: 30rpx 0;
  58. }
  59. .aircondition-box .popup-content .wind-popup .wind-auto .big-title {
  60. flex: 1;
  61. margin-left: 20rpx;
  62. }
  63. .aircondition-box .popup-content .wind-popup .wind-hand {
  64. padding-top: 20rpx;
  65. }
  66. .aircondition-box .popup-content .wind-popup .hand-text {
  67. position: relative;
  68. color: #8c8c8c;
  69. font-size: 24rpx;
  70. height: 34rpx;
  71. margin-top: 20rpx;
  72. }
  73. .aircondition-box .popup-content .wind-popup .hand-text .number20 {
  74. position: absolute;
  75. left: 20%;
  76. margin-left: -26rpx;
  77. }
  78. .aircondition-box .popup-content .wind-popup .hand-text .number40 {
  79. position: absolute;
  80. left: 40%;
  81. margin-left: -26rpx;
  82. }
  83. .aircondition-box .popup-content .wind-popup .hand-text .number60 {
  84. position: absolute;
  85. left: 60%;
  86. margin-left: -26rpx;
  87. }
  88. .aircondition-box .popup-content .wind-popup .hand-text .number80 {
  89. position: absolute;
  90. left: 80%;
  91. margin-left: -26rpx;
  92. }
  93. .aircondition-box .popup-content .wind-popup .hand-text .number100 {
  94. position: absolute;
  95. left: 100%;
  96. margin-left: -52rpx;
  97. }
  98. .aircondition-box .popup-content .popup-close {
  99. border-top: 20rpx solid #f2f2f2;
  100. padding: 24rpx 0;
  101. text-align: center;
  102. color: #8c8c8c;
  103. }
  104. .aircondition-box .aircondition-control {
  105. padding: 30rpx;
  106. background: #fff;
  107. border-radius: 16rpx;
  108. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  109. }
  110. .aircondition-box .aircondition-toogle {
  111. display: flex;
  112. justify-content: space-between;
  113. margin-bottom: 40rpx;
  114. }
  115. .aircondition-box .toogle-icon-text {
  116. display: flex;
  117. align-items: center;
  118. }
  119. .aircondition-box .toogle-icon-text .text {
  120. font-size: 36rpx;
  121. margin-left: 20rpx;
  122. }
  123. .aircondition-box .toogle-icon {
  124. width: 80rpx;
  125. height: 80rpx;
  126. background: #08979c;
  127. text-align: center;
  128. line-height: 80rpx;
  129. border-radius: 8px;
  130. }
  131. .aircondition-box .aircondition-show {
  132. display: flex;
  133. align-items: center;
  134. justify-content: center;
  135. padding: 0 40rpx 30rpx 40rpx;
  136. }
  137. .aircondition-box .aircondition-icon {
  138. width: 60rpx;
  139. height: 60rpx;
  140. background-color: #f2f2f2;
  141. text-align: center;
  142. line-height: 60rpx;
  143. border-radius: 50%;
  144. }
  145. .aircondition-box .aircondition-label {
  146. flex: 1;
  147. width: 0;
  148. display: flex;
  149. align-items: flex-end;
  150. justify-content: center;
  151. color: #434343;
  152. }
  153. .aircondition-box .aircondition-label .value {
  154. font-size: 80rpx;
  155. height: 100rpx;
  156. }
  157. .aircondition-box .aircondition-label .unit {
  158. font-size: 40rpx;
  159. }
  160. .aircondition-box .aircondition-model {
  161. display: flex;
  162. margin-top: 30rpx;
  163. }
  164. .aircondition-box .aircondition-model .box {
  165. flex: 1;
  166. background: #fff;
  167. border-radius: 16rpx;
  168. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  169. height: 160rpx;
  170. display: flex;
  171. align-items: center;
  172. justify-content: space-between;
  173. padding: 0 60rpx 0 30rpx;
  174. box-sizing: border-box;
  175. }
  176. .aircondition-box .aircondition-model .box .content .title {
  177. font-size: 32rpx;
  178. font-weight: 300;
  179. }
  180. .aircondition-box .aircondition-model .box .content .sub-title {
  181. font-size: 24rpx;
  182. color: #8c8c8c;
  183. font-weight: 200;
  184. margin-top: 10rpx;
  185. }
  186. .aircondition-box .aircondition-model .bg {
  187. width: 30rpx;
  188. }