aboutInfo.wxss 500 B

123456789101112131415161718192021222324252627
  1. /* pages/aboutInfo/aboutInfo.wxss */
  2. .aboutInfo{
  3. background-color: #fffaf3;
  4. }
  5. .content{
  6. display: flex;
  7. flex-direction: column;
  8. padding: 30rpx;
  9. overflow: auto;
  10. }
  11. .aboutInfo .content .time{
  12. text-align: center;
  13. }
  14. .aboutInfo .content text{
  15. text-align: justify;
  16. }
  17. .aboutInfo .content .time, .aboutInfo .content text{
  18. line-height: 44rpx;
  19. font-size: 30rpx;
  20. margin: 0 0 30rpx;
  21. font-weight: 400;
  22. color: #000;
  23. }
  24. .aboutInfo .content .fontWeight{
  25. font-weight: 700;
  26. font-size: 36rpx;
  27. }