123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <view class="background1">
- <view class="background2">
- <view class="title"> {{$t('game.a1')}} </view>
- <view class="juli">
- {{$t('game.a2')}}
- </view>
- <view class="neirong">
- <view class="nr1">
- {{$t('game.a3')}}
- </view>
- <view class="nr2">
- {{$t('game.a4')}}
- </view>
- </view>
- <view class="ls">
- {{$t('game.a5')}}
- </view>
- <view class="liushui">
- <view class="">
- {{$t('game.a6')}}
- </view>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad() {
- uni.setNavigationBarTitle({
- title: this.$t("tab.a6"),
- });
- }
- }
- </script>
- <style lang="scss">
- .background1 {
- position: relative;
- height: calc(100vh - var(--status-bar-height));
- background: url("../../static/img/youxi1.png");
- background-size: 100% 100%;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- }
- .background2 {
- background:url("../../static/img/youxi2.png");
- position: absolute;
- background-size: 100% 100%;
- width: 650rpx;
- height: 960rpx;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -60%);
- }
- .title {
- margin-top: 95rpx;
- text-align: center;
- font-size: 37rpx;
- font-weight: bold;
- color: #d7b271;
- }
- .juli {
- margin-left: 60rpx;
- margin-top: 70rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #201809;
- }
- .neirong {
- width: 530rpx;
- height: 100;
- margin-left: 60rpx;
- margin-top: 30rpx;
- }
- .nr1 .nr2{
- height: 147rpx;
- font-size: 28rpx;
- font-weight: bold;
- color: #201809;
- }
-
- .ls {
- margin-left: 60rpx;
- margin-top: 70rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #201809;
- }
-
- .liushui {
- width: 530rpx;
- height: 190rpx;
- margin-left: 60rpx;
- margin-top: 30rpx;
- }
- </style>
|