promotion.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view class="background1">
  3. <view class="background2">
  4. <view class="title"> {{$t('promotion.a1')}} </view>
  5. <view class="top">
  6. <view class="hy">
  7. <image class="icon" src="../../static/icon/tg1.png" mode=""></image>
  8. <view class="wen">{{$t('promotion.a2')}}</view>
  9. </view>
  10. <view class="wenben"> {{$t('promotion.a3')}}</view>
  11. </view>
  12. <view class="topt">
  13. <view class="hy">
  14. <image class="icon" src="../../static/icon/tg2.png" mode=""></image>
  15. <view class="wen">V1</view>
  16. </view>
  17. <view class="wenben"> {{$t('promotion.a4')}} </view>
  18. </view>
  19. <view class="topt">
  20. <view class="hy">
  21. <image class="icon" src="../../static/icon/tg3.png" mode=""></image>
  22. <view class="wen">V2</view>
  23. </view>
  24. <view class="wenben"> {{$t('promotion.a5')}}</view>
  25. </view>
  26. <view class="topt">
  27. <view class="hy">
  28. <image class="icon" src="../../static/icon/tg4.png" mode=""></image>
  29. <view class="wen">V3</view>
  30. </view>
  31. <view class="wenben"> {{$t('promotion.a6')}} </view>
  32. </view>
  33. <view class="topt">
  34. <view class="hy">
  35. <image class="icon" src="../../static/icon/tg5.png" mode=""></image>
  36. <view class="wen">V4</view>
  37. </view>
  38. <view class="wenben"> {{$t('promotion.a7')}} </view>
  39. </view>
  40. <view class="topt">
  41. <view class="hy">
  42. <image class="icon" src="../../static/icon/tg6.png" mode=""></image>
  43. <view class="wen">V5</view>
  44. </view>
  45. <view class="wenben"> {{$t('promotion.a8')}}</view>
  46. </view>
  47. <view class="topt">
  48. <view class="hy">
  49. <image class="icon" src="../../static/icon/tg7.png" mode=""></image>
  50. <view class="wen">V6</view>
  51. </view>
  52. <view class="wenben"> {{$t('promotion.a9')}}</view>
  53. </view>
  54. <view class="topt">
  55. <view class="hy">
  56. <image class="icon" src="../../static/icon/tg8.png" mode=""></image>
  57. <view class="wen">V7</view>
  58. </view>
  59. <view class="wenben"> {{$t('promotion.a10')}} </view>
  60. </view>
  61. <view class="topt">
  62. <view class="hy">
  63. <image class="icon" src="../../static/icon/tg9.png" mode=""></image>
  64. <view class="wen">V8</view>
  65. </view>
  66. <view class="wenben"> {{$t('promotion.a11')}}</view>
  67. </view>
  68. <view class="topt">
  69. <view class="hy">
  70. <image class="icon" src="../../static/icon/tg10.png" mode=""></image>
  71. <view class="wen">{{$t('promotion.a12')}}</view>
  72. </view>
  73. <view class="wenben"> {{$t('promotion.a13')}} </view>
  74. </view>
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. data() {
  81. return {};
  82. },
  83. onLoad() {
  84. uni.setNavigationBarTitle({
  85. title: this.$t("tab.a5"),
  86. });
  87. }
  88. };
  89. </script>
  90. <style lang="scss">
  91. .background1 {
  92. position: relative;
  93. width: 750rpx;
  94. height: 2600rpx;
  95. background: url("../../static/img/tuiguang2.png");
  96. background-size: 100% 100%;
  97. background-position: 50% 50%;
  98. background-repeat: no-repeat;
  99. }
  100. .background2 {
  101. background: url("../../static/img/tuiguang1.png");
  102. position: absolute;
  103. background-size: 100% 100%;
  104. width: 650rpx;
  105. height: 2250rpx;
  106. top: 53%;
  107. left: 50%;
  108. transform: translate(-50%, -60%);
  109. }
  110. .topt {
  111. margin-top: -50rpx;
  112. }
  113. .title {
  114. margin-top: 95rpx;
  115. margin-left: 253rpx;
  116. font-size: 37rpx;
  117. font-weight: bold;
  118. color: #d7b271;
  119. }
  120. .hy {
  121. display: flex;
  122. justify-content: start;
  123. margin-top: 70rpx;
  124. .icon {
  125. width: 66rpx;
  126. height: 49rpx;
  127. margin-left: 60rpx;
  128. }
  129. .wen {
  130. padding-left: 20rpx;
  131. font-size: 36rpx;
  132. font-weight: bold;
  133. color: #201809;
  134. }
  135. }
  136. .wenben {
  137. margin: 20rpx 20rpx 0 60rpx;
  138. height: 100%;
  139. font-size: 28rpx;
  140. font-weight: bold;
  141. color: #201809;
  142. }
  143. </style>