index.scss 1.2 KB

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