datav.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .hc-datav-main {
  2. color: white;
  3. overflow: auto;
  4. i {
  5. display: inline-block;
  6. }
  7. .hc-datav-bg {
  8. position: absolute;
  9. object-fit: cover;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .hc-datav-header {
  14. position: relative;
  15. #datav-header-bg {
  16. position: relative;
  17. object-fit: cover;
  18. width: 100%;
  19. }
  20. .header-title {
  21. position: absolute;
  22. height: calc(100% - 30px);
  23. top: 0;
  24. .name {
  25. font-size: 32px;
  26. font-weight: bold;
  27. cursor: pointer;
  28. text-shadow: 0 0 10px rgba(255, 255, 255, .5);
  29. transition: text-shadow .3s;
  30. &:hover {
  31. text-shadow: 3px 2px 8px rgb(52 227 255);
  32. }
  33. }
  34. i {
  35. margin-right: 10px;
  36. }
  37. }
  38. .hc-datav-search-select {
  39. position: absolute;
  40. justify-content: end;
  41. padding-right: 14px;
  42. bottom: 10px;
  43. }
  44. }
  45. .hc-datav-total {
  46. margin-top: -10px;
  47. }
  48. .hc-datav-divider {
  49. position: relative;
  50. margin-top: 8px;
  51. margin-bottom: 8px;
  52. border: 0.5px dashed #203a69;
  53. }
  54. .hc-datav-row-total {
  55. height: calc(100% - 290px);
  56. .hc-datav-row-column {
  57. position: relative;
  58. border-width: 50px 20px 20px 20px;
  59. border-style: solid;
  60. border-image-source: url(/src/assets/images/datav-4.png);
  61. border-image-slice: 100 50 50 50 fill;
  62. border-image-width: 50px 20px 20px 20px;
  63. transition: all linear .1s;
  64. .title {
  65. position: absolute;
  66. color: #21CFFC;
  67. top: -39px;
  68. width: 100%;
  69. font-size: 22px;
  70. text-align: center;
  71. font-weight: bold;
  72. }
  73. }
  74. .hc-datav-row-charts {
  75. .row-charts {
  76. background-image: url("~src/assets/images/charts.png");
  77. background-size: 100%;
  78. .title-box {
  79. position: absolute;
  80. font-size: 24px;
  81. text-align: left;
  82. .num {
  83. margin-left: 2px;
  84. font-weight: bold;
  85. }
  86. &.a1 {
  87. top: 46px;
  88. left: 330px;
  89. .num {
  90. color: #D222EC;
  91. }
  92. }
  93. &.a2 {
  94. top: 102px;
  95. left: 0;
  96. width: 185px;
  97. .num {
  98. color: #9933FF;
  99. }
  100. }
  101. &.a3 {
  102. top: 110px;
  103. left: 350px;
  104. text-align: center;
  105. .num {
  106. color: #32D1E6;
  107. }
  108. }
  109. }
  110. }
  111. }
  112. .hc-datav-row-line {
  113. }
  114. }
  115. }