index.scss 1.5 KB

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