<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>合同真伪查询</title>
    <style>
        :root {
            --bg: #f8f9fa;
            --card-bg: #ffffff;
            --border: #e0e0e0;
            --text: #333333;
            --text-secondary: #666666;
            --primary: #007bff;
            --hover: #f1f5f9;
            --shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            margin-bottom: 24px;
            padding-top: 12px;
        }

        h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text);
        }

        .search-box {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            color: var(--text);
        }

        .search-box::before {
            content: "🔍";
            margin-right: 8px;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .section {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }

        .section-title {
            background: #f5f7fa;
            padding: 14px 20px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text);
            border-bottom: 1px solid var(--border);
        }

        .table {
            width: 100%;
            border-collapse: collapse;
        }

        .table th,
        .table td {
            padding: 16px 20px;
            text-align: left;
            vertical-align: top;
        }

        .table th {
            font-weight: 500;
            color: var(--text-secondary);
            background: #fafafa;
            width: 30%;
        }

        .table td {
            color: var(--text);
            font-weight: 500;
        }

        .table tr:hover {
            background-color: var(--hover);
        }

        .table tr:nth-child(even) {
            background-color: #fbfbfb;
        }

        /* 响应式：小屏下表格改为块级布局 */
        /*@media (max-width: 600px) {*/
        /*    .table th,*/
        /*    .table td {*/
        /*        display: block;*/
        /*        width: 100%;*/
        /*        padding: 12px 16px;*/
        /*    }*/

        /*    .table tr {*/
        /*        margin-bottom: 8px;*/
        /*        border-bottom: 1px solid var(--border);*/
        /*    }*/

        /*    .table th {*/
        /*        font-weight: 600;*/
        /*        color: var(--text);*/
        /*        background: transparent;*/
        /*        padding-top: 0;*/
        /*    }*/

        /*    .table td {*/
        /*        padding-top: 4px;*/
        /*        color: var(--text-secondary);*/
        /*        font-weight: normal;*/
        /*    }*/

        /*    !* 隐藏表头重复项（用伪元素替代）*!*/
        /*    .table tr:not(:first-child) th::before {*/
        /*        content: attr(data-label);*/
        /*        font-weight: 600;*/
        /*        display: inline-block;*/
        /*        margin-bottom: 4px;*/
        /*        color: var(--text);*/
        /*    }*/
        /*}*/

        /* 小屏优化：隐藏原表头，用 data-label 替代 */
        /*@media (max-width: 600px) {*/
        /*    .table th {*/
        /*        display: none;*/
        /*    }*/
        /*}*/

        footer {
            text-align: center;
            margin-top: 40px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
    </style>
</head>
<body>

<header>
    <h1>合同信息</h1>
</header>

<!--<div class="search-box">-->
<!--    <input type="text" placeholder="订单号" id="searchInput">-->
<!--</div>-->
<div >
    <!-- 基本信息 -->
    

    <div class="section">
        <div class="section-title" style="color: red">错误信息</div>
        <table class="table">
            <tbody>
            <tr>
                <td style="color: red">未找到该合同信息</td>
            </tr>
            </tbody>
        </table>
    </div>
</div>

<footer>
<!--    <p>© 2025 产品信息展示 | 数据仅供参考</p>-->
</footer>

</body>
</html>