dkf.vue 705 B

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