chat-detail.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* pages/chat-detail/chat-detail.wxss */
  2. page {
  3. background-color: #F0F4F7;
  4. }
  5. .row-left {
  6. padding: 20rpx;
  7. width: 85%;
  8. display: inline-flex;
  9. align-items: center;
  10. }
  11. .row-right {
  12. float: right;
  13. padding: 20rpx;
  14. width: 85%;
  15. display: inline-flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. }
  19. .photo {
  20. width: 80rpx;
  21. height: 80rpx;
  22. border-radius: 40rpx;
  23. }
  24. .row-left .content {
  25. background-color: #fff;
  26. margin-left: 20rpx;
  27. border-radius: 10rpx;
  28. padding: 10rpx;
  29. max-width: 80%;
  30. }
  31. .row-right .content {
  32. background-color: #fff;
  33. margin-right: 20rpx;
  34. border-radius: 10rpx;
  35. padding: 10rpx;
  36. max-width: 80%;
  37. }
  38. .input-bar {
  39. width: 96%;
  40. padding: 15rpx;
  41. padding-bottom: 25rpx;
  42. position: absolute;
  43. bottom: 10rpx;
  44. height: 80rpx;
  45. display: inline-flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. background-color: #fff;
  49. }
  50. .input {
  51. height: 60rpx;
  52. line-height: 80rpx;
  53. border: solid 1rpx #dddddd;
  54. width: 77%;
  55. border-radius: 25rpx;
  56. padding-left: 10rpx;
  57. }
  58. .send-btn {
  59. color: #fff;
  60. background-color: #53c8ee;
  61. border-radius: 30rpx;
  62. padding: 20rpx 30rpx;
  63. margin-left: 20rpx;
  64. }