业务交流通
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wxss 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/msgPage/msgPage.wxss */
  2. .msg-page {
  3. min-height: calc(100vh - 150rpx);
  4. }
  5. .top-view {
  6. /* background: #fff;
  7. box-sizing: border-box;
  8. padding: 0 20rpx;
  9. height: 88rpx;
  10. line-height: 88rpx;
  11. box-shadow: -1px 3px 12px 4px rgba(186, 186, 186, 0.1);
  12. border-radius: 20rpx;
  13. margin-bottom: 20rpx; */
  14. position: relative;
  15. margin-bottom: 20rpx;
  16. }
  17. .top-view .msg-colse-img{
  18. position: absolute;
  19. width: 30rpx;
  20. height: 30rpx;
  21. right: 20rpx;
  22. top: 20rpx;
  23. }
  24. .msg-box-view {
  25. background: #fff;
  26. box-sizing: border-box;
  27. border-radius: 20rpx;
  28. min-height: calc(100vh - 150rpx);
  29. }
  30. .msg-box-view.topShow{
  31. min-height: calc(100vh - 258rpx);
  32. }
  33. .msg-box-view.not-msg-data{
  34. text-align: center;
  35. box-sizing: border-box;
  36. padding-top: 140rpx;
  37. }
  38. .msg-box-view.not-msg-data .not-msg-data-img{
  39. width: 302rpx;
  40. height: 224rpx;
  41. }
  42. .msg-box-view.not-msg-data .not-data-msg-info{
  43. font-size: 24rpx;
  44. color: #b3bfcb;
  45. margin-top: 20rpx;
  46. }
  47. .msg-li-item {
  48. height: 140rpx;
  49. box-sizing: border-box;
  50. padding-top: 20rpx;
  51. border-top: 1rpx solid #d9dde5;
  52. }
  53. .msg-li-item-first{
  54. border-top: 0;
  55. }
  56. .msg-li-item-last {
  57. border-bottom: 1rpx solid #d9dde5;
  58. }
  59. .msg-li-item .chatheads-view{
  60. width: 88rpx;
  61. height: 88rpx;
  62. margin: 0 20rpx;
  63. border-radius: 50%;
  64. margin-top: 7rpx;
  65. position: relative;
  66. }
  67. .msg-li-item .chatheads-view .other-head-img{
  68. width: 100%;
  69. height: 100%;
  70. border-radius: 50%;
  71. }
  72. .msg-li-item .msg-content {
  73. width: calc(100% - 140rpx);
  74. }
  75. .msg-li-item .msg-content .msg-nickName{
  76. font-size: 30rpx;
  77. line-height: 56rpx;
  78. width: 100%;
  79. }
  80. .msg-li-item .msg-content .msg-last-content,
  81. .msg-li-item .msg-content .msg-last-content-date{
  82. font-size: 24rpx;
  83. color: #999;
  84. }
  85. .msg-li-item .msg-content .msg-last-content-date {
  86. margin-right: 20rpx;
  87. }
  88. .msg-li-item .msg-content .msg-last-content {
  89. max-width: calc(100% - 270rpx);
  90. }
  91. .msg-li-item .chatheads-view .view-info {
  92. position: absolute;
  93. right: -8rpx;
  94. top: -8rpx;
  95. background: red;
  96. color: #fff;
  97. font-size: 12px;
  98. border-radius: 50%;
  99. box-sizing: border-box;
  100. min-width: 30rpx;
  101. height: 30rpx;
  102. line-height: 30rpx;
  103. text-align: center;
  104. }