index.less 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. @charset "utf-8";
  2. #paper-process-base {
  3. height: 100%;
  4. color: #000;
  5. .start {
  6. background: #7775CA;
  7. height: 100%;
  8. padding: 40px 20px;
  9. .bg {
  10. height: 100%;
  11. width: 100%;
  12. background: #fff;
  13. }
  14. .fixed-content {
  15. position: fixed;
  16. left: 50%;
  17. top: 50%;
  18. transform: translate(-50%, -50%);
  19. .title {
  20. text-align: center;
  21. font-size: 40px;
  22. font-weight: 600;
  23. margin-bottom: 100px;
  24. }
  25. .desc {
  26. text-align: center;
  27. margin-bottom: 80px;
  28. display: flex;
  29. flex-direction: row;
  30. .block {
  31. display: inline-block;
  32. width: 300px;
  33. .desc-title {
  34. margin-bottom: 20px;
  35. .assets {
  36. margin-right: 10px;
  37. }
  38. }
  39. .desc-info {
  40. font-size: 40px;
  41. font-weight: 600;
  42. }
  43. }
  44. }
  45. .tip {
  46. text-align: center;
  47. margin-bottom: 20px;
  48. }
  49. .submit {
  50. text-align: center;
  51. }
  52. }
  53. }
  54. .layout {
  55. background: #006DAA;
  56. height: 100%;
  57. padding: 0 25px;
  58. display: flex;
  59. flex-direction: column;
  60. position: relative;
  61. .calculator {
  62. position: absolute;
  63. z-index: 9;
  64. top: 92px;
  65. }
  66. .fixed {
  67. position: absolute;
  68. top: 62px;
  69. left: 0;
  70. right: 0;
  71. height: 30px;
  72. line-height: 30px;
  73. background: #7EAFE0;
  74. color: #fff;
  75. padding: 0 25px;
  76. z-index: 100;
  77. .calculator-icon {
  78. margin-left: 50px;
  79. cursor: pointer;
  80. }
  81. .collect-icon {
  82. float: right;
  83. cursor: pointer;
  84. transform: translateY(5px);
  85. line-height: 16px;
  86. height: 16px;
  87. }
  88. }
  89. .layout-header {
  90. height: 60px;
  91. color: #fff;
  92. .title {
  93. font-size: 20px;
  94. line-height: 60px;
  95. display: inline-block;
  96. }
  97. .right {
  98. float: right;
  99. text-align: right;
  100. .block {
  101. line-height: 30px;
  102. cursor: pointer;
  103. .assets {
  104. margin-right: 10px;
  105. }
  106. }
  107. }
  108. }
  109. .layout-footer {
  110. height: 35px;
  111. line-height: 35px;
  112. color: #fff;
  113. margin-right: -25px;
  114. .help {
  115. padding: 0 10px;
  116. border-left: 1px solid #fff;
  117. border-right: 1px solid #fff;
  118. display: inline-block;
  119. cursor: pointer;
  120. .assets {
  121. margin-right: 10px;
  122. }
  123. }
  124. .help:hover {
  125. background: darken(#006DAA, 10);
  126. }
  127. .full {
  128. display: inline-block;
  129. padding: 0 10px;
  130. border-right: 1px solid #fff;
  131. cursor: pointer;
  132. }
  133. .full:hover {
  134. background: darken(#006DAA, 10);
  135. }
  136. .next {
  137. float: right;
  138. padding: 0 10px;
  139. border-left: 1px solid #fff;
  140. border-top: 1px solid #fff;
  141. cursor: pointer;
  142. box-sizing: border-box;
  143. height: 35px;
  144. .assets {
  145. margin-left: 20px;
  146. }
  147. }
  148. .next:hover {
  149. background: darken(#006DAA, 10);
  150. }
  151. }
  152. .layout-body {
  153. background: #fff;
  154. flex: 1;
  155. overflow: hidden;
  156. overflow-y: auto;
  157. .block {
  158. padding: 60px 20px 20px;
  159. }
  160. span.\#select\# {
  161. line-height: 20px;
  162. height: 20px;
  163. }
  164. }
  165. .layout-body .two {
  166. display: flex;
  167. height: 100%;
  168. .block {
  169. overflow: hidden;
  170. overflow-y: auto;
  171. flex: 1;
  172. }
  173. .block-content {
  174. border-right: 4px solid #006DAA;
  175. .navigation {
  176. margin-bottom: 80px;
  177. }
  178. }
  179. .block-answer {
  180. border-left: 4px solid #006DAA;
  181. }
  182. }
  183. }
  184. .modal {
  185. position: fixed;
  186. top: 0;
  187. left: 0;
  188. right: 0;
  189. bottom: 0;
  190. .body {
  191. position: absolute;
  192. left: 50%;
  193. top: 50%;
  194. transform: translate(-50%, -50%);
  195. background: #006DAA;
  196. width: 400px;
  197. color: #fff;
  198. .title {
  199. height: 38px;
  200. line-height: 38px;
  201. font-size: 18px;
  202. padding-left: 25px;
  203. border-bottom: 1px solid #fff;
  204. }
  205. .desc {
  206. text-align: center;
  207. margin-top: 20px;
  208. margin-bottom: 20px;
  209. }
  210. .btn-list {
  211. text-align: center;
  212. margin-bottom: 15px;
  213. .btn {
  214. display: inline-block;
  215. width: 70px;
  216. line-height: 35px;
  217. height: 35px;
  218. border: 1px solid #fff;
  219. background: #006DAA;
  220. cursor: pointer;
  221. }
  222. .btn:hover {
  223. background: darken(#006DAA, 5);
  224. }
  225. }
  226. }
  227. }
  228. }