
    :root {
        /* 将原先的佳能红修改为尼康黄 */
        --nikon-yellow: #FFE000; 
        --accent-blue: #1565c0;
        --border-color: #e0e0e0;
        --bg-gray: #f8f9fa;
        --text-dark: #222;
        --text-muted: #666;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #ffffff;
        margin: 0;
        padding: 15px;
        color: var(--text-dark);
        line-height: 1.4;
    }

    .table-container {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    h2 {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        /* 标题改为尼康黑，底部边框用尼康黄增强识别度 */
        color: #000;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    .sub-header {
        text-align: center;
        color: var(--text-muted);
        font-size: 14px;
        margin-bottom: 15px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        table-layout: fixed;
        border: 1px solid var(--border-color);
    }

    .table-camera col.col-shoe {
        width: 20%;
    }

    .table-camera col.col-list {
        width: auto;
    }

    .table-rt col.col-role {
        width: 20%;
    }

    .table-rt col.col-models {
        width: auto;
    }

    .table-rt col.col-mode {
        width: 20%;
    }

    th,
    td {
        padding: 8px 10px;
        border: 1px solid var(--border-color);
        word-wrap: break-word;
        vertical-align: middle;
    }

    thead td {
        background-color: #FFE000; /* 尼康风格采用黑色表头 */
        color: #000;
        font-weight: bold;
        text-align: center;
        font-size: 13px;
    }

    .category-group {
        margin-bottom: 12px;
    }

    .title-main {
        font-weight: bold;
        /* 修改左侧装饰条颜色为尼康黄 */
        color: #000;
        border-left: 4px solid var(--nikon-yellow);
        padding-left: 8px;
        margin-bottom: 4px;
        font-size: 14px;
        text-align: left;
    }

    .content-box {
        padding-left: 11px;
        font-size: 13px;
        color: #333;
    }

    .dslr-sub-title {
        font-weight: bold;
        font-size: 12px;
        color: #444;
        margin-top: 6px;
        margin-bottom: 2px;
    }

    .dslr-models {
        font-size: 12px;
        color: #555;
        border-left: 1px solid #eee;
        padding-left: 8px;
    }

    .alias-box {
        margin-top: 6px;
        font-size: 11px;
        color: #888;
        padding: 5px;
        background: #fafafa;
        border: 1px dashed #eee;
        line-height: 1.3;
    }

    .shoe-img {
        width: 50px;
        height: auto;
        margin-bottom: 4px;
    }

    .shoe-label {
        font-size: 10px;
        font-weight: bold;
        color: var(--text-muted);
    }

    .highlight-cell {
        /* 高亮单元格背景使用极浅的黄色，文字加黑 */
        background-color: #fffef0;
        font-weight: bold;
        color: #000;
        text-align: center;
        font-size: 12px;
    }

    @media (max-width: 600px) {
        td {
            padding: 6px 4px;
            font-size: 12px;
        }

        .title-main {
            font-size: 13px;
        }
    }
