index_mall.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  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: true,
  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. that.positionInfo.address = res.result.address_reference.landmark_l2.title
  222. that.markers[0].label.content = res.result.address_reference.landmark_l2.title
  223. })
  224. }
  225. });
  226. },
  227. // 获取当前地址
  228. loAcquire (longitude, latitude) {
  229. let that = this;
  230. // uni.showLoading({
  231. // title: '加载中',
  232. // mask: true
  233. // });
  234. let str = `output=jsonp&key='此处输入你申请的密钥'=${latitude},${longitude}` //记得在这里要输入密钥哦!
  235. console.log(this.$jsonp);
  236. this.$jsonp('https://apis.map.qq.com/ws/geocoder/v1/?', {}).then(res => {
  237. console.log(res);
  238. uni.hideLoading();
  239. if (res.status == 0) {
  240. that.positionInfo.address = '当前位置是:' + res.result.address_component.street_number; //当前定位
  241. }
  242. })
  243. },
  244. pullResh () {
  245. // if (this.current == 0) {
  246. // uni.showLoading({ title: '刷新中' });
  247. // this.getAdsList()
  248. // this.getLatestGroupon()
  249. // } else {
  250. // this.$refs.latestGroupBuying.getGoodsPage()
  251. // }
  252. },
  253. getLatestGroupon () {
  254. // let that = this;
  255. // latestGroupon({
  256. // current: 1,
  257. // size: 1,
  258. // longitude: that.positionInfo.longitude,
  259. // latitude: that.positionInfo.latitude
  260. // }).then(res => {
  261. // console.log(res)
  262. // })
  263. },
  264. getGoodsInfo () {
  265. getGoodsInfo({
  266. current: 1,
  267. size: 50,
  268. isRecom: 1
  269. }).then(res => {
  270. this.tempArr = res.data
  271. uni.stopPullDownRefresh()
  272. uni.hideLoading();
  273. })
  274. },
  275. getBroGoodsInfo () {
  276. getGoodsInfo({
  277. current: 1,
  278. size: 50,
  279. zoneType: 6
  280. }).then(res => {
  281. this.tempArrBao = res.data
  282. })
  283. },
  284. getCategoryOne () {
  285. getCategoryOne().then(res => {
  286. this.navigationList = []
  287. let tuiJian = {
  288. title: '推荐',
  289. id: '0'
  290. }
  291. this.navigationList = res.data
  292. this.navigationList.unshift(tuiJian)
  293. })
  294. },
  295. noticeClose () {
  296. this.noticeShow = false
  297. },
  298. goNoticeDetail (value) {
  299. this.noticeContent = this.noticeList[value].content
  300. this.noticeShow = true
  301. },
  302. getNoticeList () {
  303. getNoticeList().then(res => {
  304. this.notice = []
  305. this.noticeList = res.data
  306. res.data.forEach(element => {
  307. this.notice.push(element.title)
  308. });
  309. })
  310. },
  311. getAdsList () {
  312. let that = this;
  313. getAdsList({
  314. type: 2
  315. }).then(res => {
  316. if (res.data.length > 0) {
  317. that.swiperList = []
  318. res.data.forEach(element => {
  319. that.swiperList.push(element.imageUrl)
  320. });
  321. }
  322. });
  323. },
  324. clickNav (e) {
  325. this.tabIndex=e.index
  326. this.current = e.index
  327. // if (e.index > 0) {
  328. this.currentId = e.id
  329. // }
  330. // console.log("currentId ->", this.currentId)
  331. }
  332. }
  333. }
  334. </script>
  335. <style lang="scss" scoped>
  336. page {
  337. background-color: #ee4040;
  338. }
  339. .header-group {
  340. background-color: #F9F9F9;
  341. .search-group {
  342. display: flex;
  343. align-items: center;
  344. justify-content: space-between;
  345. padding: 30rpx 30rpx 10rpx 30rpx;
  346. .logo {
  347. width: 138rpx;
  348. height: 46rpx;
  349. }
  350. .message {
  351. line-height: 1;
  352. image {
  353. width: 48rpx;
  354. height: 48rpx;
  355. }
  356. }
  357. .search {
  358. flex: 1;
  359. padding: 0 30rpx;
  360. .searchBox {
  361. padding: 0 30rpx;
  362. display: flex;
  363. align-items: center;
  364. background-color: #FFF;
  365. border-radius: 100rpx;
  366. height: 60rpx;
  367. image {
  368. width: 28rpx;
  369. height: 28rpx;
  370. padding-right: 20rpx;
  371. }
  372. text {
  373. font-size: 24rpx;
  374. color: #999;
  375. }
  376. }
  377. }
  378. }
  379. .tabs {
  380. padding: 0 20rpx;
  381. }
  382. }
  383. .tab-content {
  384. .swiper-group {
  385. padding: 20rpx 30rpx 10rpx 30rpx;
  386. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  387. }
  388. .grid-box {
  389. padding: 10rpx 30rpx 20rpx 30rpx;
  390. .grid-group {
  391. padding: 20rpx 0;
  392. border-radius: 20rpx;
  393. background-color: #FFF;
  394. display: flex;
  395. align-items: center;
  396. flex-wrap: wrap;
  397. .grid-item {
  398. width: 33.333%;
  399. display: flex;
  400. flex-direction: column;
  401. align-items: center;
  402. margin: 10rpx 0;
  403. image {
  404. width: 98rpx;
  405. height: 98rpx;
  406. }
  407. text {
  408. font-size: 24rpx;
  409. color: #666;
  410. margin-top: 10rpx;
  411. }
  412. }
  413. }
  414. }
  415. .notice {
  416. padding: 0 30rpx;
  417. }
  418. .sale-group {
  419. padding: 20rpx 30rpx;
  420. .sale-content {
  421. border-radius: 20rpx;
  422. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  423. padding: 20rpx 0;
  424. .title {
  425. display: flex;
  426. align-items: center;
  427. justify-content: space-between;
  428. color: #FFF;
  429. font-weight: bold;
  430. padding: 0 30rpx;
  431. .more {
  432. display: flex;
  433. align-items: center;
  434. font-size: 24rpx;
  435. font-weight: normal;
  436. image {
  437. width: 24rpx;
  438. height: 24rpx;
  439. }
  440. }
  441. }
  442. .goods-scroll {
  443. white-space: nowrap;
  444. padding: 20rpx 15rpx 0 15rpx;
  445. .goods-item {
  446. display: inline-block;
  447. width: 240rpx;
  448. padding: 15rpx;
  449. margin: 0 10rpx;
  450. background-color: #FFF;
  451. border-radius: 10rpx;
  452. image {
  453. width: 210rpx;
  454. height: 210rpx;
  455. }
  456. .goods-name {
  457. font-size: 26rpx;
  458. color: #333;
  459. width: 240rpx;
  460. margin: 6rpx 0;
  461. word-break: break-all;
  462. white-space: pre-wrap;
  463. text-overflow: ellipsis;
  464. display: -webkit-box;
  465. line-height: 1.2;
  466. -webkit-box-orient: vertical;
  467. -webkit-line-clamp: 2;
  468. overflow: hidden;
  469. }
  470. .tags {
  471. display: inline-block;
  472. font-size: 20rpx;
  473. padding: 6rpx;
  474. background-color: #FCE9EC;
  475. color: #EB4C63;
  476. margin: 6rpx 0;
  477. }
  478. .price {
  479. font-size: 32rpx;
  480. font-weight: bold;
  481. color: #EB4C63;
  482. }
  483. }
  484. }
  485. }
  486. }
  487. .goods-list {
  488. .title {
  489. text-align: center;
  490. color: #333;
  491. display: flex;
  492. align-items: center;
  493. justify-content: center;
  494. font-size: 32rpx;
  495. font-weight: bold;
  496. .line {
  497. display: inline-block;
  498. width: 200rpx;
  499. height: 2rpx;
  500. margin: 0 30rpx;
  501. background-color: #FFA470;
  502. }
  503. }
  504. .list-group {
  505. display: flex;
  506. align-items: center;
  507. flex-wrap: wrap;
  508. padding: 15rpx;
  509. box-sizing: border-box;
  510. .list-item-content {
  511. width: 50%;
  512. padding: 15rpx;
  513. box-sizing: border-box;
  514. .list-item {
  515. padding: 15rpx;
  516. background-color: #FFF;
  517. border-radius: 10rpx;
  518. image {
  519. width: 100%;
  520. }
  521. .goods-name {
  522. font-size: 28rpx;
  523. color: #333;
  524. margin: 6rpx 0;
  525. word-break: break-all;
  526. white-space: pre-wrap;
  527. text-overflow: ellipsis;
  528. display: -webkit-box;
  529. line-height: 1.4;
  530. -webkit-box-orient: vertical;
  531. -webkit-line-clamp: 2;
  532. overflow: hidden;
  533. }
  534. .tags {
  535. display: inline-block;
  536. font-size: 20rpx;
  537. padding: 6rpx;
  538. background-color: #FCE9EC;
  539. color: #EB4C63;
  540. margin: 6rpx 0;
  541. }
  542. .price {
  543. font-size: 32rpx;
  544. font-weight: bold;
  545. color: #EB4C63;
  546. }
  547. }
  548. }
  549. }
  550. }
  551. }
  552. .nav-bar_2 {
  553. width: 374px;
  554. margin-top: 6px;
  555. padding: 10px 9px 7px 16px;
  556. }
  557. .text_3 {
  558. overflow-wrap: break-word;
  559. color: rgba(51, 51, 51, 1);
  560. font-size: 18px;
  561. letter-spacing: 2px;
  562. font-family: STYuanti-SC-Regular;
  563. font-weight: NaN;
  564. text-align: left;
  565. white-space: nowrap;
  566. line-height: 24px;
  567. margin-top: 3px;
  568. }
  569. .applet-top-bar_1 {
  570. width: 90px;
  571. height: 30px;
  572. }
  573. .block_2 {
  574. display: flex;
  575. justify-content: space-around;
  576. box-shadow: 0px 2px 4px 0px rgba(178, 35, 56, 0.05);
  577. background-image: url(../../../static/images/addressBgi.png);
  578. background-size: cover;
  579. align-self: center;
  580. margin: 20rpx;
  581. margin-top: 4px;
  582. padding: 15px 8px 15px 8px;
  583. }
  584. .flex-row {
  585. display: flex;
  586. }
  587. .image-text_9 {
  588. width: 228px;
  589. }
  590. .icon_1 {
  591. width: 16px;
  592. height: 16px;
  593. margin: 2px 0 2px 0;
  594. }
  595. .text-group_1 {
  596. overflow-wrap: break-word;
  597. color: rgba(51, 51, 51, 1);
  598. font-size: 12px;
  599. text-align: left;
  600. white-space: nowrap;
  601. line-height: 20px;
  602. max-width: 190px;
  603. display: block;
  604. white-space: pre-line;
  605. margin-left: 20rpx;
  606. }
  607. .image-text_10 {
  608. width: 56px;
  609. }
  610. .text-group_2 {
  611. overflow-wrap: break-word;
  612. color: rgba(153, 153, 153, 1);
  613. font-size: 10px;
  614. font-weight: NaN;
  615. line-height: 20px;
  616. }
  617. .icon_2 {
  618. width: 12px;
  619. height: 12px;
  620. margin: 4px 0 4px 0;
  621. }
  622. .bord {
  623. border: 1px solid red;
  624. }
  625. .map_box {
  626. width: 100%;
  627. height: 70px;
  628. }
  629. .map {
  630. width: 100%;
  631. height: 100%;
  632. }
  633. .indicator {
  634. @include flex(row);
  635. justify-content: center;
  636. &__dot {
  637. height: 6px;
  638. width: 6px;
  639. border-radius: 100px;
  640. background-color: rgba(255, 255, 255, 0.35);
  641. margin: 0 5px;
  642. transition: background-color 0.3s;
  643. &--active {
  644. background-color: #ffffff;
  645. }
  646. }
  647. }
  648. .indicator-num {
  649. padding: 2px 0;
  650. background-color: rgba(0, 0, 0, 0.35);
  651. border-radius: 100px;
  652. width: 35px;
  653. @include flex;
  654. justify-content: center;
  655. &__text {
  656. color: #FFFFFF;
  657. font-size: 12px;
  658. }
  659. }
  660. .popup {
  661. width: 750rpx;
  662. height: 750rpx;
  663. background-color: #F9F9F9;
  664. }
  665. .map1_box {
  666. width: 750rpx;
  667. height: 670rpx;
  668. }
  669. .btn_box {
  670. width: 750rpx;
  671. height: 80rpx;
  672. }
  673. .TipsPop {
  674. width: 60vh;
  675. position: relative;
  676. }
  677. .tips {
  678. width: 550rpx;
  679. border-radius: 30px;
  680. left: 50%;
  681. transform: translateX(-50%);
  682. height: 45vh;
  683. background-size: 100% auto;
  684. background-image: url('http://www.gzzzyd.com/groupon/home_slices/编组 47@2x.png');
  685. background-repeat: no-repeat;
  686. text-align: center;
  687. border-radius: 20rpx;
  688. padding: 30rpx;
  689. position: absolute;
  690. top: -100rpx;
  691. }
  692. .txt {
  693. top: 30px;
  694. width: 550rpx;
  695. border-radius: 30px;
  696. left: 50%;
  697. transform: translateX(-50%);
  698. height: 50vh;
  699. text-align: center;
  700. position: relative;
  701. z-index: 999;
  702. padding: 30rpx;
  703. .tips1 {
  704. height: 80rpx;
  705. font-size: 56rpx;
  706. font-weight: 400;
  707. color: #333333;
  708. line-height: 80rpx;
  709. letter-spacing: 5px;
  710. margin-bottom: 30rpx;
  711. }
  712. .tips2 {
  713. height: 88rpx;
  714. font-size: 32rpx;
  715. font-weight: 400;
  716. color: #333333;
  717. line-height: 44rpx;
  718. margin-bottom: 30rpx;
  719. }
  720. .tips3 {
  721. height: 66rpx;
  722. font-size: 48rpx;
  723. font-weight: 600;
  724. color: #333333;
  725. line-height: 66rpx;
  726. margin-bottom: 30rpx;
  727. }
  728. .tips4 {
  729. height: 34rpx;
  730. font-size: 24rpx;
  731. font-weight: 400;
  732. color: #333333;
  733. line-height: 34rpx;
  734. margin-bottom: 30rpx;
  735. .red {
  736. color: #B42A3E;
  737. }
  738. }
  739. .tips5 {
  740. position: absolute;
  741. bottom: 50px;
  742. width: 80%;
  743. left: 50%;
  744. transform: translateX(-50%);
  745. height: 76rpx;
  746. background: #B42A3E;
  747. border-radius: 48rpx;
  748. line-height: 76rpx;
  749. font-size: 28rpx;
  750. font-weight: 400;
  751. color: #FFFFFF;
  752. margin-top: 30rpx;
  753. }
  754. }
  755. .index_body {
  756. position: relative;
  757. }
  758. </style>