postItem.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /* pages/buyer/postItem/postItem.wxss */
  2. /* @import "/pages/stars/stars.wxss";
  3. @import "/pages/buyer/replyTemplate/reply.wxss"; */
  4. .post-list-item-container {
  5. width: 100%;
  6. margin-bottom: 20rpx;
  7. display: flex;
  8. flex-direction: column;
  9. background-color: white;
  10. }
  11. .posterInfoBox {
  12. height: 60rpx;
  13. display: flex;
  14. flex-direction: row;
  15. white-space: nowrap;
  16. margin-left: 5rpx;
  17. }
  18. .report-content{
  19. width: 100%;
  20. background-color: red;
  21. }
  22. .report-content text{
  23. font-size: 26rpx;
  24. line-height: 34rpx;
  25. display: block;
  26. color: gray;
  27. }
  28. .itemLeftBox {
  29. width: 60rpx;
  30. }
  31. .itemLeftBox image {
  32. width: 60rpx;
  33. height: 60rpx;
  34. border-radius: 50%;
  35. }
  36. .itemRightBox {
  37. padding-left: 10rpx;
  38. }
  39. .personInfo {
  40. display: flex;
  41. flex-direction: row;
  42. white-space: nowrap;
  43. justify-content: flex-start;
  44. }
  45. .postName {
  46. width: 200rpx;
  47. height: 35rpx;
  48. }
  49. .starsBox {
  50. width: 200rpx;
  51. height: 35rpx;
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. }
  56. .postName text {
  57. font-size: 28rpx;
  58. line-height: 36rpx;
  59. display: block;
  60. color: black;
  61. }
  62. .postTimeAndLocation {
  63. display: flex;
  64. flex-direction: column;
  65. justify-content: center;
  66. }
  67. .postTimeAndLocation text {
  68. height: 25rpx;
  69. font-size: 22rpx;
  70. line-height: 30rpx;
  71. display: block;
  72. color: gray;
  73. white-space: nowrap;
  74. margin-left: 10rpx;
  75. }
  76. .postContent {
  77. background-color: transparent;
  78. margin-left: 5rpx;
  79. }
  80. .postContent text {
  81. font-size: 26rpx;
  82. line-height: 34rpx;
  83. display: block;
  84. color: gray;
  85. }
  86. .postImage {
  87. background-color: transparent;
  88. }
  89. .postImage image {
  90. width: 100rpx;
  91. height: 100rpx;
  92. margin: 5rpx 5rpx 5rpx 5rpx;
  93. }
  94. .replyBox {
  95. width: 100%;
  96. padding: 10rpx 10rpx 10rpx 10rpx;
  97. }
  98. /* .replyBox text {
  99. font-size: 20rpx;
  100. line-height: 28rpx;
  101. display: block;
  102. } */
  103. .bottomBarBox {
  104. width: 100%;
  105. padding-top:5rpx;
  106. padding-bottom: 5rpx;
  107. height: 70rpx;
  108. display: flex;
  109. flex-direction: row;
  110. justify-content: flex-end;
  111. }
  112. .bottomBarBox button{
  113. height: 60rpx;
  114. margin-left: 10rpx;
  115. margin-right: 10rpx;
  116. font-size: 30rpx;
  117. color: orange;
  118. display: flex;
  119. flex-direction: column;
  120. justify-content: center;
  121. }
  122. .viewall{
  123. display: flex;
  124. flex-direction: row;
  125. justify-content: flex-start;
  126. margin-top:10rpx;
  127. margin-bottom:10rpx;
  128. }
  129. .viewall text{
  130. font-size: 22rpx;
  131. color:gray;
  132. border-bottom: 1rpx gray solid;
  133. }
  134. .bottomBar{
  135. display: flex;
  136. flex-direction: row;
  137. white-space: normal;
  138. }