储能智慧云小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

index.wxss 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. .setup{
  2. width: 100%;
  3. height: 100vh;
  4. background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%);
  5. padding: 0rpx 30rpx;
  6. box-sizing: border-box;
  7. }
  8. .title{
  9. font-weight: 500;
  10. font-size: 36rpx;
  11. display: flex;
  12. align-items: center;
  13. margin-top: 20rpx;
  14. justify-content: center;
  15. }
  16. .user{
  17. display: flex;
  18. }
  19. .user_to{
  20. width: 100rpx;
  21. height: 100rpx;
  22. border-radius: 100%;
  23. margin-right: 40rpx;
  24. }
  25. .user_name{
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-around;
  29. }
  30. .user_name1{
  31. font-size: 28rpx;
  32. }
  33. .user_name2{
  34. font-size: 24rpx;
  35. }
  36. .equipment{
  37. width: 100%;
  38. display: flex;
  39. justify-content: space-between;
  40. box-sizing: border-box;
  41. margin-top: 40rpx;
  42. margin-bottom: 40rpx;
  43. }
  44. .equipment_1{
  45. width: 48%;
  46. background-color: #ffffff;
  47. border-radius: 16rpx;
  48. display: flex;
  49. align-items: center;
  50. justify-content: space-between;
  51. padding: 0rpx 20rpx;
  52. box-sizing: border-box;
  53. }
  54. .user_left{
  55. display: flex;
  56. flex-direction: column;
  57. justify-content:space-around;
  58. padding: 20rpx 0rpx;
  59. box-sizing: border-box;
  60. }
  61. .equipment_2{
  62. width: 48%;
  63. background-color: #ffffff;
  64. border-radius: 10rpx;
  65. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  66. }
  67. .equipment_rightdiv{
  68. width: 78rpx;
  69. height:78rpx;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. background-color: #E3F6F8;
  74. border-radius: 100%;
  75. overflow: hidden;
  76. }
  77. .equipment_rightdiv1{
  78. width: 78rpx;
  79. height:78rpx;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. background-color: #E2ECFF;
  84. border-radius: 100%;
  85. overflow: hidden;
  86. }
  87. .equipment_right1{
  88. width: 50rpx;
  89. height: 50rpx;
  90. }
  91. .equipment_right{
  92. width: 50rpx;
  93. height: 41.31rpx;
  94. }
  95. .user_leftname{
  96. font-size: 28rpx;
  97. }
  98. .user_lefteq{
  99. width: 200rpx;
  100. font-size: 26rpx;
  101. margin-top: 12rpx;
  102. color: #999999;
  103. white-space: nowrap; /* 不换行 */
  104. overflow: hidden; /* 超出部分隐藏 */
  105. text-overflow: ellipsis; /* 显示省略号 */
  106. }
  107. .equipment_2{
  108. width: 48%;
  109. background-color: #ffffff;
  110. border-radius: 16rpx;
  111. display: flex;
  112. align-items: center;
  113. justify-content: space-between;
  114. padding: 0rpx 20rpx;
  115. box-sizing: border-box;
  116. }
  117. .allocation{
  118. width: 100%;
  119. height: 80rpx;
  120. display: flex;
  121. align-items: center;
  122. justify-content:space-between;
  123. padding: 0rpx 20rpx;
  124. overflow: hidden;
  125. box-sizing: border-box;
  126. }
  127. .allocation_1{
  128. display: flex;
  129. font-size:13px;
  130. align-items: center;
  131. }
  132. .allocation_box{
  133. border-radius: 16rpx;
  134. background-color: #ffffff;
  135. padding: 10rpx 0rpx;
  136. box-sizing: border-box;
  137. margin-top: 30rpx;
  138. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  139. }
  140. .allocation_2{
  141. color: #999999;
  142. }
  143. .allocation_3{
  144. font-size: 14px;
  145. }
  146. .content-container{
  147. margin-top: 40rpx;
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: center;
  151. align-items: center;
  152. }
  153. .ticon{
  154. width: 100%;
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-between;
  158. }
  159. .ticonright{
  160. margin-right: 10rpx;
  161. font-size: 28rpx;
  162. font-weight: 500;
  163. }
  164. .contentadd{
  165. width: 100%;
  166. height: 100%;
  167. margin-top: 40rpx;
  168. padding: 0rpx 1rpx;
  169. box-sizing: border-box;
  170. }
  171. .weui-input{
  172. width: 99%;
  173. height: 80rpx;
  174. border: 1rpx solid #cccccc;
  175. padding: 0rpx 10rpx;
  176. border-radius: 10rpx;
  177. box-sizing: border-box;
  178. }
  179. .input-example {
  180. width: 99%;
  181. --td-input-vertical-padding: 16rpx;
  182. background-color: var(--bg-color-demo);
  183. border: 1rpx solid #cccccc;
  184. border-radius: 12rpx;
  185. padding: 1rpx;
  186. margin-top: 40rpx;
  187. box-sizing: border-box;
  188. }
  189. .inputbox{
  190. width: 100%;
  191. margin-top: 20rpx;
  192. font-size: 26rpx;
  193. color: #cccccc;
  194. }
  195. .t-dialog__footer--full{
  196. padding: 44rpx 0 0;
  197. }
  198. button{
  199. padding: 0rpx;
  200. margin: 0rpx;
  201. font-size: 28rpx;
  202. background-color: #ffffff;
  203. border:0rpx solid #ffffff !important;
  204. border: none !important;
  205. }
  206. .allocation_31{
  207. width: 100%;
  208. font-size: 14px;
  209. }
  210. .contact-button {
  211. width: 100%;
  212. border: none !important;
  213. display: flex;
  214. }