2024-09-17 20:26:20 +08:00
|
|
|
.containerView.public {
|
|
|
|
background: none;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView {
|
|
|
|
background: white;
|
|
|
|
margin: 30rpx 20rpx;
|
|
|
|
padding: 30rpx 20rpx;
|
|
|
|
/* box-shadow: rgba(210,210,210,0.5) 0px 3.752px 3.752px 0px; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .headView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .headView .number {
|
|
|
|
flex: 1;
|
|
|
|
margin-right: 30rpx;
|
2024-10-31 20:04:07 +08:00
|
|
|
font-size: 34rpx;
|
|
|
|
font-weight: 700;
|
2024-09-17 20:26:20 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-all;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2025-06-03 09:32:41 +08:00
|
|
|
/* 添加明确的日期颜色类 */
|
|
|
|
.date-today {
|
|
|
|
color: #333333 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.date-second-day {
|
|
|
|
color: #4e96f8 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.date-third-day {
|
|
|
|
color: #FF4D4F !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.date-other-day {
|
|
|
|
color: #333333 !important;
|
|
|
|
}
|
|
|
|
|
2024-09-17 20:26:20 +08:00
|
|
|
.itemView .headView .status {
|
2024-10-31 20:04:07 +08:00
|
|
|
font-size: 30rpx;
|
2024-09-17 20:26:20 +08:00
|
|
|
color: #4e96f8;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
padding: 30rpx 20rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
background: #f2f2f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .img {
|
|
|
|
border-radius: 10rpx;
|
|
|
|
width: 200rpx;
|
|
|
|
height: 110rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .msgView {
|
|
|
|
flex: 1;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .msgView .title {
|
2025-05-26 10:00:32 +08:00
|
|
|
font-size: 30rpx;
|
2024-09-17 20:26:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .contentView .msgView .name,
|
|
|
|
.itemView .contentView .msgView .time {
|
2024-10-31 20:04:07 +08:00
|
|
|
font-size: 30rpx;
|
2024-09-17 20:26:20 +08:00
|
|
|
color: gray;
|
|
|
|
margin-top: 6rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .priceView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
margin: 30rpx 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .priceView .cancelContent {
|
|
|
|
flex: 1;
|
|
|
|
margin-right: 40rpx;
|
2024-10-31 20:04:07 +08:00
|
|
|
font-size: 32rpx;
|
2024-09-17 20:26:20 +08:00
|
|
|
color: #7F7F7F;
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-all;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .priceView .priceContent {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .priceView .priceContent .name {
|
|
|
|
font-size: 26rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .priceView .priceContent .price {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
color: red;
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .btnView {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemView .btnView .btn {
|
|
|
|
border: 1px solid #4e96f8;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 10rpx;
|
|
|
|
margin-left: 16rpx;
|
|
|
|
padding: 10rpx 24rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #4e96f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shareBtn {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loadAllLine {
|
|
|
|
margin-top: 80rpx;
|
2025-06-13 16:08:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.staff-tip {
|
|
|
|
color: #ff4d4f;
|
|
|
|
font-size: 28rpx;
|
|
|
|
margin: 10rpx 0;
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 通过按钮绿色样式 */
|
|
|
|
.approve-btn-success {
|
2025-06-13 20:05:54 +08:00
|
|
|
color: #000000 !important;
|
|
|
|
border-color: #000000 !important;
|
2024-09-17 20:26:20 +08:00
|
|
|
}
|