allocation.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. .utabs {
  28. width: 100%;
  29. position: fixed;
  30. top: 80px;
  31. z-index: 100;
  32. }
  33. .bases_search {
  34. width: 100%;
  35. position: fixed;
  36. top: 120px;
  37. z-index: 100;
  38. background-color: #FFFFFF;
  39. }
  40. .bases_search .bases_search_text {
  41. width: 90%;
  42. margin: 0 auto;
  43. background-color: #F8F8F8;
  44. height: 60rpx;
  45. border-radius: 30rpx;
  46. display: flex;
  47. line-height: 60rpx;
  48. }
  49. .bases_search .bases_search_text .search {
  50. padding: 0 20rpx;
  51. font-size: 34rpx;
  52. }
  53. .bases_search .bases_search_text input {
  54. width: 80%;
  55. margin-top: 10rpx;
  56. font-size: 28rpx;
  57. }
  58. .loading {
  59. position: fixed;
  60. top: 440px;
  61. width: 95%;
  62. left: 2.5%;
  63. text-align: center;
  64. }
  65. .loading .img {
  66. width: 300rpx;
  67. height: 40rpx;
  68. }
  69. .ass_list {
  70. position: absolute;
  71. top: 115px;
  72. width: 100%;
  73. margin-bottom: 40px;
  74. }
  75. .ass_list .che_group {
  76. display: flex;
  77. flex-direction: column;
  78. width: 90%;
  79. margin: 0 auto;
  80. }
  81. .ass_list .equipment {
  82. width: 90%;
  83. margin: 20rpx auto;
  84. box-shadow: 0 0 10rpx #bcb9ca;
  85. padding: 20rpx 30rpx;
  86. }
  87. .ass_list .equipment .equipment_top {
  88. height: 60rpx;
  89. width: 100%;
  90. border-bottom: 1px solid #dfe5ec;
  91. position: relative;
  92. }
  93. .ass_list .equipment .equipment_top .equipment_top_img {
  94. width: 40rpx;
  95. height: 40rpx;
  96. position: absolute;
  97. }
  98. .ass_list .equipment .equipment_top .equipment_top_name {
  99. font-size: 24rpx;
  100. margin-left: 60rpx;
  101. }
  102. .ass_list .equipment .equipment_top .ucheckbox {
  103. float: right;
  104. margin: 0rpx -4rpx;
  105. -webkit-transform: scale(0.7);
  106. transform: scale(0.7);
  107. }
  108. .ass_list .equipment .equipment_bot {
  109. padding: 30rpx 0;
  110. position: relative;
  111. }
  112. .ass_list .equipment .equipment_bot .equipment_bot_id {
  113. font-weight: 700;
  114. font-size: 15px;
  115. margin-bottom: 16rpx;
  116. }
  117. .ass_list .equipment .equipment_bot .equipment_bot_name {
  118. font-size: 24rpx;
  119. }
  120. .ass_list .equipment .equipment_bot .equipment_state {
  121. position: absolute;
  122. top: 20rpx;
  123. right: 0;
  124. width: 100rpx;
  125. height: 100rpx;
  126. text-align: center;
  127. line-height: 100rpx;
  128. color: #42b983;
  129. }
  130. .allocbtn {
  131. width: 100%;
  132. position: fixed;
  133. bottom: 0;
  134. z-index: 100;
  135. display: flex;
  136. }
  137. .allocbtn button {
  138. width: 50%;
  139. font-size: 24rpx;
  140. height: 80rpx;
  141. line-height: 80rpx;
  142. border-radius: 0;
  143. }
  144. .allocbtn .cancel {
  145. background-color: #C8C7CC;
  146. color: #555555;
  147. }
  148. .allocbtn .canfirm {
  149. color: white;
  150. background-color: #42b983;
  151. }
  152. .top {
  153. position: fixed;
  154. right: 30px;
  155. bottom: 100px;
  156. z-index: 100;
  157. }
  158. .top image {
  159. width: 100rpx;
  160. height: 100rpx;
  161. }