/* Here, the content of the common custom CSS defined into Home - Setup - Display - CSS*/
/* 隐藏登录页中间的 Dolibarr 版本号 */
.login_table_title[title^="Dolibarr"] {
    display: none !important;
}

/* 隐藏第 7 行里的“邮政编码”文字 + 后面的输入框 */
#dragDropAreaTabBar table.border.centpercent tbody tr:nth-child(7) td:nth-child(1),
#dragDropAreaTabBar table.border.centpercent tbody tr:nth-child(7) td:nth-child(2) {
    display: none !important;
}
/* 隐藏“专业ID号码3-6”字段所在行 */
#dragDropAreaTabBar table.border.centpercent tbody tr:nth-child(14) {
    display: none !important;
}
#dragDropAreaTabBar table.border.centpercent tbody tr:nth-child(15) {
    display: none !important;
}

/* 隐藏特定select2元素的默认下拉箭头 */
#my-select2-element + .select2-container .select2-selection__arrow {
    display: none !important;
}