MetricItem.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .metric_bg {
  2. width: 320px;
  3. display: flex;
  4. flex-direction: column;
  5. border-radius: 36px;
  6. padding-left: 36px;
  7. padding-right: 36px;
  8. padding-top: 24px;
  9. padding-bottom: 24px;
  10. background-color: #1c1c1c;
  11. box-sizing: border-box;
  12. margin-bottom: 30px;
  13. }
  14. .metric_title {
  15. font-size: 36px;
  16. line-height: 36px;
  17. height: 40px;
  18. color: #ffffff;
  19. }
  20. .metric_value_bg{
  21. height: 50px;
  22. margin-top: 10px;
  23. margin-bottom: 10px;
  24. }
  25. .metric_value {
  26. font-size: 48px;
  27. line-height: 48px;
  28. height: 50px;
  29. color: #ffffff;
  30. margin-top: 20px;
  31. margin-bottom: 12px;
  32. }
  33. .metric_unit {
  34. font-size: 32px;
  35. line-height: 32px;
  36. color: #ffffff;
  37. opacity: 0.8;
  38. }
  39. .metric_desc_bg {
  40. display: flex;
  41. height: 28px;
  42. flex-direction: row;
  43. align-items: center;
  44. justify-content: space-between;
  45. }
  46. .mteric_desc {
  47. font-size: 24px;
  48. line-height: 24px;
  49. height: 28px;
  50. color: #ffffff;
  51. opacity: 0.2;
  52. }
  53. .operate {
  54. margin-top: 32px;
  55. height: 84px;
  56. border-radius: 42px;
  57. background-color: #EEC01F;
  58. color: #000;
  59. line-height: 84px;
  60. text-align: center;
  61. }