| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* pages/buyer/postItem/postItem.wxss */
- /* @import "/pages/stars/stars.wxss";
- @import "/pages/buyer/replyTemplate/reply.wxss"; */
- .post-list-item-container {
- width: 100%;
- margin-bottom: 20rpx;
- display: flex;
- flex-direction: column;
- background-color: white;
- }
- .posterInfoBox {
- height: 60rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- margin-left: 5rpx;
- }
- .report-content{
- width: 100%;
- background-color: red;
- }
- .report-content text{
- font-size: 26rpx;
- line-height: 34rpx;
- display: block;
- color: gray;
- }
- .itemLeftBox {
- width: 60rpx;
- }
- .itemLeftBox image {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .itemRightBox {
- padding-left: 10rpx;
- }
- .personInfo {
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- justify-content: flex-start;
- }
- .postName {
- width: 200rpx;
- height: 35rpx;
- }
- .starsBox {
- width: 200rpx;
- height: 35rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .postName text {
- font-size: 28rpx;
- line-height: 36rpx;
- display: block;
- color: black;
- }
- .postTimeAndLocation {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .postTimeAndLocation text {
- height: 25rpx;
- font-size: 22rpx;
- line-height: 30rpx;
- display: block;
- color: gray;
- white-space: nowrap;
- margin-left: 10rpx;
- }
- .postContent {
- background-color: transparent;
- margin-left: 5rpx;
- }
- .postContent text {
- font-size: 26rpx;
- line-height: 34rpx;
- display: block;
- color: gray;
- }
- .postImage {
- background-color: transparent;
- }
- .postImage image {
- width: 100rpx;
- height: 100rpx;
- margin: 5rpx 5rpx 5rpx 5rpx;
- }
- .replyBox {
- width: 100%;
- padding: 10rpx 10rpx 10rpx 10rpx;
- }
- /* .replyBox text {
- font-size: 20rpx;
- line-height: 28rpx;
- display: block;
- } */
- .bottomBarBox {
- width: 100%;
- padding-top:5rpx;
- padding-bottom: 5rpx;
- height: 70rpx;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .bottomBarBox button{
- height: 60rpx;
- margin-left: 10rpx;
- margin-right: 10rpx;
- font-size: 30rpx;
- color: orange;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .viewall{
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- margin-top:10rpx;
- margin-bottom:10rpx;
- }
- .viewall text{
- font-size: 22rpx;
- color:gray;
- border-bottom: 1rpx gray solid;
- }
- .bottomBar{
- display: flex;
- flex-direction: row;
- white-space: normal;
- }
|