replyDetail.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .commentArea {
  2. width: 100%;
  3. }
  4. .commentArea .commentItem {
  5. width: 100%;
  6. padding: 0 0 0 23rpx;
  7. height: 100%;
  8. border-bottom: solid 2rpx #979797;
  9. /* margin: 0 auto 10; */
  10. display: flex;
  11. position: relative;
  12. background: #f0f1f5;
  13. }
  14. .commentArea .commentItemFirst{
  15. background: #fff;
  16. border-bottom: none;
  17. min-height: 200rpx;
  18. }
  19. .commentItem .commentCore {
  20. margin-left: 14rpx;
  21. width: 600rpx;
  22. height: 100%;
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. .commentItem .avatar {
  27. border-radius: 50%;
  28. width: 96rpx;
  29. height: 96rpx;
  30. margin-top: 18rpx;
  31. }
  32. .commentItem .nickName {
  33. margin-top: 18rpx;
  34. height: 44rpx;
  35. font-size: 32rpx;
  36. color: #000;
  37. font-family: PingFangSC-Regular;
  38. }
  39. .commentItem .time {
  40. width: 200rpx;
  41. height: 44rpx;
  42. font-size: 32rpx;
  43. color: #686868;
  44. }
  45. .commentItem .gut {
  46. margin-top: 12rpx;
  47. width: 420rpx;
  48. /* height: 44rpx; */
  49. line-height: 44rpx;
  50. font-size: 32rpx;
  51. color: #000;
  52. /* overflow: hidden;
  53. text-overflow: ellipsis;
  54. white-space: nowrap; */
  55. }
  56. .commentItem .btnWrapper {
  57. position: absolute;
  58. top: 10rpx;
  59. right: 30rpx;
  60. display: flex;
  61. align-items: center;
  62. }
  63. .btnWrapper .commentBtn {
  64. width: 32rpx;
  65. height: 30rpx;
  66. margin-left: 8rpx;
  67. }
  68. .btnWrapper .commentText,
  69. .likeText {
  70. width: 58rpx;
  71. height: 40rpx;
  72. color: #545454;
  73. font-size: 28rpx;
  74. line-height: 40rpx;
  75. margin-left: 8rpx;
  76. }
  77. .btnWrapper .likeBtn {
  78. width: 32rpx;
  79. height: 28rpx;
  80. margin-left: 8rpx;
  81. }
  82. .replySection{
  83. width: 100%;
  84. height: 300rpx;
  85. position: fixed;
  86. bottom: 0;
  87. background: #eee;
  88. }
  89. .replySection input{
  90. width: 100%;
  91. height: 300rpx;
  92. text-indent: 4rpx;
  93. }