2025-12-19 09:46:56 +08:00
|
|
|
page {
|
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
}
|
|
|
|
|
.header {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
box-shadow: 0px 3px 7px rgba(206, 206, 206, 0.25);
|
|
|
|
|
}
|
|
|
|
|
.work_contents {
|
|
|
|
|
padding: 100rpx 0 30rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
margin: 30rpx 30rpx 0 30rpx;
|
|
|
|
|
border-radius: 15rpx;
|
|
|
|
|
padding: 0 30rpx 30rpx 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 25rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header .group_btn {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header .btn_type {
|
|
|
|
|
border: 1rpx solid #eee;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
padding: 7rpx 19rpx;
|
|
|
|
|
border-radius: 100rpx;
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header .btn_status {
|
|
|
|
|
border-radius: 100rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
padding: 7rpx 19rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header .status_Pending {
|
|
|
|
|
color: #f97316;
|
|
|
|
|
background-color: #fff7ed;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_contents .work_item .work_item_header .status_Processing, .work_contents .work_item .work_item_header .status_PendingAcceptance {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #0082fa;
|
|
|
|
|
background-color: #edf4ff;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_contents .work_item .work_item_header .status_PendingPayment {
|
|
|
|
|
color: #cf1322;
|
|
|
|
|
background-color: #ffeded;
|
|
|
|
|
}
|
2025-12-19 09:46:56 +08:00
|
|
|
.work_contents .work_item .work_item_header .status_Completed {
|
|
|
|
|
color: #22c55e;
|
|
|
|
|
background-color: #f0fdf4;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_header .status_Closed {
|
|
|
|
|
color: #909399;
|
|
|
|
|
background-color: #f3f3f4;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .full_name {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_cell {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #666;
|
|
|
|
|
padding-top: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_cell text {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_images {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_images .item {
|
|
|
|
|
width: 140rpx;
|
|
|
|
|
height: 140rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
margin-top: 25rpx;
|
|
|
|
|
margin-right: 25rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_images .item:nth-child(4n) {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_item_images .item image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.work_contents .work_item .work_code {
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer {
|
2025-12-19 09:46:56 +08:00
|
|
|
margin-top: 30rpx;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .todo_done_card_footer {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #666666;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
padding: 12rpx 20rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
color: #24bc21;
|
|
|
|
|
background: linear-gradient(90deg, #edffed 0%, rgba(232, 255, 231, 0) 103%);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 25rpx 0 0 0;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .status_1 {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #24bc21;
|
|
|
|
|
background: linear-gradient(90deg, #edffed 0%, rgba(232, 255, 231, 0) 103%);
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .status_2 {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #0082fa;
|
|
|
|
|
background: linear-gradient(90deg, #eff7ff 0%, rgba(231, 241, 255, 0) 103%);
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .status_3 {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #f97316;
|
|
|
|
|
background: linear-gradient(90deg, #fff4ef 0%, rgba(255, 237, 231, 0) 103%);
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .status_4 {
|
2025-12-19 09:46:56 +08:00
|
|
|
color: #ea0000;
|
|
|
|
|
background: linear-gradient(90deg, #ffe5e5 0%, rgba(255, 255, 255, 0) 103%);
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_time_footer .expected_time {
|
2025-12-19 09:46:56 +08:00
|
|
|
padding: 20rpx 0 0 0;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
2026-01-30 09:54:46 +08:00
|
|
|
.work_item_btn_group_footer {
|
|
|
|
|
border-top: 1rpx solid #eee;
|
|
|
|
|
margin-top: 25rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding-top: 25rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.work_item_btn_group_footer .btn {
|
|
|
|
|
padding: 17rpx 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
color: #0082fa;
|
|
|
|
|
border: 1px solid #0082fa;
|
|
|
|
|
border-radius: 100rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_item_btn_group_footer .btn:first-child {
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.work_item_btn_group_footer .btn:last-child {
|
|
|
|
|
background-color: #0082fa;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
2025-12-19 09:46:56 +08:00
|
|
|
.card_status_4 {
|
|
|
|
|
border-top: 6px solid #ef4444;
|
|
|
|
|
}
|