notification.scss 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. page {
  2. height: 100%;
  3. background-color: #f2f2f2;
  4. }
  5. .notice {
  6. &-tab {
  7. margin-top: 88rpx;
  8. }
  9. &-list {
  10. margin-top: 18rpx;
  11. padding: 0 30rpx;
  12. &-item {
  13. background-color: #fff;
  14. margin-bottom: 20rpx;
  15. padding: 42rpx 32rpx;
  16. &-title {
  17. color: #000;
  18. font-size: 32rpx;
  19. margin-bottom: 14rpx;
  20. }
  21. &-content {
  22. font-size: 24rpx;
  23. color: #545454;
  24. line-height: 38rpx;
  25. margin-bottom: 14rpx;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. }
  30. &-bottom {
  31. display: flex;
  32. justify-content: space-between;
  33. font-size: 22rpx;
  34. color: #9F9F9F;
  35. .is-read {
  36. color: #EF6622;
  37. }
  38. .no-read {
  39. color: #1A1A1A;
  40. }
  41. }
  42. }
  43. }
  44. }