123456789101112131415161718192021222324 |
- /* components/authorize/index.wxss */
- .authcon{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- .authbody{
- .avatar-wrapper{
- width: 200rpx;
- height: 200rpx;
- padding: 0;
- >image{
- width: 100%;
- height: 100%;
- }
- }
- >input{
- background: #ffffff;
- margin-top: 40rpx;
- padding: 10rpx 20rpx;
- border-radius: 8rpx;
- }
- }
- }
|