| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!--
- http://localhost:5173/custom/#/pages/xfl/challenge/index?pagetype=challenge_result&status=fail
- https://oss-mbh5.colormaprun.com/custom/#/pages/xfl/challenge/index?pagetype=challenge_result&status=fail
- -->
- <template>
- <view class="body">
- <view class="content">
- <view class="main">
- <view class="exit_game"></view>
- </view>
- </view>
- </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: 100vw;
- /* width: 750rpx; */
- /* margin: 0 auto; */
- }
- .main {
- width: 100%;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
- .exit_game {
- width: 100%;
- height: 100vh;
- /* height: 1100rpx; */
- /* margin-left: 40rpx; */
- background-image: url("/static/xfl/challenge/exit_game.jpg");
- background-repeat: no-repeat;
- background-position-x: center;
- background-position-y: bottom;
- background-size: cover;
- }
- </style>
|