123456789101112131415161718192021222324252627282930313233343536 |
- page {
- background: #F3F5F9;
- }
- .user-info {
- width: 100%;
- height: 200rpx;
- background: white;
- position: relative;
- box-sizing: border-box;
- padding: 50rpx 0 50rpx 180rpx;
- margin-bottom: 40rpx;
- }
- .user-info-avatar {
- position: absolute;
- top: 50rpx;
- left: 30rpx;
- overflow: hidden;
- width: 110rpx;
- height: 110rpx;
- border-radius: 10rpx;
- }
- .user-info-nickname {
- height: 40rpx;
- font-size: 30rpx;
- }
- .menu-title {
- color: var(--darkGray);
- box-sizing: border-box;
- padding-left: 20rpx;
- line-height: 50rpx;
- font-size: 22rpx;
- }
|