replyDetail.wxss 1.6 KB

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