index.scss 1.0 KB

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