insideMessage.wxss 625 B

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