chat-item.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @import "chat-item-head.wxss";
  2. .m_container{position:relative;}
  3. .chat-item-styleon{
  4. width:750rpx;
  5. display: flex;
  6. align-items: center;
  7. position: relative;
  8. z-index: 20;
  9. background:#FFF;
  10. transition: all 0.4s;
  11. transform: translateX(-148rpx);
  12. }
  13. .chat-item-style{
  14. width:750rpx;
  15. display: flex;
  16. align-items: center;
  17. position: relative;
  18. z-index: 20;
  19. background:#FFF;
  20. transition: all 0.4s;
  21. }
  22. .chat-item-content-super-style{
  23. display: flex;
  24. flex-direction: column;
  25. width: 50%;
  26. }
  27. .chat-item-name-style{
  28. color: #666666;
  29. font-size: 32rpx;
  30. margin-bottom: 14rpx;
  31. }
  32. .chat-item-content-style{
  33. min-height: 20rpx;
  34. width: 100%;
  35. color: #666666;
  36. font-size: 26rpx;
  37. text-overflow: ellipsis;
  38. white-space: nowrap;
  39. overflow: hidden;
  40. }
  41. .chat-item-status-super-style{
  42. position: absolute;
  43. right: 34rpx;
  44. top: 35rpx;
  45. display:flex;
  46. flex-direction: column;
  47. align-items:flex-end;
  48. }
  49. .chat-item-time-style{
  50. color: #999999;
  51. font-size: 20rpx;
  52. margin-bottom: 20rpx;
  53. text-align: right;
  54. }
  55. .delete{position:absolute;top:0;right:0;z-index:10;width:148rpx;height:148rpx;text-align:center;line-height:148rpx;background:#FF4500;font-size:32rpx;color:#FFF;}