index.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. // @import "./index.skeleton.wxss";
  2. page {
  3. background-color: white;
  4. }
  5. .messagePage {
  6. overflow: hidden;
  7. border-top-left-radius: 24rpx;
  8. border-top-right-radius: 24rpx;
  9. background-color: white;
  10. .input {
  11. background-color: #F2F6FC;
  12. font-size: 28rpx;
  13. margin: 20rpx 30rpx 10rpx;
  14. padding: 20rpx 40rpx;
  15. border-radius: 26rpx;
  16. }
  17. .messageList {
  18. padding: 0rpx 36rpx 250rpx;
  19. box-sizing: border-box;
  20. .base {
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. padding: 20rpx 0rpx 20rpx 20rpx;
  25. border-bottom: 1rpx solid #D8D8D8;
  26. .avatar {
  27. border-radius: 50rpx;
  28. width: 80rpx;
  29. height: 80rpx;
  30. background-color: #EEEEEE;
  31. }
  32. .body {
  33. flex: 1;
  34. padding: 0rpx 20rpx;
  35. .name {
  36. max-width: 330rpx;
  37. font-size: 30rpx;
  38. font-weight: bolder;
  39. }
  40. }
  41. .right {
  42. min-width: 140rpx;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: flex-end;
  46. .date {
  47. font-size: 24rpx;
  48. }
  49. .unread {
  50. margin-top: 6rpx;
  51. width: 32rpx;
  52. height: 32rpx;
  53. line-height: 32rpx;
  54. border-radius: 550rpx;
  55. color: white;
  56. font-size: 20rpx;
  57. text-align: center;
  58. background-color: #FF0000;
  59. }
  60. }
  61. }
  62. .authority {
  63. .body {
  64. display: flex;
  65. justify-content: space-between;
  66. padding-right: 50rpx;
  67. .avatars {
  68. display: flex;
  69. .miniAvatar {
  70. width: 38rpx;
  71. height: 38rpx;
  72. border-radius: 50rpx;
  73. margin-left: 4rpx;
  74. background-color: #E4E1E1;
  75. }
  76. }
  77. }
  78. }
  79. .user {
  80. .info {
  81. margin-top: 4rpx;
  82. width: 400rpx;
  83. color: #969696;
  84. font-size: 24rpx;
  85. }
  86. }
  87. .pressHover {
  88. background-color: #f1f1f1;
  89. }
  90. }
  91. .menuBg {
  92. position: fixed;
  93. top: 0px;
  94. left: 0px;
  95. width: 100vw;
  96. height: 100vh;
  97. }
  98. .menu {
  99. position: fixed;
  100. width: 278rpx;
  101. // height: 180rpx;
  102. padding: 20rpx 20rpx;
  103. box-sizing: border-box;
  104. border-radius: 24rpx;
  105. background-color: white;
  106. box-shadow: rgba(0, 0, 0, 0.24) 0px 6rpx 16rpx;
  107. view {
  108. height: 50%;
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. }
  113. .icon {
  114. width: 30rpx;
  115. height: 30rpx;
  116. margin-right: 16rpx;
  117. }
  118. .menu-one {
  119. // border-bottom: 1rpx solid #D8D8D8;
  120. .icon {
  121. width: 22rpx;
  122. height: 28rpx;
  123. }
  124. }
  125. }
  126. }