index.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. body {
  2. padding: 0px;
  3. margin: 0px;
  4. width: 100vw;
  5. overflow-y: auto;
  6. overflow-x: auto;
  7. }
  8. .echart {
  9. width: 1334px;
  10. height: 1080px;
  11. }
  12. .data {
  13. width: 586px;
  14. height: 1080px;
  15. background: url("right.png") no-repeat;
  16. }
  17. .data > div:nth-child(1) {
  18. margin-top: 240px;
  19. width: 100%;
  20. font-size: 40px;
  21. color: #ffffff;
  22. text-align: center;
  23. }
  24. .data > div:nth-child(2) {
  25. margin-top: 30px;
  26. width: 100%;
  27. font-size: 16px;
  28. color: #ffffff;
  29. text-align: center;
  30. }
  31. /*.data>div:nth-child(2)>span:nth-child(1){padding-left:22px;background:url("red.png") no-repeat 5px 5px;}
  32. .data>div:nth-child(2)>span:nth-child(2){padding-left:22px;background:url("green.png") no-repeat 5px 5px;}*/
  33. .data > div:nth-child(3) {
  34. margin-top: 70px;
  35. color: #ffffff;
  36. }
  37. .data .item {
  38. display: flex;
  39. align-items: center;
  40. padding-left: 60px;
  41. margin-bottom: 10px;
  42. }
  43. .data .item > span {
  44. line-height: 30px;
  45. text-align: center;
  46. }
  47. .data .item > span:nth-child(1) {
  48. width: 100px;
  49. }
  50. .data .item > span:nth-child(2) {
  51. width: 200px;
  52. /* 溢出隐藏 */
  53. white-space: nowrap;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. padding: 0 10px;
  57. }
  58. .data .item > span:nth-child(3) {
  59. width: 150px;
  60. }
  61. .data .title {
  62. color: #2495bf;
  63. }
  64. .title-icon {
  65. position: absolute;
  66. top: 135px;
  67. left: 24%;
  68. color: black;
  69. z-index: 10000;
  70. }
  71. .title-icon span:nth-child(1) {
  72. padding-left: 22px;
  73. background: url("blue.png") no-repeat 5px 5px;
  74. }
  75. .title-icon span:nth-child(2) {
  76. padding-left: 22px;
  77. background: url("yellow.png") no-repeat 5px 5px;
  78. }
  79. .title-icon span:nth-child(3) {
  80. padding-left: 22px;
  81. background: url("red.png") no-repeat 5px 5px;
  82. }