index.less 8.0 KB

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