messageDetail.wxss 843 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* pages/messageDetail/messageDetail.wxss */
  2. page{
  3. background-color: #F7F7F7;
  4. }
  5. .chat-box{
  6. display: flex;
  7. flex-direction: column;
  8. width: 750rpx;
  9. height: auto;
  10. }
  11. .chat-box>view:nth-child(1){
  12. width: 750rpx;
  13. height: 32rpx;
  14. font-size: 26rpx;
  15. font-family: Helvetica;
  16. color: rgba(0,0,0,0.4);
  17. line-height: 32rpx;
  18. text-align: center;
  19. margin: 48rpx 0 24rpx;
  20. }
  21. .chat-con{
  22. display: flex;
  23. flex-direction: row;
  24. }
  25. .chat-con>image:nth-child(1){
  26. width: 88rpx;
  27. height: 88rpx;
  28. border-radius: 50%;
  29. margin: 0 24rpx auto 32rpx;
  30. }
  31. .chat-con>text:nth-child(2){
  32. width: 430rpx;
  33. height: auto;
  34. font-size: 30rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 400;
  37. color: rgba(0,0,0,0.87);
  38. background-color: #fff;
  39. line-height: 48rpx;
  40. text-align: justify;
  41. padding: 24rpx 32rpx;
  42. border-radius: 12px;
  43. }