| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* 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;
- position: relative;
- }
- .avatar-wrapper .avatar-wrapperTxt {
- pointer-events: none;
- position: absolute;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- width: 100%;
- text-align: center;
- font-size: 12px;
- color: #444b51;
- }
- .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%;
- }
|