案例:
/* css 鼠标悬浮时 */
::v-deep .el-table tbody tr:hover > td {
background-color: rgb(65, 111, 180) !important;
color: #ffffff;
}
表格背景色透明
::v-deep .el-table tr { /* background-color: #10274c; */ background-color: transparent; color: #fff; }
表头背景色及字体颜色
::v-deep .el-table th.el-table__cell {
background-color: #1132aa;
color: #09ccde;
}