业务交流通
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.wxss 2.1KB

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