monthlyCardBuy.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view >
  3. <ujp-navbar title="包月卡购买" ></ujp-navbar>
  4. <!-- 卡片 -->
  5. <view class="monthly-card">
  6. <view class="main">
  7. <view class="title-1">
  8. 充电服务费包月卡
  9. </view>
  10. <view class="title-2">
  11. 有效期内,合约充电站使用度数无上限
  12. </view>
  13. </view>
  14. <img class="cover" src="../../assets/img/cover@3.png" alt="">
  15. </view>
  16. <view class="slogan-1">
  17. 充电服务费包月卡
  18. </view>
  19. <view class="slogan-2">
  20. 单次购买、整月受益!
  21. </view>
  22. <view class="slogan-3">
  23. 仅限车主购买,适用于平台对外开放充电站
  24. </view>
  25. <!-- 立即开通 -->
  26. <view class="bottom">
  27. <button class="dredge">立即开通 ¥59.90/月</button>
  28. <p>开通表示阅读并同意
  29. <text class="agreement">《服务费折扣协议》</text>
  30. </p>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. </script>
  36. <style lang="scss" scoped>
  37. page{
  38. background-color: #2a2c31;
  39. }
  40. // 卡片
  41. .monthly-card{
  42. margin: 20px;
  43. border-radius: 16px;
  44. height: 150px;
  45. background:linear-gradient(#F2E6CA,#C9A87B);
  46. position: relative;
  47. .main{
  48. padding: 24px 0 24px 24px ;
  49. height: 100%;
  50. background: url(@/assets/img/card@3.png) ;
  51. background-repeat: no-repeat;
  52. background-position: 30% 10%;
  53. background-size: cover;
  54. color: rgba(255, 255, 255, 100);
  55. .title-1{
  56. line-height: 28px;
  57. font-size: 28px;
  58. margin-bottom: 8px;
  59. }
  60. .title-2{
  61. line-height: 24px;
  62. font-size: 17px;
  63. }
  64. }
  65. .cover{
  66. width: 102%;
  67. position: absolute;
  68. bottom: -10px;
  69. left: -2px;
  70. right: 0;
  71. }
  72. }
  73. .slogan-1{
  74. height: 36px;
  75. color: rgba(234, 217, 180, 100);
  76. font-size: 24px;
  77. text-align: center;
  78. margin-bottom: 4px;
  79. }
  80. .slogan-2{
  81. height: 36px;
  82. color: rgba(234, 217, 180, 100);
  83. font-size: 28px;
  84. text-align: center;
  85. margin-bottom: 12px;
  86. }
  87. .slogan-3{
  88. height: 20px;
  89. color: rgba(255, 255, 255, 100);
  90. font-size: 14px;
  91. text-align: center;
  92. }
  93. // 立即开通
  94. .bottom{
  95. position: fixed;
  96. bottom: 40px;
  97. left: 0;
  98. right: 0;
  99. .dredge{
  100. width: 72.2%;
  101. border-radius: 50px;
  102. font-size: 18px;
  103. background:linear-gradient(to right,#C9A87B,#F2E6CA);
  104. margin-bottom: 12px;
  105. }
  106. p{
  107. height: 20px;
  108. color: rgba(226, 222, 217, 100);
  109. font-size: 14px;
  110. text-align: center;
  111. }
  112. .agreement{
  113. color: #897a69;
  114. }
  115. }
  116. </style>