msglist.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*.chat-bg{
  2. position:fixed;
  3. width: 100%;
  4. height: 100%;
  5. z-index: 0;
  6. top: 50px;
  7. }*/
  8. .scroll_view,.scroll_view_change {
  9. /* width: 100%;
  10. position: absolute;
  11. left: 0;
  12. right: 0;
  13. bottom: 170rpx; */
  14. background-color: #FAFAFA;
  15. padding-bottom: 100rpx;
  16. }
  17. .scroll_view_X,
  18. .scroll_view_change_X{
  19. padding-bottom: 230rpx;
  20. }
  21. .message {
  22. width: 100%;
  23. height: auto;
  24. padding: 0 30rpx;
  25. position: relative;
  26. box-sizing: border-box;
  27. }
  28. .time {
  29. margin: 14rpx 0;
  30. text-align: center;
  31. }
  32. .time .time-text {
  33. display: inline-block;
  34. padding: 6rpx 20rpx 0 20rpx;
  35. font-size: 24rpx;
  36. color: #fff;
  37. line-height: 28rpx;
  38. border-radius: 4rpx;
  39. background-color: #dcdcdc;
  40. }
  41. .user .user-text {
  42. margin: auto 100rpx 8rpx;
  43. font-size: 20rpx;
  44. color: #dcdcdc;
  45. display: block;
  46. }
  47. .avatar {
  48. width: 72rpx;
  49. height: 72rpx;
  50. margin: 0 20rpx 0 0;
  51. border-radius: 50%;
  52. float: left;
  53. }
  54. .msg {
  55. display: inline-block;
  56. padding: 20rpx;
  57. max-width: calc(85% - 80rpx);
  58. min-height: 40rpx;
  59. font-size: 24rpx;
  60. /*overflow: hidden;*/
  61. text-align: left;
  62. word-break: break-all;
  63. background-color: #fff;
  64. border-radius: 26rpx;
  65. position: relative;
  66. margin-top: 24rpx;
  67. }
  68. .msg .msg_poprightarrow {
  69. position: absolute;
  70. right: -10rpx;
  71. height: 18rpx;
  72. width: 18rpx;
  73. margin-top: -10rpx;
  74. }
  75. .msg .msg_popleftarrow{
  76. position:absolute;
  77. left: -14rpx;
  78. height: 18rpx;
  79. width: 18rpx;
  80. margin-top: -10rpx;
  81. }
  82. .msg .msg-text {
  83. line-height: 40rpx;
  84. font-size: 32rpx;
  85. margin: 0;
  86. }
  87. /*.msg:before {
  88. content: " ";
  89. position: absolute;
  90. top: 9px;
  91. right: 100%;
  92. border: 6px solid transparent;
  93. border-right-color: #EDEDED;
  94. }*/
  95. .self {
  96. text-align: right;
  97. }
  98. .self .avatar {
  99. float: right;
  100. margin: 0 0 0 20rpx;
  101. }
  102. .user {
  103. position: relative;
  104. bottom: -30rpx;
  105. }
  106. .self .msg {
  107. background-color: #0873DE;
  108. color: #fff;
  109. }
  110. .self .msg:before {
  111. right: inherit;
  112. left: 100%;
  113. border-right-color: transparent;
  114. border-left-color: #b2e281;
  115. }
  116. .template {
  117. display: inline;
  118. }
  119. .err{
  120. width: 32rpx;
  121. height: 32rpx;
  122. position: absolute;
  123. left: -40rpx;
  124. }
  125. .hide{
  126. display: none;
  127. }
  128. .show{
  129. display: block;
  130. }