commentList.wxss 584 字节
/* pages/commentList/commentList.wxss */
page{
  background: #ebcece;
}
.page_box{
  background: #FFF;
}
.commnetItem{
  padding:30rpx;
  display: flex;
  align-items: center;
  border-bottom: 1rpx solid #ecd6d6;
}
.del_btn{
  height: 50rpx;
  width: 50rpx;
}
.del_icon{
  height:50rpx;
  width: 50rpx;
}
.coment_content{
  margin-left: 16rpx;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.add_btn{
  padding: 30rpx 0;
  display: flex;
}
.add_btn .del_icon{
  margin-right: 20rpx;
}
.input_box{
  height: 60rpx;
  padding: 10rpx 0;
}
.add_comment{
  padding: 0 30rpx;
}