index.scss 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* 消息列表 */
  2. .list {
  3. position: relative;
  4. height: 194rpx;
  5. width: 690rpx;
  6. box-sizing: border-box;
  7. border-radius: 16rpx;
  8. overflow: hidden;
  9. background: #ffffff;
  10. margin: 20rpx auto 0;
  11. padding: 20rpx 30rpx;
  12. .title {
  13. font-size: 28rpx;
  14. font-family: PingFang SC-Medium, PingFang SC;
  15. font-weight: 500;
  16. color: #333333;
  17. }
  18. .content {
  19. width: 620rpx;
  20. font-size: 24rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #666666;
  23. margin-top: 12rpx;
  24. }
  25. .time {
  26. font-size: 20rpx;
  27. font-family: PingFang SC-Regular, PingFang SC;
  28. color: #999999;
  29. margin-top: 16rpx;
  30. .tag {
  31. margin-right: 10rpx;
  32. }
  33. }
  34. .unread-item {
  35. position: absolute;
  36. width: 16rpx;
  37. height: 16rpx;
  38. background: var(--error);
  39. border-radius: 50%;
  40. top: 6rpx;
  41. right: 6rpx;
  42. }
  43. }