index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. <template>
  2. <view class="content">
  3. <view class="indexTop">
  4. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  5. <view class="indexnav">首页</view>
  6. </view>
  7. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  8. <view style="height: 43px;"></view>
  9. <view class="topBox"></view>
  10. <view class="yuanhu"></view>
  11. <view class="shoptopbox2" v-if="!carInfo">
  12. <view class="carinfoBox2">
  13. <view class="carinfoBoxNocar" @click="addCar">
  14. <img src="../../static/timg/addcar.png" alt="" class="carinfonocarIcon">
  15. <view class="carinfoBoxNocarRight">
  16. <view class="carinfoBoxNocarRightTitle">添加我的爱车</view>
  17. <view class="carinfoBoxNocarRightMS">按照车型推荐合适的商品</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="shoptopbox" v-if="carInfo">
  23. <view class="carinfoBox" >
  24. <view class="carinfoBoxTop">
  25. <img :src="carInfo.brandLogo" alt="" class="carLogo" v-if="carInfo.brandLogo">
  26. <img src="../../static/timg/nocar.png" alt="" class="carLogo" v-else>
  27. <view class="carinfoBoxTopCont">
  28. <view class="carinfoBoxTopContTop">
  29. <view class="carInfoplateNumber">{{carInfo.plateNumber}}</view>
  30. <view class="carTnfomilage" v-if="carInfo.milage">{{carInfo.milage}}km</view>
  31. </view>
  32. <view class="carInfocarModel" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  33. <view class="carInfocarModel" v-else>暂无</view>
  34. </view>
  35. <view class="carinfoBoxTopRight" @click="changeCar">
  36. <img src="../../static/timg/icon_change@2x.png" alt="" class="carinfoBoxTopRightIcon">
  37. <view class="huancheBtn">换车</view>
  38. </view>
  39. </view>
  40. <view class="carInfoBottom">
  41. <view class="carInfoBottomLine">
  42. <view class="carInfoBottomLineTitle">下次保养里程</view>
  43. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareMilage">{{carInfo.nextCareMilage}}</view>
  44. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  45. </view>
  46. <view class="carInfoBottomLine">
  47. <view class="carInfoBottomLineTitle">下次保养日期</view>
  48. <view class="carInfoBottomLineTxt" v-if="carInfo.nextCareDate">{{carInfo.nextCareDate.slice(0,10)}}</view>
  49. <view class="carInfoBottomLineTxt" v-else>暂无</view>
  50. </view>
  51. <view class="carInfoBottomLine">
  52. <view class="carInfoBottomLineTitle">保养手册</view>
  53. <view class="carInfoBottomLineTxt" @click="information">点击查看</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 服务顾问 -->
  59. <view class="adviser" v-if="homeCardList.openMUsers" @click="goRoter">
  60. <view class="adviserLeft">
  61. <img src="../../static/timg/pic_def_ava@2x.png" alt="" class="advisertx">
  62. <view class="adviserNema">{{homeCardList.openMUsers.operatorName}}</view>
  63. <view class="adviserms">服务顾问</view>
  64. </view>
  65. <img src="../../static/timg/icon_arrow_right.png" alt="" class="adviserJt">
  66. </view>
  67. <!-- 中间功能应用模块 -->
  68. <view class="modular" v-if="homeCardList.application.length>0">
  69. <view class="swiper-item">
  70. <view class="itemLine" @click="goRoter('onlineBooking')" v-for="(item,index) in homeCardList.application">
  71. <view><img :src="item.icon" alt="" class="itemImg"></view>
  72. <view class="Menusline">{{item.name}}</view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="advertisement" v-if="homeCardList.ad1.length>0">
  77. <swiper class="swiper2" circular :autoplay="false" :interval="interval"
  78. :duration="duration" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#D53533">
  79. <swiper-item v-for="(item,index) in homeCardList.ad1">
  80. <view class="swiper-item2" @click="goRoter('paint')">
  81. <image class="swiper-item2Img" :src="item.icon" mode=""></image>
  82. </view>
  83. </swiper-item>
  84. </swiper>
  85. </view>
  86. <!-- 热门活动 -->
  87. <view class="Hot">
  88. <view class="hotTop">
  89. <view class="hotLeft">
  90. <view class="hotSx"></view>
  91. <view class="hottitle">热门活动</view>
  92. </view>
  93. <view class="hotRight">
  94. <view class="hotMore">更多</view>
  95. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  96. </view>
  97. </view>
  98. <view class="hotLine" @click="goRoter('paint')">
  99. <view class="hotLineTop">
  100. <image class="hotLineTopImg" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  101. <view class="hotlineTimebox">
  102. <view class="hotlinestate1">进行中</view>
  103. <view class="hotTime">2022.01.21-2022.02.14</view>
  104. </view>
  105. </view>
  106. <view class="hotName">博世 7月促【CX-200715003】</view>
  107. </view>
  108. <view class="hotLine">
  109. <view class="hotLineTop">
  110. <image class="hotLineTopImg" src="http://phone.66km.cn:8088/thFiles/C678448A-C874-4B42-9EAE-4F8F21D71D27.jpg" mode=""></image>
  111. <view class="hotlineTimebox">
  112. <view class="hotlinestate2">未开始</view>
  113. <view class="hotTime">2022.01.21-2022.02.14</view>
  114. </view>
  115. </view>
  116. <view class="hotName">博世 7月促【CX-200715003】</view>
  117. </view>
  118. </view>
  119. <!-- 热门商品 -->
  120. <view class="Hot">
  121. <view class="hotTop">
  122. <view class="hotLeft">
  123. <view class="hotSx"></view>
  124. <view class="hottitle">热门商品</view>
  125. </view>
  126. <view class="hotRight">
  127. <view class="hotMore">更多</view>
  128. <img src="../../static/timg/icon_arrow_right.png" alt="" class="hotMoreJt">
  129. </view>
  130. </view>
  131. <view class="hotGoodsLine" v-for="(item,index) in 5">
  132. <view>
  133. <image src="../../static/timg/nocar.png" mode="" class="hotGoodsLineImg"></image>
  134. </view>
  135. <view class="hotGoodsLineRIght">
  136. <view class="goodsName">德国马牌 Continental 全新升级6代 TechContct德国马牌 Continental 全新升级6代 TechContct</view>
  137. <view class="Sold">已售 999</view>
  138. <view class="goodsPrice">
  139. <view class="goodsPrice1">店庆价</view>
  140. <view class="goodsPrice2">¥</view>
  141. <view class="goodsPrice3">999</view>
  142. <view class="goodsPrice3">¥893</view>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. <view style="height: 60rpx;"></view>
  148. <!-- 手机号授权 -->
  149. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  150. <view class="authorizCont" @click.stop="">
  151. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  152. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  153. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  154. </view>
  155. <view style="text-align: center;padding-top: 56rpx;">
  156. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  157. </view>
  158. </view>
  159. <!-- <view @getphonenumber="decryptPhoneNumber" >shopId:{{shopId}}</view>
  160. -->
  161. </view>
  162. </template>
  163. <script>
  164. export default {
  165. data() {
  166. return {
  167. shopId: '',
  168. url:'',
  169. wxOpenData:'',
  170. code:'',
  171. carInfo:'',
  172. homeCardList:'',
  173. authorizShow:false,
  174. miniAppName:'',
  175. iStatusBarHeight:'',
  176. }
  177. },
  178. onLoad() {
  179. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  180. var that=this;
  181. this.$common.getExtStoreId()
  182. var ext=this.$common.getExtStoreId();
  183. //console.log( String(Date.now()))
  184. this.shopId=ext.shopId;
  185. this.url=ext.url;
  186. // uni.setStorage({
  187. // key: 'extdata',
  188. // data: {
  189. // shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
  190. // },
  191. // success: function () {
  192. // that.uniLogin()
  193. // }
  194. // });
  195. //this.userInfo = uni.getStorageSync("userInfo");
  196. this.userInfo=this.$store.state.userInfo
  197. if(this.userInfo){
  198. //this.wxOpenData = uni.getStorageSync("wxOpenData");
  199. this.getCarList();
  200. this.queryHomeCardList()
  201. }else{
  202. this.uniLogin()
  203. }
  204. },
  205. onShow() {
  206. var indexaddcar = uni.getStorageSync("indexaddcar")
  207. if(indexaddcar==1){
  208. uni.removeStorageSync('indexaddcar');
  209. this.getCarList();
  210. }else{
  211. this.carInfo=this.$store.state.carInfo
  212. }
  213. },
  214. methods: {
  215. addCar(){
  216. if(!this.userInfo){
  217. this.authorizShow=true;
  218. }else{
  219. uni.navigateTo({
  220. url:'../user/addCar/addCar?type=1'
  221. })
  222. }
  223. },
  224. information(){
  225. },
  226. changeCar(){
  227. uni.navigateTo({
  228. url:'../user/addCar/cailist'
  229. })
  230. },
  231. goRoter(url){
  232. if(!this.userInfo){
  233. this.authorizShow=true;
  234. }else{
  235. uni.navigateTo({
  236. url:url
  237. })
  238. }
  239. },
  240. decryptPhoneNumber: function(e) {
  241. console.log(e);
  242. this.code=e.detail.code
  243. this.wxPhoneLogin()
  244. this.authorizShow=false;
  245. },
  246. wxgologin(){
  247. var that=this;
  248. uni.getUserProfile({
  249. lang:'zh_CN',
  250. desc:'登录',
  251. success:(res)=>{
  252. console.log(res);
  253. that.wxdata=res;
  254. uni.setStorage({
  255. key: 'wxdata',
  256. data: res,
  257. success: function () {
  258. that.uniLogin()
  259. }
  260. });
  261. },
  262. fail:(res)=>{
  263. console.log(res)
  264. }
  265. });
  266. },
  267. uniLogin(){
  268. var that=this;
  269. uni.login({
  270. provider: 'weixin',
  271. success: function (loginRes) {
  272. console.log(loginRes);
  273. that.getWxOpenID(loginRes)
  274. }
  275. });
  276. },
  277. getWxOpenID(e){
  278. var that=this;
  279. uni.showLoading({
  280. title: '加载中'
  281. })
  282. this.$http('miniApp2/sys/getWxOpenID', {
  283. code:e.code,
  284. unionId:'EEADACCD-8A19-499D-8AD7-6975D2C93243'
  285. },'GET').then(res => {
  286. this.wxOpenData=res.data;
  287. that.queryHomeCardList()
  288. //that.wxPhoneLogin()
  289. this.$store.commit('mutationswxOpenData', that.wxOpenData)
  290. uni.setStorage({
  291. key: 'wxOpenData',
  292. data: that.wxOpenData,
  293. success: function () {
  294. // that.uniLogin()
  295. }
  296. });
  297. if(this.wxOpenData.loginInfo){
  298. this.$store.commit('mutationsuserInfo', that.wxOpenData.loginInfo.openUser)
  299. this.userInfo=that.wxOpenData.loginInfo.openUser
  300. uni.setStorage({
  301. key: 'userInfo',
  302. data: that.wxOpenData.loginInfo.openUser,
  303. success: function () {
  304. that.getCarList()
  305. }
  306. });
  307. }else{
  308. this.authorizShow=true;
  309. }
  310. })
  311. },
  312. wxPhoneLogin(){
  313. var that=this;
  314. this.$http('miniApp2/sys/wxPhoneLogin', {
  315. appId:'wx33053a645546ec31',
  316. unionId:'EEADACCD-8A19-499D-8AD7-6975D2C93243',
  317. code:this.code,
  318. openId:this.wxOpenData.openid
  319. },'POST').then(res => {
  320. var data = res.data;
  321. if(data.loginInfo){
  322. this.userInfo=data.loginInfo.openUser;
  323. this.$store.commit('mutationsuserInfo', this.userInfo);
  324. this.$store.commit('mutationswxOpenData', data.loginInfo)
  325. uni.setStorage({
  326. key: 'userInfo',
  327. data: data.loginInfo.openUser,
  328. success: function () {
  329. that.getCarList()
  330. that.queryHomeCardList()
  331. }
  332. });
  333. }
  334. })
  335. },
  336. getCarList(){
  337. this.$http('opencarOwnerHome/queryCarInfoList', {
  338. },'GET').then(res => {
  339. if(res.code==401){
  340. this.uniLogin()
  341. }else{
  342. this.carInfo=res.data[0]
  343. this.$store.commit('mutationscarInfo', this.carInfo)
  344. }
  345. })
  346. },
  347. queryHomeCardList(){
  348. //console.log(this.wxOpenData)
  349. this.$http('openHome/queryHomeCardList', {
  350. unionId:'EEADACCD-8A19-499D-8AD7-6975D2C93243'
  351. },'GET').then(res => {
  352. uni.hideLoading();
  353. this.homeCardList=res.data
  354. })
  355. }
  356. }
  357. }
  358. </script>
  359. <style scoped>
  360. .indexTop{
  361. background: #D53533;
  362. width: 750rpx;
  363. position: fixed;
  364. top: 0;
  365. left: 0;
  366. z-index: 11;
  367. }
  368. .indexnav{
  369. height: 44px;
  370. line-height: 44px;
  371. text-align: center;
  372. font-size: 36rpx;
  373. color: #FFFFFF;
  374. }
  375. .authorizBox{
  376. width: 100vw;
  377. height: 100vh;
  378. background: rgba(0, 0, 0, 0.5);
  379. position: fixed;
  380. top: 0;
  381. left: 0;
  382. }
  383. .authorizCont{
  384. margin-top: 30vh;
  385. width: 564rpx;
  386. height: 408rpx;
  387. background: #FFFFFF;
  388. border-radius: 24rpx;
  389. margin-left: 93rpx;
  390. position: relative;
  391. }
  392. .authorizCloseImg{
  393. width: 62rpx;
  394. height: 62rpx;
  395. }
  396. .sqLogoBox{
  397. width: 180rpx;
  398. height: 180rpx;
  399. background: #FFFFFF;
  400. border-radius: 90rpx;
  401. text-align: center;
  402. position: absolute;
  403. top: -50rpx;
  404. left: 192rpx;
  405. }
  406. .authorizName{
  407. color: #333333;
  408. line-height: 42rpx;
  409. font-size: 30rpx;
  410. text-align: center;
  411. padding-top: 58rpx;
  412. }
  413. .authorizMs{
  414. color: #999999;
  415. line-height: 36rpx;
  416. font-size: 26rpx;
  417. width: 452rpx;
  418. padding-top: 24rpx;
  419. text-align: center;
  420. margin-left: 56rpx;
  421. }
  422. .authorizContbutton{
  423. width: 422rpx;
  424. height: 88rpx;
  425. background: #D53533;
  426. border-radius: 44rpx;
  427. line-height: 88rpx;
  428. text-align: center;
  429. font-size:30rpx;
  430. color: #FFFFFF;
  431. margin-top: 62rpx;
  432. margin-left:71rpx;
  433. }
  434. .content{
  435. min-height: 100vh;
  436. background: #F4F5F7;
  437. }
  438. .topBox{
  439. width: 750rpx;
  440. height: 200rpx;
  441. background: #D53533;
  442. }
  443. .yuanhu{
  444. width: 750rpx;
  445. height: 50rpx;
  446. background: #D53533;
  447. border-radius: 0 0 100% 100%;
  448. }
  449. .carinfoBox{
  450. width: 702rpx;
  451. height: 250rpx;
  452. background: #FFFFFF;
  453. border-radius: 10rpx;
  454. margin-left: 24rpx;
  455. overflow: hidden;
  456. }
  457. .carinfoBox2{
  458. width: 702rpx;
  459. height: 180rpx;
  460. background: #FFFFFF;
  461. border-radius: 10rpx;
  462. margin-left: 24rpx;
  463. overflow: hidden;
  464. }
  465. .carinfoBox2{
  466. }
  467. .carinfoBox .carLogo{
  468. width: 72rpx;height: 72rpx;
  469. }
  470. .carinfoBoxTop{
  471. display: flex;
  472. justify-content: space-between;
  473. padding-top: 29rpx;
  474. padding-left: 24rpx;
  475. padding-right: 20rpx;
  476. padding-bottom: 24rpx;
  477. border: 1px solid #EEEEEE;
  478. }
  479. .carinfoBoxTopCont{
  480. width: 454rpx;
  481. }
  482. .carinfoBoxTopContTop{
  483. display: flex;
  484. }
  485. .carInfoplateNumber{
  486. font-weight: 500;
  487. color: #3C3C3C;
  488. font-size: 30rpx;
  489. line-height: 42rpx;
  490. padding-right: 16rpx;
  491. }
  492. .carTnfomilage{
  493. color: #F19D01;
  494. font-size: 22rpx;
  495. padding: 0rpx 10rpx;
  496. border-radius: 4rpx;
  497. border: 1px solid #F19D01;
  498. height: 32rpx;
  499. line-height: 34rpx;
  500. margin-top: 2rpx;
  501. margin-left: 2rpx;
  502. }
  503. .carInfocarModel{
  504. width: 454rpx;
  505. color: #666666;
  506. font-size: 26rpx;
  507. white-space: nowrap;
  508. overflow: hidden;
  509. text-overflow: ellipsis;
  510. }
  511. .carinfoBoxTopRight{
  512. display: flex;padding-top: 25rpx;
  513. }
  514. .carinfoBoxTopRightIcon{
  515. width: 29rpx;
  516. height: 31rpx;
  517. }
  518. .huancheBtn{
  519. color: #666666; font-size: 26rpx;line-height: 31rpx;
  520. padding-left: 10rpx;
  521. }
  522. .carInfoBottom{
  523. display: flex;
  524. justify-content: space-around;
  525. }
  526. .carInfoBottomLineTitle{
  527. color: #999999;font-size: 24rpx;
  528. text-align: center;
  529. padding-top: 24rpx;
  530. }
  531. .carInfoBottomLineTxt{
  532. color: #3C3C3C;
  533. font-size: 26rpx;
  534. padding-top: 5rpx;
  535. text-align: center;
  536. }
  537. .carinfonocarIcon{
  538. width: 72rpx;
  539. height: 72rpx;
  540. }
  541. .carinfoBoxNocar{
  542. display: flex;
  543. padding-top: 50rpx;
  544. padding-left: 20rpx;
  545. }
  546. .carinfoBoxNocarRightTitle{
  547. font-weight: 500;
  548. color: #3C3C3C;
  549. font-size: 30rpx;
  550. }
  551. .carinfoBoxNocarRightMS{
  552. color: #666666;
  553. font-size: 26rpx;
  554. }
  555. .carinfoBoxNocarRight{
  556. padding-left: 24rpx;
  557. }
  558. .shoptopbox{
  559. margin-top: -200rpx;
  560. }
  561. .shoptopbox2{
  562. margin-top: -170rpx;
  563. }
  564. .adviser{
  565. width: 662rpx;
  566. margin-left: 24rpx;
  567. background: #FFFFFF;
  568. border-radius: 10px;
  569. display: flex;
  570. justify-content: space-between;
  571. padding: 18rpx 20rpx;
  572. margin-top: 20rpx;
  573. }
  574. .adviserLeft{
  575. display: flex;
  576. }
  577. .advisertx{
  578. width: 62rpx;height: 62rpx;
  579. }
  580. .adviserNema{
  581. color: #333333;font-size: 30rpx;
  582. line-height: 62rpx;padding-left: 24rpx;
  583. }
  584. .adviserms{
  585. width: 118rpx;
  586. height: 36rpx;
  587. border-radius: 4rpx;
  588. border: 1px solid #D53533;
  589. line-height: 36rpx;
  590. text-align: center;
  591. margin-top: 12rpx;
  592. margin-left: 20rpx;
  593. color: #D53533;
  594. font-size: 24rpx;
  595. }
  596. .adviserJt{
  597. width: 12rpx;
  598. height: 20rpx;
  599. margin-top: 16rpx;
  600. }
  601. .modular{
  602. width: 702rpx;
  603. /* height: 313rpx; */
  604. background: #FFFFFF;
  605. border-radius: 10px;
  606. margin-top: 20rpx;
  607. margin-left: 24rpx;
  608. padding-bottom: 40rpx;
  609. }
  610. .swiper-item{
  611. display: flex;
  612. flex-wrap: wrap;
  613. }
  614. .itemImg{
  615. width: 46rpx;
  616. height: 46rpx;
  617. }
  618. .Menusline{
  619. font-size: 24rpx;
  620. color: #333333;
  621. }
  622. .itemLine{
  623. width: 20%;
  624. text-align: center;
  625. padding-top: 40rpx;
  626. }
  627. .advertisement{
  628. width: 702rpx;
  629. height: 280rpx;
  630. margin-top: 20rpx;
  631. margin-left: 24rpx;
  632. border-radius: 20rpx;
  633. }
  634. .swiper-item2{
  635. width: 702rpx;
  636. height: 280px;
  637. }
  638. .swiper-item2Img{
  639. width: 702rpx;
  640. height: 280rpx;
  641. }
  642. .hotMoreJt{
  643. width: 12rpx;
  644. height: 20rpx;
  645. margin-top: 6rpx;
  646. }
  647. .Hot{
  648. width: 702rpx;
  649. margin-top: 20rpx;
  650. margin-left: 24rpx;
  651. }
  652. .hotTop{
  653. display: flex;
  654. justify-content: space-between;
  655. padding: 6rpx 0;
  656. }
  657. .hotSx{
  658. width: 8rpx;
  659. height: 30rpx;
  660. background: #FF0000;
  661. border-radius: 5rpx;
  662. }
  663. .hotLeft{
  664. display: flex;
  665. }
  666. .hottitle{
  667. font-weight: 500;
  668. color: #333333;
  669. font-size: 30rpx;
  670. line-height: 30rpx;
  671. margin-left: 16rpx;
  672. }
  673. .hotRight{
  674. display: flex;
  675. }
  676. .hotMore{
  677. line-height: 30rpx;color: #666666;font-size: 24rpx;
  678. margin-right: 16rpx;
  679. }
  680. .hotLineTopImg{
  681. width: 702rpx;
  682. height: 280rpx;
  683. }
  684. .hotLineTop{
  685. position: relative;
  686. height: 280rpx;
  687. }
  688. .hotLine{
  689. margin-top: 20rpx;
  690. border-radius: 10rpx;
  691. background: #FFFFFF;
  692. overflow: hidden;
  693. }
  694. .hotlinestate1{
  695. width: 102rpx;
  696. height: 44rpx;
  697. background:#FBBF00 ;
  698. line-height: 44rpx;
  699. font-weight: 500;
  700. color: #333333;
  701. font-size: 24rpx;
  702. text-align: center;
  703. }
  704. .hotlinestate2{
  705. width: 102rpx;
  706. height: 44rpx;
  707. background:#FF0000 ;
  708. line-height: 44rpx;
  709. font-weight: 500;
  710. color: #FFFFFF;
  711. font-size: 24rpx;
  712. text-align: center;
  713. }
  714. .hotlineTimebox{
  715. position: absolute;
  716. left: 0;
  717. bottom: 0;
  718. background: rgba(0, 0, 0, 0.5);
  719. display: flex;
  720. }
  721. .hotTime{
  722. font-weight: 400;
  723. color: #FFFFFF;
  724. font-size: 24rpx;
  725. line-height: 44rpx;
  726. padding: 0 20rpx;
  727. }
  728. .hotName{
  729. padding: 24rpx 20rpx;
  730. color: #333333;
  731. line-height: 40rpx;
  732. font-size: 28rpx;
  733. }
  734. .hotGoodsLine{
  735. margin-top: 20rpx;
  736. padding: 20rpx;
  737. background: #FFFFFF;
  738. border-radius: 16rpx;
  739. display: flex;
  740. }
  741. .hotGoodsLineImg{
  742. width: 208rpx;
  743. height: 194rpx;
  744. border-radius: 16rpx;
  745. border: 1px solid #EEEEEE;
  746. }
  747. .goodsName{
  748. font-size: 28rpx;
  749. font-family: PingFangSC-Regular, PingFang SC;
  750. font-weight: 400;
  751. color: #333333;
  752. line-height: 40rpx;
  753. text-overflow: -o-ellipsis-lastline;
  754. overflow: hidden;
  755. text-overflow: ellipsis;
  756. display: -webkit-box;
  757. -webkit-line-clamp: 2;
  758. line-clamp: 2;
  759. -webkit-box-orient: vertical;
  760. }
  761. .hotGoodsLineRIght{
  762. padding-left: 24rpx;
  763. }
  764. .goodsPrice{
  765. display: flex;
  766. padding-top: 10rpx;
  767. }
  768. .goodsPrice1{
  769. font-size: 24rpx;
  770. font-weight: 400;
  771. color: #FF0000;
  772. }
  773. .goodsPrice2{
  774. font-size: 22rpx;
  775. font-weight: 400;
  776. color: #FF0000;
  777. }
  778. .goodsPrice3{
  779. font-size: 32rpx;
  780. font-weight: 400;
  781. color: #FF0000;
  782. }
  783. .goodsPrice3{
  784. font-size: 24rpx;
  785. font-weight: 400;
  786. color: #999999;
  787. }
  788. .Sold{
  789. font-weight: 400;
  790. color: #999999;
  791. font-size: 24rpx;
  792. padding-top: 8rpx;
  793. }
  794. </style>