index.scss 1.3 KB

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