index.wxss 493 B

1234567891011121314151617181920212223242526272829303132
  1. .ant-rate {
  2. display: inline-flex;
  3. font-size: 24px;
  4. user-select: none;
  5. }
  6. .ant-rate-container {
  7. display: flex;
  8. }
  9. .ant-rate-star {
  10. position: relative;
  11. margin-right: 4px;
  12. line-height: 1;
  13. }
  14. .ant-rate-star:last-child {
  15. margin-right: 0;
  16. }
  17. .ant-rate-star-icon {
  18. color: #eee;
  19. }
  20. .ant-rate-star-icon-active {
  21. color: #ff9f18;
  22. }
  23. .ant-rate-star-icon-half-active {
  24. position: absolute;
  25. left: 0;
  26. top: 0;
  27. width: 50%;
  28. overflow: hidden;
  29. }
  30. .ant-rate .ant-icon {
  31. font-size: unset;
  32. }