index.less 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. @charset "utf-8";
  2. #paper-question {
  3. height: 100%;
  4. .base {
  5. height: 100%;
  6. .layout {
  7. background: #fff;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: row;
  11. .layout-header {
  12. height: 60px;
  13. line-height: 60px;
  14. margin: 0 50px;
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. right: 0;
  19. box-shadow: 0px 4px 14px 0px rgba(189, 199, 215, 0.16);
  20. text-align: center;
  21. z-index: 80;
  22. .left {
  23. position: absolute;
  24. .no {
  25. font-size: 20px;
  26. display: inline-block;
  27. color: #303036;
  28. font-size: 20px;
  29. margin-right: 25px;
  30. }
  31. .title {
  32. color: #A7A7B7;
  33. display: inline-block;
  34. font-size: 20px;
  35. img {
  36. margin-top: -3px;
  37. margin-right: 5px;
  38. }
  39. }
  40. }
  41. .menu-wrap {
  42. position: absolute;
  43. right: 0;
  44. text-align: left;
  45. padding: 0 10px;
  46. white-space: nowrap;
  47. .menu-content {
  48. position: absolute;
  49. background: #fff;
  50. text-align: left;
  51. top: 50px;
  52. right: 10px;
  53. border: 1px solid #EAEDF2;
  54. padding: 10px 20px;
  55. min-width: 150px;
  56. p {
  57. line-height: 30px;
  58. height: 30px;
  59. text-align: left;
  60. margin: 0;
  61. }
  62. }
  63. }
  64. .center {
  65. position: absolute;
  66. right: 50%;
  67. transform: translateX(100%);
  68. .icon {
  69. margin-left: 20px;
  70. }
  71. }
  72. .right {
  73. position: absolute;
  74. right: 0;
  75. .b {
  76. margin-left: 30px;
  77. .s {
  78. color: #4299FF;
  79. }
  80. }
  81. .icon {
  82. margin-left: 10px;
  83. }
  84. }
  85. }
  86. }
  87. .layout-footer {
  88. position: fixed;
  89. bottom: 0;
  90. left: 0;
  91. right: 0;
  92. height: 60px;
  93. line-height: 60px;
  94. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  95. .left {
  96. width: 30%;
  97. display: inline-block;
  98. padding-left: 50px;
  99. }
  100. .right {
  101. width: 30%;
  102. display: inline-block;
  103. text-align: right;
  104. padding-right: 50px;
  105. .icon {
  106. margin-left: 10px;
  107. }
  108. }
  109. .center {
  110. width: 40%;
  111. display: inline-block;
  112. text-align: center;
  113. .item {
  114. margin: 0 10px;
  115. }
  116. }
  117. }
  118. .layout-body {
  119. background: #fff;
  120. flex: 1;
  121. overflow: hidden;
  122. margin: 60px 0;
  123. .layout-content {
  124. height: 100%;
  125. position: relative;
  126. .one {
  127. flex: 1;
  128. display: flex;
  129. flex-direction: column;
  130. }
  131. .two {
  132. flex: 1;
  133. display: flex;
  134. flex-direction: row;
  135. overflow: hidden;
  136. height: 100%;
  137. }
  138. .block {
  139. flex: 1;
  140. }
  141. .block-content,
  142. .block-answer,
  143. .block-awa {
  144. padding: 30px 60px;
  145. color: #303036;
  146. height: 100%;
  147. overflow: hidden;
  148. overflow-y: auto;
  149. }
  150. .block-content {
  151. h2 {
  152. padding: 65px 0 20px 0px;
  153. font-size: 20px;
  154. color: #303036;
  155. }
  156. }
  157. .block-awa {
  158. background: #EFF3F7;
  159. h2 {
  160. font-size: 20px;
  161. color: #303036;
  162. margin-top: 37px;
  163. margin-bottom: 23px;
  164. }
  165. .detail {
  166. .info {
  167. font-weight: bold;
  168. font-size: 18px;
  169. color: #303036;
  170. span.b {
  171. margin-right: 80px;
  172. .s {
  173. color: #4299FF;
  174. }
  175. }
  176. }
  177. }
  178. .content-awa {
  179. padding-top: 50px;
  180. color: #686872;
  181. font-size: 16px;
  182. }
  183. .show-awa {
  184. font-size: 12px;
  185. width: 100%;
  186. height: 100%;
  187. margin: 50% 0;
  188. text-align: center;
  189. line-height: 20px;
  190. color: #A7A7B7;
  191. }
  192. }
  193. .block-analysis {
  194. background: #EFF3F7;
  195. padding: 25px 25px 0 20px;
  196. display: flex;
  197. flex-direction: column;
  198. .block-answer {
  199. padding: 38px 50px;
  200. }
  201. .block {
  202. background: #fff;
  203. }
  204. .detail {
  205. flex: 1;
  206. display: flex;
  207. flex-direction: column;
  208. .detail-block {
  209. margin-top: 5px;
  210. flex: 1;
  211. padding: 30px 50px;
  212. overflow: hidden;
  213. overflow-y: auto;
  214. font-size: 16px;
  215. color: #686872;
  216. }
  217. .answer-block {
  218. margin-bottom: 5px;
  219. }
  220. }
  221. .other {
  222. flex: 1;
  223. background: #fff;
  224. padding: 30px 50px;
  225. overflow: hidden;
  226. overflow-y: auto;
  227. font-size: 16px;
  228. color: #686872;
  229. .other-answer {
  230. margin-bottom: 30px;
  231. }
  232. }
  233. }
  234. .two-analysis {
  235. position: absolute;
  236. height: 100%;
  237. top: 0;
  238. left: 0;
  239. width: 50%;
  240. transition: all 0.3s;
  241. transform: translateX(200%);
  242. }
  243. .two-analysis.show {
  244. transform: translateX(100%);
  245. }
  246. .fixed-analysis {
  247. height: 110px;
  248. line-height: 20px;
  249. position: absolute;
  250. width: 35px;
  251. padding: 5px;
  252. right: 0;
  253. top: 50%;
  254. transform: translateY(-50%);
  255. border: 1px solid #E7E7E7;
  256. background: #fff;
  257. z-index: 9;
  258. color: #787883;
  259. cursor: pointer;
  260. text-align: center;
  261. }
  262. }
  263. }
  264. .modal {
  265. position: fixed;
  266. top: 0;
  267. left: 0;
  268. right: 0;
  269. bottom: 0;
  270. >.mask {
  271. background: #000;
  272. opacity: .2;
  273. width: 100%;
  274. height: 100%;
  275. }
  276. .body {
  277. position: absolute;
  278. left: 50%;
  279. top: 50%;
  280. transform: translate(-50%, -50%);
  281. background: #fff;
  282. width: 630px;
  283. color: #686872;
  284. padding: 20px 30px;
  285. .title {
  286. color: #303036;
  287. font-size: 20px;
  288. font-weight: 600;
  289. }
  290. .desc {
  291. color: #686872;
  292. font-size: 16px;
  293. padding: 20px 0;
  294. .select-inline {
  295. margin-bottom: 15px;
  296. .select {
  297. display: inline-block;
  298. }
  299. }
  300. .label {
  301. margin-bottom: 5px;
  302. }
  303. }
  304. .textarea {
  305. width: 570px;
  306. height: 80px;
  307. background: rgba(247, 247, 247, 1);
  308. margin-bottom: 15px;
  309. border: none;
  310. padding: 5px 10px;
  311. }
  312. .textarea::placeholder {
  313. color: #A7A7B7;
  314. }
  315. .bottom {
  316. border-top: 1px solid #E1E1E1;
  317. padding-top: 10px;
  318. text-align: right;
  319. }
  320. }
  321. }
  322. .modal.ask-ok,
  323. .modal.error-ok {
  324. .body {
  325. .content {
  326. width: 100%;
  327. padding-top: 20px;
  328. padding-bottom: 40px;
  329. color: #686872;
  330. overflow: hidden;
  331. .left {
  332. float: left;
  333. width: 360px;
  334. font-size: 18px;
  335. a {
  336. padding-top: 30px;
  337. display: inline-block;
  338. font-size: 14px;
  339. }
  340. }
  341. .right {
  342. float: right;
  343. text-align: right;
  344. font-size: 12px;
  345. }
  346. }
  347. .confirm {
  348. text-align: center;
  349. padding-bottom: 10px;
  350. .answer-button.lager {
  351. font-size: 16px;
  352. }
  353. }
  354. }
  355. }
  356. .modal.note {
  357. .body {
  358. width: 720px;
  359. .content {
  360. padding-top: 20px;
  361. .tabs {
  362. display: inline-block;
  363. width: 170px;
  364. vertical-align: top;
  365. margin-left: -30px;
  366. margin-right: 30px;
  367. .tab {
  368. padding: 5px 0px 5px 40px;
  369. line-height: 20px;
  370. color: #686872;
  371. margin-bottom: 30px;
  372. cursor: pointer;
  373. transition: all 0.3s;
  374. border-top-right-radius: 25px;
  375. border-bottom-right-radius: 25px;
  376. .date {
  377. font-size: 12px;
  378. }
  379. }
  380. .tab.active,
  381. .tab:hover {
  382. color: #fff;
  383. background: #4299FF;
  384. }
  385. }
  386. .input {
  387. display: inline-block;
  388. .textarea {
  389. width: 490px;
  390. height: 350px;
  391. margin-bottom: 20px;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. }
  398. }