123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <template>
- <view class="background1">
- <view class="background2">
- <view class="title"> {{$t('promotion.a1')}} </view>
- <view class="top">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg1.png" mode=""></image>
- <view class="wen">{{$t('promotion.a2')}}</view>
- </view>
- <view class="wenben"> {{$t('promotion.a3')}}</view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg2.png" mode=""></image>
- <view class="wen">V1</view>
- </view>
- <view class="wenben"> {{$t('promotion.a4')}} </view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg3.png" mode=""></image>
- <view class="wen">V2</view>
- </view>
- <view class="wenben"> {{$t('promotion.a5')}}</view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg4.png" mode=""></image>
- <view class="wen">V3</view>
- </view>
- <view class="wenben"> {{$t('promotion.a6')}} </view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg5.png" mode=""></image>
- <view class="wen">V4</view>
- </view>
- <view class="wenben"> {{$t('promotion.a7')}} </view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg6.png" mode=""></image>
- <view class="wen">V5</view>
- </view>
- <view class="wenben"> {{$t('promotion.a8')}}</view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg7.png" mode=""></image>
- <view class="wen">V6</view>
- </view>
- <view class="wenben"> {{$t('promotion.a9')}}</view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg8.png" mode=""></image>
- <view class="wen">V7</view>
- </view>
- <view class="wenben"> {{$t('promotion.a10')}} </view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg9.png" mode=""></image>
- <view class="wen">V8</view>
- </view>
- <view class="wenben"> {{$t('promotion.a11')}}</view>
- </view>
- <view class="topt">
- <view class="hy">
- <image class="icon" src="../../static/icon/tg10.png" mode=""></image>
- <view class="wen">{{$t('promotion.a12')}}</view>
- </view>
- <view class="wenben"> {{$t('promotion.a13')}} </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {
- uni.setNavigationBarTitle({
- title: this.$t("tab.a5"),
- });
- }
- };
- </script>
- <style lang="scss">
- .background1 {
- position: relative;
- width: 750rpx;
- height: 2600rpx;
- background: url("../../static/img/tuiguang2.png");
- background-size: 100% 100%;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- }
- .background2 {
- background: url("../../static/img/tuiguang1.png");
- position: absolute;
- background-size: 100% 100%;
- width: 650rpx;
- height: 2250rpx;
- top: 53%;
- left: 50%;
- transform: translate(-50%, -60%);
- }
- .topt {
- margin-top: -50rpx;
- }
- .title {
- margin-top: 95rpx;
- margin-left: 253rpx;
- font-size: 37rpx;
- font-weight: bold;
- color: #d7b271;
- }
- .hy {
- display: flex;
- justify-content: start;
- margin-top: 70rpx;
- .icon {
- width: 66rpx;
- height: 49rpx;
- margin-left: 60rpx;
- }
- .wen {
- padding-left: 20rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #201809;
- }
-
- }
- .wenben {
- margin: 20rpx 20rpx 0 60rpx;
- height: 100%;
- font-size: 28rpx;
- font-weight: bold;
- color: #201809;
- }
-
- </style>
|