b205b339eb81c5eb18f700642fc567c5ae11fd2932b26f4377ef6467bb383e695cbc0154645fd59edd22c744ada30a4b5c55dce5da9345100bbccac425ff5f 782 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import "mixins/mixins";
  2. @import "common/var";
  3. @include b(statistic) {
  4. $statistic-justify: center;
  5. $statistic-align: center;
  6. width: 100%;
  7. box-sizing: border-box;
  8. margin: 0;
  9. padding: 0;
  10. color: $--color-black;
  11. font-variant: tabular-nums;
  12. list-style: none;
  13. font-feature-settings: "tnum";
  14. text-align: center;
  15. .head {
  16. margin-bottom: 4px;
  17. color: $--color-text-regular;
  18. font-size: $--font-size-small;
  19. }
  20. .con {
  21. font-family: Sans-serif;
  22. display: flex;
  23. justify-content: $statistic-justify;
  24. align-items: $statistic-align;
  25. color: $--color-text-primary;
  26. .number {
  27. font-size: $--font-size-extra-large;
  28. padding: 0 4px;
  29. }
  30. span {
  31. display: inline-block;
  32. margin: 0;
  33. line-height: 100%;
  34. }
  35. }
  36. }