You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.2 KiB
71 lines
1.2 KiB
/* pages/message/message.wxss */
|
|
.container{
|
|
width: 100%;
|
|
height: auto;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.container image{
|
|
width: 90rpx;
|
|
height: 90rpx;
|
|
border-radius: 50%;
|
|
margin-right: 20rpx;
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
|
|
.container .dot::after{
|
|
display: inline-block;
|
|
content: '';
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
background: #F81B1B;
|
|
border-radius: 50%;
|
|
|
|
position: absolute;
|
|
right: -10rpx;
|
|
top: -8rpx;
|
|
z-index: 10;
|
|
}
|
|
|
|
.message_item{
|
|
width: 100%;
|
|
height: 148rpx;
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.message_content{
|
|
flex: 5;
|
|
height: 148rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
border-bottom: 2rpx solid #eeeeee;
|
|
}
|
|
|
|
.message_content view{
|
|
flex-shrink: 0;
|
|
height: auto;
|
|
padding: 4rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.message_content .header{
|
|
color: #999999;
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
.message_content .header text:nth-child(1){
|
|
font-size: 32rpx;
|
|
color: #333333;
|
|
}
|
|
.message_content .content{
|
|
font-size: 26rpx;
|
|
color: #666666;
|
|
}
|