index.acss 619 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .list {
  2. margin: 24rpx 30rpx;
  3. }
  4. .item {
  5. padding: 40rpx 24rpx 20rpx 24rpx;
  6. background-color: #fff;
  7. margin-bottom: 24rpx;
  8. }
  9. .flex-around {
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. }
  14. .flex-around > image {
  15. width: 100rpx;
  16. height: 100rpx;
  17. }
  18. .flex {
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: space-around;
  22. line-height: 55rpx;
  23. }
  24. .time {
  25. font-size: 26rpx;
  26. color: rgba(174, 192, 215, 0.8);
  27. }
  28. .tit {
  29. max-width: 509rpx;
  30. font-size: 34rpx;
  31. overflow: hidden;
  32. text-overflow: ellipsis;
  33. white-space: nowrap;
  34. }