index.vue 287 B

123456789101112131415161718192021
  1. <template>
  2. <view class="box">
  3. 网站已关闭
  4. </view>
  5. </template>
  6. <script>
  7. </script>
  8. <style lang="scss">
  9. .box{
  10. position: fixed;
  11. left: 50%;
  12. top: 50%;
  13. transform: translate(-50%,-50%);
  14. font-size: 40rpx;
  15. font-weight: bold;
  16. color: #666;
  17. text-align: center;
  18. }
  19. </style>