index_mall.vue 18 KB

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