index.wxss 3.1 KB

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