1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="flex">
- <image src="../../static/new_index/top.png" mode="widthFix" style="width: 642rpx;margin-top: 76rpx;"></image>
- <image src="../../static/new_index/safe.png" mode="widthFix" style="width: 310rpx;margin-top: 116rpx;">
- </image>
- <view class="title">暂停注册,开放日期另行通知。</view>
- <!-- <view class="tip">温馨提示:系统维护中,暂停注册,有问题请联系客服</view> -->
- </view>
- </template>
- <style lang="scss">
- page {
- background-color: #fff;
- }
- .flex {
- display: flex;
- align-items: center;
- flex-direction: column;
- .title {
- color: #333333;
- font-size: 44rpx;
- font-weight: bold;
- margin-top: 136rpx;
- }
- .tip {
- // width: 560rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #999999;
- margin-top: 40rpx;
- line-height: 44rpx;
- }
- }
- </style>
|