球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.4 KiB

  1. <template>
  2. <view class="flex-col page">
  3. <view class="flex-col group_4">
  4. <view class="flex-col section_2">
  5. <view class="justify-between">
  6. <text class="text_2">全面评级</text>
  7. <text class="text_3">7day/60rmb</text>
  8. </view>
  9. <view class="justify-between group_6">
  10. <text class="text_4">卡品评级</text>
  11. <text class="text_5">7day/45rmb</text>
  12. </view>
  13. <view class="justify-between group_7">
  14. <text class="text_6">签名评级</text>
  15. <text class="text_7">7day/45rmb</text>
  16. </view>
  17. <view class="justify-between group_8">
  18. <text class="text_8">套壳服务</text>
  19. <text class="text_9">7day/30rmb</text>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {};
  29. },
  30. };
  31. </script>
  32. <style scoped lang="css">
  33. .page {
  34. background-color: #f6f6f6;
  35. width: 100%;
  36. overflow-y: auto;
  37. height: 100%;
  38. }
  39. .group_4 {
  40. padding: 2rpx 0 16rpx;
  41. flex: 1 1 auto;
  42. overflow-y: auto;
  43. }
  44. .section_2 {
  45. padding: 40rpx 30rpx 40rpx 32rpx;
  46. background-color: rgb(255, 255, 255);
  47. }
  48. .group_6 {
  49. margin-top: 50rpx;
  50. }
  51. .group_7 {
  52. margin-top: 50rpx;
  53. }
  54. .group_8 {
  55. margin-top: 50rpx;
  56. }
  57. .text_2 {
  58. color: rgb(51, 51, 51);
  59. font-size: 32rpx;
  60. font-weight: 500;
  61. line-height: 44rpx;
  62. white-space: nowrap;
  63. }
  64. .text_3 {
  65. color: rgb(119, 119, 119);
  66. font-size: 32rpx;
  67. font-weight: 500;
  68. line-height: 44rpx;
  69. white-space: nowrap;
  70. }
  71. .text_4 {
  72. color: rgb(51, 51, 51);
  73. font-size: 32rpx;
  74. font-weight: 500;
  75. line-height: 44rpx;
  76. white-space: nowrap;
  77. }
  78. .text_5 {
  79. color: rgb(119, 119, 119);
  80. font-size: 32rpx;
  81. font-weight: 500;
  82. line-height: 44rpx;
  83. white-space: nowrap;
  84. }
  85. .text_6 {
  86. color: rgb(51, 51, 51);
  87. font-size: 32rpx;
  88. font-weight: 500;
  89. line-height: 44rpx;
  90. white-space: nowrap;
  91. }
  92. .text_7 {
  93. color: rgb(119, 119, 119);
  94. font-size: 32rpx;
  95. font-weight: 500;
  96. line-height: 44rpx;
  97. white-space: nowrap;
  98. }
  99. .text_8 {
  100. color: rgb(51, 51, 51);
  101. font-size: 32rpx;
  102. font-weight: 500;
  103. line-height: 44rpx;
  104. white-space: nowrap;
  105. }
  106. .text_9 {
  107. color: rgb(119, 119, 119);
  108. font-size: 32rpx;
  109. font-weight: 500;
  110. line-height: 44rpx;
  111. white-space: nowrap;
  112. }
  113. </style>