game.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <view class="background1">
  3. <view class="background2">
  4. <view class="title"> {{$t('game.a1')}} </view>
  5. <view class="juli">
  6. {{$t('game.a2')}}
  7. </view>
  8. <view class="neirong">
  9. <view class="nr1">
  10. {{$t('game.a3')}}
  11. </view>
  12. <view class="nr2">
  13. {{$t('game.a4')}}
  14. </view>
  15. </view>
  16. <view class="ls">
  17. {{$t('game.a5')}}
  18. </view>
  19. <view class="liushui">
  20. <view class="">
  21. {{$t('game.a6')}}
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. };
  32. },
  33. onLoad() {
  34. uni.setNavigationBarTitle({
  35. title: this.$t("tab.a6"),
  36. });
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. .background1 {
  42. position: relative;
  43. // width: 100vw;
  44. height: calc(100vh - var(--status-bar-height));
  45. background: url("/index/static/img/youxi1.png");
  46. background-size: 100% 100%;
  47. background-position: 50% 50%;
  48. background-repeat: no-repeat;
  49. }
  50. .background2 {
  51. background-image: url("/index/static/img/youxi2.png");
  52. position: absolute;
  53. background-size: 100% 100%;
  54. width: 650rpx;
  55. height: 930rpx;
  56. top: 50%;
  57. left: 50%;
  58. transform: translate(-50%, -60%);
  59. }
  60. .title {
  61. margin-top: 95rpx;
  62. text-align: center;
  63. font-size: 37rpx;
  64. font-weight: bold;
  65. color: #d7b271;
  66. line-height: 10rpx;
  67. }
  68. .juli {
  69. margin-left: 60rpx;
  70. margin-top: 70rpx;
  71. height: 35rpx;
  72. font-size: 36rpx;
  73. font-family: Source Han Sans CN;
  74. font-weight: bold;
  75. color: #201809;
  76. line-height: 36rpx;
  77. }
  78. .neirong {
  79. width: 530rpx;
  80. height: 100;
  81. margin-left: 60rpx;
  82. margin-top: 40rpx;
  83. }
  84. .nr1 .nr2{
  85. height: 147rpx;
  86. font-size: 28rpx;
  87. font-family: PingFang SC;
  88. font-weight: bold;
  89. color: #201809;
  90. line-height: 40rpx;
  91. }
  92. .ls {
  93. margin-left: 60rpx;
  94. margin-top: 70rpx;
  95. height: 35rpx;
  96. font-size: 36rpx;
  97. font-family: Source Han Sans CN;
  98. font-weight: bold;
  99. color: #201809;
  100. line-height: 36rpx;
  101. }
  102. .liushui {
  103. width: 530rpx;
  104. height: 190rpx;
  105. margin-left: 60rpx;
  106. margin-top: 40rpx;
  107. }
  108. </style>