assignment.wxss 3.1 KB

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