comment.wxss 571 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/comment/comment.wxss */
  2. .topLayout {
  3. height: 142rpx;
  4. width: 85%;
  5. margin-top: 42rpx;
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. }
  10. .topLayout_Item {
  11. height: 100%;
  12. width: 100rpx;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: space-between;
  16. }
  17. .topLayout_Item_Img {
  18. width: 80rpx;
  19. height: 80rpx;
  20. }
  21. .topLayout_Item_Text_true {
  22. font-size: 30rpx;
  23. color: #f5a725;
  24. width: 100%;
  25. }
  26. .topLayout_Item_Text_false {
  27. font-size: 30rpx;
  28. color: #505050;
  29. width: 100%;
  30. }