maintainItem.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  1. <template>
  2. <view class="box">
  3. <view class="spwBox">
  4. <swiper class="swiper" circular :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#EC0F0A">
  5. <swiper-item v-for="(item,index) in detail.openMaintainImgUrls">
  6. <view class="swiper-item">
  7. <img mode="aspectFit" :src="item.url" alt="" class="swiper-itemImg" >
  8. </view>
  9. </swiper-item>
  10. </swiper>
  11. </view>
  12. <view class="shopCont">
  13. <view class="shopCtop">
  14. <view class="goodsPrice" >
  15. <view class="goodsPrice2">¥</view>
  16. <view class="goodsPrice3" >{{itemDefault.money}}</view>
  17. <view class="goodsPrice4" v-if="itemDefault.showCrossedPrice==1">原价:¥{{itemDefault.crossedPrice}}</view>
  18. </view>
  19. <view class="shareBox" >
  20. <view class="shareTxt">分享</view>
  21. <image class="shareIcon" src="../../static/timg/share.png" mode=""></image>
  22. </view>
  23. </view>
  24. <view class="goodsName">{{detail.title}}</view>
  25. <view class="goodsMSBox" >
  26. <!-- <view class="goodsMs" v-if="detail.showOilType">机油类型|{{detail.showOilType}}</view>
  27. <view class="goodsMs" v-if="detail.showOilLevel">机油等级|{{detail.showOilLevel}}</view>
  28. <view class="goodsMs" v-if="detail.showFit">适配粘度|{{detail.showFit}}</view> -->
  29. <view class="goodsMs" v-for="(item,index) in detail.content.split(',')">{{item}}</view>
  30. </view>
  31. <view class="timeBox">
  32. <view class="itemTime" v-if="detail.validityType==1">套餐有效期:{{detail.validityTime}}</view>
  33. <view class="sell" v-if="itemDefault.showSalesCount==1">
  34. <span>已售:</span><span style="color: #FFC107;">{{itemDefault.dummyCount}}</span>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="buyBOx">
  39. <view class="buyLine" @click="ckCar">
  40. <view class="buyTitle">已选车型</view>
  41. <view class="buyData" style="display: flex;">
  42. <view class="carModelLine"> {{carInfo.carModel?carInfo.carModel:''}}</view>
  43. <image class="jtIcon" src="../../static/timg/jthei.png" mode=""></image>
  44. </view>
  45. </view>
  46. <view class="carTis" v-if="isRecommend!='true'">此套餐可能与爱车不适配</view>
  47. <view class="buyLine">
  48. <view class="buyTitle">商品规格</view>
  49. <view class="guigeBox">
  50. <scroll-view scroll-x="true" enable-flex="true" class="buyData guigeBox2">
  51. <!-- <view class="goodsGuige activeGuige" style="margin-right: 24rpx;">单次购买</view> -->
  52. <view class="goodsGuige" @click="goodsGuige(item)"
  53. :class="{activeGuige:item.id==itemDefault.id}" v-if="item.isShow==1"
  54. v-for="(item,index) in detail.packageItems">{{item.title}}</view>
  55. </scroll-view>
  56. </view>
  57. </view>
  58. <view class="buyLine">
  59. <view class="buyTitle">商品数量</view>
  60. <view class="buyData">
  61. <view class="numJsbox">
  62. <view class="numJj" @click="calculation(1)">-</view>
  63. <view class="goodsnum">
  64. <input type="number" value="" v-model="goodsnum" class="goodsnumInput"/>
  65. </view>
  66. <view class="numJj" @click="calculation(2)">+</view>
  67. </view>
  68. </view>
  69. </view>
  70. <view class="buyLine">
  71. <view class="buyTitle">使用方式</view>
  72. <view class="buyData">到店使用</view>
  73. </view>
  74. <view class="buyLine">
  75. <view class="buyTitle">可用门店</view>
  76. <view class="buyData" v-if="itemDefault.packTimeShopName=='全部'">全部门店</view>
  77. <view @click="keyongFn" class="buyData " style="display: flex;" v-else>{{itemDefault.packTimeShopName.split(',').length}}个门店可用
  78. <image src="../../static/img2/hjt.png" mode="" class="hjt"></image>
  79. </view>
  80. </view>
  81. </view>
  82. <view class="mealBox" v-if="itemDefault.content">
  83. <view class="fwlcTitle">套餐内容</view>
  84. <rich-text :nodes="itemDefault.content" style="background: #fff;"></rich-text>
  85. <!-- <view class="mealTop">
  86. <view class="mealName">套餐名称</view>
  87. <view class="mealNum">数量</view>
  88. <view class="mealexpire">有效期</view>
  89. </view>
  90. <view class="mealTop2">
  91. <view class="mealName">【豪华车型】全合成机油保养套餐</view>
  92. <view class="mealNum">2</view>
  93. <view class="mealexpire">18个月</view>
  94. </view>
  95. <view class="mealXj">
  96. <view class="xjLine">
  97. <view class="xjyd"></view>
  98. <view class="xjTxt">20项检查</view>
  99. </view>
  100. <view class="xjLine">
  101. <view class="xjyd"></view>
  102. <view class="xjTxt">20美日韩车型专用保养套餐适配机油</view>
  103. </view>
  104. </view>
  105. <view class="mealMs">
  106. <view class="mealMsline">
  107. 1.本套餐不限车辆使用;
  108. 2.机油套餐包含:机油,机油滤,工时费
  109. 3.购买此套餐,共享有2次保养次数。
  110. </view>
  111. </view> -->
  112. </view>
  113. <!-- 商品详情 -->
  114. <view class="goodsDetail" v-if="detail.detailContent">
  115. <view class="goodsDetailTitle">商品详情</view>
  116. <!-- <view v-html="info.details" style="background: #fff;"></view> -->
  117. <rich-text :nodes="detail.detailContent" style="background: #fff;"></rich-text>
  118. </view>
  119. <view class="bottomTianc"></view>
  120. <view class="bottom">
  121. <view class="bleft">
  122. <image class="kefuIcon" src="../../static/img2/kefu.png" mode=""></image>
  123. <view style="text-align: center;font-size: 20rpx;color: #110B01;">客服</view>
  124. </view>
  125. <view class="Btn commonBtn" @click="submitFn">立即购买</view>
  126. </view>
  127. <!-- 提交订单弹框-->
  128. <view class="tkBox" v-if="tkShow" @click="closeTk">
  129. <view class="tkCont" @click.stop="">
  130. <view class="tkTop">
  131. <image class="tkImg" v-if="detail.mainImgUrl" :src="detail.mainImgUrl" mode="" ></image>
  132. <image class="tkImg" v-else src="../../static/timg/noimg.png" mode="" ></image>
  133. <view class="tkNameBox">
  134. <view class="tkName">{{detail.title}}</view>
  135. <view class="goodsPrice">
  136. <view class="goodsPrice2">¥</view>
  137. <view class="goodsPrice3">{{itemDefault.money}}</view>
  138. <view class="goodsPrice4" >原价:¥{{itemDefault.crossedPrice}}</view>
  139. </view>
  140. </view>
  141. <image class="chahao" src="../../static/img2/chahao.png" mode="" @click="closeTk"></image>
  142. </view>
  143. <view class="buyLine">
  144. <view class="buyTitle">商品规格</view>
  145. <view class="buyData">
  146. <view class="goodsGuige activeGuige" style="margin-right: 24rpx;">{{itemDefault.title}}</view>
  147. <!-- <view class="goodsGuige">保养套餐卡</view> -->
  148. </view>
  149. </view>
  150. <view class="buyLine">
  151. <view class="buyTitle">商品数量</view>
  152. <view class="buyData">
  153. <view class="numJsbox">
  154. <view class="numJj" @click="calculation(1)">-</view>
  155. <view class="goodsnum">
  156. <input type="number" value="" v-model="goodsnum" class="goodsnumInput"/>
  157. </view>
  158. <view class="numJj" @click="calculation(2)">+</view>
  159. </view>
  160. </view>
  161. </view>
  162. <view class="tkBottom">
  163. <view class="tkBottomBtn commonBtn" @click="goSubmit">立即购买</view>
  164. </view>
  165. </view>
  166. </view>
  167. <!-- 提交订单弹框-->
  168. <!-- 门店列表-->
  169. <view class="tkBox" v-if="keyongShow" @click="keyongClose">
  170. <view class="tkCont2">
  171. <view class="tkTOp2">
  172. <view class="chahao"></view>
  173. <view class="kymd">可用门店</view>
  174. <image class="chahao" src="../../static/img2/chahao.png" mode="" @click="closeTk"></image>
  175. </view>
  176. <view class="keyongBOx">
  177. <view class="keyongLine" v-for="(item,index) in itemDefault.packTimeShopName.split(',')">
  178. {{item}}
  179. </view>
  180. </view>
  181. </view>
  182. </view>
  183. </view>
  184. </template>
  185. <script>
  186. export default {
  187. components: {
  188. },
  189. data() {
  190. return {
  191. themeColor:'',
  192. ext:'',
  193. goodsnum:1,
  194. details:'11233',
  195. maintainId:'',
  196. detail:'',
  197. itemDefault:'',
  198. carInfo:'',
  199. userInfo:'',
  200. isRecommend:'',
  201. tkShow:false,
  202. keyongShow:false,
  203. }
  204. },
  205. onLoad(opt) {
  206. this.ext = this.$common.getExtStoreId();
  207. this.themeColor = uni.getStorageSync("themeColor");
  208. this.maintainId=opt.maintainId
  209. this.carInfo=this.$store.state.carInfo;
  210. this.userInfo=this.$store.state.userInfo;
  211. this.isRecommend=opt.isRecommend
  212. //console.log("this.isRecommend=="+this.isRecommend)
  213. if(this.userInfo){
  214. this.getdetail()
  215. }else{
  216. this.$common.automaticlogin().then(val => {
  217. this.userInfo=this.$store.state.userInfo;
  218. this.getdetail()
  219. })
  220. }
  221. },
  222. onShow() {
  223. var car =uni.getStorageSync("byCar")
  224. if(car){
  225. this.carInfo=car;
  226. this.getdetail()
  227. this.isRecommend=false
  228. }
  229. },
  230. methods: {
  231. ckCar(){
  232. uni.navigateTo({
  233. url:'../user/addCar/cailist?type=5'
  234. })
  235. },
  236. goodsGuige(item){
  237. this.itemDefault=item
  238. },
  239. goSubmit(){
  240. this.itemDefault.goodsnum=this.goodsnum
  241. this.itemDefault.goodsname=this.detail.title
  242. this.itemDefault.itemId=this.detail.id
  243. this.itemDefault.mainImgUrl=this.detail.mainImgUrl
  244. uni.setStorage({
  245. key: 'itemDefault',
  246. data: this.itemDefault,
  247. success: function () {
  248. uni.navigateTo({
  249. url:'maintainSubmit'
  250. })
  251. }
  252. });
  253. },
  254. closeTk(){
  255. this.tkShow=false
  256. },
  257. keyongClose(){
  258. this.keyongShow=false;
  259. },
  260. keyongFn(){
  261. this.keyongShow=true;
  262. },
  263. submitFn(){
  264. if(this.itemDefault){
  265. this.tkShow=true
  266. }else{
  267. uni.showToast({
  268. title: '请选择商品规格',
  269. icon:'none',
  270. duration: 3000
  271. });
  272. /* uni.showModal({
  273. title: '提示',
  274. content:"请选择商品规格",
  275. success: function(resTKk) {
  276. }
  277. }); */
  278. }
  279. },
  280. calculation(type){
  281. if(type==1){
  282. if(this.goodsnum>1){
  283. this.goodsnum--
  284. }
  285. }else{
  286. console.log("+++")
  287. this.goodsnum++
  288. }
  289. },
  290. getdetail(){
  291. uni.showLoading({
  292. title: '加载中'
  293. })
  294. this.$http('openMaintain/detail/'+this.maintainId, {
  295. /* maintainId:this.maintainId */
  296. }, 'GET').then(res => {
  297. uni.hideLoading();
  298. this.detail=res.data
  299. this.detail.packageItems.forEach(item=>{
  300. if(item.isDefault==1){
  301. this.itemDefault=item
  302. }
  303. if(item.content){
  304. item.content=item.content.replace(/\<img/gi, '<img style="max-width:100% !important;height:auto" ');
  305. }
  306. })
  307. if(this.detail.detailContent){
  308. this.detail.detailContent=this.detail.detailContent.replace(/\<img/gi, '<img style="max-width:100% !important;height:auto" ');
  309. }
  310. })
  311. },
  312. }
  313. }
  314. </script>
  315. <style scoped lang="less">
  316. .box {
  317. width: 100vw;
  318. min-height: 100vh;
  319. background: #F4F4F4;
  320. }
  321. .swiper{
  322. width: 750rpx;
  323. height: 700rpx;
  324. background: #FFFFFF;
  325. /* border-bottom: 1px solid #EEEEEE; */
  326. }
  327. .swiper-item{
  328. width: 750rpx;
  329. height: 700rpx;
  330. }
  331. .swiper-itemImg{
  332. width: 750rpx;
  333. height: 700rpx;
  334. }
  335. .goodsPrice{
  336. display: flex;
  337. }
  338. .goodsPrice1{
  339. font-size: 24rpx;
  340. font-weight: 400;
  341. color: #EC0F0A;
  342. padding-top: 14rpx;
  343. padding-right: 14rpx;
  344. }
  345. .goodsPrice2{
  346. font-size: 28rpx;
  347. font-weight: 400;
  348. color: #EC0F0A;
  349. padding-top: 10rpx;
  350. }
  351. .goodsPrice3{
  352. font-size: 44rpx;
  353. font-weight: 500;
  354. color: #EC0F0A;
  355. }
  356. .goodsPrice4{
  357. font-size: 24rpx;
  358. font-weight: 400;
  359. color: #999999;
  360. padding-top: 14rpx;
  361. text-decoration:line-through;
  362. padding-left: 10rpx;
  363. }
  364. .Sold{
  365. font-weight: 400;
  366. color: #999999;
  367. font-size: 24rpx;
  368. padding-top: 18rpx;
  369. }
  370. .goodsName{
  371. font-size: 30rpx;
  372. line-height: 42rpx;
  373. font-weight: 500;
  374. color: #333333;
  375. padding: 20rpx 24rpx;
  376. padding-top: 0;
  377. padding-bottom: 16rpx;
  378. }
  379. .goodsMd{
  380. font-weight: 400;
  381. color: #999999;
  382. font-size: 26rpx;
  383. padding: 0 24rpx;
  384. padding-bottom: 20rpx;
  385. }
  386. .shopCont{
  387. background: #FFFFFF;
  388. }
  389. .shopCtop{
  390. display: flex;
  391. padding: 20rpx 24rpx 6rpx 20rpx;
  392. justify-content: space-between;
  393. background: #FFFFFF;
  394. }
  395. .goodsMSBox{
  396. display: flex;padding-left: 24rpx;
  397. }
  398. .goodsMs{
  399. font-size: 18rpx;
  400. color: #FF063A;
  401. padding: 4rpx 8rpx;
  402. border-radius: 6rpx;
  403. border: 1px solid #FF063A;
  404. margin-right: 16rpx;
  405. }
  406. .timeBox{
  407. display: flex;justify-content: space-between;
  408. padding: 20rpx 24rpx;
  409. font-size: 26rpx;
  410. color: #666E80;
  411. }
  412. .shareIcon{
  413. width: 33rpx;height: 33rpx;margin-left: 10rpx;
  414. }
  415. .shareBox{
  416. display: flex;font-size: 24rpx;
  417. color: #666666;padding-top: 6rpx;
  418. line-height: 33rpx;
  419. }
  420. .jtIcon{
  421. width: 24rpx;height: 24rpx;margin-top: 6rpx;
  422. }
  423. .buyLine{
  424. display: flex;justify-content: space-between;
  425. padding: 15rpx 24rpx;font-size: 26rpx;
  426. color: #666E80;
  427. }
  428. .buyBOx{
  429. background: #FFFFFF;margin-top: 20rpx;
  430. }
  431. .buyData{
  432. color: #222222;display: flex;
  433. }
  434. .goodsGuige{
  435. /* width: 150rpx; */
  436. height: 50rpx;line-height: 48rpx;
  437. background: #F6F6F6;
  438. border-radius: 5rpx;
  439. font-size: 24rpx;
  440. color: #222222;text-align: center;
  441. margin-left: 24rpx;
  442. padding: 0 20rpx;
  443. display: inline-block;
  444. }
  445. .activeGuige{
  446. width: 146rpx;
  447. height: 46rpx;line-height: 46rpx;
  448. border: 2rpx solid #FF0035;
  449. border-radius: 5rpx;
  450. font-size: 24rpx;
  451. color: #FF0035;text-align: center;
  452. background: #ffffff;
  453. }
  454. .numJsbox{
  455. display: flex;overflow: hidden;
  456. }
  457. .buyCont{
  458. position: absolute;
  459. left: 0;
  460. bottom: 0;
  461. width: 750rpx;
  462. height: 688rpx;
  463. background: #FFFFFF;
  464. border-radius: 26rpx 26rpx 0px 0px;
  465. }
  466. .buyNumBox{
  467. padding: 30rpx;
  468. padding-top: 10rpx;
  469. padding-bottom: 70rpx;
  470. }
  471. .buyContCh{
  472. position: absolute;
  473. top: 53rpx;
  474. right: 36rpx;
  475. width: 36rpx;
  476. height: 36rpx;
  477. }
  478. .goodsnum{
  479. width: 44rpx;
  480. height: 44rpx;
  481. background: #F4F5F7;
  482. line-height: 44rpx;
  483. text-align: center;
  484. font-weight: 500;
  485. color: #333333;
  486. font-size: 24rpx;
  487. margin: 0 4rpx;
  488. border-left:1px solid #C0C0C0;
  489. border-right:1px solid #C0C0C0;
  490. }
  491. .goodsnumInput{
  492. width: 44rpx;
  493. height: 44rpx;
  494. background: #FFFFFF;
  495. line-height: 44rpx;
  496. text-align: center;
  497. font-weight: 500;
  498. color: #333333;
  499. font-size: 24rpx;
  500. }
  501. .numJj{
  502. width: 44rpx;
  503. height: 44rpx;
  504. background: #ffffff;
  505. border-radius: 0px 6rpx 6rpx 0px;
  506. text-align: center;
  507. line-height: 44rpx;
  508. font-size: 32rpx;
  509. color: #999999;
  510. }
  511. .numJsbox{
  512. border: 1px solid #C0C0C0;
  513. border-radius: 6rpx;
  514. }
  515. .mealBox{
  516. background: #FFFFFF;
  517. padding: 20rpx 24rpx;
  518. margin-top: 20rpx;
  519. }
  520. .fwlcTitle{
  521. color: #666666;font-size: 30rpx;font-weight: 500;
  522. }
  523. .mealTop{
  524. display: flex;
  525. justify-content: space-between;
  526. height: 72rpx;
  527. line-height: 72rpx;
  528. font-weight: 500;
  529. font-size: 26rpx;
  530. color: #222222;
  531. font-size: 26rpx;
  532. padding: 0 20rpx;
  533. }
  534. .mealNum{
  535. text-align: center;
  536. width: 120rpx;
  537. }
  538. .mealexpire{
  539. text-align: center; width: 120rpx;
  540. }
  541. .mealName{
  542. width: 460rpx;
  543. }
  544. .mealTop2{
  545. display: flex;
  546. justify-content: space-between;
  547. height: 72rpx;
  548. line-height: 72rpx;
  549. font-weight: 500;
  550. font-size: 26rpx;
  551. color: #222222;
  552. font-size: 26rpx;
  553. padding: 0 20rpx;
  554. background: #FFF6DB;
  555. }
  556. .mealXj{
  557. background: #FFFCF3;
  558. }
  559. .xjLine{
  560. display: flex;
  561. font-weight: 500;
  562. font-size: 26rpx;
  563. color: #222222;
  564. padding: 20rpx 20rpx;
  565. }
  566. .xjyd{
  567. width: 8rpx;
  568. height: 8rpx;
  569. background: #FABF1B;
  570. border-radius: 50rpx;
  571. margin-top: 12rpx;
  572. margin-right: 10rpx;
  573. }
  574. .mealMs{
  575. background: #FFFFFF;
  576. padding: 20rpx;
  577. font-weight: 400;
  578. font-size: 24rpx;
  579. color: #9A9A9A;
  580. line-height: 38rpx;
  581. }
  582. .goodsDetailTitle{
  583. color: #666666;
  584. font-size: 30rpx;
  585. font-weight: 500;
  586. background: #FFFFFF;
  587. padding: 20rpx 24rpx;
  588. }
  589. .goodsDetail{
  590. margin-top: 20rpx;
  591. padding-bottom: 30rpx;
  592. background: #FFFFFF;
  593. }
  594. .goodsDetail img{
  595. width: 750rpx;
  596. }
  597. .goodsDetail image{
  598. width: 750rpx;
  599. }.bottom{
  600. background: #FFFFFF;
  601. display: flex;
  602. justify-content: space-between;
  603. position: fixed;
  604. width: 100%;
  605. padding:30rpx 0;
  606. padding-bottom: constant(safe-area-inset-bottom);
  607. padding-bottom: env(safe-area-inset-bottom);
  608. left: 0;bottom: 0;
  609. box-shadow: 0rpx -2rpx 16rpx 0rpx rgba(153,153,153,0.2);
  610. }
  611. .bleft{
  612. font-weight: 500;
  613. color: #222222;
  614. padding-left: 50rpx;
  615. }
  616. .Btn{
  617. width: 532rpx;text-align: center;
  618. height: 86rpx;line-height: 86rpx;
  619. /* background: #FCD903; */
  620. border-radius: 43rpx;
  621. font-size: 32rpx;
  622. color: #110B01;
  623. margin-right: 36rpx;
  624. }
  625. .kefuIcon{
  626. width: 50rpx;height: 50rpx;
  627. }
  628. .bottomTianc{
  629. height: 160rpx;
  630. padding-bottom: constant(safe-area-inset-bottom);
  631. padding-bottom: env(safe-area-inset-bottom);
  632. }
  633. .carTis{
  634. color: #EC0F0A;font-size: 20rpx;
  635. text-align: right;
  636. padding-right: 24rpx;
  637. }
  638. .guigeBox{
  639. /* height: 50rpx; */
  640. height: 52rpx;
  641. width: 500rpx;
  642. overflow: hidden;
  643. }
  644. .guigeBox2{
  645. flex-wrap: nowrap;justify-content: flex-end;white-space: nowrap;
  646. height: 50rpx;
  647. }
  648. .tkBox{
  649. width: 100vw;height: 100vh;background: rgba(0,0,0,0.5);
  650. position: fixed;left: 0;top: 0;
  651. z-index: 11;
  652. }
  653. .tkCont{
  654. width: 750rpx;
  655. height: 611rpx;
  656. background: #FFFFFF;
  657. border-radius: 28rpx 28rpx 0rpx 0rpx;
  658. position: absolute;
  659. left: 0;bottom: 0;
  660. padding-bottom: constant(safe-area-inset-bottom);
  661. padding-bottom: env(safe-area-inset-bottom);
  662. }
  663. .tkCont2{
  664. width: 750rpx;
  665. height:50vh;
  666. background: #FFFFFF;
  667. border-radius: 28rpx 28rpx 0rpx 0rpx;
  668. position: absolute;
  669. left: 0;bottom: 0;
  670. padding-bottom: constant(safe-area-inset-bottom);
  671. padding-bottom: env(safe-area-inset-bottom);
  672. overflow-y: auto;
  673. }
  674. .tkTop{
  675. display: flex;padding: 40rpx 24rpx;
  676. padding-bottom: 25rpx;
  677. }
  678. .tkImg{
  679. width: 160rpx;
  680. height: 160rpx;border-radius: 13rpx;
  681. }
  682. .tkName{
  683. font-size: 30rpx;
  684. color: #222222;
  685. line-height: 42rpx;
  686. }
  687. .tkNameBox{
  688. padding-left: 24rpx;width: 500rpx;
  689. }
  690. .chahao{
  691. width: 22rpx;height: 22rpx;padding-top: 10rpx;
  692. }
  693. .buyLine{
  694. display: flex;justify-content: space-between;
  695. padding: 15rpx 24rpx;font-size: 26rpx;
  696. color: #666E80;
  697. }
  698. .buyBOx{
  699. background: #FFFFFF;margin-top: 20rpx;
  700. }
  701. .buyData{
  702. color: #222222;display: flex;
  703. }
  704. .carModelLine{
  705. max-width: 560rpx;
  706. white-space: nowrap; /* 确保文本在一行内显示 */
  707. overflow: hidden; /* 超出容器部分隐藏 */
  708. text-overflow: ellipsis
  709. }
  710. .activeGuige{
  711. width: 146rpx;
  712. height: 46rpx;line-height: 46rpx;
  713. border: 2rpx solid #FF0035;
  714. border-radius: 5rpx;
  715. font-size: 24rpx;
  716. color: #FF0035;text-align: center;
  717. background: #ffffff;
  718. font-weight: 500;
  719. }
  720. .numJsbox{
  721. display: flex;
  722. }
  723. .buyCont{
  724. position: absolute;
  725. left: 0;
  726. bottom: 0;
  727. width: 750rpx;
  728. height: 688rpx;
  729. background: #FFFFFF;
  730. border-radius: 26rpx 26rpx 0px 0px;
  731. }
  732. .buyNumBox{
  733. padding: 30rpx;
  734. padding-top: 10rpx;
  735. padding-bottom: 70rpx;
  736. }
  737. .buyContCh{
  738. position: absolute;
  739. top: 53rpx;
  740. right: 36rpx;
  741. width: 36rpx;
  742. height: 36rpx;
  743. }
  744. .tkBottomBtn{
  745. width: 661rpx;text-align: center;
  746. height: 86rpx;line-height: 86rpx;
  747. /* background: #FCD903; */
  748. border-radius: 43rpx;
  749. font-size: 32rpx;
  750. color: #110B01;
  751. }
  752. .tkBottom{
  753. width: 750rpx;
  754. height: 146rpx;
  755. background: #FFFFFF;
  756. box-shadow: 0rpx -2rpx 16rpx 0rpx rgba(153,153,153,0.2);
  757. padding-bottom: constant(safe-area-inset-bottom);
  758. padding-bottom: env(safe-area-inset-bottom);
  759. display: flex;justify-content: center;align-items: center;
  760. position: absolute;left: 0;bottom: 0;
  761. }
  762. .tkTOp2{
  763. display: flex;justify-content: space-between;
  764. font-size: 30rpx;
  765. padding: 30rpx;
  766. }
  767. .keyongLine{
  768. padding: 16rpx 24rpx;
  769. font-size: 26rpx;
  770. border-bottom: 1px solid #eaeaea;
  771. }
  772. .mealBox img{
  773. width: 100%;
  774. }
  775. .hjt{
  776. width: 12rpx;height: 24rpx;
  777. margin-top: 6rpx;margin-left: 10rpx;
  778. }
  779. </style>