1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* 头部用户样式 */
- .user_box {
- display: flex;
- align-items: center;
- height: 240rpx;
- width: 100vw;
- background-color: #ffffff;
- border-bottom: 1rpx solid #E4E4E4;
- margin-bottom: 40rpx;
- }
- .user_box>view {
- height: 160rpx;
- }
- /* 用户-头像 */
- .user_img {
- width: 160rpx;
- height: 100%;
- background-color: aqua;
- border-radius: 50%;
- overflow: hidden;
- margin-left: 40rpx;
- }
- /* 用户-文字 */
- .user_text {
- position: relative;
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- height: 100%;
- margin-left: 25rpx;
- margin-top: 5rpx;
- }
- .user_text>view {
- line-height: 60rpx;
- }
- .user_name {
- font-size: 34rpx;
- }
- .user_name>text {
- font-size: 26rpx;
- }
- .user_number {
- font-size: 34rpx;
- }
- /* 右侧图标 */
- .user_text .user_icon {
- position: absolute;
- font-size: 45rpx;
- color: #D6D6D6;
- top: 50%;
- right: 30rpx;
- transform: translate(0,-50%);
- }
|