replyDetail.wxss 2.2 KB

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