index.scss 1.4 KB

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