index.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. .commentBox {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 999;
  8. overflow: hidden;
  9. .commentBg {
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. background: rgba(0, 0, 0, .3);
  16. }
  17. .comment {
  18. position: absolute;
  19. left: 0;
  20. bottom: 0px;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-between;
  24. width: 100%;
  25. height: 900rpx;
  26. padding-bottom: 110rpx;
  27. background-color: white;
  28. border-top-left-radius: 25rpx;
  29. border-top-right-radius: 25rpx;
  30. .header {
  31. position: relative;
  32. padding: 24rpx;
  33. .hr {
  34. position: absolute;
  35. right: 26rpx;
  36. top: -4rpx;
  37. font-size: 54rpx;
  38. color: #333333;
  39. }
  40. }
  41. .body {
  42. flex: 1;
  43. overflow-y: auto;
  44. .body-box {
  45. padding: 0rpx 22rpx;
  46. .content {
  47. padding: 34rpx 0rpx;
  48. display: flex;
  49. border-bottom: 1px solid #97979783;
  50. .c-avatar {
  51. width: 96rpx;
  52. height: 96rpx;
  53. border-radius: 50%;
  54. margin-right: 20rpx;
  55. background: rgb(216, 216, 216);
  56. }
  57. .c-right {
  58. flex: 1;
  59. .nickName {
  60. font-size: 30rpx;
  61. color: rgba(0, 0, 0, 0.60);
  62. }
  63. .detailDesc {
  64. letter-spacing: 2rpx;
  65. padding: 24rpx 0rpx;
  66. font-size: 30rpx;
  67. color: rgba(0, 0, 0, 0.7);
  68. }
  69. .replyList {
  70. width: 100%;
  71. padding: 14rpx;
  72. box-sizing: border-box;
  73. background-color: #F7F7F7;
  74. margin-bottom: 20rpx;
  75. .reply {
  76. font-size: 28rpx;
  77. .replyTitle {
  78. color: rgb(13, 147, 201);
  79. }
  80. .replyContent {
  81. color: rgba(0, 0, 0, 0.7);
  82. }
  83. }
  84. }
  85. .record {
  86. display: flex;
  87. align-items: center;
  88. justify-content: space-between;
  89. font-size: 26rpx;
  90. .record-right {
  91. display: flex;
  92. align-items: center;
  93. justify-content: space-between;
  94. text {
  95. margin-left: 6rpx;
  96. }
  97. .icon {
  98. width: 30rpx;
  99. height: 28rpx;
  100. }
  101. .iconBox {
  102. display: flex;
  103. align-items: center;
  104. margin-left: 24rpx;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. .content:last-child {
  111. border: none;
  112. }
  113. }
  114. }
  115. .footer {
  116. display: flex;
  117. align-items: center;
  118. justify-content: space-between;
  119. background-color: #EEEDED;
  120. padding: 20rpx 24rpx;
  121. .input {
  122. height: 80rpx;
  123. flex: 1;
  124. padding-left: 20rpx;
  125. border-radius: 10rpx;
  126. background-color: white;
  127. }
  128. .submit {
  129. margin-left: 40rpx;
  130. width: 76rpx;
  131. color: #0091FF;
  132. font-size: 32rpx;
  133. }
  134. }
  135. }
  136. }