2025-12-26 17:26:32 +08:00
|
|
|
.log-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2026-01-21 17:05:30 +08:00
|
|
|
padding: 16rpx 24rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
border: 1rpx solid #ddd;
|
|
|
|
|
align-items: center;
|
2026-01-21 17:05:30 +08:00
|
|
|
margin-left: 24rpx;
|
|
|
|
|
margin-right: 24rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.log-box {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow: auto;
|
2026-01-21 17:05:30 +08:00
|
|
|
padding: 24rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
border: 1rpx solid #ddd;
|
2026-01-21 17:05:30 +08:00
|
|
|
margin-left: 24rpx;
|
|
|
|
|
margin-right: 24rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
/* margin-bottom: calc(constant(safe-area-inset-bottom) + 12px); */
|
|
|
|
|
/*兼容 IOS<11.2*/
|
|
|
|
|
/* margin-bottom: calc(env(safe-area-inset-bottom) + 12px); */
|
2026-01-21 17:05:30 +08:00
|
|
|
margin-bottom: 24rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
border-top: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-21 17:05:30 +08:00
|
|
|
height: calc(100vh - var(--td-tab-bar-height, 80rpx) - env(safe-area-inset-bottom) - 32rpx);
|
2025-12-26 17:26:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.process-item {
|
2026-01-21 17:05:30 +08:00
|
|
|
height: 64rpx;
|
|
|
|
|
padding: 0 16rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
border: 1rpx solid #ddd;
|
2026-01-21 17:05:30 +08:00
|
|
|
border-radius: 8rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-21 17:05:30 +08:00
|
|
|
margin-right: 16rpx;
|
|
|
|
|
margin-bottom: 16rpx;
|
2025-12-26 17:26:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.process-item.active {
|
|
|
|
|
background: #1989fa;
|
|
|
|
|
border-color: #1989fa;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|