notice.wxss 548 B

1234567891011121314151617181920212223242526272829303132
  1. /* pages/notice/notice.wxss */
  2. .noticeList{
  3. display: flex;
  4. padding: 20rpx 0 20rpx 20rpx;
  5. text-align: justify;
  6. }
  7. .noticeTitle{
  8. font-size: 36rpx;
  9. overflow: hidden;
  10. width: 75%;
  11. display: -webkit-box;
  12. -webkit-box-orient: vertical;
  13. -webkit-line-clamp: 1;
  14. }
  15. .noticeBtn{
  16. font-size: 36rpx;
  17. color: skyblue;
  18. height: 50rpx;
  19. line-height: 50rpx;
  20. position: absolute;
  21. right: 20rpx;
  22. }
  23. /* 分隔条 */
  24. .interval{
  25. height: 1rpx;
  26. background-color: gray;
  27. width: 100%;
  28. padding-left: -20rpx;
  29. }