details.wxss 506 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .list {
  2. background: #fff;
  3. }
  4. .list-item {
  5. position: relative;
  6. padding: 20rpx 30rpx;
  7. }
  8. .list-item::after {
  9. content: '';
  10. position: absolute;
  11. left: 0;
  12. bottom: 0;
  13. right: 0;
  14. height: 1px;
  15. transform: scaleY(.5);
  16. border-bottom: 1px solid #c8c7cc;
  17. }
  18. .list-item .list-item-r {
  19. font-size: 30rpx;
  20. color: #ff5041;
  21. font-weight: bold;
  22. }
  23. .list-item .time {
  24. color: #999;
  25. font-size: 24rpx;
  26. }
  27. .none-list {
  28. text-align: center;
  29. background: #fff;
  30. height: 116rpx;
  31. line-height: 116rpx;
  32. }