index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. @import "@assets/css/public-style.scss";
  2. .view-content {
  3. display: flex;
  4. flex-wrap: wrap;
  5. justify-content: space-between;
  6. align-content: space-between;
  7. height: calc(100% - #{rem(10)});
  8. }
  9. .block-item {
  10. background: #171f32;
  11. border-radius: rem(4);
  12. overflow: hidden;
  13. padding: 0 rem(20) rem(20) rem(20);
  14. box-sizing: border-box;
  15. }
  16. .topsBlock {
  17. height: rem(60);
  18. box-sizing: border-box;
  19. border-bottom: 1px solid rgba(224, 225, 227, 0.2);
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. color: white;
  24. /deep/ .el-input__inner {
  25. background: transparent;
  26. color: white;
  27. padding-right: rem(20);
  28. border-color: rgba(255, 255, 255, 0.2);
  29. }
  30. .right {
  31. max-width: rem(120);
  32. img {
  33. cursor: pointer;
  34. vertical-align: middle;
  35. }
  36. }
  37. .titleNumber {
  38. color: #0eaeff;
  39. font-size: rem(30);
  40. }
  41. .left {
  42. display: flex;
  43. align-items: center;
  44. img {
  45. margin: 0 rem(5) 0 rem(20);
  46. vertical-align: middle;
  47. }
  48. }
  49. /deep/ .el-date-editor .el-range-separator {
  50. padding-left: 0;
  51. color: white;
  52. }
  53. /deep/ .el-date-editor--daterange.el-input__inner {
  54. width: rem(240);
  55. }
  56. .search-btn {
  57. margin-left: rem(20);
  58. }
  59. }
  60. .item-content {
  61. padding-top: rem(20);
  62. box-sizing: border-box;
  63. height: calc(100% - #{rem(60)});
  64. .flexPer {
  65. display: flex;
  66. height: 100%;
  67. justify-content: space-between;
  68. }
  69. .itme-inlineBlock {
  70. display: flex;
  71. width: calc((100% - #{rem(20)}) / 3);
  72. color: white;
  73. flex-wrap: wrap;
  74. justify-content: space-between;
  75. align-content: space-between;
  76. height: 100%;
  77. }
  78. }
  79. .ft20 {
  80. font-size: rem(20);
  81. }
  82. .numberColor {
  83. // margin-bottom: 5px;
  84. }
  85. .greText {
  86. font-size: 12px;
  87. }
  88. .grdText {
  89. opacity: 0.5;
  90. }
  91. .flex {
  92. display: flex;
  93. justify-content: space-between;
  94. }
  95. .width50 {
  96. width: 50%;
  97. }
  98. .grid-1 {
  99. width: calc((100% - #{rem(20)}) / 3);
  100. height: calc((100% - #{rem(20)}) / 7 * 2);
  101. }
  102. .grid-2 {
  103. width: calc((100% - #{rem(20)}) / 3 * 2);
  104. height: calc((100% - #{rem(20)}) / 7 * 2);
  105. }
  106. .grid-3 {
  107. width: calc((100% - #{rem(20)}) / 3);
  108. height: calc((100% - #{rem(20)}) / 7 * 5);
  109. }
  110. .grid-4 {
  111. width: calc((100% - #{rem(20)}) / 3 * 2);
  112. height: calc((100% - #{rem(20)}) / 7 * 5);
  113. }