allocation.wxss 3.5 KB

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