
        /* Base Styles */
        body {
            background-color: #0E0F0E;
            color: #D8D8D8;
        }

        table {
            width: 80%;
            border-collapse: collapse;
            margin: 20px auto;
        }

        th, td {
            padding: 24px 12px;
            text-align: left;
            border-bottom: 1px solid #3A3A3A;
        }

        th {
            font-family: 'Montserrat-Regular', sans-serif;
            color: #D8D8D8;
            padding-bottom: 32px;
        }

        td {
            font-family: 'Opensans-Regular', sans-serif;
            vertical-align: top;
            color: #D8D8D8;
        }

        /* Desktop Styles */
        @media (min-width: 768px) {
            th {
                font-size: 41px;
            }
            td {
                font-size: 16px;
            }
        }

   /* 移动端适配 */
        @media (max-width: 767px) {
            .table-container {
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            table {
                min-width: 650px;
            }
            
            thead tr:first-child th {
                font-size: 16px;
                padding-bottom: 16px;
            }
            
            th, td {
                padding: 12px 8px;
                font-size: 14px;
            }
            
            /* 表头保持相同大小和加粗 */
            thead tr:last-child th {
                font-size: 14px;
                font-weight: bold;
            }
            
            /* 首列固定 */
            td:first-child, th:first-child {
                position: sticky;
                left: 0;
                background-color: #0E0F0E;
                z-index: 1;
            }
            
            /* 长内容单元格特殊处理 */
            td[colspan] {
                white-space: normal;
            }
            
            /* 滚动条样式 */
            .table-container::-webkit-scrollbar {
                height: 6px;
                background-color: #2A2A2A;
            }
            
            .table-container::-webkit-scrollbar-thumb {
                background-color: #5A5A5A;
                border-radius: 3px;
            }
        }
    