index_mall.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880
  1. <template>
  2. <view>
  3. <!-- <headerSerch :dataConfig="headItem"></headerSerch> -->
  4. <!-- <view class="nav-bar_2">
  5. <text class="text_3">中意购</text>
  6. </view> -->
  7. <view class="custom_box" style="background: rgb(254,245,246); color: black;">
  8. <view class="sys-head">
  9. <view class="sys-bar" :style="{ height: sysHeight }"></view>
  10. <view class="sys-title">中意购</view>
  11. <view class="bg"></view>
  12. </view>
  13. </view>
  14. <view class="index_body" :style="{ top: sysHeightTop}">
  15. <view class="block_2 flex-row justify-between" @click="changeAddress()">
  16. <view class="image-text_9 flex-row justify-between">
  17. <image class="icon_1" referrerpolicy="no-referrer" src="../../../static/images/addressIcon.png" />
  18. <text class="text-group_1 ">{{ markers[0].label.content }}</text>
  19. </view>
  20. <view class="image-text_10 flex-row justify-between">
  21. <text class="text-group_2">切换地点</text>
  22. <image class="icon_2" referrerpolicy="no-referrer" src="../../../static/images/quehuan.png" />
  23. </view>
  24. </view>
  25. <!-- 轮播 -->
  26. <view class="swiper-group">
  27. <u-swiper height="180" :list="swiperList" @change="e => current = e.current" :autoplay="false">
  28. <view slot="indicator" class="indicator">
  29. <view class="indicator__dot" v-for="(item, index) in swiperList" :key="index"
  30. :class="[index === current && 'indicator__dot--active']">
  31. </view>
  32. </view>
  33. </u-swiper>
  34. </view>
  35. <view class="header-group">
  36. <view class="tabs index_tabs">
  37. <u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @click="clickNav" lineColor="#B22338" :current="tabIndex"
  38. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  39. keyName="title"></u-tabs>
  40. </view>
  41. </view>
  42. <view :style="{ height: swiperHeight }">
  43. <swiper :style="{ height: swiperHeight }" :current="tabIndex" @change="swiperChange">
  44. <swiper-item v-for="(tab, i) in navigationList" :key="i">
  45. <mescroll-item ref="MescrollItem" :i="i" :index="tabIndex" :currentId="currentId" :tabs="navigationList" :height="swiperHeight" :positionInfo="positionInfo">
  46. </mescroll-item>
  47. </swiper-item>
  48. </swiper>
  49. </view>
  50. </view>
  51. <u-popup :round="15" :show="showTips" class="TipsPop" mode="center" @close="showTips = false" @open="() => { }">
  52. <view class="tips">
  53. </view>
  54. <view class="txt">
  55. <view class="tips1">
  56. 温馨提示
  57. </view>
  58. <view class="tips2">
  59. 您所在的城市没有开放团购目前仅支持的城市如下:
  60. </view>
  61. <view class="tips3">
  62. 上海市
  63. </view>
  64. <view class="tips4">
  65. 您可以通过右上角"
  66. <text class="red">切换地点</text>
  67. "定位到支持
  68. </view>
  69. <button class="tips5" @click="showTips = false">
  70. 知道了
  71. </button>
  72. </view>
  73. </u-popup>
  74. </view>
  75. </template>
  76. <script>
  77. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  78. let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
  79. import MescrollItem from "./module/mescrollUni-item.vue";
  80. import headerSerch from './components/headerSerch';
  81. import latestGroupBuying from './components/latestGroupBuying';
  82. import { getAddress } from '../../../api/wxMap'
  83. import {
  84. toLogin
  85. } from '@/libs/login.js';
  86. import {
  87. mapGetters
  88. } from "vuex";
  89. import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
  90. import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '../../../api/groupon.js'
  91. import UButton from "../../../uni_modules/uview-ui/components/u-button/u-button";
  92. export default {
  93. components: {
  94. MescrollItem,
  95. UButton,
  96. headerSerch,
  97. latestGroupBuying
  98. },
  99. data () {
  100. return {
  101. swiperHeight:'600px',
  102. tabIndex:0,
  103. sysHeight: sysHeight,
  104. sysHeightTop: sysHeightTop,
  105. showTips: false,
  106. showMap: false,
  107. markers: [{
  108. id: 1,
  109. latitude: '',//纬度,必填
  110. longitude: '',//经度,必填
  111. title: '',//标注点名
  112. width: 32,//标注图标宽度,Number类型
  113. height: 32,//标注图标高度,Number类型
  114. iconPath: '../../../static/images/addressIcon.png',//显示的图标,必填
  115. label: {
  116. content: '',
  117. textAlign: "center"
  118. }
  119. }],
  120. currentId: 0,
  121. noticeShow: false,
  122. noticeContent: '',
  123. tempArr: [],
  124. where: {
  125. zoneType: 8,
  126. current: 1,
  127. size: 20,
  128. },
  129. isSortType: 0,
  130. current: 0,
  131. noticeList: [],
  132. notice: [
  133. '寒雨连江夜入吴',
  134. '平明送客楚山孤',
  135. '洛阳亲友如相问',
  136. '一片冰心在玉壶'
  137. ],
  138. swiperList: [
  139. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  140. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  141. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  142. ],
  143. navigationList: [{
  144. title: '最新团购',
  145. id: '0'
  146. }, {
  147. title: '历史团购',
  148. id: '1'
  149. }],
  150. positionInfo: {
  151. address: '',
  152. longitude: '', //经度
  153. latitude: '', //纬度
  154. },
  155. user_latitude: '',
  156. user_longitude: ''
  157. }
  158. },
  159. computed: mapGetters(['isLogin']),
  160. created () {
  161. this.getAdsList();
  162. this.getLatestGroupon();
  163. this.getCurrentLocation()
  164. let sysInfo=uni.getSystemInfoSync();
  165. console.log("设备信息")
  166. console.log(sysInfo)
  167. this.swiperHeight= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
  168. console.log(this.swiperHeight)
  169. },
  170. onMounted (options) {
  171. },
  172. onLoad (options) {
  173. },
  174. updated () {
  175. },
  176. watch: {
  177. // isLogin: {
  178. // deep: true, //深度监听设置为 true
  179. // handler: function (newV, oldV) {
  180. // this.getAdsList()
  181. // this.getLatestGroupon()
  182. // }
  183. // }
  184. },
  185. methods: {
  186. swiperChange(e) {
  187. this.tabIndex = e.detail.current
  188. },
  189. changeAddress () {
  190. uni.chooseLocation({
  191. latitude: this.markers[0].latitude || '', /* 纬度 */
  192. longitude: this.markers[0].longitude || '', /* 经度 */
  193. success: (res) => {
  194. if (res.name){
  195. this.markers[0].latitude = res.latitude;
  196. this.markers[0].longitude =res.longitude;
  197. this.markers[0].label.content = res.name;
  198. uni.setStorageSync('user_longitude', res.longitude);
  199. uni.setStorageSync('user_latitude', res.latitude);
  200. }
  201. },
  202. fail: function (err) {
  203. console.log(err)
  204. }
  205. })
  206. },
  207. // 通过自带的方法获取到当前的经纬度,调用方法获取到地址获取到地址的中文信息
  208. getCurrentLocation () {
  209. let that = this //在uniapp中药定义一下this才能使用
  210. uni.getLocation({
  211. type: 'wgs84',
  212. success: function (res) {
  213. uni.setStorageSync('user_longitude', res.longitude);
  214. uni.setStorageSync('user_latitude', res.latitude);
  215. console.log("dizhixinxi -> ", res)
  216. that.markers[0].longitude = res.longitude;
  217. that.markers[0].latitude = res.latitude;
  218. getAddress(res.longitude, res.latitude).then(res => {
  219. //初始化地址信息
  220. console.log("++++++++++初始化地址信息++++++++++++", res)
  221. if (res.result.address_component.city.indexOf('上海') === -1){
  222. that.showTips= true;
  223. }
  224. that.positionInfo.address = res.result.address_reference.landmark_l2.title
  225. that.markers[0].label.content = res.result.address_reference.landmark_l2.title
  226. })
  227. }
  228. });
  229. },
  230. // 获取当前地址
  231. loAcquire (longitude, latitude) {
  232. let that = this;
  233. // uni.showLoading({
  234. // title: '加载中',
  235. // mask: true
  236. // });
  237. let str = `output=jsonp&key='此处输入你申请的密钥'=${latitude},${longitude}` //记得在这里要输入密钥哦!
  238. console.log(this.$jsonp);
  239. this.$jsonp('https://apis.map.qq.com/ws/geocoder/v1/?', {}).then(res => {
  240. console.log(res);
  241. uni.hideLoading();
  242. if (res.status == 0) {
  243. that.positionInfo.address = '当前位置是:' + res.result.address_component.street_number; //当前定位
  244. }
  245. })
  246. },
  247. pullResh () {
  248. // if (this.current == 0) {
  249. // uni.showLoading({ title: '刷新中' });
  250. // this.getAdsList()
  251. // this.getLatestGroupon()
  252. // } else {
  253. // this.$refs.latestGroupBuying.getGoodsPage()
  254. // }
  255. },
  256. getLatestGroupon () {
  257. // let that = this;
  258. // latestGroupon({
  259. // current: 1,
  260. // size: 1,
  261. // longitude: that.positionInfo.longitude,
  262. // latitude: that.positionInfo.latitude
  263. // }).then(res => {
  264. // console.log(res)
  265. // })
  266. },
  267. getGoodsInfo () {
  268. getGoodsInfo({
  269. current: 1,
  270. size: 50,
  271. isRecom: 1
  272. }).then(res => {
  273. this.tempArr = res.data
  274. uni.stopPullDownRefresh()
  275. uni.hideLoading();
  276. })
  277. },
  278. getBroGoodsInfo () {
  279. getGoodsInfo({
  280. current: 1,
  281. size: 50,
  282. zoneType: 6
  283. }).then(res => {
  284. this.tempArrBao = res.data
  285. })
  286. },
  287. getCategoryOne () {
  288. getCategoryOne().then(res => {
  289. this.navigationList = []
  290. let tuiJian = {
  291. title: '推荐',
  292. id: '0'
  293. }
  294. this.navigationList = res.data
  295. this.navigationList.unshift(tuiJian)
  296. })
  297. },
  298. noticeClose () {
  299. this.noticeShow = false
  300. },
  301. goNoticeDetail (value) {
  302. this.noticeContent = this.noticeList[value].content
  303. this.noticeShow = true
  304. },
  305. getNoticeList () {
  306. getNoticeList().then(res => {
  307. this.notice = []
  308. this.noticeList = res.data
  309. res.data.forEach(element => {
  310. this.notice.push(element.title)
  311. });
  312. })
  313. },
  314. getAdsList () {
  315. let that = this;
  316. getAdsList({
  317. type: 2
  318. }).then(res => {
  319. if (res.data.length > 0) {
  320. that.swiperList = []
  321. res.data.forEach(element => {
  322. that.swiperList.push(element.imageUrl)
  323. });
  324. }
  325. });
  326. },
  327. clickNav (e) {
  328. this.tabIndex=e.index
  329. this.current = e.index
  330. // if (e.index > 0) {
  331. this.currentId = e.id
  332. // }
  333. // console.log("currentId ->", this.currentId)
  334. }
  335. }
  336. }
  337. </script>
  338. <style lang="scss" scoped>
  339. page {
  340. background-color: #ee4040;
  341. }
  342. .sys-title {
  343. width: 200rpx;
  344. height: 48rpx;
  345. font-size: 36rpx;
  346. font-family: STYuanti-SC-Regular, STYuanti-SC;
  347. font-weight: 400;
  348. color: #333333;
  349. line-height: 48rpx;
  350. letter-spacing: 2px;
  351. }
  352. .header-group {
  353. background-color: #F9F9F9;
  354. .search-group {
  355. display: flex;
  356. align-items: center;
  357. justify-content: space-between;
  358. padding: 30rpx 30rpx 10rpx 30rpx;
  359. .logo {
  360. width: 138rpx;
  361. height: 46rpx;
  362. }
  363. .message {
  364. line-height: 1;
  365. image {
  366. width: 48rpx;
  367. height: 48rpx;
  368. }
  369. }
  370. .search {
  371. flex: 1;
  372. padding: 0 30rpx;
  373. .searchBox {
  374. padding: 0 30rpx;
  375. display: flex;
  376. align-items: center;
  377. background-color: #FFF;
  378. border-radius: 100rpx;
  379. height: 60rpx;
  380. image {
  381. width: 28rpx;
  382. height: 28rpx;
  383. padding-right: 20rpx;
  384. }
  385. text {
  386. font-size: 24rpx;
  387. color: #999;
  388. }
  389. }
  390. }
  391. }
  392. .tabs {
  393. padding: 0 20rpx;
  394. }
  395. }
  396. .tab-content {
  397. .swiper-group {
  398. padding: 20rpx 30rpx 10rpx 30rpx;
  399. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  400. }
  401. .grid-box {
  402. padding: 10rpx 30rpx 20rpx 30rpx;
  403. .grid-group {
  404. padding: 20rpx 0;
  405. border-radius: 20rpx;
  406. background-color: #FFF;
  407. display: flex;
  408. align-items: center;
  409. flex-wrap: wrap;
  410. .grid-item {
  411. width: 33.333%;
  412. display: flex;
  413. flex-direction: column;
  414. align-items: center;
  415. margin: 10rpx 0;
  416. image {
  417. width: 98rpx;
  418. height: 98rpx;
  419. }
  420. text {
  421. font-size: 24rpx;
  422. color: #666;
  423. margin-top: 10rpx;
  424. }
  425. }
  426. }
  427. }
  428. .notice {
  429. padding: 0 30rpx;
  430. }
  431. .sale-group {
  432. padding: 20rpx 30rpx;
  433. .sale-content {
  434. border-radius: 20rpx;
  435. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  436. padding: 20rpx 0;
  437. .title {
  438. display: flex;
  439. align-items: center;
  440. justify-content: space-between;
  441. color: #FFF;
  442. font-weight: bold;
  443. padding: 0 30rpx;
  444. .more {
  445. display: flex;
  446. align-items: center;
  447. font-size: 24rpx;
  448. font-weight: normal;
  449. image {
  450. width: 24rpx;
  451. height: 24rpx;
  452. }
  453. }
  454. }
  455. .goods-scroll {
  456. white-space: nowrap;
  457. padding: 20rpx 15rpx 0 15rpx;
  458. .goods-item {
  459. display: inline-block;
  460. width: 240rpx;
  461. padding: 15rpx;
  462. margin: 0 10rpx;
  463. background-color: #FFF;
  464. border-radius: 10rpx;
  465. image {
  466. width: 210rpx;
  467. height: 210rpx;
  468. }
  469. .goods-name {
  470. font-size: 26rpx;
  471. color: #333;
  472. width: 240rpx;
  473. margin: 6rpx 0;
  474. word-break: break-all;
  475. white-space: pre-wrap;
  476. text-overflow: ellipsis;
  477. display: -webkit-box;
  478. line-height: 1.2;
  479. -webkit-box-orient: vertical;
  480. -webkit-line-clamp: 2;
  481. overflow: hidden;
  482. }
  483. .tags {
  484. display: inline-block;
  485. font-size: 20rpx;
  486. padding: 6rpx;
  487. background-color: #FCE9EC;
  488. color: #EB4C63;
  489. margin: 6rpx 0;
  490. }
  491. .price {
  492. font-size: 32rpx;
  493. font-weight: bold;
  494. color: #EB4C63;
  495. }
  496. }
  497. }
  498. }
  499. }
  500. .goods-list {
  501. .title {
  502. text-align: center;
  503. color: #333;
  504. display: flex;
  505. align-items: center;
  506. justify-content: center;
  507. font-size: 32rpx;
  508. font-weight: bold;
  509. .line {
  510. display: inline-block;
  511. width: 200rpx;
  512. height: 2rpx;
  513. margin: 0 30rpx;
  514. background-color: #FFA470;
  515. }
  516. }
  517. .list-group {
  518. display: flex;
  519. align-items: center;
  520. flex-wrap: wrap;
  521. padding: 15rpx;
  522. box-sizing: border-box;
  523. .list-item-content {
  524. width: 50%;
  525. padding: 15rpx;
  526. box-sizing: border-box;
  527. .list-item {
  528. padding: 15rpx;
  529. background-color: #FFF;
  530. border-radius: 10rpx;
  531. image {
  532. width: 100%;
  533. }
  534. .goods-name {
  535. font-size: 28rpx;
  536. color: #333;
  537. margin: 6rpx 0;
  538. word-break: break-all;
  539. white-space: pre-wrap;
  540. text-overflow: ellipsis;
  541. display: -webkit-box;
  542. line-height: 1.4;
  543. -webkit-box-orient: vertical;
  544. -webkit-line-clamp: 2;
  545. overflow: hidden;
  546. }
  547. .tags {
  548. display: inline-block;
  549. font-size: 20rpx;
  550. padding: 6rpx;
  551. background-color: #FCE9EC;
  552. color: #EB4C63;
  553. margin: 6rpx 0;
  554. }
  555. .price {
  556. font-size: 32rpx;
  557. font-weight: bold;
  558. color: #EB4C63;
  559. }
  560. }
  561. }
  562. }
  563. }
  564. }
  565. .nav-bar_2 {
  566. width: 374px;
  567. margin-top: 6px;
  568. padding: 10px 9px 7px 16px;
  569. }
  570. .text_3 {
  571. overflow-wrap: break-word;
  572. color: rgba(51, 51, 51, 1);
  573. font-size: 18px;
  574. letter-spacing: 2px;
  575. font-family: STYuanti-SC-Regular;
  576. font-weight: NaN;
  577. text-align: left;
  578. white-space: nowrap;
  579. line-height: 24px;
  580. margin-top: 3px;
  581. }
  582. .applet-top-bar_1 {
  583. width: 90px;
  584. height: 30px;
  585. }
  586. .block_2 {
  587. display: flex;
  588. justify-content: space-around;
  589. box-shadow: 0px 2px 4px 0px rgba(178, 35, 56, 0.05);
  590. background-image: url(../../../static/images/addressBgi.png);
  591. background-size: cover;
  592. align-self: center;
  593. margin: 20rpx;
  594. margin-top: 4px;
  595. padding: 15px 8px 15px 8px;
  596. }
  597. .flex-row {
  598. display: flex;
  599. }
  600. .image-text_9 {
  601. width: 228px;
  602. }
  603. .icon_1 {
  604. width: 16px;
  605. height: 16px;
  606. margin: 2px 0 2px 0;
  607. }
  608. .text-group_1 {
  609. overflow-wrap: break-word;
  610. color: rgba(51, 51, 51, 1);
  611. font-size: 12px;
  612. text-align: left;
  613. white-space: nowrap;
  614. line-height: 20px;
  615. max-width: 190px;
  616. display: block;
  617. white-space: pre-line;
  618. margin-left: 20rpx;
  619. }
  620. .image-text_10 {
  621. width: 56px;
  622. }
  623. .text-group_2 {
  624. overflow-wrap: break-word;
  625. color: rgba(153, 153, 153, 1);
  626. font-size: 10px;
  627. font-weight: NaN;
  628. line-height: 20px;
  629. }
  630. .icon_2 {
  631. width: 12px;
  632. height: 12px;
  633. margin: 4px 0 4px 0;
  634. }
  635. .bord {
  636. border: 1px solid red;
  637. }
  638. .map_box {
  639. width: 100%;
  640. height: 70px;
  641. }
  642. .map {
  643. width: 100%;
  644. height: 100%;
  645. }
  646. .indicator {
  647. @include flex(row);
  648. justify-content: center;
  649. &__dot {
  650. height: 6px;
  651. width: 6px;
  652. border-radius: 100px;
  653. background-color: rgba(255, 255, 255, 0.35);
  654. margin: 0 5px;
  655. transition: background-color 0.3s;
  656. &--active {
  657. background-color: #ffffff;
  658. }
  659. }
  660. }
  661. .indicator-num {
  662. padding: 2px 0;
  663. background-color: rgba(0, 0, 0, 0.35);
  664. border-radius: 100px;
  665. width: 35px;
  666. @include flex;
  667. justify-content: center;
  668. &__text {
  669. color: #FFFFFF;
  670. font-size: 12px;
  671. }
  672. }
  673. .popup {
  674. width: 750rpx;
  675. height: 750rpx;
  676. background-color: #F9F9F9;
  677. }
  678. .map1_box {
  679. width: 750rpx;
  680. height: 670rpx;
  681. }
  682. .btn_box {
  683. width: 750rpx;
  684. height: 80rpx;
  685. }
  686. .TipsPop {
  687. width: 60vh;
  688. position: relative;
  689. }
  690. .tips {
  691. width: 550rpx;
  692. border-radius: 30px;
  693. left: 50%;
  694. transform: translateX(-50%);
  695. height: 45vh;
  696. background-size: 100% auto;
  697. background-image: url('http://www.gzzzyd.com/groupon/home_slices/编组 47@2x.png');
  698. background-repeat: no-repeat;
  699. text-align: center;
  700. border-radius: 20rpx;
  701. padding: 30rpx;
  702. position: absolute;
  703. top: -100rpx;
  704. }
  705. .txt {
  706. top: 30px;
  707. width: 550rpx;
  708. border-radius: 30px;
  709. left: 50%;
  710. transform: translateX(-50%);
  711. height: 50vh;
  712. text-align: center;
  713. position: relative;
  714. z-index: 999;
  715. padding: 30rpx;
  716. .tips1 {
  717. height: 80rpx;
  718. font-size: 56rpx;
  719. font-weight: 400;
  720. color: #333333;
  721. line-height: 80rpx;
  722. letter-spacing: 5px;
  723. margin-bottom: 30rpx;
  724. }
  725. .tips2 {
  726. height: 88rpx;
  727. font-size: 32rpx;
  728. font-weight: 400;
  729. color: #333333;
  730. line-height: 44rpx;
  731. margin-bottom: 30rpx;
  732. }
  733. .tips3 {
  734. height: 66rpx;
  735. font-size: 48rpx;
  736. font-weight: 600;
  737. color: #333333;
  738. line-height: 66rpx;
  739. margin-bottom: 30rpx;
  740. }
  741. .tips4 {
  742. height: 34rpx;
  743. font-size: 24rpx;
  744. font-weight: 400;
  745. color: #333333;
  746. line-height: 34rpx;
  747. margin-bottom: 30rpx;
  748. .red {
  749. color: #B42A3E;
  750. }
  751. }
  752. .tips5 {
  753. position: absolute;
  754. bottom: 50px;
  755. width: 80%;
  756. left: 50%;
  757. transform: translateX(-50%);
  758. height: 76rpx;
  759. background: #B42A3E;
  760. border-radius: 48rpx;
  761. line-height: 76rpx;
  762. font-size: 28rpx;
  763. font-weight: 400;
  764. color: #FFFFFF;
  765. margin-top: 30rpx;
  766. }
  767. }
  768. .index_body {
  769. position: relative;
  770. }
  771. </style>