12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="content">
- <view class="jqqd"><image src="../../static/img/xwjl.png" mode=""></image></view>
- <view class="font">功能开发中,敬请期待</view>
- <view class="bottom"><image src="../../static/img/bottom.png" mode=""></image></view>
- </view>
- </template>
- <script></script>
- <style lang="scss">
- page,
- .content {
- height: 100%;
- // min-height: 100%;
- background: #000000;
- }
- .jqqd {
- width: 524rpx;
- height: 538rpx;
- padding-top: 250rpx;
- margin: 0 auto 0;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .font {
- margin-top: 56rpx;
- text-align: center;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- .bottom {
- position: absolute;
- bottom: 0;
- width: 750rpx;
- height: 588rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|