exit.uvue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="body">
  3. <view class="content">
  4. <view class="top">
  5. <image class="logo" mode="aspectFit" src="/static/logo.png"></image>
  6. <image class="right-logo" mode="aspectFit" src="/static/40.png"></image>
  7. </view>
  8. <view class="main">
  9. <view class="exit_game"></view>
  10. </view>
  11. </view>
  12. <my-fab></my-fab>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. computed: {
  22. },
  23. onLoad(event) { // 类型非必填,可自动推导
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. .body {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. .content {
  37. width: 750rpx;
  38. /* margin: 0 auto; */
  39. }
  40. .top {
  41. width: 100%;
  42. height: 10vh;
  43. padding: 0 60rpx;
  44. flex-direction: row;
  45. align-items: center;
  46. justify-content: space-between;
  47. }
  48. .logo {
  49. width: 183rpx;
  50. height: 52rpx;
  51. }
  52. .right-logo {
  53. width: 75rpx;
  54. height: 52rpx;
  55. }
  56. .main {
  57. width: 100%;
  58. flex-direction: column;
  59. align-items: center;
  60. justify-content: flex-start;
  61. }
  62. .exit_game {
  63. width: 70%;
  64. /* height: 90vh; */
  65. height: 1100rpx;
  66. margin-left: 40rpx;
  67. background-image: url("/static/challenge/exit_game.webp");
  68. background-repeat: no-repeat;
  69. background-position-x: center;
  70. background-position-y: center;
  71. background-size: contain;
  72. }
  73. </style>