assemblyMachine.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .equipmentDtl {
  2. background-color: #f0f0f0;
  3. min-height: 100vh;
  4. margin-top: 128rpx;
  5. }
  6. .equipmentDtl .rate-warp {
  7. margin-top: 20rpx;
  8. }
  9. .equipmentDtl .rate-warp .sm-rate {
  10. display: flex;
  11. justify-content: space-between;
  12. flex-wrap: wrap;
  13. padding: 0 24rpx;
  14. }
  15. .equipmentDtl .rate-warp .sm-rate ._li {
  16. background-color: #fff;
  17. border-radius: 10rpx;
  18. height: 120rpx;
  19. display: flex;
  20. justify-content: space-between;
  21. margin-top: 24rpx;
  22. align-items: center;
  23. padding: 0 24rpx;
  24. width: 296rpx;
  25. font-size: 28rpx;
  26. color: #666;
  27. }
  28. .equipmentDtl .rate-warp .sm-rate ._li .right-box {
  29. font-size: 32rpx;
  30. color: #333;
  31. }
  32. .equipmentDtl .rate-warp .sm-rate ._li .right-box .line {
  33. width: 70rpx;
  34. height: 8rpx;
  35. background: #eeeeee;
  36. border-radius: 4rpx;
  37. margin-top: 6rpx;
  38. }
  39. .equipmentDtl .rate-warp .sm-rate ._li .right-box .line .box {
  40. width: 50%;
  41. background-color: #BB99F6;
  42. height: 100%;
  43. border-radius: 12rpx;
  44. }
  45. .equipmentDtl .rate-warp .big-rate ._li {
  46. margin-top: 24rpx;
  47. height: 128rpx;
  48. display: flex;
  49. align-items: center;
  50. background-color: #fff;
  51. margin: 0 24rpx;
  52. border-radius: 10rpx;
  53. padding: 0 24rpx;
  54. }
  55. .equipmentDtl .rate-warp .big-rate ._li .text {
  56. font-weight: 500;
  57. font-size: 28rpx;
  58. color: #333;
  59. }
  60. .equipmentDtl .rate-warp .big-rate ._li .line {
  61. width: 240rpx;
  62. margin-left: 90rpx;
  63. height: 24rpx;
  64. background: #eeeeee;
  65. margin-right: 40rpx;
  66. border-radius: 12rpx;
  67. }
  68. .equipmentDtl .rate-warp .big-rate ._li .line .box {
  69. width: 50%;
  70. background-color: #ffaf53;
  71. height: 100%;
  72. border-radius: 12rpx;
  73. }
  74. .equipmentDtl .parts-list {
  75. padding: 0 24rpx;
  76. margin-top: 24rpx;
  77. }
  78. .equipmentDtl .parts-list ._ul {
  79. display: flex;
  80. justify-content: space-between;
  81. }
  82. .equipmentDtl .parts-list ._li {
  83. width: 32%;
  84. padding: 30rpx 0;
  85. text-align: center;
  86. position: relative;
  87. background-color: #fff;
  88. }
  89. .equipmentDtl .parts-list ._li image {
  90. width: 60rpx;
  91. height: 60rpx;
  92. display: block;
  93. margin: 0 auto 20rpx;
  94. }
  95. .equipmentDtl .parts-list .before {
  96. width: 30rpx;
  97. height: 30rpx;
  98. border-radius: 50%;
  99. background-color: rgba(204, 204, 204, 0.2);
  100. display: block;
  101. position: absolute;
  102. right: 16rpx;
  103. top: 16rpx;
  104. }
  105. .equipmentDtl .parts-list .before::before {
  106. position: absolute;
  107. display: block;
  108. top: 7rpx;
  109. left: 7rpx;
  110. width: 19rpx;
  111. height: 19rpx;
  112. border-radius: 50%;
  113. content: " ";
  114. background: #cccccc;
  115. }
  116. .equipmentDtl .parts-list .before.succes {
  117. background-color: rgba(63, 191, 49, 0.2);
  118. }
  119. .equipmentDtl .parts-list .before.succes::before {
  120. background: #3FBF31;
  121. }
  122. .equipmentDtl .echarts {
  123. background: #fff;
  124. margin: 24rpx 24rpx 0;
  125. }
  126. .equipmentDtl .echarts .content .text {
  127. font-size: 28rpx;
  128. font-weight: 700;
  129. color: #333;
  130. text-align: center;
  131. margin-bottom: 40rpx;
  132. }
  133. .equipmentDtl .echarts .title {
  134. font-size: 28rpx;
  135. height: 90rpx;
  136. line-height: 90rpx;
  137. display: flex;
  138. padding: 0 24rpx;
  139. font-weight: 500;
  140. }
  141. .equipmentDtl .echarts .title image {
  142. width: 40rpx;
  143. height: 40rpx;
  144. margin-top: 25rpx;
  145. margin-right: 16rpx;
  146. }
  147. .equipmentDtl .equ-img {
  148. padding: 24rpx;
  149. background-color: #ffffff;
  150. position: relative;
  151. }
  152. .equipmentDtl .equ-img image {
  153. width: 100%;
  154. height: 395rpx;
  155. }
  156. .equipmentDtl .equ-img .err-modal {
  157. position: absolute;
  158. left: 0;
  159. right: 0;
  160. bottom: 0;
  161. top: 0;
  162. background: rgba(0, 0, 0, 0.6);
  163. text-align: center;
  164. display: flex;
  165. align-items: center;
  166. }
  167. .equipmentDtl .equ-img .err-modal image {
  168. width: 160rpx;
  169. height: 160rpx;
  170. margin: 0 auto;
  171. }
  172. .equipmentDtl .state {
  173. display: flex;
  174. justify-content: space-between;
  175. margin: 24rpx 24rpx 0;
  176. }
  177. .equipmentDtl .state .state-box {
  178. padding: 20rpx;
  179. width: 48%;
  180. background-color: #fff;
  181. display: flex;
  182. box-sizing: border-box;
  183. border-radius: 10rpx;
  184. }
  185. .equipmentDtl .state .state-box .text {
  186. padding: 12rpx 0;
  187. }
  188. .equipmentDtl .state .state-box .state-text {
  189. font-size: 32rpx;
  190. font-weight: bold;
  191. margin-top: 5rpx;
  192. }
  193. .equipmentDtl .state .state-box .label {
  194. font-weight: 400;
  195. font-size: 28rpx;
  196. }
  197. .equipmentDtl .state .state-box image {
  198. width: 110rpx;
  199. height: 110rpx;
  200. }