业务交流通
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. }
  15. .top-view .msg-top-img {
  16. width: 87rpx;
  17. height: 67rpx;
  18. margin-right: 26rpx;
  19. position: relative;
  20. top: 13rpx;
  21. }
  22. .top-view .msg-text{
  23. font-size: 24rpx;
  24. color: #728dd4;
  25. margin-right: 10rpx;
  26. }
  27. .top-view .msg-btn-go .van-button{
  28. width: 144rpx;
  29. margin-right: 10rpx;
  30. }
  31. .top-view .msg-colse-img{
  32. width: 30rpx;
  33. height: 30rpx;
  34. margin-left: 10rpx;
  35. margin-top: 29rpx;
  36. }
  37. .msg-box-view {
  38. background: #fff;
  39. box-sizing: border-box;
  40. border-radius: 20rpx;
  41. min-height: calc(100vh - 150rpx);
  42. }
  43. .msg-box-view.topShow{
  44. min-height: calc(100vh - 258rpx);
  45. }
  46. .msg-box-view.not-msg-data{
  47. text-align: center;
  48. box-sizing: border-box;
  49. padding-top: 140rpx;
  50. }
  51. .msg-box-view.not-msg-data .not-msg-data-img{
  52. width: 302rpx;
  53. height: 224rpx;
  54. }
  55. .msg-box-view.not-msg-data .not-data-msg-info{
  56. font-size: 24rpx;
  57. color: #b3bfcb;
  58. margin-top: 20rpx;
  59. }
  60. .msg-li-item {
  61. height: 140rpx;
  62. box-sizing: border-box;
  63. padding-top: 20rpx;
  64. border-top: 1rpx solid #d9dde5;
  65. }
  66. .msg-li-item-first{
  67. border-top: 0;
  68. }
  69. .msg-li-item-last {
  70. border-bottom: 1rpx solid #d9dde5;
  71. }
  72. .msg-li-item .chatheads-view{
  73. width: 88rpx;
  74. height: 88rpx;
  75. margin: 0 20rpx;
  76. border-radius: 50%;
  77. margin-top: 7rpx;
  78. position: relative;
  79. }
  80. .msg-li-item .chatheads-view .other-head-img{
  81. width: 100%;
  82. height: 100%;
  83. border-radius: 50%;
  84. }
  85. .msg-li-item .msg-content {
  86. width: calc(100% - 140rpx);
  87. }
  88. .msg-li-item .msg-content .msg-nickName{
  89. font-size: 30rpx;
  90. line-height: 56rpx;
  91. width: 100%;
  92. }
  93. .msg-li-item .msg-content .msg-last-content,
  94. .msg-li-item .msg-content .msg-last-content-date{
  95. font-size: 24rpx;
  96. color: #999;
  97. }
  98. .msg-li-item .msg-content .msg-last-content-date {
  99. margin-right: 20rpx;
  100. }
  101. .msg-li-item .msg-content .msg-last-content {
  102. max-width: calc(100% - 270rpx);
  103. }
  104. .msg-li-item .chatheads-view .view-info {
  105. position: absolute;
  106. right: -8rpx;
  107. top: -8rpx;
  108. background: red;
  109. color: #fff;
  110. font-size: 12px;
  111. border-radius: 50%;
  112. box-sizing: border-box;
  113. min-width: 30rpx;
  114. height: 30rpx;
  115. line-height: 30rpx;
  116. text-align: center;
  117. }