index.less 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. @charset "utf-8";
  2. #paper-report {
  3. .header {
  4. background: #F7F8FC;
  5. padding: 30px 0;
  6. .title {
  7. font-size: 30px;
  8. font-weight: bold;
  9. color: #303036;
  10. }
  11. .btns {
  12. .button {
  13. margin-right: 10px;
  14. }
  15. }
  16. .right {
  17. position: absolute;
  18. right: 0px;
  19. top: 0px;
  20. text-align: right;
  21. .text {
  22. color: #303036;
  23. font-size: 18px;
  24. font-weight: bold;
  25. }
  26. .desc {
  27. color: #686872;
  28. }
  29. }
  30. }
  31. .body {
  32. padding: 70px 0;
  33. .title {
  34. line-height: 32px;
  35. font-size: 32px;
  36. padding-left: 10px;
  37. color: #303036;
  38. margin-bottom: 40px;
  39. }
  40. }
  41. .body.gray {
  42. background: #F7F8FC;
  43. }
  44. .content {
  45. width: 1200px;
  46. position: relative;
  47. .block-wrapper {
  48. display: flex;
  49. .block {
  50. flex: 1;
  51. }
  52. .block-1-5 {
  53. flex: 1.5;
  54. }
  55. }
  56. }
  57. .detail {
  58. text-align: center;
  59. padding-top: 10px;
  60. margin-left: -1px;
  61. .block {
  62. display: inline-block;
  63. width: 300px;
  64. text-align: center;
  65. .t1 {
  66. color: #686872;
  67. font-size: 24px;
  68. }
  69. .t2 {
  70. font-size: 56px;
  71. font-weight: 600;
  72. display: inline;
  73. color: #4299FF;
  74. }
  75. .t3 {
  76. color: #303036;
  77. font-size: 20px;
  78. display: inline;
  79. }
  80. }
  81. .line {
  82. height: 100px;
  83. width: 1px;
  84. background: #E3E5E9;
  85. display: inline-block;
  86. }
  87. }
  88. .list {
  89. .detail {
  90. .block {
  91. width: 160px;
  92. }
  93. .t1 {
  94. min-height: 30px;
  95. }
  96. .t4 {
  97. height: 95px;
  98. line-height: 95px;
  99. color: #686872;
  100. font-size: 24px;
  101. }
  102. .line {
  103. height: 80px;
  104. line-height: 80px;
  105. width: 1px;
  106. background: #E3E5E9;
  107. display: inline-block;
  108. }
  109. }
  110. }
  111. .detail-1 {
  112. margin-bottom: 20px;
  113. .block {
  114. display: inline-block;
  115. width: 160px;
  116. .t1 {
  117. color: #686872;
  118. font-size: 24px;
  119. font-weight: 600;
  120. }
  121. .t2 {
  122. font-size: 30px;
  123. display: inline;
  124. color: #4299FF;
  125. }
  126. .t3 {
  127. color: #303036;
  128. font-size: 30px;
  129. display: inline;
  130. }
  131. }
  132. .block.all {
  133. .t2 {
  134. font-size: 30px;
  135. display: inline;
  136. color: #6865FD;
  137. }
  138. }
  139. }
  140. .tip {
  141. margin-bottom: 30px;
  142. .t1 {
  143. color: #303036;
  144. display: inline;
  145. font-size: 16px;
  146. }
  147. .t2 {
  148. font-size: 32px;
  149. color: #4299FF;
  150. display: inline;
  151. }
  152. i {
  153. font-size: 20px;
  154. color: #D0D8E2;
  155. }
  156. }
  157. }
  158. .exercise {
  159. border-top: 20px solid #7775CA;
  160. background: #fff;
  161. .body {
  162. .title {
  163. border-left: 10px solid #7775CA;
  164. }
  165. }
  166. }
  167. .sentence {
  168. border-top: 20px solid #435C96;
  169. background: #fff;
  170. .body {
  171. .title {
  172. border-left: 10px solid #435C96;
  173. }
  174. }
  175. }
  176. .sentence.question {
  177. .header {
  178. text-align: center;
  179. .title {}
  180. .back {
  181. position: absolute;
  182. left: 0;
  183. top: 15px;
  184. }
  185. }
  186. .body {
  187. padding-top: 25px !important;
  188. .tip {
  189. font-size: 12px;
  190. color: #A7A7B7;
  191. margin-bottom: 10px !important;
  192. }
  193. table {
  194. th {
  195. padding: 0 20px;
  196. background: #ECEDEE;
  197. height: 60px;
  198. border: 1px solid #fff;
  199. &.point {
  200. cursor: pointer;
  201. }
  202. }
  203. td {
  204. padding: 20px;
  205. .n {
  206. color: #A7A7B7;
  207. font-size: 12px;
  208. }
  209. .desc {
  210. color: #686872;
  211. font-size: 14px;
  212. }
  213. }
  214. tbody {
  215. tr:nth-of-type(even) {
  216. background: #FBFBFB;
  217. }
  218. }
  219. }
  220. }
  221. }
  222. .examination {
  223. border-top: 20px solid #8D909C;
  224. background: #fff;
  225. .body {
  226. .title {
  227. border-left: 10px solid #989FC1;
  228. }
  229. .tabs {
  230. transform: translateY(-30px);
  231. margin-bottom: 10px;
  232. }
  233. table {
  234. width: 100%;
  235. color: #686872;
  236. font-size: 16px;
  237. line-height: 20px;
  238. th {
  239. background: #ECEDEE;
  240. padding: 30px 20px;
  241. font-weight: 500;
  242. border: 1px solid #fff;
  243. }
  244. td {
  245. background: #fff;
  246. padding: 40px 20px;
  247. border: 1px solid #fff;
  248. span {
  249. color: #A7A7B7;
  250. font-size: 12px;
  251. }
  252. }
  253. }
  254. }
  255. }