carModel2.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. <template>
  2. <view class="carbox">
  3. <view class="tab1 ">
  4. <scroll-view class="scroll-view" :scroll-into-view="toView" scroll-y="true" >
  5. <view class="brand-select">
  6. <template v-for="item in carModelList">
  7. <view :id="item['首字母']" v-if="item['首字母']!='热'">
  8. <view class="brand-select-title" :id="item['首字母']+'-model'">
  9. <h5 :class="{'brand-select-titleselect':item['首字母']==toView}">{{item['首字母']}}</h5>
  10. </view>
  11. <view class="brand-select-wrapper">
  12. <a class="brand-select-item" v-for="item2 in item['品牌列表']" @click="selectBrand(item2)" :id="item2.brand">
  13. <img :src="item2.logo" class="brand-select-item-icon">
  14. <span>{{item2.brand||item2.name}}</span>
  15. </a>
  16. </view>
  17. </view>
  18. <view :id="'rm'" v-if="item['首字母']=='热'" class="rmview">
  19. <view class="brand-select-title" :id="item['首字母']+'-model'">
  20. <h5 :class="{'brand-select-titleselect':toView=='rm'}">{{item['首字母']}}</h5>
  21. </view>
  22. <view class="brand-select-wrapper">
  23. <a class="brand-select-item" v-for="item2 in item['品牌列表']" @click="selectBrand(item2)" :id="item2.brand">
  24. <img :src="item2.logo" class="brand-select-item-icon">
  25. <span>{{item2.brand||item2.name}}</span>
  26. </a>
  27. </view>
  28. </view>
  29. </template>
  30. </view>
  31. </scroll-view >
  32. <view class="fast-navigation">
  33. <a class="fast-navigation-sel" v-if="item['首字母']=='热'" :class="{'select':toView=='rm'}" v-for="item in carModelList" @tap="bindToView(item)">热</a>
  34. <a class="fast-navigation-sel" v-if="item['首字母']!=='热'" :class="{'select':item['首字母']==toView}" v-for="item in carModelList" @tap="bindToView(item)">{{item['首字母']}}</a>
  35. </view>
  36. </view>
  37. <!-- uni-popup -->
  38. <view class="popupone" @click="popupc" v-if="popuponeShow">
  39. <view class="popup-content" >
  40. <scroll-view class="brandList" scroll-y="true">
  41. <view style="height: 10px;"></view>
  42. <view v-for="item in carSeriesList" :key="item.manufactor" class="brandListkk">
  43. <h3 class="cell-item-title">{{ item.manufactor }}</h3>
  44. <span v-for="item2 in item.carSeries" :key="item2" :title="item2" class="span-cell" @click="selectCarFactory(item.manufactor,item2)" >{{item2}}</span>
  45. </view>
  46. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  47. <view class="status_bar" style="height: 50px;"></view>
  48. </scroll-view>
  49. </view>
  50. </view>
  51. <!-- 排量 -->
  52. <!--
  53. <view class="displacementListBox" v-show="displacementListShow">
  54. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  55. <h3 class="carModel-nav-title">
  56. <view class="carModel-nav-title—left">
  57. <img :src="selectedCarBrand.logo" class="carModel-nav-title-img" @click="$emit('changeStep', 1)">
  58. <span class="carModel-nav-title-msg carModel-nav-title-msg1">{{ selectedCarBrand.brand }} {{ carSeries }}</span>
  59. </view>
  60. <view class="carBack" @click="carBack(1)">上一步</view>
  61. </h3>
  62. <scroll-view scroll-y="true" class="brandList">
  63. <view @click="selectDisplacement(item)" v-for="item in displacementList" class="displacementListLine" >
  64. {{item}}
  65. </view>
  66. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  67. <view class="status_bar" style="height: 50px;"></view>
  68. </scroll-view>
  69. </view> -->
  70. <!-- 排量 -->
  71. <!-- 离合器 -->
  72. <!-- <view class="carGroupListBox" v-show="carGroupListShow">
  73. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  74. <h3 class="carModel-nav-title">
  75. <view class="carModel-nav-title—left">
  76. <img :src="selectedCarBrand.logo" class="carModel-nav-title-img" @click="$emit('changeStep', 1)">
  77. <span class="carModel-nav-title-msg carModel-nav-title-msg1">{{ selectedCarBrand.brand }} {{ carSeries }}{{displacement}}</span>
  78. </view>
  79. <view class="carBack" @click="carBack(2)">上一步</view>
  80. </h3>
  81. <scroll-view scroll-y="true" class="brandList">
  82. <view @click="goList(item)" v-for="item in carGroupList" class="displacementListLine" >
  83. {{item.title}}
  84. </view>
  85. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  86. <view class="status_bar" style="height: 50px;"></view>
  87. </scroll-view>
  88. </view> -->
  89. <!-- 离合器 -->
  90. <!-- 搜索的 -->
  91. <!-- <view class="carssListBox" v-show="carssListShow" @click="carssListShow=false">
  92. <view class="carssListBoxCont" >
  93. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  94. <h3 class="carModel-nav-title">
  95. <view class="carModel-nav-title—left">
  96. <span class="carModel-nav-title-msg" style="padding-left: 24rpx;">{{carName}}</span>
  97. </view>
  98. </h3>
  99. <scroll-view scroll-y="true" class="brandList">
  100. <view @click.stop="ssitem(item)" v-for="item in carsslist" class="carsslineTxt" >
  101. {{item.title}}
  102. </view>
  103. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  104. <view class="status_bar" style="height: 50px;"></view>
  105. </scroll-view>
  106. </view>
  107. </view> -->
  108. <!-- <view class="carssListBox2" v-show="secondShow" @click.stop="secondShow=false">
  109. <view class="carssListBoxCont">
  110. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  111. <h3 class="carModel-nav-title">
  112. <view class="carModel-nav-title—left">
  113. <span class="carModel-nav-title-msg" style="padding-left: 24rpx;">{{ssname1}}</span>
  114. </view>
  115. <view class="carBack" @click="secondShow=false">上一步</view>
  116. </h3>
  117. <scroll-view scroll-y="true" class="brandList">
  118. <view @click.stop="seconditem(item)" v-for="item in secondlist" class="carsslineTxt" >
  119. {{item.title}}
  120. </view>
  121. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  122. <view class="status_bar" style="height: 50px;"></view>
  123. </scroll-view>
  124. </view>
  125. </view>
  126. <view class="carssListBox2" v-show="ssdisplacementListShow" @click.stop="ssdisplacementListShow=false">
  127. <view class="carssListBoxCont">
  128. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  129. <h3 class="carModel-nav-title">
  130. <view class="carModel-nav-title—left">
  131. <span class="carModel-nav-title-msg " style="padding-left: 24rpx;">{{ssname2}}</span>
  132. </view>
  133. <view class="carBack" @click="ssdisplacementListShow=false">上一步</view>
  134. </h3>
  135. <scroll-view scroll-y="true" class="brandList">
  136. <view @click="golistnew(item)" v-for="item in ssdisplacementList" class="carsslineTxt" >
  137. {{item.displacement}}
  138. </view>
  139. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  140. <view class="status_bar" style="height: 50px;"></view>
  141. </scroll-view>
  142. </view>
  143. </view> -->
  144. <!-- 搜索的 -->
  145. </view>
  146. </template>
  147. <script>
  148. export default {
  149. //props:['iStatusBarHeight','svHeight'],
  150. data() {
  151. return {
  152. carModelList:'',
  153. toView:'',
  154. type:'right',
  155. iStatusBarHeight:0,
  156. selectedCarBrand:'',
  157. brand:'',
  158. carSeriesList:'',
  159. manufactor:'',
  160. carSeries:'',
  161. displacementList:'',
  162. displacementListShow:false,
  163. selectedCarSeries:'',
  164. displacement:'',
  165. carGroupList:'',
  166. carGroupListShow:false,
  167. carsslist:[],
  168. carName:'',
  169. carssListShow:false,
  170. secondShow:false,
  171. secondlist:'',
  172. carItem:'',
  173. ssdisplacementListShow:false,
  174. ssdisplacementList:'',
  175. ssname1:'',
  176. ssname2:'',
  177. popuponeShow:false,
  178. type:'',
  179. }
  180. },
  181. onLoad(opt) {
  182. this.type=opt.type
  183. this.getdata()
  184. },
  185. methods: {
  186. aaa(){
  187. return {height: `calc(100vh - 44px)`};
  188. },
  189. popupc(e){
  190. /* console.log(e)
  191. if(!e.show){
  192. this.displacementListShow=false;
  193. this.carGroupListShow=false;
  194. } */
  195. this.popuponeShow=false
  196. },
  197. carBack(num){
  198. if(num==2){
  199. this.carGroupListShow=false;
  200. }
  201. if(num==1){
  202. this.displacementListShow=false;
  203. }
  204. },
  205. getcarsslist(){
  206. this.secondShow=false;
  207. this.ssdisplacementListShow=false;
  208. uni.showLoading({ title: '加载中'});
  209. this.$http('matchingByOpen/queryCarModelGroupIiPackage', {
  210. name:this.carName
  211. }, 'POST').then(res => {
  212. uni.hideLoading();
  213. this.carssListShow=true;
  214. this.carsslist=res.data
  215. // this.carModelList=res.data.brands
  216. })
  217. },
  218. ssitem(item){
  219. this.carItem=item;
  220. uni.showLoading({ title: '加载中'});
  221. if(item.type==1){
  222. var params={
  223. type:item.type,
  224. manufactor:item.manufactor,
  225. }
  226. this.$http('matchingByOpen/queryCarModelGroupIiPackageSecond', params, 'POST').then(res => {
  227. this.secondlist=res.data;
  228. this.secondShow=true;
  229. uni.hideLoading();
  230. })
  231. }else if(item.type==2){
  232. var params={
  233. type:item.type,
  234. manufactor:item.manufactor,
  235. brand:item.brand,
  236. carSeries:item.carSeries
  237. }
  238. this.$http('matchingByOpen/queryCarModelGroupIiPackageSecond', params, 'POST').then(res => {
  239. this.secondlist=res.data;
  240. this.secondShow=true;
  241. uni.hideLoading();
  242. })
  243. }else{
  244. if(item.displacementList.length==1){
  245. uni.navigateTo({
  246. url:'list?type=2&id='+item.displacementList[0].id
  247. })
  248. }else{
  249. this.ssdisplacementList=item.displacementList;
  250. this.ssdisplacementListShow=true;
  251. this.ssname2=item.title;
  252. }
  253. }
  254. this.ssname1=item.title
  255. },
  256. seconditem(item){
  257. if(item.displacementList.length==1){
  258. uni.navigateTo({
  259. url:'list?type=2&id='+item.displacementList[0].id
  260. })
  261. }
  262. else{
  263. this.ssdisplacementList=item.displacementList;
  264. this.ssdisplacementListShow=true;
  265. this.ssname2=item.title
  266. }
  267. // this.$refs.popup.open("right2")
  268. //this.popupShow=true;
  269. },
  270. carNameInput(){
  271. //console.log(this.carName)
  272. if(this.carName==''){
  273. this.carssListShow=false;
  274. this.secondShow=false;
  275. this.ssdisplacementListShow=false;
  276. }
  277. },
  278. getdata(){
  279. uni.showLoading({ title: '加载中'});
  280. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  281. this.$http('matchingByOpen/queryCarModelGroupPackage', {
  282. }, 'POST').then(res => {
  283. console.log("matchingByOpen/queryCarModelGroupPackage")
  284. console.log(res)
  285. this.carModelList=res.data.brands;
  286. uni.hideLoading();
  287. }).catch((err) => {
  288. console.log(err)
  289. })
  290. },
  291. selectBrand(item){
  292. console.log(item)
  293. this.selectedCarBrand=item;
  294. //this.$refs.popup.open("right")
  295. this.popuponeShow=true;
  296. this.brand=item.brand
  297. this.getbrand()
  298. },
  299. getbrand(){
  300. uni.showLoading({ title: '加载中'});
  301. this.$http('matchingByOpen/queryCarModelGroupPackage', {
  302. brand:this.brand
  303. },'POST').then(res => {
  304. uni.hideLoading();
  305. this.carSeriesList=res.data.carSeriesList
  306. })
  307. },
  308. selectCarFactory(manufactor,item){
  309. this.manufactor=manufactor;
  310. this.carSeries=item;
  311. console.log(manufactor)
  312. console.log(item)
  313. console.log(this.selectedCarBrand)
  314. //this.selectedCarSeries=item
  315. //this.displacementListShow=true;
  316. //this.getdisplacementList()
  317. uni.navigateTo({
  318. url:'/pages/index/displacement?logo='+this.selectedCarBrand.logo+'&manufactor='+manufactor+'&carSeries='+item+'&brand='+this.selectedCarBrand.brand+"&type="+this.type
  319. })
  320. },
  321. getdisplacementList(){
  322. uni.showLoading({ title: '加载中'});
  323. this.$http('matchingByOpen/queryCarModelGroupPackage', {
  324. brand:this.brand,
  325. manufactor:this.manufactor,
  326. carSeries:this.carSeries
  327. },'POST').then(res => {
  328. uni.hideLoading();
  329. this.displacementList=res.data.displacementList
  330. })
  331. },
  332. selectDisplacement(item){
  333. this.displacement=item;
  334. this.carGroupListShow=true;
  335. this.getmodelList();
  336. },
  337. getmodelList(){
  338. uni.showLoading({ title: '加载中'});
  339. this.$http('matchingByOpen/queryCarModelGroupPackage', {
  340. brand:this.brand,
  341. manufactor:this.manufactor,
  342. carSeries:this.carSeries,
  343. displacement:this.displacement
  344. },'post').then(res => {
  345. uni.hideLoading();
  346. this.carGroupList=res.data.carGroupList
  347. })
  348. },
  349. goList(item){
  350. console.log(item)
  351. this.$store.commit('mutationslistId', item.id)
  352. uni.navigateTo({
  353. url:'list?name='+item.value+'&nLevelID='+item.carModelInfo.nLevelID+'&id='+item.id
  354. })
  355. },
  356. golistnew(item){
  357. uni.navigateTo({
  358. url:'list?type=2&id='+item.id
  359. })
  360. },
  361. bindToView(item){
  362. console.log(item)
  363. if(item['首字母']=='热'){
  364. this.toView ='rm'
  365. }else{
  366. this.toView = item['首字母']
  367. }
  368. console.log(this.toView)
  369. },
  370. close(){
  371. //this.$refs.popup.close()
  372. },
  373. }
  374. }
  375. </script>
  376. <style scoped lang="scss">
  377. .popupone{
  378. width: 100vw;height: 100vh;
  379. background:rgba(0, 0, 0, 0.4) ;
  380. position: fixed;top: 0;left: 0;
  381. z-index: 11;
  382. }
  383. .brandListkk{
  384. /* padding-top: 44px; */
  385. }
  386. .brand-select .rmview .brand-select-title{
  387. /* background: #fff; */
  388. }
  389. .rmview{
  390. border-radius: 16rpx;overflow: hidden;
  391. }
  392. .carModel-nav-title-left{
  393. display: flex;
  394. }
  395. .carModel-nav-title{
  396. display: flex;
  397. justify-content: space-between;
  398. }
  399. .carBack{
  400. line-height: 100rpx;
  401. font-size: 30rpx;
  402. font-family: PingFangSC-Medium, PingFang SC;
  403. font-weight: 500;
  404. color: #FFFFFF;
  405. padding-right: 24rpx;
  406. }
  407. .carSs{
  408. width: 750rpx;
  409. height: 96rpx;
  410. background: #FFFFFF;
  411. padding-top: 24rpx;
  412. position: fixed;
  413. z-index: 999;
  414. left: 0;
  415. top:90rpx;
  416. /* top: calc(44px + 96rpx); */
  417. }
  418. .carssBox{
  419. width: 702rpx;
  420. height: 72rpx;
  421. background: #F4F5F7;
  422. border-radius: 36rpx;
  423. margin: 0 auto;
  424. }
  425. .carSsImg{
  426. width: 40rpx;
  427. height: 40rpx;
  428. margin-top: 16rpx;
  429. margin-left: 20rpx;
  430. }
  431. .carssInput{
  432. line-height:72rpx;
  433. font-size: 28rpx;
  434. height:72rpx;
  435. padding-left: 16rpx;
  436. width: 600rpx;
  437. }
  438. .carssBox{
  439. display: flex;
  440. }
  441. .brand-select{
  442. .brand-select-title{
  443. height: 64rpx;
  444. position: relative;
  445. h5{
  446. position: absolute;
  447. height:40rpx;
  448. font-size:28rpx;
  449. font-weight:500;
  450. color:#1a1a1a;
  451. line-height:40rpx;
  452. top: 12rpx;
  453. left: 30rpx;
  454. }
  455. }
  456. .brand-select-wrapper{
  457. display: flex;
  458. flex-wrap: wrap;
  459. background:rgba(255,255,255,1);
  460. width: 714rpx;border-radius: 16rpx;
  461. .brand-select-item{
  462. display: block;
  463. width: 80rpx;
  464. min-height: 100rpx;
  465. padding: 30rpx;
  466. img{
  467. display: inline-block;
  468. margin-left: 10rpx;
  469. width: 60rpx;
  470. height: 60rpx;
  471. }
  472. span{
  473. display: inline-block;
  474. text-align: center;
  475. height:33rpx;
  476. width: 90rpx;
  477. font-size:22rpx;
  478. font-weight:400;
  479. color:#1a1a1a;
  480. line-height:33rpx;
  481. }
  482. }
  483. }
  484. }
  485. .fast-navigation{
  486. position: absolute;
  487. text-align: center;
  488. right: 10rpx;
  489. top: 0rpx;
  490. width: 34rpx;
  491. font-size:24rpx;
  492. font-weight:500;
  493. line-height:35rpx;
  494. color: rgb(153, 153, 153);
  495. a{
  496. display: block;
  497. padding-top: 6rpx;
  498. padding-left: 10rpx;
  499. }
  500. .select{
  501. color: #FF4F00;
  502. }
  503. }
  504. .scroll-view{
  505. /* height: calc(100vh - 120rpx); */
  506. height: 100vh;
  507. }
  508. .brand-select{
  509. padding-bottom: 100rpx;
  510. }
  511. .popup-height {
  512. width: 200px;
  513. }
  514. .popup-content{
  515. width: 80vw;
  516. background: #FFFFFF;
  517. height: 100vh;
  518. margin-left: 20vw;
  519. /* padding-top: 20rpx; */
  520. }
  521. .carModel-nav-title{
  522. height:100rpx;
  523. background: linear-gradient(110deg, #48B9F9 0%, #3F90F7 100%);
  524. line-height: 100rpx;
  525. display: flex;
  526. z-index: 500;
  527. &.cell-logo{
  528. position: sticky;
  529. top: 0;
  530. background: linear-gradient(110deg, #48B9F9 0%, #3F90F7 100%);
  531. }
  532. .carModel-nav-title-box{
  533. width: 100%;
  534. display: flex;
  535. }
  536. .carModel-nav-title-img{
  537. margin: 20rpx;
  538. width: 60rpx;
  539. height: 60rpx;
  540. }
  541. .carModel-nav-title-msg{
  542. font-size:30rpx;
  543. font-weight:400;
  544. color:rgba(255,255,255,1);
  545. display: block;
  546. padding-right: 20rpx;
  547. width: 400rpx;
  548. overflow: hidden;
  549. text-overflow: ellipsis;
  550. white-space: nowrap;
  551. }
  552. .carModel-nav-title-msg1{
  553. width: 300rpx;
  554. }
  555. }
  556. .cell-item-title{
  557. line-height: 69rpx;padding-left: 24rpx;
  558. width: 520rpx;margin-left: 30rpx;
  559. height: 69rpx;
  560. background: #FF4F00 linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
  561. border-radius: 16rpx;
  562. font-weight: 500;
  563. color: #FFFFFF;font-size: 28rpx;
  564. }
  565. .span-cell{
  566. position: relative;
  567. display: -webkit-box;
  568. display: -webkit-flex;
  569. display: flex;
  570. box-sizing: border-box;
  571. width: calc(100% - 60rpx);
  572. padding: 6rpx 24rpx;
  573. overflow: hidden;
  574. color: #323233;
  575. font-size: 26rpx;
  576. line-height: 82rpx;
  577. height: 82rpx;
  578. background-color: #fff;
  579. border-bottom: 1px solid #ebedf0;
  580. margin-left: 30rpx;
  581. }
  582. .span-cell:nth-last-child(1){
  583. border-bottom: none;
  584. }
  585. .carModel-nav-title{
  586. height:100rpx;
  587. background: linear-gradient(110deg, #48B9F9 0%, #3F90F7 100%);
  588. line-height: 100rpx;
  589. display: flex;
  590. z-index: 500;
  591. &.cell-logo{
  592. position: sticky;
  593. top: 0;
  594. background: linear-gradient(110deg, #48B9F9 0%, #3F90F7 100%);
  595. }
  596. .carModel-nav-title-box{
  597. width: 100%;
  598. display: flex;
  599. }
  600. .carModel-nav-title-img{
  601. margin: 20rpx;
  602. width: 60rpx;
  603. height: 60rpx;
  604. }
  605. .carModel-nav-title-msg{
  606. font-size:30rpx;
  607. font-weight:400;
  608. color:rgba(255,255,255,1);
  609. display: block;
  610. padding-right: 20px;
  611. }
  612. }
  613. .carbox{
  614. /* height: calc(100vh - 120rpx); */
  615. padding: 0 18rpx;
  616. padding-top: 20rpx;
  617. }
  618. .brandList{
  619. /* height: calc(100vh - 45px); */
  620. /* padding-bottom:var(--status-bar-height); */
  621. height: 100vh;
  622. }
  623. .displacementListLine{
  624. min-height: 50rpx;
  625. padding: 20rpx 20rpx 20rpx 30rpx;
  626. font-size:28rpx;
  627. font-weight:600;
  628. color:rgba(51,51,51,1);
  629. line-height:50rpx;
  630. border-top: 2rpx solid rgb(238, 238, 238);
  631. background-color: rgb(255, 255, 255);
  632. }
  633. .carsslineTxt{
  634. // height: 98rpx;
  635. background: #FFFFFF;
  636. line-height:50rpx;
  637. color: #333333;
  638. font-size: 28rpx;
  639. padding: 0 24rpx;
  640. border-bottom: 1px solid #EEEEEE;
  641. padding: 20rpx 20rpx 20rpx 30rpx;
  642. }
  643. .displacementListBox{
  644. position: fixed;
  645. top: 97rpx;
  646. left: 20vw;
  647. width: 80vw;
  648. height: 100vh;
  649. background:#F4F5F7 ;
  650. z-index: 11111;
  651. /* #ifdef H5 */
  652. top:calc(210rpx);
  653. /* #endif */
  654. }
  655. .carGroupListBox{
  656. position: fixed;
  657. top: 0;
  658. left: 20vw;
  659. width: 80vw;
  660. height: 100vh;
  661. background:#F4F5F7 ;
  662. z-index: 11111;
  663. top: 210rpx;
  664. /* #ifdef H5 */
  665. /* top:calc(44px + 220rpx); */
  666. /* #endif */
  667. }
  668. .carssListBox{
  669. position: fixed;
  670. top: 0;
  671. left: 0;
  672. width: 200vw;
  673. height: 100vh;
  674. background: rgba(0,0,0,0.5) ;
  675. z-index: 11111;
  676. /* #ifdef H5 */
  677. top:calc( 210rpx);
  678. /* #endif */
  679. }
  680. .carssListBoxCont{
  681. background: #FFFFFF;width: 80vw;margin-left: 20vw;height: 100vh;
  682. }
  683. .carssListBox2{
  684. position: fixed;
  685. top: 0;
  686. left: 0;
  687. width: 100vw;
  688. height: 100vh;
  689. background: rgba(0,0,0,0) ;
  690. z-index: 11112;
  691. top:calc(210rpx);
  692. }
  693. .brand-select-titleselect{
  694. color: #FF4F00 !important;
  695. }
  696. .tab1{
  697. position: relative;
  698. }
  699. </style>