safeguard.vue 852 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="flex">
  3. <image src="../../static/new_index/top.png" mode="widthFix" style="width: 642rpx;margin-top: 76rpx;"></image>
  4. <image src="../../static/new_index/safe.png" mode="widthFix" style="width: 310rpx;margin-top: 116rpx;">
  5. </image>
  6. <view class="title">暂停注册,开放日期另行通知。</view>
  7. <!-- <view class="tip">温馨提示:系统维护中,暂停注册,有问题请联系客服</view> -->
  8. </view>
  9. </template>
  10. <style lang="scss">
  11. page {
  12. background-color: #fff;
  13. }
  14. .flex {
  15. display: flex;
  16. align-items: center;
  17. flex-direction: column;
  18. .title {
  19. color: #333333;
  20. font-size: 44rpx;
  21. font-weight: bold;
  22. margin-top: 136rpx;
  23. }
  24. .tip {
  25. // width: 560rpx;
  26. font-size: 28rpx;
  27. font-weight: 400;
  28. color: #999999;
  29. margin-top: 40rpx;
  30. line-height: 44rpx;
  31. }
  32. }
  33. </style>