/* 重写dialog弹框头部样式 */
.el-dialog__header {
	background-color: #39a5f2;
}
.el-dialog__title {
    line-height: 24px;
    font-size: 18px;
    color: white;
    margin-left: 10px;
}
.el-dialog__headerbtn .el-dialog__close {
    color: white;
}
.el-dialog__headerbtn .el-dialog__close:hover {
    color: #e4dede;
}

/* 重写导航菜单样式 */
.el-menu--horizontal > .el-menu-item.is-active, .el-menu--horizontal > .el-submenu.is-active .el-submenu__title {
    color: #409EFF;
    font-size: 18px;
}
.el-menu--horizontal .el-menu-item:focus, .el-menu--horizontal .el-menu-item:hover, .el-menu--horizontal .el-submenu__title:hover {
    outline: 0;
    color: #409EFF;
}
.el-menu--horizontal {
    border-bottom: none;
}

/* 去除flex布局(IE不兼容) */
.el-table__body, .el-table__footer, .el-table__header {
	table-layout: auto;
}

/* 重写table样式 */
/* .el-table--border .has-gutter td:nth-last-of-type(2), .el-table--border .has-gutter th:nth-last-of-type(2) {
    border-right: 1px solid #cadfee;
} */
.el-table {
	 border: 1px solid #cadfee;
}
.el-table--border  td:nth-last-of-type(1) {
    border-right: none;
}
.el-table--border::after, .el-table--group::after, .el-table::before{
	content: none;
}
.el-table--border {
    border-top: 1px solid #cadfee;
    border-left: 1px solid #cadfee;
}
.el-table td, .el-table th.is-leaf {
    border-bottom: 1px solid #cadfee;
}
.el-table--border td, .el-table--border th {
    border-right: 1px solid #cadfee;
    border-bottom: 1px solid #cadfee;
}
.el-table td, .el-table th {
    position: static;
}
.el-table--enable-row-hover .el-table__body tr:hover > td {
    background-color: #eaf6fe;
    transition: .4s;
} */
