106 lines
2.0 KiB
Plaintext
106 lines
2.0 KiB
Plaintext
/* mycomponent/yz_comment_popup/commentCell/commentCell.wxss */
|
|
|
|
.components-comment-list {
|
|
display: flex;
|
|
padding: 12rpx 28rpx;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-left {
|
|
width: 64rpx;
|
|
height: 64rpx;
|
|
margin-right: 24rpx;
|
|
overflow: hidden;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-left image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right {
|
|
flex: 1;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main {
|
|
width: 100%;
|
|
display: flex;
|
|
height: 64rpx;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main .master-main-left {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main .master-main-left .master-name {
|
|
font-size: 25rpx;
|
|
color: #1c96fe;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main .master-main-left .master-time {
|
|
width: 100%;
|
|
font-size: 20rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main .master-main-right {
|
|
min-width: 32rpx;
|
|
display: flex;
|
|
}
|
|
|
|
.components-comment-list .components-comment-main-right .master-main-content {
|
|
padding: 4rpx 32rpx 0 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.child-list {
|
|
padding: 12rpx 0;
|
|
}
|
|
|
|
.child-list .components-comment-main-left {
|
|
width: 44rpx;
|
|
height: 44rpx;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.components-comment-input {
|
|
border: none;
|
|
margin: 28rpx;
|
|
padding: 16rpx;
|
|
background: #eaeaea;
|
|
border-radius: 64rpx;
|
|
}
|
|
|
|
.selecolor {
|
|
color: #1c96fe;
|
|
}
|
|
|
|
.reduce-style {
|
|
height: 16rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.reduce-style .master-main-content {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.additional-button {
|
|
padding-top: 4rpx;
|
|
color: #999;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|