game.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. }
  34. </script>
  35. <style lang="scss">
  36. .background1 {
  37. position: relative;
  38. // width: 100vw;
  39. height: calc(100vh - var(--status-bar-height));
  40. background: url("/index/static/img/youxi1.png");
  41. background-size: 100% 100%;
  42. background-position: 50% 50%;
  43. background-repeat: no-repeat;
  44. }
  45. .background2 {
  46. background-image: url("/index/static/img/youxi2.png");
  47. position: absolute;
  48. background-size: 100% 100%;
  49. width: 650rpx;
  50. height: 930rpx;
  51. top: 50%;
  52. left: 50%;
  53. transform: translate(-50%, -60%);
  54. }
  55. .title {
  56. margin-top: 95rpx;
  57. text-align: center;
  58. font-size: 37rpx;
  59. font-weight: bold;
  60. color: #d7b271;
  61. line-height: 10rpx;
  62. }
  63. .juli {
  64. margin-left: 60rpx;
  65. margin-top: 70rpx;
  66. height: 35rpx;
  67. font-size: 36rpx;
  68. font-family: Source Han Sans CN;
  69. font-weight: bold;
  70. color: #201809;
  71. line-height: 36rpx;
  72. }
  73. .neirong {
  74. width: 530rpx;
  75. height: 100;
  76. margin-left: 60rpx;
  77. margin-top: 40rpx;
  78. }
  79. .nr1 .nr2{
  80. height: 147rpx;
  81. font-size: 28rpx;
  82. font-family: PingFang SC;
  83. font-weight: bold;
  84. color: #201809;
  85. line-height: 40rpx;
  86. }
  87. .ls {
  88. margin-left: 60rpx;
  89. margin-top: 70rpx;
  90. height: 35rpx;
  91. font-size: 36rpx;
  92. font-family: Source Han Sans CN;
  93. font-weight: bold;
  94. color: #201809;
  95. line-height: 36rpx;
  96. }
  97. .liushui {
  98. width: 530rpx;
  99. height: 190rpx;
  100. margin-left: 60rpx;
  101. margin-top: 40rpx;
  102. }
  103. </style>