index.scss 1.2 KB

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