index.less 577 B

123456789101112131415161718192021222324252627282930313233
  1. .noticeBox {
  2. .notice {
  3. padding: 30rpx 20rpx;
  4. box-sizing: border-box;
  5. .date {
  6. width: 285rpx;
  7. padding: 6rpx 0rpx;
  8. margin: 0rpx auto;
  9. background-color: #D2DAE7;
  10. border-radius: 30rpx;
  11. text-align: center;
  12. }
  13. .content {
  14. margin-top: 24rpx;
  15. padding: 28rpx 22rpx;
  16. border-radius: 20rpx;
  17. background: #FFFFFF;
  18. font-size: 32rpx;
  19. .title {
  20. font-weight: bold;
  21. margin-bottom: 20rpx;
  22. }
  23. .row {
  24. line-height: 48rpx;
  25. margin-bottom: 10rpx;
  26. }
  27. }
  28. }
  29. }