index.wxss 841 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .user-msg-box {
  2. display: flex;
  3. align-items: center;
  4. width: 690rpx;
  5. height: 78rpx;
  6. margin: 0 auto;
  7. box-sizing: border-box;
  8. }
  9. .user-msg-box .image {
  10. width: 50rpx;
  11. height: 50rpx;
  12. margin-right: 14rpx;
  13. border-radius: 50%;
  14. overflow: hidden;
  15. }
  16. .user-msg-box .image image {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .even-more {
  21. height: 40rpx;
  22. color: #00C1D2;
  23. line-height: 40rpx;
  24. margin: 0 auto;
  25. text-align: center;
  26. padding-bottom: 20rpx;
  27. }
  28. .user-msg-box .content {
  29. flex: 1;
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. height: 100%;
  34. border-top: 2rpx solid rgba(151, 151, 151, .1);
  35. }
  36. .user-msg-box .content>view {
  37. font-size: 28rpx;
  38. color: rgba(0, 0, 0, .9);
  39. }
  40. .user-msg-box .content .time {
  41. color: rgba(51, 51, 51, .9);
  42. }