index.wxss 3.1 KB

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