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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. }
  74. .msg-li-item .chatheads-view .other-head-img{
  75. width: 100%;
  76. height: 100%;
  77. border-radius: 50%;
  78. }
  79. .msg-li-item .msg-content {
  80. width: calc(100% - 140rpx);
  81. }
  82. .msg-li-item .msg-content .msg-nickName{
  83. font-size: 30rpx;
  84. line-height: 56rpx;
  85. width: 100%;
  86. }
  87. .msg-li-item .msg-content .msg-last-content,
  88. .msg-li-item .msg-content .msg-last-content-date{
  89. font-size: 24rpx;
  90. color: #999;
  91. }
  92. .msg-li-item .msg-content .msg-last-content-date {
  93. margin-right: 20rpx;
  94. }
  95. .msg-li-item .msg-content .msg-last-content {
  96. max-width: calc(100% - 270rpx);
  97. }