myMessage.wxss 1.1 KB
/* pages/myMessage/myMessage.wxss */

page{

}

.container{
  display: flex;
  flex-flow: column;
}
.item{
  display: flex;
  align-items: center;
  padding: 24rpx 28rpx;
  justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
}
.item_left{
  display: flex;
}
.item_left_pic{
  width:74rpx;
  height:74rpx;
  display: flex;
  position: relative;
}
.item_left_pic image{
  width: 100%;
  height: 100%;
}
.item_left_text{
  display: flex;
  flex-flow: column;
  margin-left: 30rpx;
}
.item_left_text_top{
  font-size:30rpx;
  font-family:PingFang-SC-Bold;
  font-weight:bold;
  color:rgba(51,51,51,1);
}
.item_left_text_bottom{
  width: 550rpx;
  font-size:26rpx;
  font-family:PingFang-SC-Medium;
  font-weight:500;
  color:rgba(153,153,153,1);
  box-sizing: border-box;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.item_right{
  width:12rpx;
  height:20rpx;
  display: flex;
}
.item_right image{
  width: 100%;
  height: 100%;
}
.icon_dot{
  width:10rpx;
  height:10rpx;
  background:rgba(255,102,0,1);
  border-radius:50%;
  position: absolute;
  right: -5rpx;
}