index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. .userInfor {
  2. height: 100rpx;
  3. display: flex;
  4. align-items: center;
  5. position: relative;
  6. padding: 20rpx 0;
  7. justify-content: space-between;
  8. }
  9. .userBox {
  10. flex-shrink: 0;
  11. text-align: right;
  12. }
  13. .headerBox {
  14. flex-shrink: 1;
  15. width: 100%;
  16. }
  17. .headerBox>text {
  18. white-space: nowrap;
  19. max-width: 180rpx;
  20. vertical-align: middle;
  21. font-size: 28rpx;
  22. display: inline-block;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. }
  26. .headerBox .headerImgB {
  27. width: 76rpx;
  28. height: 76rpx;
  29. border-radius: 50%;
  30. vertical-align: middle;
  31. margin-right: 10rpx;
  32. }
  33. .score {
  34. font-size: 28rpx;
  35. color: #595757;
  36. line-height: 40rpx;
  37. }
  38. .starBlank {
  39. width: 194rpx;
  40. height: 40rpx;
  41. background-size: contain;
  42. margin-left: 20rpx;
  43. }
  44. .mini-starBlank {
  45. width: 120rpx;
  46. height: 25rpx;
  47. margin-left: 10rpx;
  48. }
  49. .scoreBG {
  50. background-size: contain;
  51. }
  52. .score text:not(:first-child) {
  53. color: var(--subtitleColor);
  54. }
  55. .scoreImg {
  56. width: 100%;
  57. display: flex;
  58. align-items: center;
  59. flex-wrap: wrap;
  60. }
  61. .scoreImg image {
  62. width: 157rpx;
  63. height: 157rpx;
  64. margin-right: 20rpx;
  65. margin-bottom: 20rpx;
  66. border-radius: 10rpx;
  67. }
  68. .addScore {
  69. width: 100%;
  70. font-size: 26rpx;
  71. color: var(--subtitleColor);
  72. margin-top: 20rpx;
  73. border-top: 1px solid #E9E9E9;
  74. }
  75. .comment {
  76. padding: 20rpx;
  77. margin-bottom: 20rpx;
  78. border-radius: 20rpx;
  79. }
  80. .comment:last-child {
  81. margin-bottom: 0;
  82. }
  83. .scoreBox {
  84. font-size: 28rpx;
  85. color: #595757;
  86. display: flex;
  87. justify-content: center;
  88. }
  89. .scoreTit {
  90. color: #000;
  91. font-size: 26rpx;
  92. vertical-align: middle
  93. }
  94. .addTitle {
  95. font-size: 28rpx;
  96. color: var(--subtitleColor);
  97. padding: 10rpx 0;
  98. }
  99. .reply {
  100. background-color: #f9f9f9;
  101. border-radius: 14rpx;
  102. padding: 0 20rpx;
  103. box-sizing: border-box;
  104. margin-top: 30rpx;
  105. position: relative;
  106. }
  107. .reply::before {
  108. content: '';
  109. width: 0;
  110. height: 0;
  111. border-width: 0 16rpx 20rpx;
  112. border-style: solid;
  113. border-color: transparent transparent #f9f9f9;
  114. position: absolute;
  115. top: -20rpx;
  116. }
  117. .replyTitle {
  118. display: flex;
  119. align-items: center;
  120. padding-left: 20rpx;
  121. border-bottom: 1px solid #ebebeb;
  122. }
  123. .replyTitle text {
  124. margin-right: 14rpx;
  125. font-size: 34rpx;
  126. }
  127. .tag-list {
  128. margin-left: -2%;
  129. overflow: hidden;
  130. white-space: nowrap;
  131. }
  132. .tag-list>.text {
  133. border: 2rpx solid #c8c9cb;
  134. border-radius: 20rpx;
  135. width: 23%;
  136. margin-left: 2%;
  137. padding: 10rpx 0;
  138. font-size: 24rpx;
  139. text-align: center;
  140. float: left;
  141. box-sizing: border-box;
  142. margin-bottom: 3%;
  143. }
  144. .tag-list>.text.active {
  145. background: var(--subtitleColor);
  146. color: #fff;
  147. border: 2rpx solid var(--subtitleColor);
  148. }
  149. .comment-box {
  150. padding: 20rpx;
  151. margin: 20rpx 0;
  152. border-radius: 20rpx;
  153. }