/*Summary Register Table 样式*/
.summary-register-table {
    width: 100% !important;
    margin: 0 auto !important; /* 可选：居中显示 */
}

/* 为了防止被其他格式覆盖，尽量指定精确 */
/*Name 列*/
.summary-register-table td:nth-child(1),
.summary-register-table th:nth-child(1) {
    width: 25% !important;
    white-space: normal !important; /* 允许换行 */
    word-wrap: break-word !important; /* 允许词内换行*/
}
/*Address offset 列*/
.summary-register-table td:nth-child(2),
.summary-register-table th:nth-child(2) {
    width: 13% !important;
}
/*Access 列*/
.summary-register-table td:nth-child(3),
.summary-register-table th:nth-child(3) {
    width: 11% !important;
}
/*Description 列*/
.summary-register-table td:nth-child(4),
.summary-register-table th:nth-child(4) {
    width: 51% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/*Register Table 样式*/
.register-table {
    width: 100% !important;
    table-layout: fixed !important;
}

/* 为了防止被其他格式覆盖，尽量指定精确 */
/*Bit 列*/
.register-table td:nth-child(1),
.register-table th:nth-child(1) {
    width: 10% !important;
}
/*Symbol 列*/
.register-table td:nth-child(2),
.register-table th:nth-child(2) {
    width: 21% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}
/*Access 列*/
.register-table td:nth-child(3),
.register-table th:nth-child(3) {
    width: 11% !important;
}
/*Reset 列*/
.register-table td:nth-child(4),
.register-table th:nth-child(4) {
    width: 8% !important;
}
/*Description 列*/
.register-table td:nth-child(5),
.register-table th:nth-child(5) {
    width: 50% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}