flow-ana.less 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .flow-analysis {
  2. width: 100%;
  3. background: #fff;
  4. &__left {
  5. padding: 10px 20px !important;
  6. border-right: 1px solid rgba(0, 0, 0, 0.06);
  7. border-radius: 0;
  8. }
  9. &__score {
  10. margin-top: 20px;
  11. font-size: 30px;
  12. line-height: 38px;
  13. color: rgba(0, 0, 0, 0.85);
  14. span {
  15. font-size: 20px;
  16. line-height: 28px;
  17. color: rgba(0, 0, 0, 0.85);
  18. }
  19. }
  20. &__rank {
  21. margin: 16px 0;
  22. font-size: 12px;
  23. line-height: 20px;
  24. color: #7c8087;
  25. span {
  26. display: inline-block;
  27. margin-left: 10px;
  28. color: #1c1d21;
  29. }
  30. }
  31. &__rs {
  32. li {
  33. display: flex;
  34. line-height: 28px;
  35. justify-content: space-between;
  36. span {
  37. &:nth-child(1) {
  38. font-size: 14px;
  39. color: #1c1d21;
  40. }
  41. &:nth-child(2) {
  42. font-size: 16px;
  43. color: #1c1d21;
  44. }
  45. }
  46. }
  47. }
  48. }