1234567891011121314151617181920212223242526 |
- .login-container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .login-btn{
- border: none;
- background-color: #548cf7;
- color: #ffffff;
- font-size: 32rpx;
- width: 600rpx;
- height: 80rpx;
- border-radius: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- .u-icon{
- margin-right: 20rpx;
- }
- }
- }
- page {
- height: 100%;
- }
|