rate.wxss 666 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-rate {
  29. display: flex;
  30. align-items: center;
  31. justify-content: flex-start;
  32. }
  33. .t-rate__wrapper {
  34. line-height: 1em;
  35. display: inline-flex;
  36. }
  37. .t-rate__star {
  38. line-height: 1em;
  39. }
  40. .t-rate__desc {
  41. font-size: 32rpx;
  42. color: rgba(0, 0, 0, 0.4);
  43. padding-left: 32rpx;
  44. vertical-align: middle;
  45. }