firstReward.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="first-reward">
  3. <van-nav-bar
  4. title="0元购机,尽情享受"
  5. left-arrow
  6. @click-left="goBackFun"
  7. fixed
  8. />
  9. <div class="first-reward-container">
  10. <div class="first-reward-container_privilege">
  11. <img src="@/assets/image/claimCloudPhone/privilege-img.png" alt="" />
  12. <div class="first-reward-container_privilege-tips">
  13. 以上权益已开通至您的账户
  14. </div>
  15. <img src="@/assets/image/claimCloudPhone/first-reward-container-privilege.png" alt="" class="btn">
  16. </div>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. export default {
  22. auth: false,
  23. name: 'firstReward',
  24. head: {
  25. title: '0元购机,尽情享受',
  26. },
  27. components: {},
  28. };
  29. </script>
  30. <style lang="less" scoped>
  31. .first-reward {
  32. height: 100%;
  33. box-sizing: border-box;
  34. background: #f64d5d;
  35. .first-reward-container {
  36. padding: 12.2666666667vw 16px 16px;
  37. height: 100%;
  38. box-sizing: border-box;
  39. background: url('~/assets/image/claimCloudPhone/first-reward-img.png')
  40. no-repeat;
  41. background-size: 100% 210px;
  42. background-position: 0px 12.2666666667vw;
  43. .first-reward-container_privilege {
  44. padding-top: 224px;
  45. & > img {
  46. width: 100%;
  47. }
  48. .first-reward-container_privilege-tips {
  49. font-family: PingFangSC, PingFang SC;
  50. font-weight: 400;
  51. font-size: 12px;
  52. color: #ffffff;
  53. margin: 16px 0;
  54. line-height: 17px;
  55. text-align: center;
  56. font-style: normal;
  57. }
  58. .btn{
  59. height: 56px;
  60. }
  61. }
  62. }
  63. }
  64. ::v-deep .van-nav-bar__arrow {
  65. color: #000000;
  66. font-size: 24px;
  67. }
  68. ::v-deep .van-nav-bar__title {
  69. font-weight: bold !important;
  70. font-size: 17px !important;
  71. color: #0a132b !important;
  72. line-height: 24px !important;
  73. }
  74. </style>