Expect.vue 795 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="content">
  3. <view class="jqqd"><image src="../../static/img/xwjl.png" mode=""></image></view>
  4. <view class="font">功能开发中,敬请期待</view>
  5. <view class="bottom"><image src="../../static/img/bottom.png" mode=""></image></view>
  6. </view>
  7. </template>
  8. <script></script>
  9. <style lang="scss">
  10. page,
  11. .content {
  12. height: 100%;
  13. // min-height: 100%;
  14. background: #000000;
  15. }
  16. .jqqd {
  17. width: 524rpx;
  18. height: 538rpx;
  19. padding-top: 250rpx;
  20. margin: 0 auto 0;
  21. image {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. }
  26. .font {
  27. margin-top: 56rpx;
  28. text-align: center;
  29. font-size: 36rpx;
  30. font-family: PingFang SC;
  31. font-weight: 500;
  32. color: #ffffff;
  33. }
  34. .bottom {
  35. position: absolute;
  36. bottom: 0;
  37. width: 750rpx;
  38. height: 588rpx;
  39. image {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. }
  44. </style>