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