manageComplaint.wxss 705 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* pages/manageComplaint/manageComplaint.wxss */
  2. /* 设置页面背景 */
  3. page{
  4. height: 100%;
  5. padding: 20rpx;
  6. background-color: #E2F0D9;
  7. }
  8. .handleComplaintWrapper{
  9. width: 94%;
  10. }
  11. /* 投诉列表 */
  12. .handleComplaint{
  13. padding: 20rpx;
  14. border-radius: 20rpx;
  15. background-color: #FFF2CC;
  16. margin-bottom: 20rpx;
  17. }
  18. /* 日期和状态 */
  19. .complaintDateStatus{
  20. display: flex;
  21. position: relative;
  22. }
  23. /* 处理状态 */
  24. .handleStatus{
  25. position: absolute;
  26. left: 56%;
  27. }
  28. /* 投诉号、日期、状态详情 */
  29. .complaintNum,
  30. .complaintDate,
  31. .complaintStatus{
  32. margin-left: 20rpx;
  33. font-weight: bold;
  34. }
  35. /* 状态字体颜色 */
  36. .complaintStatus{
  37. color: red;
  38. }