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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. border-bottom: 1rpx solid #d9dde5;
  63. box-sizing: border-box;
  64. /* padding: 26rpx 0; */
  65. padding-top: 20rpx;
  66. }
  67. .msg-li-item .chatheads-view{
  68. width: 88rpx;
  69. height: 88rpx;
  70. margin: 0 20rpx;
  71. border-radius: 50%;
  72. margin-top: 7rpx;
  73. position: relative;
  74. }
  75. .msg-li-item .chatheads-view .other-head-img{
  76. width: 100%;
  77. height: 100%;
  78. border-radius: 50%;
  79. }
  80. .msg-li-item .msg-content {
  81. width: calc(100% - 140rpx);
  82. }
  83. .msg-li-item .msg-content .msg-nickName{
  84. font-size: 30rpx;
  85. line-height: 56rpx;
  86. width: 100%;
  87. }
  88. .msg-li-item .msg-content .msg-last-content,
  89. .msg-li-item .msg-content .msg-last-content-date{
  90. font-size: 24rpx;
  91. color: #999;
  92. }
  93. .msg-li-item .msg-content .msg-last-content-date {
  94. margin-right: 20rpx;
  95. }
  96. .msg-li-item .msg-content .msg-last-content {
  97. max-width: calc(100% - 270rpx);
  98. }
  99. .msg-li-item .chatheads-view .view-info {
  100. position: absolute;
  101. right: -8rpx;
  102. top: -8rpx;
  103. background: red;
  104. color: #fff;
  105. font-size: 12px;
  106. border-radius: 50%;
  107. box-sizing: border-box;
  108. min-width: 30rpx;
  109. height: 30rpx;
  110. line-height: 30rpx;
  111. text-align: center;
  112. }