1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="content">
- <view class="item">
- <image src="../../static/img/dkf.png" mode=""></image>
- <view class="tit">
- 功能开发中,敬请期待...
- </view>
- </view>
-
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- page {
- height: auto;
- min-height: 100%;
- background-color: #fff;
- }
- .item {
- width: 543rpx;
- height: 464rpx;
- position: absolute;
- top: 20vh;
- left: 0;
- right: 0;
- // bottom: 0;
- margin: auto;
- image {
- width: 543rpx;
- height: 464rpx;
- }
- }
- .tit {
- position: absolute;
- bottom: -100rpx;
- text-align: center;
- font-size: 36rpx;
- font-weight: 500;
- color: #333333;
- left: 0;
- right: 0;
- margin: auto;
- }
- </style>
|