| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="page-bg container">
- <view class="back-container">
- <navigator url="/pages/index/index">
- <uni-icons type="back" size="40" color="#FFFFFF"></uni-icons>
- </navigator>
- </view>
- <view class="login-container">
- <view class="avator-container">
- <uni-icons type="person" size="130" color="#FFFFFF"></uni-icons>
- </view>
- <view class="btn-container">登录</view>
- </view>
- </view>
- </template>
- <script setup>
-
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: 100vh;
- padding: 16rpx;
-
- .back-container {
- left: 16rpx;
- top: 39px;
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%;
- background-color: rgba(0, 0, 0, 0.1);
-
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .login-container {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
-
- .avator-container {
- left: 222rpx;
- top: 254rpx;
- width: 307rpx;
- height: 307rpx;
- background: #D2EFF3;
- border-radius: 50%;
- box-shadow: 0px 2px 2px 0px #DBDBDB;
-
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .btn-container {
- margin-top: 57rpx;
-
- width: 500rpx;
- height: 100rpx;
- border-radius: 20rpx;
- background: #2A82E4;
-
- font-size: 48rpx;
- font-weight: 700;
- letter-spacing: 0rpx;
- line-height: 69.5rpx;
- color: #FFFFFF;
-
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- </style>
|