index.less 3.2 KB

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