game.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="background1">
  3. <view class="background2">
  4. <view class="title"> 遊戲舉例 </view>
  5. <view class="juli">
  6. 舉例
  7. </view>
  8. <view class="neirong">
  9. <view class="nr1">
  10. 充值10000U
  11. </view>
  12. <view class="nr2">
  13. 體驗場下注5000U,中5010U,一天有2小 時,24期可壓如果中12期就有120U的收益 體驗場沒中返本金
  14. </view>
  15. </view>
  16. <view class="ls">
  17. 流水
  18. </view>
  19. <view class="liushui">
  20. <view class="">
  21. 如V1級別,流水5000U*24期=120000U的
  22. 流水*0.1=120U流水的收益
  23. 如V8級別,流水5000U*24期=120000U的
  24. 流水*0.8=960U流水的收益
  25. 自由場流水更大
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. };
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .background1 {
  41. position: relative;
  42. // width: 100vw;
  43. height: calc(100vh - var(--status-bar-height));
  44. background: url("/index/static/img/youxi1.png");
  45. background-size: 100% 100%;
  46. background-position: 50% 50%;
  47. background-repeat: no-repeat;
  48. }
  49. .background2 {
  50. background-image: url("/index/static/img/youxi2.png");
  51. position: absolute;
  52. background-size: 100% 100%;
  53. width: 650rpx;
  54. height: 900rpx;
  55. top: 50%;
  56. left: 50%;
  57. transform: translate(-50%, -60%);
  58. }
  59. .title {
  60. margin-top: 95rpx;
  61. margin-left: 253rpx;
  62. height: 36rpx;
  63. font-size: 37rpx;
  64. font-family: Source Han Sans CN;
  65. font-weight: bold;
  66. color: #d7b271;
  67. line-height: 10rpx;
  68. }
  69. .juli {
  70. margin-left: 60rpx;
  71. margin-top: 70rpx;
  72. height: 35rpx;
  73. font-size: 36rpx;
  74. font-family: Source Han Sans CN;
  75. font-weight: bold;
  76. color: #201809;
  77. line-height: 36rpx;
  78. }
  79. .neirong {
  80. width: 530rpx;
  81. height: 150rpx;
  82. margin-left: 60rpx;
  83. margin-top: 40rpx;
  84. }
  85. .nr1 .nr2{
  86. height: 147rpx;
  87. font-size: 28rpx;
  88. font-family: PingFang SC;
  89. font-weight: bold;
  90. color: #201809;
  91. line-height: 40rpx;
  92. }
  93. .ls {
  94. margin-left: 60rpx;
  95. margin-top: 70rpx;
  96. height: 35rpx;
  97. font-size: 36rpx;
  98. font-family: Source Han Sans CN;
  99. font-weight: bold;
  100. color: #201809;
  101. line-height: 36rpx;
  102. }
  103. .liushui {
  104. width: 530rpx;
  105. height: 190rpx;
  106. margin-left: 60rpx;
  107. margin-top: 40rpx;
  108. }
  109. </style>