fault-list.wxss 813 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* pages/fault-list/fault-list.wxss */
  2. page {
  3. background-color: #F0F4F7;
  4. }
  5. .item {
  6. box-sizing: border-box;
  7. background-color: #FFFFFF;
  8. border-radius: 20rpx;
  9. margin-bottom: 18rpx;
  10. padding: 30rpx;
  11. margin: 15rpx 30rpx;
  12. }
  13. .item-title {
  14. line-height: 60rpx;
  15. border-bottom: solid 1rpx #EBE8E3;
  16. padding-bottom: 15rpx;
  17. }
  18. .item-row {
  19. margin-top: 12rpx;
  20. margin-bottom: 12rpx;
  21. font-size: 30rpx;
  22. display: flex;
  23. align-items: center;
  24. }
  25. .item-row label {
  26. color: #999999;
  27. }
  28. .item-row text {
  29. word-break: break-all;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. display: -webkit-box;
  33. -webkit-line-clamp: 1;
  34. -webkit-box-orient: vertical;
  35. max-width: 75%;
  36. }
  37. .item-status {
  38. position: absolute;
  39. right: 60rpx;
  40. margin-top: -54rpx;
  41. }