| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="body">
- <view class="content">
- <view class="top">
- <image class="logo" mode="aspectFit" src="/static/logo.png"></image>
- <image class="right-logo" mode="aspectFit" src="/static/40.png"></image>
- </view>
- <view class="main">
- <view class="exit_game"></view>
- </view>
- </view>
-
- <my-fab></my-fab>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- computed: {
- },
- onLoad(event) { // 类型非必填,可自动推导
- },
- methods: {
- }
- }
- </script>
- <style>
- .body {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .content {
- width: 750rpx;
- /* margin: 0 auto; */
- }
- .top {
- width: 100%;
- height: 10vh;
- padding: 0 60rpx;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .logo {
- width: 183rpx;
- height: 52rpx;
- }
- .right-logo {
- width: 75rpx;
- height: 52rpx;
- }
- .main {
- width: 100%;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
- .exit_game {
- width: 70%;
- /* height: 90vh; */
- height: 1100rpx;
- margin-left: 40rpx;
- background-image: url("/static/challenge/exit_game.webp");
- background-repeat: no-repeat;
- background-position-x: center;
- background-position-y: center;
- background-size: contain;
- }
- </style>
|