index.less 4.4 KB

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