1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .editBox {
- padding: 20rpx;
- .mt40 {
- margin-top: 40rpx;
- }
- .editRow {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 18rpx 40rpx;
- height: 50rpx;
- border-radius: 25rpx;
- margin-bottom: 12rpx;
- background-color: white;
- box-sizing: content-box;
- .name {
- font-size: 30rpx;
- }
- .right {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- flex: 1;
- .avatar {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .nickName {
- width: 400rpx;
- text-align: right;
- }
- .name {
- min-width: 400rpx;
- text-align: end;
- }
- .black {
- width: 16rpx;
- height: 30rpx;
- opacity: 0.8;
- margin-left: 24rpx;
- }
- }
- }
- .switchAccount {
- text-align: center;
- padding: 18rpx 40rpx;
- height: 50rpx;
- line-height: 50rpx;
- border-radius: 25rpx;
- margin-bottom: 12rpx;
- background-color: white;
- box-sizing: content-box;
- }
- }
|