﻿       /* ----- 全局重置 & 字体 ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ----- 表格容器 ----- */
        .table-wrapper {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
            padding: 0px;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        /* ----- 表格本体 ----- */
        .master-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            line-height: 1.7;
            color: #2c2c2c;
            border: 1px solid #d9d0c4;
            border-radius: 12px;
            overflow: hidden;
        }

        /* ----- 所有单元格基础 ----- */
        .master-table td,
        .master-table th {
            padding: 16px 18px;
            border: 1px solid #d9d0c4;
            vertical-align: top;
            text-align: left;
        }

        /* ----- 表头行 (名称 / 类型 / 简介 / 备注) ----- */
        .master-table .header-row th {
            background-color: #c8a86e;
            color: #fef7f0;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-align: center;
            padding: 14px 18px;
            border-color: #5a4030;
        }

        /* ----- 主标题----- */
        .master-table .main-title {
            background: linear-gradient(135deg, #1a3a6b 0%, #2a5caa 50%, #c8a86e 100%);
            color: #fef7f0;
            font-size: 22px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 6px;
            padding: 20px 18px;
            border-color: #5a4030;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        /* ----- 行标题 ----- */
        .master-table .row-label {
            background-color: #f4ede6;
            font-weight: 700;
            color: #4d3729;
            text-align: center;
            vertical-align: middle;
            min-width: 100px;
            font-size: 16px;
            letter-spacing: 1px;
        }

        /* ----- 类型列 ----- */
        .master-table .type-cell {
            font-weight: 600;
            color: #5a3f2e;
            white-space: nowrap;
            background-color: #fcf9f5;
            vertical-align: middle;
            text-align: center;
        }

        .master-table .type-cell .sub-type {
            font-weight: 400;
            color: #6b5a4a;
            font-size: 14px;
        }

        /* ----- 简介列 ----- */
        .master-table .desc-cell {
            background-color: #fefcf9;
            line-height: 1.8;
        }

        /* ----- 备注列  ----- */
        .master-table .note-cell {
            background-color: #faf7f2;
            font-size: 14px;
            color: #4d3e32;
            line-height: 1.8;
            min-width: 180px;
        }

        .master-table .note-cell .note-highlight {
            color: #8b4c3c;
            font-weight: 500;
        }

        /* 备注合并单元格专用：居中 + 垂直居中 */
        .master-table .note-center {
            text-align: left;
            vertical-align: middle;
            background-color: #faf7f2;
        }

        /* ----- 宏德堂 大区块 (整行合并) ----- */
        .master-table .section-grand {
            padding: 22px 28px;
            border-color: #cbb8a8;
            line-height: 1.9;
        }

        .master-table .section-grand .grand-title {
            font-size: 22px;
            font-weight: 700;
            color: #4d3729;
            display: block;
            margin-bottom: 12px;
            letter-spacing: 3px;
            border-bottom: 2px solid #cbb8a8;
            padding-bottom: 10px;
        }

        .master-table .section-grand .grand-title small {
            font-weight: 400;
            font-size: 15px;
            color: #7a6556;
            letter-spacing: 1px;
            margin-left: 8px;
        }

        .master-table .section-grand p {
            margin-bottom:10px;
            text-indent: 0em;
        }

        .master-table .section-grand p:last-child {
            margin-bottom: 0;
        }

        .master-table .section-grand .highlight-box {
            border-left: 4px solid #8b6b51;
            padding: 5px 12px;
            margin: 10px 0;
            border-radius: 0 6px 6px 0;
            font-weight: 500;
            color: #3f2e20;
        }

        .master-table .section-grand .highlight-box strong {
            color: #6b4f3c;
        }

        .master-table .section-grand .sub-head {
            font-weight: 700;
            color: #5a3f2e;
            font-size: 16px;
            margin-top: 12px;
            display: inline-block;
            border-bottom: 2px solid #cbb8a8;
            padding-bottom: 2px;
			text-indent: 0em;
        }

        /* ----- 工具类 ----- */
        .text-muted {
            color: #8a7a6a;
            font-size: 13px;
        }

        /* ----- 响应式 ----- */
        @media (max-width: 820px) {
            .table-wrapper {
                padding: 16px 10px;
            }

            .master-table {
                font-size: 13px;
            }

            .master-table td,
            .master-table th {
                padding: 12px 10px;
            }

            .master-table .main-title {
                font-size: 20px;
                letter-spacing: 3px;
                padding: 16px 12px;
            }

            .master-table .section-grand {
                padding: 16px 14px;
            }

            .master-table .section-grand .grand-title {
                font-size: 18px;
            }

            .master-table .type-cell {
                white-space: nowrap;
                font-size: 13px;
            }

            .master-table .row-label {
                font-size: 14px;
                min-width: 60px;
                padding: 10px 6px;
            }

            .master-table .note-cell {
                font-size: 12px;
                min-width: 100px;
            }
        }

        @media (max-width: 600px) {
            body {
                padding: 0;
            }

            .table-wrapper {
                padding: 10px 4px;
                border-radius: 10px;
            }

            .master-table {
                font-size: 12px;
                border-radius: 8px;
            }

            .master-table td,
            .master-table th {
                padding: 8px 6px;
                word-break: break-word;
                font-size: 14px;
            }

            .master-table .main-title {
                font-size: 17px;
                letter-spacing: 2px;
                padding: 12px 8px;
            }

            .master-table .section-grand {
                padding: 12px 10px;
            }

            .master-table .section-grand .grand-title {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .master-table .section-grand p {
                text-indent: 0em;
                font-size: 14px;
            }

            .master-table .row-label {
                font-size: 12px;
                min-width: 40px;
                padding: 6px 4px;
            }

            .master-table .type-cell {
                font-size: 14px;
                padding: 6px 4px;
            }

            .master-table .note-cell {
                font-size: 14px;
                min-width: 60px;
                padding: 6px 4px;
            }

            .master-table .header-row th {
                font-size: 13px;
                padding: 10px 6px;
            }
        }
		