/* el-tree 設置鼠標移上去顯示的顏色 */
#modelTree .el-tree-node__content:hover {
background-color: #65a19f !important;
}
/* 點擊節點時的選中顏色 */
#modelTree .el-tree-node.is-current > .el-tree-node__content {
background-color: #65a19f !important;
}
/* 右鍵點擊時的選中顏色 */
#modelTree .el-tree-node:focus>.el-tree-node__content{
background: #65a19f !important;
}