
        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }

        .table-container {
            max-width: 100%;
            overflow-x: auto;
            padding: 10px;
        }

        table {
            border-collapse: collapse;
            margin: 50px auto;
            width: 90%;
            text-align: center;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            min-width: 600px;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            font-size: 18px;
            color: #333;
        }

        thead th {
            background-color: #C1272E !important;
            color: white;
            font-size: 18px;
        }

        tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tbody tr:hover {
            background-color: #f1f1f1;
        }

        @media screen and (max-width: 768px) {
            table {
                width: 100%;
                margin: 20px 0;
                min-width: unset;
            }

            th, td {
                min-width: 120px;
                font-size: 16px;
                padding: 10px;
            }

            thead th {
                font-size: 16px;
            }

            /* 隐藏次要列 */
            td:nth-child(4),
            th:nth-child(4),
            td:nth-child(7),
            th:nth-child(7) {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            table {
                display: block;
            }

            th, td {
                display: block;
                width: 100%;
                text-align: right;
                min-width: unset;
                padding: 12px 15px;
                box-sizing: border-box;
            }

            td::before {
                content: attr(data-label);
                float: left;
                font-weight: bold;
                color: #C1272E;
            }

            thead {
                display: none;
            }

            tr {
                margin-bottom: 15px;
                display: block;
                border: 1px solid #ddd;
            }
        }
    