| 1234567891011121314151617181920212223242526272829303132 |
- /* components/authorize/index.wxss */
- .authcon {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .authcon .authbody .avatar-wrapper {
- width: 80rpx;
- height: 80rpx;
- padding: 0;
- }
- .authcon .authbody .avatar-wrapper > image {
- width: 100%;
- height: 100%;
- }
- .authcon .authbody > input {
- background: #ffffff;
- margin-top: 20rpx;
- padding: 6rpx 20rpx;
- border-radius: 8rpx;
- }
- .authcon .authbody .btn-area {
- display: flex;
- width: 100%;
- justify-content: space-between;
- text-align: center;
- margin-top: 20rpx;
- }
- .authcon .authbody .btn-area > image {
- width: 48%;
- }
|