assignment.wxss 2.9 KB

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