benefits.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. <template>
  2. <view class="benefits-page" :style="{ paddingTop: (12 + statusBarHeight + 44) + 'px' }">
  3. <!-- 顶部导航栏 -->
  4. <view class="nav-bar" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="nav-content">
  6. <view class="nav-left" @click="goBack">
  7. <u-icon name="arrow-leftward" color="rgba(255, 255, 255, 1)" size="42"></u-icon>
  8. </view>
  9. <view class="nav-title">我的权益</view>
  10. <view class="nav-right"></view>
  11. </view>
  12. </view>
  13. <!-- 当前会员状态卡片 -->
  14. <view class="membership-card">
  15. <view class="card-content">
  16. <view class="card-left">
  17. <view class="card-title">我的权益</view>
  18. <view class="card-subtitle">常规版 剩余5天到期</view>
  19. </view>
  20. <view class="card-right">
  21. <view class="benefit-item">
  22. <view class="benefit-label">查看权益</view>
  23. <view class="benefit-count">10/50</view>
  24. </view>
  25. <view class="benefit-item">
  26. <view class="benefit-label">沟通权益</view>
  27. <view class="benefit-count">10/50</view>
  28. </view>
  29. <view class="benefit-item">
  30. <view class="benefit-label">普通职位</view>
  31. <view class="benefit-count">10/50</view>
  32. </view>
  33. <view class="benefit-item">
  34. <view class="benefit-label">急聘职位</view>
  35. <view class="benefit-count">10/50</view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 购买VIP享受更多权益 -->
  41. <view class="benefits-section">
  42. <!-- 权益对比表格 -->
  43. <view class="benefits-table">
  44. <view class="section-title">购买VIP, 享受更多权益</view>
  45. <!-- 表头 -->
  46. <view class="table-header">
  47. <view class="header-cell benefit-type">权益类型</view>
  48. <view class="header-cell basic">基础权益</view>
  49. <view class="header-cell regular active">
  50. <!-- <view class="plan-tag">生效中</view> -->
  51. <view class="plan-name">常规版</view>
  52. <view class="plan-expire">剩余5天到期</view>
  53. </view>
  54. <view class="header-cell vip">VIP版</view>
  55. <view class="header-cell flagship recommended">
  56. <view class="plan-tag">推荐</view>
  57. <view class="plan-name">旗舰版</view>
  58. </view>
  59. </view>
  60. <!-- 表格内容 -->
  61. <view class="table-row">
  62. <view class="row-cell benefit-type">在线普通职位</view>
  63. <view class="row-cell basic">10个</view>
  64. <view class="row-cell regular">35个</view>
  65. <view class="row-cell vip">45个</view>
  66. <view class="row-cell flagship">不限</view>
  67. </view>
  68. <view class="table-row">
  69. <view class="row-cell benefit-type">在线急聘职位</view>
  70. <view class="row-cell basic">0个</view>
  71. <view class="row-cell regular">5个</view>
  72. <view class="row-cell vip">15个</view>
  73. <view class="row-cell flagship">50个</view>
  74. </view>
  75. <view class="table-row">
  76. <view class="row-cell benefit-type">每日查看总数</view>
  77. <view class="row-cell basic">20个</view>
  78. <view class="row-cell regular">50个</view>
  79. <view class="row-cell vip">不限</view>
  80. <view class="row-cell flagship">不限</view>
  81. </view>
  82. <view class="table-row">
  83. <view class="row-cell benefit-type">每日沟通总数</view>
  84. <view class="row-cell basic">5个</view>
  85. <view class="row-cell regular">20个</view>
  86. <view class="row-cell vip">50个</view>
  87. <view class="row-cell flagship">100个</view>
  88. </view>
  89. <view class="table-row">
  90. <view class="row-cell benefit-type">查看沟通范围</view>
  91. <view class="row-cell basic">仅普通职位</view>
  92. <view class="row-cell regular">仅普通职位</view>
  93. <view class="row-cell vip">不限</view>
  94. <view class="row-cell flagship">不限</view>
  95. </view>
  96. <view class="table-row price-row">
  97. <view class="row-cell benefit-type">价格</view>
  98. <view class="row-cell basic">免费</view>
  99. <view class="row-cell regular">¥599/年</view>
  100. <view class="row-cell vip">¥1599/年</view>
  101. <view class="row-cell flagship">¥2599/年</view>
  102. </view>
  103. </view>
  104. <!-- 说明文字 -->
  105. <view class="notes">
  106. <view class="note-item">
  107. <text class="note-number">1.</text>
  108. <text class="note-text">基础&常规权益中,查看和开聊权限仅限普通职位使用</text>
  109. </view>
  110. <view class="note-item">
  111. <text class="note-number">2.</text>
  112. <text class="note-text">在常规版本体验期中购买VIP及以上版本体验卡将会立即失效</text>
  113. </view>
  114. <view class="note-item">
  115. <text class="note-number">3.</text>
  116. <text class="note-text">你可以直接购买VIP,也可以</text>
  117. <text class="note-link" @click="viewAllBenefits">查看全部权益包</text>
  118. <text class="note-text">进行购买</text>
  119. </view>
  120. <view class="note-item">
  121. <text class="note-number">4.</text>
  122. <text class="note-text">如有问题,请联系我的客服</text>
  123. </view>
  124. </view>
  125. </view>
  126. <!-- 升级VIP按钮 -->
  127. <view class="upgrade-button" @click="showPaymentModal">
  128. 升级VIP
  129. </view>
  130. <!-- 支付弹窗 -->
  131. <u-popup v-model="showPayment" mode="bottom" border-radius="42" height="auto" :safe-area-inset-bottom="true">
  132. <view class="payment-picker">
  133. <view class="picker-header">
  134. <text class="picker-title">选择会员版本</text>
  135. </view>
  136. <view class="picker-content">
  137. <view
  138. class="plan-option"
  139. :class="{ active: selectedPlan === 'regular' }"
  140. @click="selectPlan('regular')"
  141. >
  142. <view class="option-left">
  143. <view class="radio-btn" :class="{ checked: selectedPlan === 'regular' }">
  144. <u-icon v-if="selectedPlan === 'regular'" name="checkmark" color="#ffffff" size="28"></u-icon>
  145. </view>
  146. <text class="option-text">常规版</text>
  147. <view class="price-tag">
  148. <text>¥599</text>
  149. </view>
  150. </view>
  151. </view>
  152. <view
  153. class="plan-option"
  154. :class="{ active: selectedPlan === 'vip' }"
  155. @click="selectPlan('vip')"
  156. >
  157. <view class="option-left">
  158. <view class="radio-btn" :class="{ checked: selectedPlan === 'vip' }">
  159. <u-icon v-if="selectedPlan === 'vip'" name="checkmark" color="#ffffff" size="28"></u-icon>
  160. </view>
  161. <text class="option-text">VIP版</text>
  162. <view class="price-tag">
  163. <text>¥1599</text>
  164. </view>
  165. </view>
  166. </view>
  167. <view
  168. class="plan-option"
  169. :class="{ active: selectedPlan === 'flagship' }"
  170. @click="selectPlan('flagship')"
  171. >
  172. <view class="option-left">
  173. <view class="radio-btn" :class="{ checked: selectedPlan === 'flagship' }">
  174. <u-icon v-if="selectedPlan === 'flagship'" name="checkmark" color="#ffffff" size="28"></u-icon>
  175. </view>
  176. <text class="option-text">旗舰版</text>
  177. <view class="price-tag">
  178. <text>¥2599</text>
  179. </view>
  180. </view>
  181. </view>
  182. </view>
  183. <!-- 支付按钮 -->
  184. <view class="payment-button" @click="confirmPayment">
  185. <text>确认支付 ¥{{ getSelectedPrice() }}</text>
  186. </view>
  187. </view>
  188. </u-popup>
  189. </view>
  190. </template>
  191. <script>
  192. export default {
  193. data() {
  194. return {
  195. statusBarHeight: 0, // 状态栏高度
  196. // 当前会员信息
  197. currentPlan: 'regular',
  198. remainingDays: 5,
  199. // 权益使用情况
  200. benefits: {
  201. view: { used: 10, total: 50 },
  202. communicate: { used: 10, total: 50 },
  203. regularJobs: { used: 10, total: 50 },
  204. urgentJobs: { used: 10, total: 50 }
  205. },
  206. // 支付弹窗
  207. showPayment: false,
  208. selectedPlan: 'regular',
  209. planPrices: {
  210. regular: 599,
  211. vip: 1599,
  212. flagship: 2599
  213. }
  214. }
  215. },
  216. onLoad() {
  217. // 获取状态栏高度
  218. let systemInfo = uni.getSystemInfoSync();
  219. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  220. },
  221. methods: {
  222. // 返回上一页
  223. goBack() {
  224. uni.navigateBack()
  225. },
  226. // 查看全部权益包
  227. viewAllBenefits() {
  228. uni.showToast({
  229. title: '查看全部权益包',
  230. icon: 'none'
  231. })
  232. },
  233. // 显示支付弹窗
  234. showPaymentModal() {
  235. this.showPayment = true
  236. },
  237. // 选择会员计划
  238. selectPlan(plan) {
  239. this.selectedPlan = plan
  240. },
  241. // 获取选中计划的价格
  242. getSelectedPrice() {
  243. return this.planPrices[this.selectedPlan]
  244. },
  245. // 确认支付
  246. confirmPayment() {
  247. uni.showToast({
  248. title: `支付¥${this.getSelectedPrice()}成功`,
  249. icon: 'success'
  250. })
  251. this.showPayment = false
  252. }
  253. }
  254. }
  255. </script>
  256. <style lang="scss" scoped>
  257. .benefits-page {
  258. min-height: 100vh;
  259. background: var(--线性渐变, linear-gradient(90.00deg, rgba(13, 39, 247, 1),rgba(19, 193, 234, 1) 80%));
  260. background-size: 100% 40%;
  261. background-repeat: no-repeat;
  262. }
  263. // 顶部导航栏
  264. .nav-bar {
  265. position: fixed;
  266. top: 0;
  267. left: 0;
  268. right: 0;
  269. z-index: 1000;
  270. .nav-content {
  271. display: flex;
  272. align-items: center;
  273. justify-content: space-between;
  274. height: 88rpx;
  275. padding: 0 32rpx;
  276. .nav-left, .nav-right {
  277. width: 60rpx;
  278. height: 60rpx;
  279. display: flex;
  280. align-items: center;
  281. justify-content: center;
  282. }
  283. .nav-title {
  284. font-size: 36rpx;
  285. font-weight: 600;
  286. color: rgba(255, 255, 255, 1);
  287. }
  288. }
  289. }
  290. // 当前会员状态卡片
  291. .membership-card {
  292. background: linear-gradient(66.73deg, rgba(255, 160, 162, 1),rgba(255, 203, 204.5, 0.3) 49%,rgba(255, 181.5, 183.25, 0.56) 100%);
  293. border-radius: 20rpx;
  294. padding: 32rpx;
  295. margin: 0 40rpx;
  296. box-shadow: 0 8rpx 24rpx rgba(255, 182, 193, 0.3);
  297. .card-content {
  298. display: flex;
  299. justify-content: space-between;
  300. align-items: flex-start;
  301. .card-left {
  302. flex: 1;
  303. .card-title {
  304. color: rgba(255, 255, 255, 1);
  305. font-family: DM Sans;
  306. font-size: 48rpx;
  307. font-weight: 700;
  308. line-height: 60rpx;
  309. letter-spacing: 0px;
  310. text-align: left;
  311. margin-bottom: 8rpx;
  312. }
  313. .card-subtitle {
  314. color: rgba(255, 255, 255, 1);
  315. font-family: DM Sans;
  316. font-size: 26rpx;
  317. font-weight: 400;
  318. line-height: 32rpx;
  319. letter-spacing: 0%;
  320. text-align: left;
  321. }
  322. }
  323. .card-right {
  324. display: grid;
  325. grid-template-columns: 1fr 1fr;
  326. border-radius: 12rpx;
  327. background: radial-gradient(184.79% 115.97% at 92% 113.99999999999999%,rgba(255, 102, 0, 0.35),rgba(255, 65, 86, 1) 100%);
  328. gap: 16rpx;
  329. padding: 14rpx 38rpx;
  330. .benefit-item {
  331. text-align: center;
  332. .benefit-label {
  333. color: rgba(255, 255, 255, 1);
  334. font-family: DM Sans;
  335. font-size: 24rpx;
  336. font-weight: 400;
  337. line-height: 32rpx;
  338. letter-spacing: 0%;
  339. text-align: left;
  340. margin-bottom: 8rpx;
  341. }
  342. .benefit-count {
  343. color: rgba(255, 255, 255, 1);
  344. font-family: DM Sans;
  345. font-size: 24rpx;
  346. font-weight: 700;
  347. line-height: 32rpx;
  348. letter-spacing: 0%;
  349. text-align: left;
  350. }
  351. }
  352. }
  353. }
  354. }
  355. // 权益对比区域
  356. .benefits-section {
  357. margin: 20rpx 40rpx;
  358. .section-title {
  359. color: rgba(23, 23, 37, 1);
  360. font-family: DM Sans;
  361. font-size: 28rpx;
  362. font-weight: 400;
  363. line-height: 44rpx;
  364. letter-spacing: 0.5%;
  365. text-align: left;
  366. margin-bottom: 20rpx;
  367. }
  368. }
  369. // 权益对比表格
  370. .benefits-table {
  371. background: #fff;
  372. border-radius: 16rpx;
  373. padding: 26rpx;
  374. overflow: hidden;
  375. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  376. .table-header {
  377. display: grid;
  378. grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  379. background: #f8f9fa;
  380. border-bottom: 4rpx solid #FFFFFF;
  381. .header-cell {
  382. padding: 12rpx;
  383. color: rgba(23, 23, 37, 1);
  384. font-family: DM Sans;
  385. font-size: 24rpx;
  386. font-weight: 500;
  387. line-height: 26rpx;
  388. letter-spacing: 0.5%;
  389. text-align: center;
  390. position: relative;
  391. border-right: 4rpx solid #FFFFFF;
  392. display: flex;
  393. flex-direction: column;
  394. align-items: center;
  395. justify-content: center;
  396. &:first-child {
  397. border-top-left-radius: 16rpx;
  398. }
  399. &:last-child {
  400. border-right: none;
  401. border-top-right-radius: 16rpx;
  402. }
  403. &.benefit-type {
  404. color: rgba(23, 23, 37, 1);
  405. font-family: DM Sans;
  406. font-size: 24rpx;
  407. font-weight: 500;
  408. line-height: 26rpx;
  409. letter-spacing: 0.5%;
  410. text-align: center;
  411. background: rgba(219, 216, 216, 1);
  412. }
  413. &.basic {
  414. background: rgba(219, 216, 216, 1);
  415. }
  416. &.active {
  417. background: linear-gradient(135.00deg, rgba(255, 187, 141, 0.4),rgba(255, 102, 0, 0.4) 100%);
  418. color: rgba(224, 90, 0, 1);
  419. }
  420. &.vip {
  421. background: linear-gradient(135.00deg, rgba(255, 180, 180, 0.6),rgba(255, 89, 89, 0.6) 100%);
  422. color: rgba(255, 62, 62, 1);
  423. }
  424. &.recommended {
  425. background: linear-gradient(133.74deg, rgba(251, 231, 185, 1),rgba(240, 176, 72, 1) 100%);
  426. color: rgba(212, 131, 0, 1);
  427. }
  428. .plan-tag {
  429. position: absolute;
  430. top: 0rpx;
  431. right: 0rpx;
  432. background: var(--线性渐变, linear-gradient(132.53deg, rgba(106.94185638427734, 84.63434600830078, 214.0178680419922, 0.96),rgba(144.87640380859375, 87.8011474609375, 191.25, 1) 95%));
  433. color: rgba(255, 255, 255, 1);
  434. font-family: DM Sans;
  435. font-size: 12rpx;
  436. font-weight: 400;
  437. line-height: 14rpx;
  438. letter-spacing: 0px;
  439. text-align: left;
  440. padding: 4rpx 12rpx;
  441. border-radius: 0rpx 16rpx 0rpx 16rpx;
  442. transform-origin: center;
  443. display: flex;
  444. align-items: center;
  445. justify-content: center;
  446. overflow: hidden;
  447. &::before {
  448. content: '';
  449. position: absolute;
  450. top: 0;
  451. left: 0;
  452. right: 0;
  453. bottom: 0;
  454. background: inherit;
  455. transform: rotate(-45deg);
  456. z-index: -1;
  457. }
  458. }
  459. .plan-name {
  460. font-size: 24rpx;
  461. font-weight: 600;
  462. margin-bottom: 4rpx;
  463. }
  464. .plan-expire {
  465. font-size: 16rpx;
  466. color: rgba(224, 90, 0, 1);
  467. }
  468. }
  469. }
  470. .table-row {
  471. display: grid;
  472. grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  473. border-bottom: 4rpx solid #FFFFFF;
  474. &:last-child {
  475. border-bottom: none;
  476. .row-cell:first-child {
  477. border-bottom-left-radius: 16rpx;
  478. }
  479. .row-cell:last-child {
  480. border-bottom-right-radius: 16rpx;
  481. }
  482. }
  483. &.price-row {
  484. background: #f8f9fa;
  485. font-weight: 600;
  486. }
  487. .row-cell {
  488. padding: 24rpx 12rpx;
  489. font-size: 16rpx;
  490. text-align: center;
  491. border-right: 4rpx solid #FFFFFF;
  492. display: flex;
  493. align-items: center;
  494. justify-content: center;
  495. &:last-child {
  496. border-right: none;
  497. }
  498. &.benefit-type {
  499. text-align: center;
  500. color: rgba(23, 23, 37, 1);
  501. font-weight: 500;
  502. align-items: center;
  503. justify-content: center;
  504. background: rgba(246, 246, 246, 1);
  505. }
  506. &.basic {
  507. color: #666;
  508. background: rgba(246, 246, 246, 1);
  509. }
  510. &.regular {
  511. color: rgba(224, 90, 0, 1);
  512. font-weight: 600;
  513. background: rgba(254, 240, 229, 1);
  514. }
  515. &.vip {
  516. color: rgba(255, 62, 62, 1);
  517. font-weight: 600;
  518. background: rgba(255, 235, 235, 1);
  519. }
  520. &.flagship {
  521. color: #f57c00;
  522. font-weight: 600;
  523. background: rgba(254, 238, 209, 1);
  524. }
  525. }
  526. }
  527. }
  528. // 说明文字
  529. .notes {
  530. margin-top: 32rpx;
  531. .note-item {
  532. display: flex;
  533. align-items: flex-start;
  534. margin-bottom: 16rpx;
  535. font-size: 26rpx;
  536. line-height: 1.5;
  537. gap: 8rpx;
  538. .note-number , .note-text {
  539. color: rgba(102, 102, 102, 1);
  540. font-family: DM Sans;
  541. font-size: 24rpx;
  542. font-weight: 400;
  543. line-height: 26rpx;
  544. letter-spacing: 0.5%;
  545. text-align: left;
  546. }
  547. .note-link {
  548. color: #1976d2;
  549. font-family: DM Sans;
  550. font-size: 24rpx;
  551. font-weight: 400;
  552. line-height: 26rpx;
  553. letter-spacing: 0.5%;
  554. text-decoration: underline;
  555. }
  556. }
  557. }
  558. // 升级VIP按钮
  559. .upgrade-button {
  560. position: fixed;
  561. bottom: 32rpx;
  562. left: 32rpx;
  563. right: 32rpx;
  564. height: 88rpx;
  565. background: var(--线性渐变, linear-gradient(90.00deg, rgba(13, 39, 247, 1),rgba(19, 193, 234, 1) 100%));
  566. border-radius: 44rpx;
  567. display: flex;
  568. align-items: center;
  569. justify-content: center;
  570. color: #fff;
  571. font-size: 32rpx;
  572. font-weight: 600;
  573. box-shadow: 0 8rpx 24rpx rgba(25, 118, 210, 0.3);
  574. }
  575. // 支付弹窗样式 - 仿照 tagManage 页面
  576. .payment-picker {
  577. background: #fff;
  578. border-radius: 20rpx 20rpx 0 0;
  579. overflow: hidden;
  580. }
  581. .picker-header {
  582. display: flex;
  583. justify-content: center;
  584. align-items: center;
  585. padding: 30rpx 40rpx 20rpx;
  586. border-bottom: 1rpx solid #F2F2F2;
  587. position: relative;
  588. .picker-title {
  589. color: rgba(34, 37, 42, 1);
  590. font-family: DM Sans;
  591. font-size: 36rpx;
  592. font-weight: 500;
  593. line-height: 23px;
  594. letter-spacing: 0px;
  595. text-align: center;
  596. }
  597. }
  598. .picker-content {
  599. padding: 32rpx;
  600. }
  601. .plan-option {
  602. display: flex;
  603. flex-direction: row;
  604. justify-content: flex-start;
  605. align-items: center;
  606. padding: 16rpx 28rpx;
  607. box-sizing: border-box;
  608. border: 1px solid rgba(227, 231, 236, 1);
  609. border-radius: 24px;
  610. background: rgba(255, 255, 255, 1);
  611. margin-bottom: 32rpx;
  612. &:active {
  613. background-color: #F9F9F9;
  614. }
  615. &.active {
  616. border-color: #007AFF;
  617. background: #F0F9FF;
  618. }
  619. .option-left {
  620. display: flex;
  621. align-items: center;
  622. flex: 1;
  623. .radio-btn {
  624. width: 40rpx;
  625. height: 40rpx;
  626. border: 2rpx solid #E5E5EA;
  627. border-radius: 50%;
  628. display: flex;
  629. align-items: center;
  630. justify-content: center;
  631. margin-right: 24rpx;
  632. background: #fff;
  633. transition: all 0.2s;
  634. &.checked {
  635. border-color: #007AFF;
  636. background: #007AFF;
  637. }
  638. }
  639. .option-text {
  640. font-size: 28rpx;
  641. color: rgba(29, 33, 41, 1);
  642. font-weight: 400;
  643. flex: 1;
  644. }
  645. .price-tag {
  646. background: rgba(153, 196, 250, 0.4);
  647. border-radius: 8rpx;
  648. padding: 4rpx 12rpx;
  649. text {
  650. font-size: 24rpx;
  651. line-height: 24rpx;
  652. color: rgba(1, 107, 246, 1);
  653. font-weight: 500;
  654. }
  655. }
  656. }
  657. }
  658. .picker-content :last-child {
  659. margin-bottom: 0rpx;
  660. }
  661. .payment-button {
  662. width: 90%;
  663. height: 88rpx;
  664. background: linear-gradient(90deg, #007AFF 0%, #42a5f5 100%);
  665. border-radius: 44rpx;
  666. display: flex;
  667. align-items: center;
  668. justify-content: center;
  669. margin: 32rpx;
  670. box-shadow: 0 8rpx 24rpx rgba(0, 122, 255, 0.3);
  671. text {
  672. color: #fff;
  673. font-size: 32rpx;
  674. font-weight: 600;
  675. }
  676. }
  677. </style>