style.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. padding-left: 10px;
  49. overflow-y: auto;
  50. .top-box {
  51. .el-form {
  52. >>>.el-form-item {
  53. // margin-bottom: 0 !important;
  54. }
  55. }
  56. padding: 15px 0;
  57. border-bottom: 1px solid #e5e5e5;
  58. }
  59. .el-table {
  60. >>>.el-table__cell {
  61. padding: 5px 0 !important;
  62. }
  63. &::before {
  64. height: 0 !important;
  65. }
  66. }
  67. .middle-box {
  68. clear: both;
  69. width: 100%;
  70. // height: 260px;
  71. padding-top: 10px;
  72. }
  73. // .bottom-box {
  74. // // height: calc(100% - 529px);
  75. // }
  76. .row-btn {
  77. position: absolute;
  78. left: 15px;
  79. top: 5px;
  80. font-size: 18px;
  81. padding: 0;
  82. }
  83. }
  84. }
  85. .chart-box{
  86. width: 100%;
  87. height: 300px;
  88. }