index.less 2.6 KB

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