QWidget { background-color: #ffffff; color: rgb(48, 65, 86); /*border: 1px solid rgb(48, 65, 86);*/ font-weight: bold; } QPushButton { background-color: #222222; color: #ffffff; border: 2px solid #ffffff; } QLineEdit, QComboBox { color: rgb(48, 65, 86); } QLabel { color:rgb(48, 65, 86); font-weight: bold; } /* 表格视图样式 */ QTableView { gridline-color: #4472C4; border: 0.1px solid #4472C4; /* 外边框颜色 */ selection-color: #9f4b2c; /* 选中行文字颜色 */ font-size: 14px; /* 字体大小 */ font-family: "Microsoft YaHei", "Arial", sans-serif; /* 字体 */ show-decoration-selected: 1; /* 显示选中行的装饰 */ } /* 序号列header */ QTableCornerButton::section { background-color: #4472C4; } /* 表头样式 */ QHeaderView::section { background-color: #4472C4; font-weight: bold; color: white; height: 34px; /* 表头高度 */ } /* 普通行样式 */ QTableView::item { border: 0.5px solid #000308; /* 白色内边框 */ background-color: #D9E1F2; padding: 5px; /* 设置单元格内边距,增加行距 */ } /* 垂直表头行高 */ QTableView QHeaderView::vertical::section { height: 28px; }