index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .red {
  2. color: #F01740;
  3. }
  4. .grey {
  5. color: #666666;
  6. }
  7. .black {
  8. color: #000000;
  9. }
  10. .title {
  11. font-weight: Medium;
  12. font-size: 36rpx;
  13. color: #222222;
  14. }
  15. .text-large {
  16. font-size: 36rpx;
  17. }
  18. .text {
  19. font-size: 30rpx;
  20. }
  21. .text-left {
  22. text-align: left;
  23. }
  24. .text-center {
  25. text-align: center;
  26. }
  27. .text-small {
  28. font-size: 24rpx;
  29. /* word-break: keep-all; */
  30. }
  31. .flex {
  32. display: flex;
  33. }
  34. .justify-between {
  35. justify-content: space-between;
  36. }
  37. .flex-aligin-center {
  38. display: flex;
  39. align-items: center;
  40. }
  41. .flex-justify-between {
  42. display: flex;
  43. justify-content: space-between;
  44. }
  45. .flex-1 {
  46. flex: 1;
  47. }
  48. .flex-grow-1 {
  49. flex-grow: 1;
  50. }
  51. .fixed-bottom {
  52. position: fixed;
  53. bottom: 0;
  54. left: 0;
  55. right: 0;
  56. }
  57. .w-100 {
  58. width: 100%;
  59. }
  60. .h-100 {
  61. height: 100%;
  62. }
  63. .page-section {
  64. margin: 20rpx;
  65. border-radius: 20rpx;
  66. background-color: #ffffff;
  67. }
  68. .page-section-spacing {
  69. padding: 20rpx;
  70. }
  71. .spacing-small {
  72. padding: 10rpx;
  73. }
  74. .border-trans {
  75. border: 1px solid transparent;
  76. }
  77. .ellipsis {
  78. width: 100%;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. display: -webkit-box;
  82. -webkit-line-clamp: 1;
  83. -webkit-box-orient: vertical;
  84. }
  85. .ellipsis-2 {
  86. width: 100%;
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. display: -webkit-box;
  90. -webkit-line-clamp: 2;
  91. -webkit-box-orient: vertical;
  92. }
  93. .comments-header {
  94. display: flex;
  95. justify-content: space-between;
  96. }
  97. .comments-header .more {
  98. width: 100rpx;
  99. text-align: right;
  100. }
  101. .comment .comment-header {
  102. display: flex;
  103. align-items: center;
  104. justify-content: space-between;
  105. }
  106. .comment .comment-header .header-text {
  107. flex: 1;
  108. padding: 0 10rpx;
  109. }
  110. .comment .comment-header .header-avatar {
  111. width: 80rpx;
  112. height: 80rpx;
  113. }
  114. .comment .comment-header .header-avatar .header-avatar-image {
  115. width: 100%;
  116. height: 100%;
  117. margin: 0 auto;
  118. border-radius: 50%;
  119. }
  120. .comment .comment-content .comment-text {
  121. padding: 10rpx 0;
  122. }
  123. .comment .comment-content .comment-images {
  124. display: flex;
  125. flex-wrap: wrap;
  126. }
  127. .comment .comment-content .comment-image {
  128. width: 210rpx;
  129. height: 210rpx;
  130. margin: 6rpx;
  131. background: #222222;
  132. }
  133. .comment .merchant-reply {
  134. font-size: 26rpx;
  135. }
  136. .comment .merchant-reply .reply-title {
  137. color: #ffe300;
  138. }
  139. .comment .merchant-reply .reply-content {
  140. text-indent: 2em;
  141. padding: 10px 0;
  142. }
  143. .comments-footer {
  144. text-align: center;
  145. }