cardetail.wxss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. /* pages/cardetail/cardetail.wxss */
  2. @import "../../module/logs/logs.wxss"
  3. .cardetail_nav{
  4. position: fixed;
  5. height: 86rpx;
  6. line-height: 86rpx;
  7. display: flex;
  8. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  9. background-color: white;
  10. left:0rpx;
  11. width:100%;
  12. z-index: 1;
  13. }
  14. .cardetail_nav_i{
  15. flex: 1;
  16. margin:0rpx 60rpx;
  17. border-bottom: 6rpx solid white;
  18. color:#383735;
  19. text-align: center;
  20. }
  21. .cardetail_nav_active{
  22. border-bottom: 6rpx solid #FFE600;
  23. color:#BFA368;
  24. }
  25. .cardetail_img{
  26. height: 500rpx;
  27. position: relative;
  28. }
  29. .detail_img_t{
  30. width:100%;
  31. height: 500rpx;
  32. }
  33. .detail_img_item{
  34. width:100%;
  35. height: 100%;
  36. }
  37. .detail_code{
  38. position: absolute;
  39. left: 40rpx;
  40. top: 450rpx;
  41. width: 259rpx;
  42. height: 26rpx;
  43. border-radius: 100rpx;
  44. background-color: rgba(56, 55, 53, 0.2);
  45. line-height: 26rpx;
  46. color: rgba(255, 255, 255, 1);
  47. font-size: 14rpx;
  48. text-align: center;
  49. }
  50. .banner_step{
  51. position: absolute;
  52. left: 654rpx;
  53. top: 454rpx;
  54. height: 27rpx;
  55. line-height: 27rpx;
  56. color: rgba(255, 255, 255, 1);
  57. /*padding: 0rpx 5rpx;*/
  58. font-size: 18rpx;
  59. text-align: center;
  60. /*background-color: rgba(56, 55, 53, 0.2);*/
  61. text-shadow: 0px 1px 2px #383735;
  62. /*box-shadow: 0px 1px 2px 0px rgba(56, 55, 53, 0.2);*/
  63. }
  64. .cardetail_info_c{
  65. height: 282rpx;
  66. background-color:white;
  67. overflow: hidden;
  68. }
  69. .cardetail_t{
  70. margin-top:30rpx;
  71. height: 32rpx;
  72. line-height: 32rpx;
  73. color: rgba(56, 55, 53, 1);
  74. font-size: 32rpx;
  75. text-align: center;
  76. font-family: PingFangSC-Medium;
  77. }
  78. .cardetail_price{
  79. margin-top:20rpx;
  80. height: 42rpx;
  81. line-height: 42rpx;
  82. color: rgba(56, 55, 53, 1);
  83. font-size: 28rpx;
  84. text-align: center;
  85. }
  86. .cardetail_price_v{
  87. display: inline;
  88. color:#BFA368;
  89. margin:0rpx 30rpx 0rpx 10rpx;
  90. font-size: 42rpx;
  91. font-family: PingFangSC-Medium;
  92. }
  93. .cardetail_price_n{
  94. display: inline;
  95. color: rgba(56, 55, 53, 1);
  96. font-size: 24rpx;
  97. }
  98. .cardetail_flex{
  99. height: 80rpx;
  100. display: flex;
  101. margin-top:40rpx;
  102. }
  103. .cardetail_time{
  104. width: 290rpx;
  105. border-right:1rpx solid rgba(235, 235, 235, 1);
  106. }
  107. .cardetail_mileage{
  108. width:215rpx;
  109. border-right:1rpx solid rgba(235, 235, 235, 1);
  110. }
  111. .cardetail_flex_v{
  112. height: 32rpx;
  113. line-height: 32rpx;
  114. color: rgba(56, 55, 53, 1);
  115. font-size: 32rpx;
  116. text-align: center;
  117. font-family: PingFangSC-Medium;
  118. font-weight: bold;
  119. }
  120. .cardetail_flex_name{
  121. margin-top:20rpx;
  122. height: 28rpx;
  123. line-height: 42rpx;
  124. color: rgba(135, 135, 135, 1);
  125. font-size: 28rpx;
  126. text-align: center;
  127. }
  128. .cardetail_shop{
  129. height: 140rpx;
  130. margin-top:20rpx;
  131. padding-left:38rpx;
  132. position: relative;
  133. background-color: white;
  134. overflow: hidden;
  135. }
  136. .cardetail_shop_n{
  137. height: 48rpx;
  138. line-height: 48rpx;
  139. color: #383735;
  140. font-size: 32rpx;
  141. margin-top:22rpx;
  142. font-family: PingFangSC-Medium;
  143. }
  144. .cardetail_shop_d{
  145. height: 36rpx;
  146. line-height: 36rpx;
  147. color: rgba(104, 104, 104, 1);
  148. font-size: 24rpx;
  149. margin-top:20rpx;
  150. }
  151. .cardetail_shop_d image{
  152. width:20rpx;
  153. height: 20rpx;
  154. display: inline-block;
  155. }
  156. .cardetail_shop_nav{
  157. position: absolute;
  158. top:34rpx;
  159. right:40rpx;
  160. height: 36rpx;
  161. line-height: 36rpx;
  162. color: rgba(104, 104, 104, 1);
  163. font-size: 24rpx;
  164. }
  165. .cardetail_shop_nav image{
  166. width:22rpx;
  167. height: 22rpx;
  168. margin-left: 10rpx;
  169. }
  170. .cardetail_space{
  171. background-color:white;
  172. padding-top:36rpx;
  173. margin-top:20rpx;
  174. }
  175. .cardetail_space_base{
  176. height:445rpx;
  177. }
  178. .cardetail_space_dsc{
  179. height:155rpx;
  180. overflow: hidden;
  181. position: relative;
  182. }
  183. .cardetail_space_col{
  184. height:730rpx;
  185. overflow: hidden;
  186. }
  187. /*.cardetail_space_pic{
  188. height:6170rpx;
  189. overflow: hidden;
  190. }*/
  191. .cardetail_describe_op{
  192. position: absolute;
  193. width:22rpx;
  194. height: 22rpx;
  195. top:40rpx;
  196. right: 48rpx;
  197. transition: transform 0.5s;
  198. }
  199. .cardetail_describe_opactive{
  200. transform: rotate(90deg);
  201. }
  202. .cardetail_space_t{
  203. height: 32rpx;
  204. line-height: 32rpx;
  205. color: rgba(104, 104, 104, 1);
  206. font-size: 32rpx;
  207. text-indent:30rpx;
  208. border-left:6rpx solid #FFE600;
  209. margin:0rpx 40rpx;
  210. }
  211. .cardetail_baseinfo_c{
  212. display: flex;
  213. flex-wrap: wrap;
  214. padding: 0rpx 48rpx 40rpx;
  215. }
  216. .cardetail_baseinfo_i{
  217. width:33.3%;
  218. padding: 20rpx 0rpx;
  219. }
  220. .cardetail_baseinfo_v{
  221. height: 48rpx;
  222. line-height: 48rpx;
  223. color: rgba(56, 55, 53, 1);
  224. font-size: 26rpx;
  225. }
  226. .cardetail_baseinfo_n{
  227. height: 36rpx;
  228. line-height: 36rpx;
  229. color: rgba(155, 155, 155, 1);
  230. font-size: 24rpx;
  231. }
  232. .cardetail_describe{
  233. line-height: 34rpx;
  234. color: rgba(56, 55, 53, 1);
  235. font-size: 24rpx;
  236. padding: 48rpx;
  237. word-break: break-all;
  238. }
  239. .cardetail_collocate{
  240. margin-top:30rpx;
  241. text-indent: 40rpx;
  242. height: 30rpx;
  243. line-height: 30rpx;
  244. color: rgba(104, 104, 104, 1);
  245. font-size: 20rpx;
  246. }
  247. .cardetail_collocate_list{
  248. margin-top:40rpx;
  249. }
  250. .cardetail_collocate_item{
  251. }
  252. .cardetail_collocate_item_t{
  253. border-top: 1rpx solid rgba(235, 235, 235, 1);
  254. height: 88rpx;
  255. line-height: 88rpx;
  256. color: rgba(56, 55, 53, 1);
  257. font-size: 26rpx;
  258. margin:0rpx 48rpx;
  259. position: relative;
  260. }
  261. .cardetail_collocate_item_sw{
  262. position: absolute;
  263. top: 33rpx;
  264. right: 0rpx;
  265. width: 22rpx;
  266. height: 22rpx;
  267. transition: transform 0.5s;
  268. }
  269. .collocate_open .cardetail_collocate_item_sw{
  270. transform: rotate(180deg);
  271. }
  272. .cardetail_collocate_item_l{
  273. height: 0rpx;
  274. transition: height 0.5s;
  275. overflow: hidden;
  276. background-color: #fffef0;
  277. }
  278. /*.collocate_open .cardetail_collocate_item_l{
  279. height: auto;
  280. }*/
  281. .cardetail_collocate_item_d{
  282. height: 88rpx;
  283. line-height: 88rpx;
  284. color: rgba(56, 55, 53, 1);
  285. font-size: 26rpx;
  286. border-top: 1rpx solid rgba(235, 235, 235, 1);
  287. display: flex;
  288. }
  289. .collocate_item_n{
  290. text-indent: 48rpx;
  291. width:360rpx;
  292. }
  293. .collocate_item_v{
  294. flex: 1;
  295. line-height: 32rpx;
  296. align-items:center;
  297. display:flex;
  298. color: rgba(104, 104, 104, 1);
  299. font-size: 24rpx;
  300. }
  301. .cardetail_img_i{
  302. margin:32rpx 38rpx 0rpx;
  303. width: 674rpx;
  304. height: 412rpx;
  305. }
  306. /*********检查样式************/
  307. .cardetail_check_report{
  308. padding-bottom: 80rpx;
  309. border-bottom: 1rpx solid rgba(235, 235, 235, 1);
  310. }
  311. .cardetail_check_i{
  312. display: flex;
  313. height: 98rpx;
  314. line-height: 98rpx;
  315. border-bottom: 1rpx solid rgba(235, 235, 235, 1);
  316. }
  317. .cardetail_check_n{
  318. width: 450rpx;
  319. text-align: 48rpx;
  320. }
  321. .cardetail_check_n image{
  322. width:26rpx;
  323. height: 26rpx;
  324. margin-left: 50rpx;
  325. }
  326. .cardetail_check_name{
  327. display: inline-block;
  328. color: rgba(56, 55, 53, 1);
  329. font-size: 26rpx;
  330. text-align: left;
  331. margin-left: 20rpx;
  332. }
  333. .cardetail_check_i{
  334. flex: 1;
  335. display: flex;
  336. color: rgba(104, 104, 104, 1);
  337. font-size: 24rpx;
  338. justify-content:flex-end;
  339. }
  340. .cardetail_check_unp,.cardetail_check_p{
  341. margin-left: 20rpx;
  342. }
  343. .unpass_number,.pass_number{
  344. width:22rpx;
  345. height: 22rpx;
  346. margin-left: 10rpx;
  347. }
  348. .cardetail_check_op{
  349. width:22rpx;
  350. height: 22rpx;
  351. margin:38rpx 48rpx 0rpx 10rpx;
  352. margin-right: 48rpx;
  353. margin-left: 10rpx;
  354. }
  355. /*******底部操作样式*******/
  356. .cardetail_op_list_space{
  357. background-color: white;
  358. height: 120rpx;
  359. }
  360. .cardetail_op_list{
  361. position: fixed;
  362. left:0rpx;
  363. bottom:0rpx;
  364. width: 100%;
  365. height: 120rpx;
  366. display: flex;
  367. background-color:white;
  368. text-align: center;
  369. border-top: 1rpx solid #ebebeb;
  370. }
  371. .cardetail_op_collect,.cardetail_op_phone{
  372. width: 136rpx;
  373. text-align: center;
  374. line-height: 24rpx;
  375. color: rgba(104, 104, 104, 1);
  376. font-size: 16rpx;
  377. }
  378. .cardetail_op_collect image,.cardetail_op_phone image{
  379. width: 36rpx;
  380. height: 36rpx;
  381. display: block;
  382. margin: 20rpx auto 0rpx;
  383. }
  384. .cardetail_op_appointment,.cardetail_op_buy{
  385. flex: 1;
  386. background-color: #FFE600;
  387. line-height: 98rpx;
  388. color: rgba(56, 55, 53, 1);
  389. font-size: 30rpx;
  390. font-family: PingFangSC-Medium;
  391. }
  392. .cardetail_op_line{
  393. border-top:25rpx solid #FFE600;
  394. border-bottom:47rpx solid #FFE600;
  395. width: 1rpx;
  396. height: 48rpx;
  397. background-color: rgba(155, 155, 155, 1);
  398. }
  399. /*贷款计算*/
  400. .buy_scheme{
  401. position: fixed;
  402. top: 0rpx;
  403. width: 100%;
  404. height: 100%;
  405. background-color: rgba(56,55,53,0.7);
  406. }
  407. .buy_scheme_box{
  408. background: white;
  409. width:662rpx;
  410. height: 832rpx;
  411. border-radius: 6rpx;
  412. margin:228rpx auto;
  413. }
  414. .buy_scheme_title{
  415. height: 68rpx;
  416. line-height: 68rpx;
  417. border-bottom: 1px solid rgba(235, 235, 235, 1);
  418. position: relative;
  419. }
  420. .buy_scheme_tw{
  421. font-size: 28rpx;
  422. text-align: center;
  423. color: rgba(33, 36, 37, 1);
  424. font-family: PingFangSC-Regular,NotoSansHans-Regular;
  425. }
  426. .buy_scheme_close{
  427. width:22rpx;
  428. height: 22rpx;
  429. position: absolute;
  430. top:23rpx;
  431. right:38rpx;
  432. }
  433. .scheme_price{
  434. width:602rpx;
  435. margin:30rpx auto;
  436. display: flex;
  437. }
  438. .scheme_price_i{
  439. flex: 1;
  440. }
  441. .scheme_price_iw{
  442. height: 30rpx;
  443. line-height: 30rpx;
  444. color: rgba(104, 104, 104, 1);
  445. font-size: 20rpx;
  446. text-align: center;
  447. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  448. }
  449. .scheme_price_ip,.scheme_price_ipb{
  450. height: 54rpx;
  451. line-height: 54rpx;
  452. color: rgba(33, 36, 37, 1);
  453. font-size: 36rpx;
  454. text-align: center;
  455. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  456. }
  457. .scheme_price_ipb{
  458. color: rgba(191, 163, 104, 1);
  459. }
  460. .scheme_item{
  461. margin-top:48rpx;
  462. }
  463. .scheme_item_t{
  464. height: 30rpx;
  465. line-height: 30rpx;
  466. color: rgba(104, 104, 104, 1);
  467. font-size: 20rpx;
  468. text-align: center;
  469. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  470. }
  471. .scheme_item_l{
  472. width:622rpx;
  473. display: flex;
  474. margin:0px auto;
  475. overflow: hidden;
  476. flex-wrap: wrap;
  477. }
  478. .scheme_item_el{
  479. width: 160rpx;
  480. height: 68rpx;
  481. border-radius: 6rpx;
  482. border: 1.2px solid rgba(183, 183, 183, 1);
  483. margin: 25rpx 20rpx 0rpx;
  484. line-height:68rpx;
  485. color: rgba(33, 36, 37, 1);
  486. font-size: 28rpx;
  487. text-align: center;
  488. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  489. }
  490. .scheme_item_el.active{
  491. background-color: #FFE600;
  492. }
  493. .scheme_condition{
  494. text-indent: 80rpx;
  495. line-height: 32rpx;
  496. color: rgba(135, 135, 135, 1);
  497. font-size: 20rpx;
  498. text-align: left;
  499. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  500. }
  501. .scheme_condition_po{
  502. color:black;
  503. font-weight: bold;
  504. }
  505. .check_c{
  506. position: fixed;
  507. top:0rpx;
  508. left:100%;
  509. width: 100%;
  510. height: 100%;
  511. background: white;
  512. z-index:101;
  513. transition: all 0.5s;
  514. background-color: #F9F9F9;
  515. }
  516. .check_title{
  517. background-color:#fede18;
  518. height:128rpx;
  519. position: absolute;
  520. top:0rpx;
  521. width: 100%;
  522. }
  523. .check_back{
  524. width:50rpx;
  525. height: 50rpx;
  526. position: absolute;
  527. top:100rpx;
  528. left:40rpx;
  529. background-repeat: no-repeat;
  530. background-position: center;
  531. background-size: 30rpx 30rpx;
  532. }
  533. .check_title_w{
  534. padding-top: 105rpx;
  535. font-size: 36rpx;
  536. height: 44rpx;
  537. line-height: 44rpx;
  538. text-align: center;
  539. }
  540. .checkw_result{
  541. width: 654rpx;
  542. line-height:36rpx;
  543. color: rgba(56, 55, 53, 1);
  544. margin: 0px auto;
  545. padding: 30rpx 48rpx;
  546. font-size: 24rpx;
  547. text-align: justify;
  548. font-family: NotoSansHans-DemiLight;
  549. background-color: white;
  550. }
  551. .cardetailw_check_i{
  552. background-color: white;
  553. margin-top: 20rpx;
  554. }
  555. .cardetailw_check_name{
  556. height: 98rpx;
  557. line-height: 98rpx;
  558. color: rgba(56, 55, 53, 1);
  559. font-size: 28rpx;
  560. text-align: left;
  561. text-indent: 48rpx;
  562. font-family: NotoSansHans-Medium;
  563. }
  564. .cardetailw_check_si{
  565. }
  566. .cardetailw_check_sit{
  567. border-bottom: 1rpx solid rgba(235, 235, 235, 1);
  568. }
  569. .cardetailw_check_sit::last{
  570. border-bottom: 0rpx;
  571. }
  572. .cardetailw_check_sitn{
  573. display: flex;
  574. height: 98rpx;
  575. line-height: 98rpx;
  576. }
  577. .cardetailw_check_sitnw{
  578. flex: 1;
  579. color: rgba(104, 104, 104, 1);
  580. font-size: 26rpx;
  581. margin-left:48rpx;
  582. font-family: NotoSansHans-DemiLight;
  583. }
  584. .cardetailw_check_unp,.cardetailw_check_p{
  585. color: rgba(104, 104, 104, 1);
  586. font-size: 24rpx;
  587. margin-left:20rpx;
  588. font-family: NotoSansHans-DemiLight;
  589. }
  590. .cardetail_check_opactive{
  591. transition: transform 0.5s;
  592. transform: rotate(90deg);
  593. }
  594. .cardetailw_check_tit{
  595. overflow: hidden;
  596. height: 0rpx;
  597. transition: height 0.5s;
  598. }
  599. .cardetailw_check_titn{
  600. display: flex;
  601. height: 98rpx;
  602. line-height: 98rpx;
  603. background-color: #F8F8FA;
  604. left: 48px;
  605. color: rgba(104, 104, 104, 1);
  606. font-size: 26rpx;
  607. font-family: NotoSansHans-DemiLight;
  608. border-bottom: 1rpx solid rgba(235, 235, 235, 1);
  609. }
  610. .cardetailw_check_titn::last{
  611. border-bottom: 0rpx;
  612. }
  613. .cardetailw_check_titna{
  614. flex: 1;
  615. text-indent:48rpx;
  616. }
  617. .titn_img{
  618. width:22rpx;
  619. height: 22rpx;
  620. margin-right: 80rpx;
  621. margin-top:40rpx;
  622. }