54 lines
1010 B
Plaintext
54 lines
1010 B
Plaintext
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
.personal_list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
border-bottom: solid 1rpx #f7f7f7;
|
|
background-color: #fff;
|
|
padding: 20rpx 30rpx;
|
|
}
|
|
|
|
.personal_header {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.5);
|
|
border: solid 2rpx #f7f7f7;
|
|
}
|
|
|
|
.personal_nickname {
|
|
width: 100%;
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
font-weight: 600;
|
|
margin-top: 10rpx;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.personal_job {
|
|
width: 100%;
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
font-weight: normal;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-top: 6rpx;
|
|
padding-left: 10rpx;
|
|
}
|
|
|
|
.personal_left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
margin-left: 30rpx;
|
|
} |