12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .contactCard{
- display: flex;
- padding: 16px;
- align-items: flex-start;
- gap: 8px;
- // border-radius: 12px;
- color: #262626;
- font-family: "PingFang SC";
- }
- .avatarContainer{
- position: relative;
- width: 48px;
- height: 48px;
- }
- .avatar{
- position: relative;
- 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{
- position: absolute;
- z-index: 1;
- top: 6px;
- right: 0px;
- font-size: 0px;
- height: 8px;
- width: 8px;
- border-radius: 8px;
- background: #FF4747;
- border: 1px solid white;
- }
- .certificationContainer{
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(#31BE59, .1);
- width: 20px;
- height: 16px;
- border-radius: 4px;
- }
- .subInfo{
- color: #414A64;
- font-size: 12px;
- font-style: normal;
- font-weight: 400;
- line-height: 16px;
- }
- .lastMsg {
- .subInfo();
- color: #A1A7BA;
- }
|