noticeList.acss 434 B

12345678910111213141516171819202122232425262728
  1. .box {
  2. padding: 0.32rem;
  3. box-sizing: border-box;
  4. }
  5. .box image {
  6. width: 24rpx;
  7. height: 24rpx;
  8. }
  9. .notice-item {
  10. padding: 0.28rem;
  11. background: #fff;
  12. border-radius: 6rpx;
  13. box-sizing: border-box;
  14. }
  15. .text-hidden {
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. display: -webkit-box;
  19. -webkit-line-clamp: 1;
  20. font-size: 32rpx;
  21. -webkit-box-orient: vertical;
  22. }
  23. .notice-item-date {
  24. font-size: 0.28rem;
  25. color: #999;
  26. }