index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. <template>
  2. <view class="center">
  3. <view class="status_bar"><!-- 这里是状态栏 --></view>
  4. <view class="carousel">
  5. <swiper autoplay="true" duration="400" interval="5000" @change="swiperChange" class="bor">
  6. <swiper-item v-for="(item, index) in carouselList" :key="index" class="carousel-item"><image :src="item.pic" /></swiper-item>
  7. </swiper>
  8. </view>
  9. <view class="swiper-dot">
  10. <template v-for="item in swiperLength">
  11. <view class="swiper-dots-item" :key="item" :class="{ action: swiperCurrent + 1 === item }"></view>
  12. </template>
  13. </view>
  14. <!-- 通知栏 -->
  15. <view class="tongz flex">
  16. <view>
  17. <view class="tongz-bg"><image src="../../static/img/tongz-bg.png" mode=""></image></view>
  18. <view class="tongz-left flex">
  19. <image class="image-left" src="../../static/img/ling.png" mode=""></image>
  20. <u-notice-bar
  21. style="width: 100%;"
  22. mode="vertical"
  23. type="none"
  24. :volume-icon="false"
  25. :more-icon="true"
  26. :list="showList.infoList"
  27. @click="goDetails"
  28. @getMore="nav('/pages/index/nodeList')"
  29. ></u-notice-bar>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="box-body">
  34. <view class="navBox">
  35. <view class="navBox-left">
  36. <view class="navBox-item" @click="nav('./node')"><image src="../../static/img/index2.png" style="width: 385rpx; height: 398rpx;" mode=""></image></view>
  37. </view>
  38. <view class="navBox-right">
  39. <view class="navBox-item" @click="nav('./convert')"><image src="../../static/img/index3.png" style="width: 385rpx; height: 216rpx; " mode=""></image></view>
  40. <view class="navBox-item" @click="nav('/pages/index/appointment')">
  41. <image src="../../static/img/index6.png" style="width: 339rpx; height: 170rpx; margin-top: -12rpx;" mode=""></image>
  42. </view>
  43. <!-- <view class="navBox-item" @click="node()">
  44. <image src="../../static/img/index6.png" style="width: 339rpx; height: 170rpx; margin-top: -12rpx;" mode=""></image>
  45. </view> -->
  46. </view>
  47. </view>
  48. <view class="shopBox" v-for="(item, index) in list" :key="index">
  49. <view class="shopBox-top">
  50. <view class="left"><image src="../../static/img/index4.png" mode=""></image></view>
  51. <view class="between" style="margin-left: -340rpx;">
  52. <text id="one">{{ item.name }}</text>
  53. <text id="two">{{ item.lun }}轮</text>
  54. </view>
  55. <view v-if="'childList' in item && item.type == 1">
  56. <text id="three" v-if="item.childList.next_pink_status">待开团</text>
  57. <text id="three" v-else>预约中</text>
  58. </view>
  59. <view v-if="item.type == 2"><text id="three" v-if="item.childList.next_pink_status">未开始</text></view>
  60. </view>
  61. <view class="shopBox-between">
  62. <view class="number">
  63. <text class="number-left">{{ 1 * item.cost }}</text>
  64. <text class="number-right">{{ item.cost_money_type }}/份</text>
  65. </view>
  66. <view class="quotient"><text class="quotient-children">每轮限购1组,每组限购一份</text></view>
  67. </view>
  68. <image :src="item.background_image" style="width: 635rpx; height: 170rpx; margin: 40rpx 0;" mode=""></image>
  69. <view class="shopBox-bottom">
  70. <view class="forward">
  71. <view class="forward-left"></view>
  72. <view class="forward-right">每组分数:&nbsp 11份</view>
  73. </view>
  74. <view class="consume">
  75. GAS消耗:
  76. <text>{{ 1 * item.ticket }}{{ item.ticket_money_type }}</text>
  77. </view>
  78. <view class="appointmentTime">
  79. 预约开始时间:
  80. <text>{{ item.start }}</text>
  81. </view>
  82. <view class="appointmentTime">
  83. 预约结束时间:
  84. <text>{{ item.end }}</text>
  85. </view>
  86. <view class="lotteryTime">
  87. 开奖时间:
  88. <text>{{ item.childList ? item.childList.next_pink.name : '' }}</text>
  89. </view>
  90. </view>
  91. <view class="btn-box flex">
  92. <view class="submit1" @click="lalaDetial(item.id)">当天预约</view>
  93. <view v-if="'childList' in item && item.type == 1">
  94. <view class="submit" v-if="item.childList.next_pink_status">待开团</view>
  95. <view class="submit" @click="buy(item)" v-else>预约</view>
  96. </view>
  97. <view v-if="item.type == 2"><view class="submit">未开始</view></view>
  98. </view>
  99. </view>
  100. </view>
  101. <u-popup v-model="show" mode="bottom" border-radius="40" height="868rpx" :closeable="true">
  102. <view class="yugo">
  103. <view class="Type flex" >
  104. <view class="moneyName clamp" @click="moneyshow = true">{{moneyType[index].text}}</view>
  105. <u-icon name="arrow-down-fill" color="#0F253A" size="10"></u-icon>
  106. </view>
  107. <view class="zhu">
  108. 注:每轮限购1组,每组限购1份
  109. <span class="zhu-right">
  110. 最多可预约:
  111. <span class="zhu-num">1份</span>
  112. </span>
  113. </view>
  114. <view class="info-main">
  115. <view class="info-box">
  116. <view class="info-left">预约份数:</view>
  117. <view class="info-right"><u-number-box :max="max" v-model="value" @change="valChange"></u-number-box></view>
  118. </view>
  119. <view class="info-box">
  120. <view class="info-left">预约金额:</view>
  121. <view class="info-right">{{ moneyType[index].money*1 }}{{moneyType[index].text}}</view>
  122. </view>
  123. <view class="info-box">
  124. <view class="info-left">预约门票:</view>
  125. <view class="info-right">{{ souxu }}</view>
  126. </view>
  127. </view>
  128. <view class="btn" @click="submit()">确定</view>
  129. </view>
  130. </u-popup>
  131. <u-popup v-model="show1" mode="center" width="548rpx" border-radius="14">
  132. <view class="psw-wrapper">
  133. <view class="psw-title">请输入支付密码</view>
  134. <input type="password" v-model="password" class="psw-ipt" />
  135. <view class="psw-btn">
  136. <text @click="cancel">取消</text>
  137. <text class="psw-qd" @click="pswQd">确定</text>
  138. </view>
  139. </view>
  140. </u-popup>
  141. <view class="tishi" v-if="tishi">
  142. <view class="closeBox" @click="closetishi()">
  143. <view class="close">
  144. <image src="../../static/img/indexClose.png" mode=""></image>
  145. </view>
  146. </view>
  147. <view class="main" @click="nav('/pages/index/teachList')">
  148. <image src="../../static/img/teach.png" mode=""></image>
  149. </view>
  150. </view>
  151. <u-action-sheet :list="moneyType" v-model="moneyshow" @click="changeIndex"></u-action-sheet>
  152. </view>
  153. </template>
  154. <script>
  155. import { lala, lalaDetial, buylala } from '@/api/product.js';
  156. import { getTime } from '@/utils/rocessor.js';
  157. import { loadIndexs } from '@/api/user.js';
  158. export default {
  159. data() {
  160. return {
  161. tishi:true,//是否显示教程框
  162. show: false, //支付数量
  163. show1: false, //支付密码
  164. moneyshow:false,//支付方式开关
  165. moneyType:[{text:''}],//支付方式选择
  166. index:0,//判断支付方式是那个
  167. password: '',
  168. value: 1,
  169. list: [],
  170. money: '', //预约金额
  171. souxu: '', //预约手续费
  172. id: '', //购买产品
  173. max: 1,
  174. carouselList: [],
  175. swiperLength: 0,
  176. swiperCurrent: 0,
  177. showList: [],
  178. start: '' ,//拼团开始时间
  179. moneyType:['usdt','usdc'],//兑出币种类型
  180. };
  181. },
  182. //页面加载即刻发生
  183. onShow() {
  184. this.tishi = true,
  185. this.loadDate();
  186. },
  187. methods: {
  188. async loadDate() {
  189. const obj = this;
  190. uni.showLoading({
  191. title: '加载中',
  192. // mask: true
  193. });
  194. loadIndexs({})
  195. .then(({ data }) => {
  196. console.log(data);
  197. obj.carouselList = data.banner;
  198. obj.swiperLength = data.banner.length;
  199. let arr = data.roll;
  200. let ar = [];
  201. arr.forEach(e => {
  202. console.log(e)
  203. ar.push(e.info);
  204. });
  205. arr.infoList = ar;
  206. obj.showList = arr;
  207. lala({
  208. page: 1,
  209. limit: 10
  210. }).then(({ data }) => {
  211. data.list.data.forEach((e, index) => {
  212. lalaDetial({ page: 1, limit: 1 }, e.id).then(les => {
  213. // e.childList = les.data
  214. //开团时间
  215. let date = les.data.open_times[0].name.split(' ');
  216. let start = date[0] + ' ' + les.data.lala_pink_open + ':00';
  217. start = new Date(start);
  218. start = start.getTime();
  219. obj.start = start;
  220. //当前时间
  221. let dateTime = new Date().valueOf();
  222. //结束时间
  223. let endTime = les.data.open_times[5].value * 1000;
  224. //如果当前时间在开团时间之前或在结束时间之后,显示未开始
  225. if (dateTime > start || dataTime < endTime) {
  226. e.type = 1;
  227. } else {
  228. e.type = 2;
  229. }
  230. //拼团结束时间
  231. e.end = getTime(les.data.next_pink.value - les.data.close_join * 60);
  232. for (let i = 0; i < les.data.open_times.length; i++) {
  233. if (les.data.open_times[i].value == les.data.next_pink.value) {
  234. //拼团的轮数
  235. e.lun = i + 1;
  236. //拼团开始时间
  237. if (i != 0) {
  238. let j = i - 1;
  239. e.start = getTime(les.data.open_times[j].value);
  240. } else {
  241. e.start = getTime(obj.start);
  242. }
  243. }
  244. }
  245. obj.$set(e, 'childList', les.data);
  246. });
  247. });
  248. obj.list = data.list.data;
  249. obj.list.forEach(e =>{
  250. e.moneyType = [];
  251. if(e.cost_money_type !=e.cost_2_money_type){
  252. let type1 = {};
  253. let type2 = {};
  254. type1.text = e.cost_money_type;
  255. type1.money = e.cost;
  256. e.moneyType[0] = type1
  257. type2.text = e.cost_2_money_type;
  258. type2.money = e.cost_2;
  259. e.moneyType[1] = type2
  260. }else {
  261. let type1 = '';
  262. type1.text = e.cost_money_type;
  263. type1.money = e.cost;
  264. e.moneyType[0] = type1
  265. }
  266. console.log(e,'11111')
  267. })
  268. uni.stopPullDownRefresh();
  269. uni.hideLoading();
  270. });
  271. })
  272. .catch(e => {
  273. uni.stopPullDownRefresh();
  274. });
  275. },
  276. closetishi() {
  277. this.tishi = false
  278. },
  279. nav(url) {
  280. console.log(url);
  281. uni.navigateTo({
  282. url: url
  283. });
  284. },
  285. changeIndex(e) {
  286. console.log(e);
  287. this.index = e;
  288. },
  289. buy(item) {
  290. this.money = 1 * item.cost + item.cost_money_type;
  291. this.souxu = 1 * item.ticket + item.ticket_money_type;
  292. this.moneyType = item.moneyType;
  293. this.index = 0;
  294. this.id = item.id;
  295. this.show = true;
  296. },
  297. valChange(e) {
  298. console.log(e);
  299. if (this.value > 1) {
  300. e.value = 1;
  301. this.value = 1;
  302. console.log(this.value);
  303. this.$api.msg('每组限购一份');
  304. }
  305. },
  306. submit() {
  307. if (this.value == 0) {
  308. this.$api.msg('预约份数不能为0');
  309. } else {
  310. this.show = false;
  311. this.show1 = true;
  312. }
  313. },
  314. cancel() {
  315. this.password = '';
  316. this.show1 = false;
  317. },
  318. pswQd() {
  319. const obj = this;
  320. buylala(
  321. {
  322. trade_psw: this.password,
  323. cost_type:this.moneyType[this.index].text
  324. },
  325. this.id
  326. )
  327. .then(e => {
  328. this.password = '';
  329. this.show1 = false;
  330. this.$api.msg('参与拼购成功');
  331. })
  332. .catch(e => {
  333. this.password = '';
  334. this.show1 = false;
  335. console.log(e);
  336. });
  337. },
  338. node() {
  339. this.$api.msg('敬请期待');
  340. },
  341. lalaDetial(id) {
  342. uni.navigateTo({
  343. url: '/pages/index/datile?id=' + id
  344. });
  345. },
  346. //轮播图切换修改背景色
  347. swiperChange(e) {
  348. const index = e.detail.current;
  349. this.swiperCurrent = index;
  350. this.titleNViewBackground = this.carouselList[index].background;
  351. },
  352. goDetails(e) {
  353. uni.navigateTo({
  354. url: this.showList[e].url
  355. });
  356. }
  357. }
  358. };
  359. </script>
  360. <style lang="scss" >
  361. .center {
  362. height: auto;
  363. min-height: 100%;
  364. background-color: #ffffff;
  365. }
  366. .status_bar {
  367. height: var(--status-bar-height);
  368. width: 100%;
  369. }
  370. .carousel {
  371. width: 690rpx;
  372. height: 300rpx;
  373. border-radius: 10rpx;
  374. margin: 26rpx auto 0;
  375. .bor {
  376. border-radius: 10rpx;
  377. .carousel-item {
  378. image {
  379. width: 100%;
  380. height: 100%;
  381. border-radius: 10rpx;
  382. }
  383. }
  384. }
  385. }
  386. .swiper-dot {
  387. position: relative;
  388. z-index: 10;
  389. margin-top: -40rpx;
  390. display: flex;
  391. justify-content: center;
  392. .swiper-dots-item {
  393. width: 14rpx;
  394. height: 14rpx;
  395. background: #aaaaaa;
  396. border-radius: 50%;
  397. margin: 0 16rpx;
  398. // z-index: 999;
  399. }
  400. .action {
  401. background-color: #ffffff;
  402. }
  403. }
  404. .tongz {
  405. width: 690rpx;
  406. height: 70rpx;
  407. margin: 48rpx auto 0;
  408. padding: 18rpx 30rpx 18rpx 24rpx;
  409. align-items: center;
  410. position: relative;
  411. .tongz-bg {
  412. position: absolute;
  413. top: 0;
  414. right: 0;
  415. left: 0;
  416. width: 690rpx;
  417. height: 70rpx;
  418. image {
  419. width: 100%;
  420. height: 100%;
  421. }
  422. }
  423. .tongz-left {
  424. width: 640rpx;
  425. .image-left {
  426. width: 28rpx;
  427. height: 34rpx;
  428. }
  429. .tongz-font {
  430. margin-left: 22rpx;
  431. font-size: 28rpx;
  432. font-family: Source Han Sans CN;
  433. font-weight: 400;
  434. color: #0f253a;
  435. }
  436. }
  437. .tongz-right {
  438. position: relative;
  439. z-index: 11;
  440. width: 12rpx;
  441. height: 26rpx;
  442. image {
  443. width: 100%;
  444. height: 100%;
  445. }
  446. }
  447. }
  448. .box-title {
  449. position: relative;
  450. z-index: 1;
  451. width: 100%;
  452. height: 436rpx;
  453. image {
  454. width: 100%;
  455. height: 436rpx;
  456. }
  457. }
  458. .box-body {
  459. display: flex;
  460. flex-direction: column;
  461. justify-content: space-around;
  462. width: 100%;
  463. height: 100%;
  464. position: relative;
  465. z-index: 10;
  466. margin-top: 20rpx;
  467. background: #f8fbfe;
  468. .navBox {
  469. display: flex;
  470. justify-content: space-around;
  471. .navBox-left {
  472. // margin: 20rpx 5rpx 10rpx 10rpx;
  473. margin: 20rpx -24rpx 0 0;
  474. mar .navBox-item {
  475. image {
  476. width: 100%;
  477. height: 100%;
  478. }
  479. }
  480. }
  481. .navBox-right {
  482. margin: 20rpx 0 0 -24rpx;
  483. // margin: 20rpx 10rpx 5rpx 5rpx;
  484. .navBox-item {
  485. display: flex;
  486. flex-direction: column;
  487. align-items: center;
  488. image {
  489. }
  490. }
  491. }
  492. }
  493. .shopBox {
  494. padding: 0 30rpx;
  495. width: 690rpx;
  496. // height: 770rpx;
  497. background: #ffffff;
  498. box-shadow: 0rpx 0rpx 17rpx 0rpx rgba(0, 0, 0, 0.05);
  499. border-radius: 10px;
  500. margin: 45rpx auto 0;
  501. .shopBox-top {
  502. margin-top: 26rpx;
  503. display: flex;
  504. justify-content: space-between;
  505. align-items: center;
  506. image {
  507. height: 46rpx;
  508. width: 48rpx;
  509. }
  510. #one {
  511. font-size: 34rpx;
  512. font-family: PingFang SC;
  513. font-weight: bold;
  514. color: #0f253a;
  515. }
  516. #two {
  517. margin-left: 11rpx;
  518. font-size: 26rpx;
  519. font-family: PingFang SC;
  520. font-weight: 500;
  521. color: #6d7c88;
  522. }
  523. #three {
  524. font-size: 26rpx;
  525. font-family: PingFang SC;
  526. font-weight: 500;
  527. color: #ff4c4c;
  528. }
  529. }
  530. .shopBox-between {
  531. margin-top: 20rpx;
  532. display: flex;
  533. justify-content: space-between;
  534. align-items: center;
  535. .number {
  536. .number-left {
  537. font-size: 40rpx;
  538. font-family: PingFang SC;
  539. font-weight: bold;
  540. color: #44969d;
  541. }
  542. .number-right {
  543. font-size: 24rpx;
  544. font-family: PingFang SC;
  545. font-weight: bold;
  546. color: #44969d;
  547. }
  548. }
  549. .quotient {
  550. .quotient-children {
  551. font-size: 24rpx;
  552. font-family: PingFang SC;
  553. font-weight: 500;
  554. color: #6d7c88;
  555. }
  556. }
  557. }
  558. .forward {
  559. display: flex;
  560. justify-content: space-between;
  561. align-items: center;
  562. .forward-left {
  563. font-size: 26rpx;
  564. font-family: PingFang SC;
  565. font-weight: 500;
  566. color: #44969d;
  567. }
  568. .forward-right {
  569. font-size: 24rpx;
  570. font-family: PingFang SC;
  571. font-weight: 500;
  572. color: #6d7c88;
  573. }
  574. }
  575. .consume,
  576. .appointmentTime,
  577. .lotteryTime {
  578. margin: 12rpx 0;
  579. font-size: 26rpx;
  580. font-family: PingFang SC;
  581. font-weight: 400;
  582. color: #6d7c88;
  583. }
  584. .consume > text,
  585. .appointmentTime > text,
  586. .lotteryTime > text {
  587. font-size: 24rpx;
  588. font-family: PingFang SC;
  589. font-weight: 500;
  590. color: #000000;
  591. }
  592. .submit {
  593. width: 280rpx;
  594. height: 70rpx;
  595. background: linear-gradient(90deg, #60bab0, #45969b);
  596. border-radius: 35rpx;
  597. font-size: 32rpx;
  598. font-family: PingFang SC;
  599. font-weight: 500;
  600. color: #ffffff;
  601. text-align: center;
  602. line-height: 70rpx;
  603. margin: 40rpx 10rpx;
  604. }
  605. .submit1 {
  606. width: 280rpx;
  607. height: 70rpx;
  608. background: #ffffff;
  609. border: 1px solid #60bab0;
  610. border-radius: 35rpx;
  611. font-size: 32rpx;
  612. font-family: PingFang SC;
  613. font-weight: 500;
  614. color: #60bab0;
  615. text-align: center;
  616. line-height: 70rpx;
  617. margin: 40rpx 10rpx;
  618. }
  619. }
  620. }
  621. .yugo {
  622. padding-top: 80rpx;
  623. position: relative;
  624. height: 100%;
  625. .Type {
  626. border-top: 1px solid #eeeeee;
  627. padding: 20rpx $page-row-spacing;
  628. justify-content: start;
  629. .moneyName {
  630. font-size: 30rpx;
  631. font-weight: 500;
  632. color: $font-color-dark;
  633. margin: 0 20rpx;
  634. }
  635. .input {
  636. flex-grow: 1;
  637. height: 45rpx;
  638. line-height: 45rpx;
  639. margin-left: 40rpx;
  640. color: $font-color-light;
  641. border-bottom: 1px solid $border-color-light;
  642. }
  643. .line {
  644. width: 2rpx;
  645. background-color: $font-color-dark;
  646. margin: 0 10rpx;
  647. height: 30rpx;
  648. }
  649. }
  650. .zhu {
  651. height: 112rpx;
  652. border-top: 1px #eeeeee solid;
  653. border-bottom: 1px #eeeeee solid;
  654. line-height: 112rpx;
  655. padding: 0 32rpx;
  656. font-size: 28rpx;
  657. font-family: PingFang SC;
  658. font-weight: 500;
  659. color: #6d7c88;
  660. .zhu-right {
  661. display: inline-block;
  662. padding-left: 60rpx;
  663. }
  664. .zhu-num {
  665. color: #000000;
  666. }
  667. }
  668. .info-main {
  669. padding: 0 32rpx;
  670. .info-box {
  671. padding-top: 22rpx;
  672. display: flex;
  673. justify-content: space-between;
  674. align-items: center;
  675. .info-left {
  676. font-size: 28rpx;
  677. font-family: PingFang SC;
  678. font-weight: 500;
  679. color: #6d7c88;
  680. }
  681. .info-right {
  682. font-size: 28rpx;
  683. font-family: PingFang SC;
  684. font-weight: 500;
  685. color: #0f253a;
  686. }
  687. }
  688. }
  689. .btn {
  690. position: absolute;
  691. bottom: 50rpx;
  692. left: 50%;
  693. margin-left: -342rpx;
  694. width: 684rpx;
  695. height: 86rpx;
  696. background: linear-gradient(90deg, #60bab0, #60bab0, #45969b);
  697. border-radius: 10rpx;
  698. text-align: center;
  699. line-height: 86rpx;
  700. font-size: 36rpx;
  701. font-family: PingFang SC;
  702. font-weight: 500;
  703. color: #ffffff;
  704. }
  705. }
  706. .psw-wrapper {
  707. width: 548rpx;
  708. height: 344rpx;
  709. background-color: #ffffff;
  710. .psw-title {
  711. width: 100%;
  712. font-size: 35rpx;
  713. padding: 43rpx 0 49rpx;
  714. text-align: center;
  715. font-weight: 800;
  716. }
  717. .psw-ipt {
  718. display: block;
  719. background-color: #dce3ed;
  720. height: 90rpx;
  721. width: 464rpx;
  722. padding-left: 30rpx;
  723. margin: 0 auto;
  724. font-size: 80rpx;
  725. }
  726. .psw-btn text {
  727. display: inline-block;
  728. text-align: center;
  729. width: 50%;
  730. padding-top: 29rpx;
  731. font-size: 35rpx;
  732. }
  733. .psw-qd {
  734. color: #45969b;
  735. }
  736. }
  737. .tishi {
  738. position: fixed;
  739. bottom: 400rpx;
  740. right: 20rpx;
  741. z-index: 100;
  742. image {
  743. width: 100%;
  744. height: 100%;
  745. }
  746. .closeBox {
  747. position: absolute;
  748. top: 0;
  749. right: 0;
  750. width: 50rpx;
  751. height: 50rpx;
  752. padding-top: 10rpx;
  753. .close {
  754. width: 30rpx;
  755. height: 30rpx;
  756. margin:auto ;
  757. }
  758. }
  759. .main {
  760. top: 40rpx;
  761. right: 20rpx;
  762. position: absolute;
  763. width: 100rpx;
  764. height: 100rpx;
  765. }
  766. }
  767. </style>