moreRecharge.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view class="page">
  3. <view class="p-recharge flex-col">
  4. <view class="grid">
  5. <view class="flex-col items-start grid-item" v-for="(item,idx) in 4" :key="idx">
  6. <view class="group_7 align-center">
  7. <text class="text_6">¥</text>
  8. <text class="text_8 clamp">100</text>
  9. </view>
  10. <text class="text_10">充值金额</text>
  11. </view>
  12. </view>
  13. </view>
  14. <safe-area bgColor="#f8f8f8" />
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. page{
  27. background-color: #f8f8f8;
  28. }
  29. .page{
  30. padding: 30rpx;
  31. }
  32. .p-recharge{
  33. padding: 29rpx 20rpx 30rpx;
  34. background-color: #ffffff;
  35. border-radius: 4rpx;
  36. .text_4 {
  37. color: #333333;
  38. font-size: 30rpx;
  39. font-family: PingFang;
  40. line-height: 29rpx;
  41. letter-spacing: 1.2rpx;
  42. }
  43. .group_6 {
  44. margin-top: 4rpx;
  45. }
  46. .text_5 {
  47. color: #999999;
  48. font-size: 24rpx;
  49. font-family: PingFang;
  50. line-height: 23rpx;
  51. }
  52. .image_5 {
  53. margin-left: 13rpx;
  54. flex-shrink: 0;
  55. width: 12rpx;
  56. height: 20rpx;
  57. }
  58. .grid {
  59. display: grid;
  60. grid-template-columns: repeat(2, 1fr);
  61. row-gap: 22rpx;
  62. column-gap: 22rpx;
  63. }
  64. .grid-item {
  65. padding: 26rpx 22rpx 30rpx;
  66. background-color: #ffffff;
  67. border-radius: 4rpx;
  68. border: solid 1rpx #d8d8d8;
  69. }
  70. .group_7 {
  71. line-height: 31rpx;
  72. }
  73. .text_6 {
  74. color: #333333;
  75. font-size: 28rpx;
  76. font-family: PingFang;
  77. letter-spacing: 1.12rpx;
  78. }
  79. .text_8 {
  80. color: #333333;
  81. font-size: 40rpx;
  82. font-family: PingFang;
  83. max-width: 220rpx;
  84. letter-spacing: 1.6rpx;
  85. }
  86. .text_10 {
  87. margin-left: 7rpx;
  88. margin-top: 13rpx;
  89. color: #999999;
  90. font-size: 24rpx;
  91. font-family: PingFang;
  92. }
  93. }
  94. </style>