Files
AGuestSaas/components/company/personalInfo/personalInfo.wxss
2020-12-28 10:38:29 +08:00

50 lines
927 B
Plaintext

.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;
}