
        /* 基础样式 */
        body {
            background-color: #0E0F0E;
            color: #D8D8D8;
        }

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

        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;
        }

        /* 电脑端样式 */
        @media (min-width: 768px) {
            th {
                font-size: 41px;
            }
            td {
                font-size: 16px;
            }
            /* 修改Item行样式 */
            tr:nth-child(2) th {
                font-size: 16px; /* 字号与数据行一致 */
                font-weight: 700; /* 加粗处理 */
            }
        }

        /* 移动端样式 */
        @media (max-width: 767px) {
            table {
                width: 100%;
            }
            thead tr:first-child th {
                font-size: 16px;
                padding-bottom: 16px;
            }
            th,
            td {
                font-size: 14px;
                padding: 20px 12px;
            }
            th {
                padding-bottom: 24px;
            }
            /* 移动端保持字号一致 */
            tr:nth-child(2) th {
                font-size: 14px; /* 匹配移动端正文字号 */
                font-weight: 700;
            }
        }

        /* 列宽控制 */
        th:first-child,
        td:first-child {
            width: auto;
        }

        th:nth-child(n + 2),
        td:nth-child(n + 2) {
            width: calc((100% - 已设第一列宽度) / 3);
        }

        /* 最后两行合并样式 */
        tr:nth-last-child(-n + 2) td:nth-child(n + 2) {
            text-align: center;
            width: 100%;
            padding: 24px 12px;
        }
    