  body {
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            padding: 10px;
        }
        [v-cloak] {
            display: none;
        }
        .header {
            background: #fff;
            padding: 15px;
            text-align: center;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: relative;
        }
        .header h2 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }
        .back-btn {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            text-decoration: none;
            color: #666;
            font-size: 14px;
        }
        .order-card {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 15px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 10px;
            margin-bottom: 12px;
            font-size: 13px;
        }
        .order-time {
            color: #999;
        }
        .order-status {
            color: #d32f2f;
            font-weight: bold;
        }
        .card-body {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        .product-img {
            width: 80px;
            height: 80px;
            background: #b71c1c;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.8);
            font-weight: bold;
            font-size: 24px;
        }
        .product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .product-name {
            font-size: 15px;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
        }
        .product-price {
            color: #d32f2f;
            font-size: 16px;
            font-weight: bold;
        }
        .product-qty {
            color: #999;
            font-size: 12px;
            text-align: right;
        }
        .card-footer {
            border-top: 1px solid #f0f0f0;
            padding-top: 12px;
        }
        .logistics-info {
            background: #f9f9f9;
            padding: 10px;
            border-radius: 6px;
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }
        .logistics-row {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        .logistics-row:last-child {
            margin-bottom: 0;
        }
        .label {
            color: #999;
            margin-right: 10px;
            min-width: 60px;
        }
        .value {
            color: #333;
            flex: 1;
        }
        .copy-btn {
            color: #1890ff;
            font-size: 12px;
            cursor: pointer;
            margin-left: 5px;
        }
        .payment-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .payment-tag {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            border: 1px solid #c8e6c9;
        }
        .total-text {
            font-size: 14px;
            font-weight: bold;
            color: #333;
        }
        .loading, .empty {
            text-align: center;
            padding: 40px;
            color: #999;
            font-size: 14px;
        }
.status-0 { color: #ff9800 !important; } /* 待发货 */
.status-1 { color: #2196f3 !important; } /* 已发货 */
.status-2 { color: #4caf50 !important; } /* 已签收 */
.status-3 { color: #f44336 !important; } /* 拒收 */
.status-10 { color: #999999 !important; } /* 已取消 */

