2024-03-07 20:15:43 +08:00
|
|
|
.containerView.public {
|
2024-03-08 12:00:15 +08:00
|
|
|
background: none;
|
|
|
|
height: auto;
|
2024-03-13 11:06:57 +08:00
|
|
|
padding-bottom: 240rpx;
|
2024-03-07 20:15:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.itemView {
|
2024-03-08 12:00:15 +08:00
|
|
|
margin: 30rpx 20rpx;
|
|
|
|
padding: 30rpx 0;
|
2024-03-07 20:15:43 +08:00
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .topView {
|
|
|
|
border-bottom: 1px solid rgb(126, 126, 126, 0.2);
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
padding: 0 20rpx 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .topView .name {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .topView .status {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView {
|
|
|
|
padding: 0 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .dataView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .dataView .msg {
|
|
|
|
margin-left: 20rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-all;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .btnView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .btnView .btn {
|
|
|
|
border: 1px solid #4e96f8;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
margin-left: 16rpx;
|
|
|
|
padding: 10rpx 24rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #4e96f8;
|
2024-03-08 12:00:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.textarea {
|
|
|
|
height: 300rpx !important;
|
|
|
|
border: 1px solid rgb(126, 126, 126, 0.2) !important;
|
|
|
|
padding: 20rpx !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialogBtnView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
border-top: 1px solid rgb(126, 126, 126, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialogBtnView .rejectBtn,
|
|
|
|
.dialogBtnView .successBtn {
|
|
|
|
width: 50%;
|
|
|
|
text-align: center;
|
|
|
|
padding: 30rpx 0;
|
|
|
|
font-size: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialogBtnView .rejectBtn {
|
|
|
|
border-right: 1px solid rgb(126, 126, 126, 0.2);
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialogBtnView .successBtn {
|
|
|
|
color: #4e96f8;
|
|
|
|
}
|