暂无描述

index.css 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. * {
  2. font-size: .14rem;
  3. box-sizing: content-box;
  4. font-family: "PingFang SC,Microsoft YaHei,SourceHanSansCN-Normal,HiraginoSansGB,HiraginoSans-W3,Helvetica Neue,Helvetica,STHeiTi,sans-serif";
  5. }
  6. body {
  7. min-height: 100vh;
  8. }
  9. @font-face {
  10. font-family: Muiicons;
  11. font-weight: normal;
  12. font-style: normal;
  13. // src: url('../mui/fonts/mui.ttf') format('truetype');
  14. src: url('../mui/fonts/mui.ttf');
  15. }
  16. .mui-icon-arrowup:before
  17. {
  18. content: '\e580';
  19. }
  20. .mui-icon-arrowdown:before
  21. {
  22. content: '\e581';
  23. }
  24. .header {
  25. margin-top: .4rem;
  26. padding-top: .23rem;
  27. padding-bottom: .17rem;
  28. display: flex;
  29. justify-content: space-around;
  30. }
  31. .alert-info {
  32. position: fixed;
  33. top: 1.74rem;
  34. right: 0;
  35. left: 0;
  36. bottom: 0;
  37. text-align: center;
  38. z-index: 2;
  39. display: none;
  40. }
  41. .alert-info p {
  42. display: inline-block;
  43. height: 0.38rem;
  44. color: #fff;
  45. font-size: 0.14rem;
  46. line-height: 0.38rem;
  47. padding: 0 0.10rem;
  48. background-color: rgba(0, 0, 0, 0.7);
  49. border-radius: 5px;
  50. }
  51. .top {
  52. width: 100%;
  53. height: .4rem;
  54. position: fixed;
  55. top: 0;
  56. left: 0;
  57. background: #f7f7f7;
  58. z-index: 999;
  59. }
  60. .top img {
  61. width: .2rem;
  62. height: .2rem;
  63. position: absolute;
  64. left: .1rem;
  65. top: 50%;
  66. transform: translate(0,-50%);
  67. }
  68. .top h1 {
  69. font-size: .14rem;
  70. position: absolute;
  71. left: 50%;
  72. top: 50%;
  73. transform: translate(-50%,-50%);
  74. }
  75. .step {
  76. flex: 1;
  77. text-align: center;
  78. position: relative;
  79. }
  80. .num {
  81. width: .32rem;
  82. height: .32rem;
  83. line-height: .32rem;
  84. border-radius: 50%;
  85. position: relative;
  86. background: white;
  87. margin: auto;
  88. border: .03rem solid #C3C3C3;
  89. font-size: .22rem;
  90. color: #C3C3C3;
  91. margin-bottom: .13rem;
  92. }
  93. .active .num {
  94. margin-top: .03rem;
  95. border: .0001rem solid transparent;
  96. color: #1AB8FF;
  97. }
  98. .active span {
  99. color: #1456FF;
  100. }
  101. .active .num:after {
  102. width: .38rem;
  103. height: .38rem;
  104. position: absolute;
  105. content: '';
  106. top: 50%;
  107. left: 50%;
  108. transform: translate(-50%,-50%);
  109. background-image: url("../img/squera.png");
  110. background-size: 100% 100%;
  111. z-index: -1;
  112. }
  113. .step:nth-child(2)::before,.step:nth-child(3)::before {
  114. content: "";
  115. width: .06rem;
  116. border-top: .02rem dotted #4999FF;
  117. position: absolute;
  118. left: 0%;
  119. margin-left: .13rem;
  120. top: .19rem;
  121. }
  122. .step:nth-child(2)::after,.step:nth-child(3)::after {
  123. content: "";
  124. width: .33rem;
  125. height: .02rem;
  126. position: absolute;
  127. top: .19rem;
  128. left: -.22rem;
  129. background: linear-gradient(90deg, #fff, #4999FF);
  130. }
  131. .step:nth-child(3)::before {
  132. border-top: .02rem dotted #B8B8B8;
  133. }
  134. .step:nth-child(3)::after {
  135. background: linear-gradient(90deg, #fff, #B8B8B8);;
  136. }
  137. .null {
  138. height: .12rem;
  139. background: #F4F4F4;
  140. }
  141. .termList {
  142. padding: 0 .15rem;
  143. padding-bottom: .48rem;
  144. }
  145. .term {
  146. padding: 0 .05rem;
  147. display: flex;
  148. align-items: center;
  149. justify-content: space-between;
  150. height: .46rem;
  151. border-bottom: .01rem solid #E9E9E9;
  152. position: relative;
  153. }
  154. .weiliValue,.zhimaValue,.car_value,.house_value,.insInf,.Insurance_company,.Insurance_value {
  155. line-height: .46rem;
  156. padding-left: .55rem;
  157. display: none;
  158. }
  159. .left {
  160. color: #666666;
  161. font-size: .16rem;
  162. }
  163. .left span {
  164. font-size: .13rem;
  165. }
  166. .right {
  167. height: .46rem;
  168. line-height: .46rem;
  169. color: #999999;
  170. }
  171. .hasValue {
  172. color: #222;
  173. }
  174. .right span {
  175. color: #444;
  176. }
  177. input {
  178. color: #222;
  179. font-size: .15rem;
  180. max-width: 1.5rem;
  181. text-align: right;
  182. border: none;
  183. outline: none;
  184. vertical-align: inherit;
  185. }
  186. input:focus {
  187. border: none;
  188. }
  189. #userResult {
  190. display: none;
  191. }
  192. .mui-poppicker {
  193. padding: 0 .12rem;
  194. position: fixed;
  195. left: 0px;
  196. width: 100%;
  197. box-sizing: border-box;
  198. z-index: 999;
  199. box-shadow: none;
  200. border: none;
  201. background: transparent;
  202. -webkit-transition: .3s;
  203. bottom: .1rem;
  204. }
  205. .mui-poppicker-header {
  206. display: flex;
  207. justify-content: space-between;
  208. align-items: center;
  209. position: relative;
  210. }
  211. #mui-title1 {
  212. font-size: .18rem;
  213. color: #333333;
  214. position: absolute;
  215. top: 50%;
  216. left: 50%;
  217. transform: translate(-50%,-50%);
  218. }
  219. .mui-btn.mui-poppicker-btn-ok {
  220. padding-right: 0;
  221. position: absolute;
  222. top: 50%;
  223. right: .16rem;
  224. transform: translate(0,-50%);
  225. }
  226. .mui-poppicker-header,.mui-poppicker-body,.mui-picker,.mui-poppicker-header .mui-btn {
  227. border: none;
  228. background: #fff;
  229. overflow: hidden;
  230. }
  231. .mui-poppicker-header .mui-btn {
  232. background: transparent;
  233. font-size: .14rem;
  234. color: #4F4F4E;
  235. padding-left: 0;
  236. }
  237. .mui-poppicker-header .mui-btn.mui-icon {
  238. padding-left: 0;
  239. padding-right: 0;
  240. font-size: .26rem;
  241. color: #000;
  242. }
  243. .mui-backdrop {
  244. position: fixed;
  245. z-index: 998;
  246. top: 0;
  247. right: 0;
  248. bottom: 0;
  249. left: 0;
  250. background-color: rgba(0,0,0,.6);
  251. }
  252. .mui-icon {
  253. display: inline-block;
  254. font-family: Muiicons;
  255. font-size: 24px;
  256. font-style: normal;
  257. font-weight: 400;
  258. line-height: 1;
  259. text-decoration: none;
  260. -webkit-font-smoothing: antialiased;
  261. }
  262. input::-webkit-input-placeholder{
  263. font-size: .15rem;
  264. }
  265. input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  266. font-size: .15rem;
  267. }
  268. input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  269. font-size: .15rem;
  270. }
  271. input::-ms-input-placeholder{ /* Internet Explorer 10-11 */
  272. font-size: .15rem;
  273. }
  274. .notice {
  275. color: #4B5BFF;
  276. margin-top: .1rem;
  277. font-size: .12rem;
  278. }
  279. .notice img {
  280. display: inline-block;
  281. vertical-align: top;
  282. width: .13rem;
  283. height: .13rem;
  284. margin-left: .09rem;
  285. margin-right: .06rem;
  286. }
  287. .button {
  288. margin-top: .35rem;
  289. width: 100%;
  290. height: .46rem;
  291. line-height: .46rem;
  292. text-align: center;
  293. border-radius: .12rem;
  294. background: linear-gradient(90deg,#0687FF,#1452FF);
  295. color: #fff;
  296. font-size: .16rem;
  297. }
  298. .mask {
  299. position: fixed;
  300. z-index: 1;
  301. top: 0;
  302. right: 0;
  303. bottom: 0;
  304. left: 0;
  305. background-color: rgba(0,0,0,.6);
  306. display: none;
  307. }
  308. .status {
  309. width: 3.1rem;
  310. height: 3.43rem;
  311. background: #fff;
  312. border-radius: .06rem;
  313. position: absolute;
  314. top: 50%;
  315. left: 50%;
  316. transform: translate(-50%,-50%);
  317. z-index: 2;
  318. display: none;
  319. text-align: center;
  320. }
  321. .status img {
  322. width: 2rem;
  323. margin: .29rem auto;
  324. }
  325. .status text {
  326. display: inline-block;
  327. color: #2F2F2F;
  328. font-size: .13rem;
  329. margin-bottom: .33rem;
  330. }
  331. .button1 {
  332. display: inline-block;
  333. width: 2.4rem;
  334. height: .46rem;
  335. padding: 0;
  336. line-height: .46rem;
  337. border-radius: .12rem;
  338. background: linear-gradient(90deg,#0687FF,#1452FF);
  339. color: #fff;
  340. font-size: .16rem;
  341. }
  342. .speical {
  343. color: red;
  344. position: absolute;
  345. left: -.08rem;
  346. top: 50%;
  347. transform: translate(0,-50%);
  348. }