chat-item.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @import "chat-item-head.wxss";
  2. .chat-item-style{
  3. width:100%;
  4. display: flex;
  5. align-items: center;
  6. position: relative;
  7. height: 130rpx;
  8. padding-left: 40rpx;
  9. }
  10. .content {
  11. flex: 1;
  12. border-bottom: 2rpx solid #e5e5e5;
  13. height: 128rpx;
  14. display: flex;
  15. align-items: center;
  16. }
  17. .chat-item-content-super-style{
  18. display: flex;
  19. flex-direction: column;
  20. box-sizing: border-box;
  21. width: 480rpx;
  22. }
  23. .chat-item-name-style{
  24. color: #111;
  25. font-size: 30rpx;
  26. margin-bottom: 14rpx;
  27. font-weight: bold;
  28. display: flex;
  29. align-items: center;
  30. }
  31. .organ {
  32. padding: 0 8rpx;
  33. height: 32rpx;
  34. line-height: 32rpx;
  35. background: #E8F8FE;
  36. color: #79868F;
  37. /* border-radius: 16rpx; */
  38. display: block;
  39. font-size: 22rpx;
  40. margin-left: 14rpx;
  41. font-weight: 400;
  42. }
  43. .chat-item-content-style{
  44. min-height: 20rpx;
  45. width: 100%;
  46. color: #A3A4A5;
  47. font-size: 26rpx;
  48. text-overflow: ellipsis;
  49. white-space: nowrap;
  50. overflow: hidden;
  51. }
  52. .chat-item-status-super-style{
  53. position: absolute;
  54. right: 40rpx;
  55. top: 25rpx;
  56. display:flex;
  57. flex-direction: column;
  58. align-items:flex-end;
  59. }
  60. .chat-item-time-style{
  61. color: #999999;
  62. font-size: 22rpx;
  63. margin-bottom: 20rpx;
  64. text-align: right;
  65. }