12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .editBox {
- padding: 20rpx;
- }
- .editBox .mt40 {
- margin-top: 40rpx;
- }
- .editBox .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;
- }
- .editBox .editRow .name {
- font-size: 30rpx;
- }
- .editBox .editRow .right {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- flex: 1;
- }
- .editBox .editRow .right .avatar {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .editBox .editRow .right .nickName {
- width: 400rpx;
- text-align: right;
- }
- .editBox .editRow .right .name {
- min-width: 400rpx;
- text-align: end;
- }
- .editBox .editRow .right .black {
- width: 16rpx;
- height: 30rpx;
- opacity: 0.8;
- margin-left: 24rpx;
- }
- .editBox .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;
- }
|