index.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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: 60px;
  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. .calculator-icon {
  77. margin-left: 50px;
  78. cursor: pointer;
  79. }
  80. .collect-icon {
  81. float: right;
  82. cursor: pointer;
  83. transform: translateY(5px);
  84. }
  85. }
  86. .layout-header {
  87. height: 60px;
  88. color: #fff;
  89. .title {
  90. font-size: 20px;
  91. line-height: 60px;
  92. display: inline-block;
  93. }
  94. .right {
  95. float: right;
  96. text-align: right;
  97. .block {
  98. line-height: 30px;
  99. .assets {
  100. margin-right: 10px;
  101. }
  102. }
  103. }
  104. }
  105. .layout-footer {
  106. height: 35px;
  107. line-height: 35px;
  108. color: #fff;
  109. margin-right: -25px;
  110. .help {
  111. padding: 0 10px;
  112. border-left: 1px solid #fff;
  113. border-right: 1px solid #fff;
  114. display: inline-block;
  115. cursor: pointer;
  116. .assets {
  117. margin-right: 10px;
  118. }
  119. }
  120. .help:hover {
  121. background: darken(#006DAA, 10);
  122. }
  123. .full {
  124. display: inline-block;
  125. padding: 0 10px;
  126. border-right: 1px solid #fff;
  127. cursor: pointer;
  128. }
  129. .full:hover {
  130. background: darken(#006DAA, 10);
  131. }
  132. .next {
  133. float: right;
  134. padding: 0 10px;
  135. border-left: 1px solid #fff;
  136. border-top: 1px solid #fff;
  137. cursor: pointer;
  138. box-sizing: border-box;
  139. height: 35px;
  140. .assets {
  141. margin-left: 20px;
  142. }
  143. }
  144. .next:hover {
  145. background: darken(#006DAA, 10);
  146. }
  147. }
  148. .layout-body {
  149. background: #fff;
  150. flex: 1;
  151. overflow: hidden;
  152. overflow-y: auto;
  153. .block {
  154. padding: 60px 20px 20px;
  155. }
  156. }
  157. .layout-body.two {
  158. display: flex;
  159. .block {
  160. overflow: hidden;
  161. overflow-y: auto;
  162. flex: 1;
  163. }
  164. .block-content {
  165. border-right: 4px solid #006DAA;
  166. .navigation {
  167. margin-bottom: 80px;
  168. }
  169. }
  170. .block-answer {
  171. border-left: 4px solid #006DAA;
  172. }
  173. }
  174. }
  175. .modal {
  176. position: fixed;
  177. top: 0;
  178. left: 0;
  179. right: 0;
  180. bottom: 0;
  181. .body {
  182. position: absolute;
  183. left: 50%;
  184. top: 50%;
  185. transform: translate(-50%, -50%);
  186. background: #006DAA;
  187. width: 400px;
  188. color: #fff;
  189. .title {
  190. height: 38px;
  191. line-height: 38px;
  192. font-size: 18px;
  193. padding-left: 25px;
  194. border-bottom: 1px solid #fff;
  195. }
  196. .desc {
  197. text-align: center;
  198. margin-top: 20px;
  199. margin-bottom: 20px;
  200. }
  201. .btn-list {
  202. text-align: center;
  203. margin-bottom: 15px;
  204. .btn {
  205. display: inline-block;
  206. width: 70px;
  207. line-height: 35px;
  208. height: 35px;
  209. border: 1px solid #fff;
  210. background: #006DAA;
  211. cursor: pointer;
  212. }
  213. .btn:hover {
  214. background: darken(#006DAA, 5);
  215. }
  216. }
  217. }
  218. }
  219. }