insideMessage.wxss 647 B

123456789101112131415161718192021222324252627282930313233343536
  1. .message-view{
  2. width: 100%;
  3. min-height: 100%;
  4. background: #f0eff2;
  5. padding-top: 19rpx;
  6. overflow: hidden;
  7. }
  8. .message-box{
  9. width: 100%;
  10. margin-bottom: 19rpx;
  11. }
  12. .message-time{
  13. color: #fff;
  14. font-size: 24rpx;
  15. background: #cccbce;
  16. width: 310rpx;
  17. height: 36rpx;
  18. line-height: 36rpx;
  19. margin: 0 auto;
  20. text-align: center;
  21. border-radius: 18rpx;
  22. }
  23. .message-text{
  24. color: #464646;
  25. font-weight: 800;
  26. font-size: 24rpx;
  27. width: 704rpx;
  28. min-height: 80rpx;
  29. margin: 20rpx auto;
  30. background: #fff;
  31. border-radius: 20rpx;
  32. padding: 20rpx;
  33. box-sizing: border-box;
  34. }