style.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .page-panel {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #eff0f5 !important;
  5. box-sizing: border-box;
  6. padding: 10px;
  7. .head-title {
  8. font-size: 16px;
  9. color: #333333;
  10. line-height: 18px;
  11. padding: 10px 0;
  12. font-weight: 500;
  13. &::before {
  14. content: '';
  15. display: inline-block;
  16. width: 3px;
  17. height: 16px;
  18. background: #2a77f7;
  19. vertical-align: bottom;
  20. margin-right: 5px;
  21. }
  22. &.line {
  23. border-bottom: 1px solid #eaeaea;
  24. }
  25. }
  26. .left-panel {
  27. float: left;
  28. width: 40%;
  29. height: 100%;
  30. background-color: #fff;
  31. border-top-left-radius: 5px;
  32. border-bottom-left-radius: 5px;
  33. box-sizing: border-box;
  34. padding: 20px 20px;
  35. overflow-y: auto;
  36. position: relative;
  37. overflow: hidden;
  38. }
  39. .right-panel {
  40. float: left;
  41. width: 60%;
  42. height: 100%;
  43. background-color: #fff;
  44. border-top-right-radius: 5px;
  45. border-bottom-right-radius: 5px;
  46. box-sizing: border-box;
  47. padding: 10px 20px;
  48. overflow-y: auto;
  49. .chart-panel {
  50. font-size: 0;
  51. .chart-box {
  52. display: inline-block;
  53. width: 50%;
  54. height: 160px;
  55. font-size: 14px;
  56. overflow: hidden;
  57. }
  58. }
  59. .el-table >>> .el-table__cell {
  60. padding: 5px 0 !important;
  61. }
  62. .middle-box {
  63. clear: both;
  64. width: 100%;
  65. height: 260px;
  66. padding-top: 10px;
  67. }
  68. .bottom-box {
  69. height: calc(100% - 548px);
  70. .el-tabs {
  71. height: 100%;
  72. >>> .el-tabs__header {
  73. background: none;
  74. color: black;
  75. margin-bottom: 0px;
  76. }
  77. >>> .el-tabs__nav .el-tabs__item {
  78. margin: 8px 0 0 0 !important;
  79. background-color: unset !important;
  80. padding: 0 13px !important;
  81. }
  82. >>> .el-tab-pane {
  83. height: calc(100% - 20px);
  84. width: 100%;
  85. }
  86. }
  87. .cust-table {
  88. >>> .el-table__body-wrapper {
  89. height: calc(100% - 68px);
  90. }
  91. }
  92. }
  93. }
  94. }