/* 订单页样式 */
.order-page {
    background: #f5f5f5;
}

.order-item {
    margin-bottom: 15px;
}

/* 订单头部 */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-no {
    color: #666;
    font-size: 12px;
}

.order-status {
    color: #f23030;
    font-size: 14px;
}

/* 订单内容 */
.order-content {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.order-info {
    flex: 1;
    margin-left: 10px;
}

.order-info h3 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.order-info .price {
    color: #f23030;
    font-size: 14px;
    margin-bottom: 5px;
}

.order-info .quantity {
    color: #666;
    font-size: 12px;
}

/* 订单底部 */
.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.total {
    color: #333;
    font-size: 14px;
}

.pay-btn, .detail-btn {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    border: none;
}

.pay-btn {
    background: #f23030;
    color: #fff;
}

.detail-btn {
    background: #fff;
    color: #666;
    border: 1px solid #ddd;
} 