47 lines
741 B
CSS
47 lines
741 B
CSS
/* 订单结算页面样式 */
|
|
.checkout-section {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.address-card {
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.address-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.address-card.selected {
|
|
border-color: #007bff;
|
|
background-color: #f8f9ff;
|
|
}
|
|
|
|
.product-item {
|
|
border-bottom: 1px solid #eee;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.product-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.order-summary {
|
|
background-color: #f8f9fa;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.price-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.total-price {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
color: #e74c3c;
|
|
}
|