index.css 1.6 KB

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