52 lines
754 B
Plaintext
52 lines
754 B
Plaintext
/* packageD/mycomponent/customMessage/customMessage.wxss */
|
|
.customBox view {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.titile {
|
|
text-align: left;
|
|
color: #969799;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.customBox {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
padding: 24rpx;
|
|
margin-top: 10rpx;
|
|
text-align: left;
|
|
border-radius: 20rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
margin-top: 20rpx;
|
|
border-bottom: 1px solid #eee;
|
|
padding-bottom: 15rpx;
|
|
}
|
|
|
|
.item:first-child {
|
|
margin: 0;
|
|
}
|
|
|
|
.name {
|
|
max-width: 210rpx;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #323233;
|
|
}
|
|
|
|
.message {
|
|
color: #969799;
|
|
padding-left: 28rpx;
|
|
}
|