taibai_shopping/app/static/css/order_detail.css
2025-07-04 19:07:35 +08:00

81 lines
1.3 KiB
CSS

/* 订单详情页面样式 */
.order-status-timeline {
position: relative;
padding-left: 30px;
}
.timeline-item {
position: relative;
padding-bottom: 20px;
}
.timeline-item::before {
content: '';
position: absolute;
left: -30px;
top: 0;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #dee2e6;
}
.timeline-item.completed::before {
background-color: #28a745;
}
.timeline-item.current::before {
background-color: #007bff;
box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
}
.timeline-item::after {
content: '';
position: absolute;
left: -24px;
top: 12px;
width: 2px;
height: calc(100% - 12px);
background-color: #dee2e6;
}
.timeline-item:last-child::after {
display: none;
}
.timeline-item.completed::after {
background-color: #28a745;
}
.order-detail-card {
margin-bottom: 20px;
}
.product-item {
border-bottom: 1px solid #f0f0f0;
padding: 15px 0;
}
.product-item:last-child {
border-bottom: none;
}
.product-image {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 4px;
}
.info-row {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
}
.total-amount {
color: #e74c3c;
font-weight: bold;
font-size: 1.2em;
}