myPage.wxss 2.6 KB

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