chat.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. page {
  2. /* background: #1c1b20; */
  3. }
  4. .input-box {
  5. position: fixed;
  6. bottom: 0;
  7. left: 0;
  8. height: 100rpx;
  9. width: 100%;
  10. display: flex;
  11. box-sizing: content-box;
  12. z-index: 999;
  13. /* background-color: #ececec; */
  14. /* padding: 0 5rpx; */
  15. }
  16. .chat-listitem {
  17. display: flex;
  18. margin-top: 20rpx;
  19. padding: 10rpx;
  20. }
  21. .chat-listitem-text {
  22. color: #000000;
  23. background: #FFFFFF;
  24. margin-top: 10rpx;
  25. width: -webkit-fit-content;
  26. width: fit-content;
  27. padding: 15rpx;
  28. font-size: 30rpx;
  29. height: -webkit-max-content;
  30. height: max-content;
  31. word-wrap: break-word;
  32. word-break: break-all;
  33. border-radius: 10rpx;
  34. }
  35. .chat-listitem-image-type4 {
  36. color: #000000;
  37. background: #FFFFFF;
  38. width: -webkit-fit-content;
  39. width: fit-content;
  40. font-size: 30rpx;
  41. height: -webkit-max-content;
  42. height: max-content;
  43. word-wrap: break-word;
  44. word-break: break-all;
  45. border-top-left-radius: 20rpx;
  46. border-top-right-radius: 20rpx;
  47. }
  48. .chat-listitem-image {
  49. margin-top: 5rpx;
  50. width: 75rpx;
  51. height: 75rpx;
  52. border-radius: 5rpx;
  53. }
  54. .save {
  55. width: 130rpx;
  56. text-align: center;
  57. border-radius: 10rpx;
  58. height: 70rpx;
  59. color: #FFF;
  60. background: #1789FD;
  61. margin: 5rpx 10rpx 0;
  62. line-height: 70rpx;
  63. }