notification.scss 737 B

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