datav.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. .title-box {
  77. .num {
  78. }
  79. &.a1 {
  80. }
  81. &.a2 {
  82. }
  83. &.a3 {
  84. }
  85. }
  86. }
  87. }
  88. .hc-datav-row-line {
  89. }
  90. }
  91. }