comment.wxss 808 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .comment {
  2. overflow: hidden;
  3. }
  4. .comment .comment_item {
  5. padding-left: 46rpx;
  6. padding-right: 40rpx;
  7. border-bottom: 1px solid #fafafa;
  8. }
  9. .comment_info {
  10. height: 64rpx;
  11. margin: 38rpx 0;
  12. position: relative;
  13. overflow: hidden;
  14. }
  15. .comment_info .icon {
  16. width: 64rpx;
  17. height: 64rpx;
  18. margin-right: 20rpx;
  19. border-radius: 50%;
  20. float: left;
  21. overflow: hidden;
  22. }
  23. .comment_info .time {
  24. font-size: 24rpx;
  25. line-height: 64rpx;
  26. color: #999999;
  27. position: absolute;
  28. right: 0;
  29. top: 0;
  30. }
  31. .info {
  32. float: left;
  33. height: 64rpx;
  34. display: flex;
  35. align-items: flex-start;
  36. flex-direction: column;
  37. justify-content: space-between;
  38. }
  39. .info .info_name{
  40. line-height: 64rpx;
  41. font-size: 28rpx;
  42. color: #333333;
  43. letter-spacing: 0.6rpx;
  44. }
  45. .comment_content {
  46. font-size: 26rpx;
  47. padding-bottom: 32rpx;
  48. color: #333333;
  49. }