replyDetail.wxss 1.7 KB

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