faultItem.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* component/faultItem/faultItem.wxss */
  2. .item_bg {
  3. width: 701rpx;
  4. height: 169rpx;
  5. background: #ffffff;
  6. border-radius: 7px;
  7. box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.16);
  8. display: flex;
  9. flex-direction: row;
  10. margin-top: 30rpx;
  11. }
  12. .fault_status_wait {
  13. width: 134rpx;
  14. height: 169rpx;
  15. background: #f5a725;
  16. border-radius: 7px 0px 0px 7px;
  17. box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.16);
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .fault_status_repair {
  23. width: 134rpx;
  24. height: 169rpx;
  25. background: #64C55A;
  26. border-radius: 7px 0px 0px 7px;
  27. box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.16);
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .fault_status_over {
  33. width: 134rpx;
  34. height: 169rpx;
  35. background: #CCCCCC;
  36. border-radius: 7px 0px 0px 7px;
  37. box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.16);
  38. display: flex;
  39. justify-content: center;
  40. align-items: center;
  41. }
  42. .fault_status_text {
  43. font-size: 30rpx;
  44. font-weight: 400;
  45. color: #ffffff;
  46. letter-spacing: 0.3rpx;
  47. line-height: 42rpx;
  48. }
  49. .fault_info_layout {
  50. height: 139rpx;
  51. width: 567rpx;
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: space-between;
  55. align-self: center;
  56. }
  57. .fault_info_layout_item_bg {
  58. flex-direction: row;
  59. display: flex;
  60. justify-content: start;
  61. align-items: center;
  62. margin-left: 17rpx;
  63. }
  64. .fault_info_layout_item_icon {
  65. width: 25rpx;
  66. height: 25rpx;
  67. }
  68. .fault_info_layout_item_text {
  69. margin-left: 19rpx;
  70. font-size: 22rpx;
  71. font-weight: 400;
  72. }