public.css 968 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. header {
  2. width: 100%;
  3. height: 48px;
  4. background: #FFFFFF;
  5. font-size: 14px;
  6. font-family: PingFang SC-Bold, PingFang SC;
  7. font-weight: bold;
  8. color: #333333;
  9. }
  10. .content {
  11. width: 100%;
  12. background: #fff;
  13. padding: 20px 16px;
  14. box-sizing: border-box;
  15. margin-bottom: 10px;
  16. }
  17. .main {
  18. display: flex;
  19. }
  20. .chart-box {
  21. display: flex;
  22. align-content: center;
  23. justify-content: center;
  24. width: 40%;
  25. margin-top: 40px;
  26. }
  27. .title-box {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. width: 100%;
  32. height: 36px;
  33. box-sizing: border-box;
  34. }
  35. .title9 {
  36. position: relative;
  37. font-size: 14px;
  38. font-family: PingFang SC-Bold, PingFang SC;
  39. font-weight: bold;
  40. color: #333333;
  41. padding-left: 11px;
  42. }
  43. .title9::after {
  44. position: absolute;
  45. content: '';
  46. display: block;
  47. width: 4px;
  48. height: 20px;
  49. background: #3874F6;
  50. top: 0;
  51. left: 0;
  52. }