87 lines
1.5 KiB
Plaintext
87 lines
1.5 KiB
Plaintext
/* contacts.wxss */
|
|
|
|
page {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: Source Han Sans CN;
|
|
}
|
|
|
|
.contacts{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.contacts .contacts-container{
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.contacts .user-list-item{
|
|
height: 132rpx;
|
|
padding-left: 32rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.contacts .contacts-title{
|
|
height: 80rpx;
|
|
line-height: 100rpx;
|
|
font-size: 30rpx;
|
|
color: #666666;
|
|
background: #F3F4F7;
|
|
text-indent: 44rpx;
|
|
}
|
|
|
|
.contacts .user-list{
|
|
flex-grow: 1;
|
|
background: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.contacts .user-item-avatar{
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
margin-right: 32rpx;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.contacts .user-item-avatar image{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
.contacts .user-item-info{
|
|
height: 130rpx;
|
|
padding-right: 32rpx;
|
|
line-height: 88rpx;
|
|
flex-grow: 1;
|
|
border-bottom: 1px solid #EFEFEF;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.contacts .user-item-info__name{
|
|
font-size: 30rpx;
|
|
font-family: Source Han Sans CN;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
color: #262628;
|
|
}
|
|
.contacts .user-item-info__tips{
|
|
height: 44rpx;
|
|
width: 64rpx;
|
|
border-radius: 24rpx;
|
|
font-size: 26rpx;
|
|
line-height: 44rpx;
|
|
background: #D02129;
|
|
color: #ffffff;
|
|
font-family: Cabin;
|
|
text-align: center;
|
|
}
|
|
.contacts .online-dot{
|
|
position: absolute;
|
|
width: 32rpx!important;
|
|
height: 32rpx!important;
|
|
right: 0;
|
|
bottom: 0;
|
|
} |