       * {
            -webkit-tap-highlight-color: transparent;
            outline: none;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        body {
            background: linear-gradient(135deg, #fff5f9 0%, #f0f8ff 50%, #f5fcff 100%);
            padding: 20px 15px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
        }
        .query-card {
            width: 100%;
            max-width: 420px;
            margin: auto 0;
        }
        .query-title {
            font-size: 24px;
            font-weight: 600;
            color: #2a2a38;
            text-align: center;
            margin-bottom: 22px;
        }
        .error-tip-text {
            background: #fff1f0;
            border: 1px solid #ffccc7;
            color: #f53f3f;
            font-size: 13px;
            border-radius: 10px;
            padding: 10px 14px;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .query-input-wrap {
            display: flex;
            align-items: stretch;
            background: #fff;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            overflow: hidden;
        }
        .query-input-wrap input {
            flex: 1;
            min-width: 0;
            height: 50px;
            border: none;
            outline: none;
            padding: 0 14px;
            font-size: 15px;
            background: transparent;
        }
        .query-input-wrap button {
            border: none;
            padding: 0 22px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            background: linear-gradient(90deg, #ff6bcb 0%, #36d1dc 50%, #4a8eff 100%);
        }
        .back-link {
            text-align: center;
            margin-top: 20px;
        }
        .back-link a {
            color: #4a8eff;
            font-size: 13px;
            text-decoration: none;
        }
        .back-link a:hover {
            text-decoration: underline;
        }

        .result-tip {
            font-size: 13px;
            color: #7a7a8c;
            margin: 18px 0 10px;
            text-align: center;
        }
        .order-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .order-card {
            display: block;
            background: #fff;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            padding: 12px 14px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .order-card:hover {
            border-color: #4a8eff;
            box-shadow: 0 4px 14px rgba(74, 142, 255, 0.12);
        }
        .order-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 6px;
        }
        .order-row:last-child {
            margin-bottom: 0;
        }
        .order-row .lbl {
            color: #7a7a8c;
            flex-shrink: 0;
            margin-right: 10px;
        }
        .order-row .val {
            color: #2a2a38;
            text-align: right;
            word-break: break-all;
        }
        .order-row .val.money {
            color: #ff6bcb;
            font-weight: 600;
        }
        .status-tag {
            display: inline-block;
            padding: 1px 8px;
            border-radius: 8px;
            font-size: 12px;
        }
        .status-0 { background: #fff7e8; color: #ff7d00; }
        .status-1 { background: #e8ffea; color: #00b42a; }
        .status-2 { background: #ffe8e8; color: #f53f3f; }

        .pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }
        .pagination a, .pagination span {
            min-width: 34px;
            height: 34px;
            padding: 0 6px;
            border-radius: 8px;
            border: 1px solid #e8e8f0;
            background: #fff;
            color: #5a5a6c;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .pagination a:hover {
            border-color: #4a8eff;
            color: #4a8eff;
        }
        .pagination .active {
            background: linear-gradient(90deg, #ff6bcb 0%, #36d1dc 50%, #4a8eff 100%);
            border-color: transparent;
            color: #fff;
            font-weight: 600;
        }
        .pagination .ellipsis {
            border: none;
            background: transparent;
            color: #b8b8c8;
        }