index.scss 1.1 KB

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