1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .contactCard{
- display: flex;
- padding: 16px;
- align-items: center;
- gap: 8px;
- // border-radius: 12px;
- color: #262626;
- font-family: "PingFang SC";
- }
- .avatar{
- width: 48px;
- height: 48px;
- border-radius: 100%;
- flex-shrink: 0;
- overflow: hidden;
- }
- .infoColumn{
- width: 100%;
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .nameRow{
- display: flex;
- align-items: center;
- gap: 4px;
- font-style: normal;
- }
- .nickName{
- font-size: 14px;
- font-style: normal;
- font-weight: 500;
- line-height: 20px;
- }
- .tipCnt{
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 10px;
- font-style: normal;
- height: 14px;
- padding: 2px 4px;
- flex-shrink: 0;
- color: white;
- border-radius: 14px;
- background: red;
- }
- .subInfo{
- color: #777E95;
- font-size: 12px;
- font-style: normal;
- font-weight: 400;
- line-height: 16px;
- }
|