1
0

index.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. @charset "utf-8";
  2. #result {
  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: 60px;
  12. line-height: 60px;
  13. padding: 0 50px;
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. box-shadow: 0px 4px 14px 0px rgba(189, 199, 215, 0.16);
  19. text-align: center;
  20. .left {
  21. position: absolute;
  22. .no {
  23. font-size: 20px;
  24. display: inline-block;
  25. color: #303036;
  26. font-size: 20px;
  27. margin-right: 25px;
  28. }
  29. .title {
  30. color: #A7A7B7;
  31. display: inline-block;
  32. font-size: 20px;
  33. }
  34. }
  35. .center {
  36. display: inline-block;
  37. transform: translateX(100%);
  38. .icon {
  39. margin-left: 20px;
  40. }
  41. }
  42. .right {
  43. float: right;
  44. text-align: right;
  45. .b {
  46. margin-left: 30px;
  47. .s {
  48. color: #4299FF;
  49. }
  50. }
  51. .icon {
  52. margin-left: 10px;
  53. }
  54. }
  55. }
  56. }
  57. .layout-footer {
  58. position: fixed;
  59. bottom: 0;
  60. left: 0;
  61. right: 0;
  62. height: 60px;
  63. line-height: 60px;
  64. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  65. .left {
  66. width: 30%;
  67. display: inline-block;
  68. padding-left: 50px;
  69. }
  70. .right {
  71. width: 30%;
  72. display: inline-block;
  73. text-align: right;
  74. padding-right: 50px;
  75. .icon {
  76. margin-left: 10px;
  77. }
  78. }
  79. .center {
  80. width: 40%;
  81. display: inline-block;
  82. text-align: center;
  83. .item {
  84. margin: 0 10px;
  85. }
  86. }
  87. }
  88. .layout-body {
  89. background: #fff;
  90. flex: 1;
  91. overflow: hidden;
  92. overflow-y: auto;
  93. margin: 60px 0;
  94. .layout-content {
  95. display: flex;
  96. height: 100%;
  97. .one {
  98. flex: 1;
  99. display: flex;
  100. flex-direction: column;
  101. }
  102. .two {
  103. flex: 1;
  104. display: flex;
  105. }
  106. .block {
  107. flex: 1;
  108. }
  109. .block.hide {
  110. display: none;
  111. }
  112. .block-content,
  113. .block-answer {
  114. padding: 30px 60px;
  115. color: #303036;
  116. }
  117. .block-analysis {
  118. background: #EFF3F7;
  119. padding: 20px 20px 0 20px;
  120. display: flex;
  121. flex-direction: column;
  122. .tabs.card {
  123. background: none;
  124. margin: 0 -5px;
  125. >a {
  126. width: 100%;
  127. padding: 0 5px;
  128. }
  129. .tab {
  130. background: #E5E8EE;
  131. border-radius: 4px 4px 0px 0px;
  132. overflow: hidden;
  133. }
  134. .tab.active,
  135. .tab:hover {
  136. background: #fff;
  137. }
  138. }
  139. .detail {
  140. flex: 1;
  141. background: #fff;
  142. padding: 30px 50px;
  143. overflow: hidden;
  144. overflow-y: auto;
  145. font-size: 16px;
  146. color: #686872;
  147. }
  148. }
  149. }
  150. }
  151. .modal {
  152. position: fixed;
  153. top: 0;
  154. left: 0;
  155. right: 0;
  156. bottom: 0;
  157. .mask {
  158. background: #000;
  159. opacity: .2;
  160. width: 100%;
  161. height: 100%;
  162. }
  163. .body {
  164. position: absolute;
  165. left: 50%;
  166. top: 50%;
  167. transform: translate(-50%, -50%);
  168. background: #fff;
  169. width: 630px;
  170. color: #686872;
  171. padding: 20px 30px;
  172. .title {
  173. color: #303036;
  174. font-size: 20px;
  175. font-weight: 600;
  176. }
  177. .desc {
  178. color: #686872;
  179. font-size: 16px;
  180. padding: 20px 0;
  181. .select {
  182. margin-bottom: 15px;
  183. }
  184. .label {
  185. margin-bottom: 5px;
  186. }
  187. .textarea {
  188. width: 570px;
  189. height: 80px;
  190. background: rgba(247, 247, 247, 1);
  191. margin-bottom: 15px;
  192. border: none;
  193. padding: 5px 10px;
  194. }
  195. .textarea::placeholder {
  196. color: #A7A7B7;
  197. }
  198. }
  199. .bottom {
  200. border-top: 1px solid #E1E1E1;
  201. padding-top: 10px;
  202. text-align: right;
  203. }
  204. }
  205. }
  206. }