94 lines
1.3 KiB
Plaintext
94 lines
1.3 KiB
Plaintext
.pi-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.pi-avatar {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border-radius: 50%;
|
|
background-color: #e6f9f3;
|
|
color: #1abc9c;
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.pi-main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.pi-line {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.pi-line + .pi-line {
|
|
margin-top: 6rpx;
|
|
}
|
|
|
|
.pi-name-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12rpx;
|
|
min-width: 0;
|
|
}
|
|
|
|
.pi-name {
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
.pi-sex {
|
|
font-size: 20rpx;
|
|
padding: 2rpx 12rpx;
|
|
border-radius: 8rpx;
|
|
font-weight: 500;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.pi-sex.male {
|
|
background: rgba(26, 188, 156, 0.1);
|
|
color: #1abc9c;
|
|
}
|
|
|
|
.pi-sex.female {
|
|
background: rgba(234, 102, 150, 0.1);
|
|
color: #ea6696;
|
|
}
|
|
|
|
.pi-mobile-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
.pi-mobile {
|
|
font-size: 24rpx;
|
|
color: #888888;
|
|
}
|
|
|
|
.pi-call {
|
|
font-size: 24rpx;
|
|
color: #1abc9c;
|
|
font-weight: 500;
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
.pi-extra {
|
|
font-size: 24rpx;
|
|
color: #888888;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
margin-left: 16rpx;
|
|
flex-shrink: 0;
|
|
}
|