stars.wxss 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .stars-container {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: row;
  6. white-space: nowrap;
  7. justify-content: flex-start;
  8. }
  9. .nick{
  10. width: 60%;
  11. font-size: 20rpx;
  12. color: black;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. }
  17. .personHot{
  18. width: 40%;
  19. display: flex;
  20. flex-direction: row;
  21. }
  22. .stars {
  23. display: flex;
  24. flex-direction: row;
  25. height: 17rpx;
  26. margin-left: 10rpx;
  27. margin-right: 24rpx;
  28. margin-top: 6rpx;
  29. }
  30. .stars image {
  31. padding-left: 3rpx;
  32. height: 17rpx;
  33. width: 17rpx;
  34. }
  35. .score{
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. }
  40. .starScore {
  41. font-size: 20rpx;
  42. color: blueviolet;
  43. }
  44. .starScoreNull {
  45. color: orangered;
  46. font-size: 20rpx;
  47. }