noticeDetail.wxss 660 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* pages/noticeDetail/noticeDetail.wxss */
  2. /* 公告标题 */
  3. .noticeDetailTitle{
  4. display: flex;
  5. font-size: 46rpx;
  6. color: red;
  7. font-weight: bold;
  8. margin: 20rpx;
  9. padding: 0 40rpx;
  10. justify-content: center;
  11. text-align: center;
  12. }
  13. /* 发布时间 */
  14. .noticeTime{
  15. font-size: 26rpx;
  16. color: skyblue;
  17. display: flex;
  18. justify-content: center;
  19. margin-bottom: 20rpx;
  20. }
  21. /* 文件下方的隔条 */
  22. .intervalOne{
  23. height: 4rpx;
  24. background-color: red;
  25. }
  26. .intervalTwo{
  27. margin-top: 6rpx;
  28. height: 8rpx;
  29. background-color: red;
  30. }
  31. /* 公告详情 */
  32. .noticeDetail{
  33. font-size: 34rpx;
  34. margin: 20rpx;
  35. }