index.less 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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. position: relative;
  95. .layout-content {
  96. display: flex;
  97. height: 100%;
  98. .one {
  99. flex: 1;
  100. display: flex;
  101. flex-direction: column;
  102. }
  103. .two {
  104. flex: 1;
  105. display: flex;
  106. }
  107. .block {
  108. flex: 1;
  109. }
  110. .block-content,
  111. .block-answer {
  112. padding: 30px 60px;
  113. color: #303036;
  114. }
  115. .block-analysis {
  116. background: #EFF3F7;
  117. padding: 20px 20px 0 20px;
  118. display: flex;
  119. flex-direction: column;
  120. .detail {
  121. flex: 1;
  122. display: flex;
  123. flex-direction: column;
  124. .detail-block {
  125. flex: 1;
  126. background: #fff;
  127. padding: 30px 50px;
  128. overflow: hidden;
  129. overflow-y: auto;
  130. font-size: 16px;
  131. color: #686872;
  132. }
  133. .answer-block {
  134. margin-bottom: 5px;
  135. }
  136. }
  137. .other {
  138. flex: 1;
  139. background: #fff;
  140. padding: 30px 50px;
  141. overflow: hidden;
  142. overflow-y: auto;
  143. font-size: 16px;
  144. color: #686872;
  145. .other-answer {
  146. margin-bottom: 30px;
  147. }
  148. }
  149. }
  150. .two-analysis {
  151. position: absolute;
  152. height: 100%;
  153. width: 50%;
  154. transition: all 0.3s;
  155. transform: translateX(200%);
  156. }
  157. .two-analysis.hide {
  158. transform: translateX(100%);
  159. }
  160. .fixed-analysis {
  161. position: absolute;
  162. width: 35px;
  163. padding: 5px;
  164. right: 0;
  165. top: 50%;
  166. transform: translateY(-50%);
  167. border: 1px solid #E7E7E7;
  168. background: #fff;
  169. z-index: 9;
  170. color: #787883;
  171. cursor: pointer;
  172. text-align: center;
  173. }
  174. }
  175. }
  176. .modal {
  177. position: fixed;
  178. top: 0;
  179. left: 0;
  180. right: 0;
  181. bottom: 0;
  182. .mask {
  183. background: #000;
  184. opacity: .2;
  185. width: 100%;
  186. height: 100%;
  187. }
  188. .body {
  189. position: absolute;
  190. left: 50%;
  191. top: 50%;
  192. transform: translate(-50%, -50%);
  193. background: #fff;
  194. width: 630px;
  195. color: #686872;
  196. padding: 20px 30px;
  197. .title {
  198. color: #303036;
  199. font-size: 20px;
  200. font-weight: 600;
  201. }
  202. .desc {
  203. color: #686872;
  204. font-size: 16px;
  205. padding: 20px 0;
  206. .select {
  207. margin-bottom: 15px;
  208. }
  209. .label {
  210. margin-bottom: 5px;
  211. }
  212. }
  213. .textarea {
  214. width: 570px;
  215. height: 80px;
  216. background: rgba(247, 247, 247, 1);
  217. margin-bottom: 15px;
  218. border: none;
  219. padding: 5px 10px;
  220. }
  221. .textarea::placeholder {
  222. color: #A7A7B7;
  223. }
  224. .bottom {
  225. border-top: 1px solid #E1E1E1;
  226. padding-top: 10px;
  227. text-align: right;
  228. }
  229. }
  230. }
  231. .modal.ask-ok,
  232. .modal.error-ok {
  233. .body {
  234. .content {
  235. width: 100%;
  236. padding-top: 20px;
  237. padding-bottom: 40px;
  238. color: #686872;
  239. overflow: hidden;
  240. .left {
  241. float: left;
  242. width: 360px;
  243. font-size: 18px;
  244. a {
  245. padding-top: 30px;
  246. display: inline-block;
  247. font-size: 14px;
  248. }
  249. }
  250. .right {
  251. float: right;
  252. text-align: right;
  253. font-size: 12px;
  254. }
  255. }
  256. .confirm {
  257. text-align: center;
  258. padding-bottom: 10px;
  259. .answer-button.lager {
  260. font-size: 16px;
  261. }
  262. }
  263. }
  264. }
  265. .modal.note {
  266. .body {
  267. width: 720px;
  268. .content {
  269. padding-top: 20px;
  270. .tabs {
  271. display: inline-block;
  272. width: 170px;
  273. vertical-align: top;
  274. margin-left: -30px;
  275. margin-right: 30px;
  276. .tab {
  277. padding: 5px 0px 5px 40px;
  278. line-height: 20px;
  279. color: #686872;
  280. margin-bottom: 30px;
  281. cursor: pointer;
  282. transition: all 0.3s;
  283. border-top-right-radius: 25px;
  284. border-bottom-right-radius: 25px;
  285. .date {
  286. font-size: 12px;
  287. }
  288. }
  289. .tab.active,
  290. .tab:hover {
  291. color: #fff;
  292. background: #4299FF;
  293. }
  294. }
  295. .input {
  296. display: inline-block;
  297. .textarea {
  298. width: 490px;
  299. height: 350px;
  300. margin-bottom: 20px;
  301. }
  302. }
  303. }
  304. }
  305. }
  306. }