index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. @charset "utf-8";
  2. #hard {
  3. height: 100%;
  4. .layout {
  5. background: #fff;
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. .layout-header {
  11. height: 84px;
  12. margin: 0 30px;
  13. border-bottom: 1px solid rgba(233, 239, 248, 1);
  14. text-align: center;
  15. .left {
  16. line-height: 84px;
  17. position: absolute;
  18. .title {
  19. color: #000000;
  20. display: inline-block;
  21. font-size: 20px;
  22. font-weight: 600;
  23. }
  24. }
  25. .right {
  26. float: right;
  27. text-align: right;
  28. padding: 20px 0;
  29. color: #5E677B;
  30. .text {
  31. line-height: 22px;
  32. }
  33. }
  34. }
  35. }
  36. .layout-footer {
  37. position: fixed;
  38. bottom: 0;
  39. left: 0;
  40. right: 0;
  41. height: 60px;
  42. line-height: 60px;
  43. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  44. position: relative;
  45. .left {
  46. position: absolute;
  47. left: 30px;
  48. top: 0;
  49. }
  50. .right {
  51. position: absolute;
  52. right: 30px;
  53. top: 0;
  54. .button.lager {
  55. font-weight: 500;
  56. }
  57. }
  58. .center {
  59. padding-left: 108px;
  60. padding-right: 165px;
  61. display: flex;
  62. .p {
  63. flex: 1;
  64. margin-top: 22px;
  65. }
  66. .t {
  67. width: 40px;
  68. text-align: right;
  69. }
  70. }
  71. .progress.basic {
  72. background: #8897A8;
  73. .progress-item {
  74. background: #217DFF;
  75. }
  76. }
  77. }
  78. .layout-body {
  79. background: #fff;
  80. flex: 1;
  81. overflow: hidden;
  82. overflow-y: auto;
  83. position: relative;
  84. padding: 20px 30px;
  85. .title {
  86. color: #050930;
  87. margin-bottom: 10px;
  88. }
  89. .desc {
  90. color: #050930;
  91. margin-bottom: 30px;
  92. }
  93. .label {
  94. color: #000000;
  95. margin-bottom: 10px;
  96. font-weight: 600;
  97. }
  98. .input {
  99. margin-bottom: 20px;
  100. }
  101. .select {
  102. border-radius: 2px;
  103. border: 1px solid rgba(200, 209, 218, 1);
  104. padding: 10px 20px;
  105. margin-bottom: 40px;
  106. .select-title {
  107. color: #050930;
  108. margin-bottom: 10px;
  109. }
  110. }
  111. .analysis {
  112. margin-bottom: 40px;
  113. .tabs {
  114. width: 320px;
  115. .tab.active {
  116. background: #F4F9FE;
  117. }
  118. }
  119. .result {
  120. padding: 20px;
  121. background: #F4F9FE;
  122. }
  123. }
  124. }
  125. }