i {
  font-style: normal;
}
.main-wrapper {
  box-sizing: border-box;
}
#app {
  background-color: #fafafa;
}
#app .left-panel {
  width: 240px;
  background-color: #f3f4f8;
  min-height: 800px;
  box-sizing: border-box;
  padding: 20px 10px;
  overflow: auto;
  height: 600px;
}
#app .left-panel [icon-class|='el-icon-arrow-right'] .el-icon-caret-right:before {
  content: "";
  background-image: url("../../../resources/images/iconfont-arrow-right.png");
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
}
#app .left-panel .el-tree {
  background-color: #f3f4f8;
}
#app .left-panel .el-tree-node__content {
  height: 36px;
  line-height: 36px;
}
/*#app .left-panel .el-tree-node:focus>.el-tree-node__content {*/
/*  background-color: #e22323;*/
/*  color: #fff;*/
/*}*/
/*#app .left-panel .el-tree-node:focus>.el-tree-node__content .el-icon-caret-right:before {*/
/*  background-image: url("../../../resources/images/iconfont-arrow-right-white.png");*/
/*}*/
#app .right-panel {
  flex: 1;
  min-height: 600px;
  padding: 0 10px;
  box-sizing: border-box;
}
#app .right-panel .card {
  background-color: #fff;
  /*padding: 20px;*/
  padding: 0px 20px 0px 20px;
}
#app .right-panel .card .line-wrapper {
  display: flex;
  justify-content: center;
  background-color: #5e7aa2;
  color: #fff;
  line-height: 80px;
  margin-bottom: 20px;
}
#app .right-panel .card .line-wrapper i {
  font-size: 18px;
}
#app .right-panel .card .progress-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#app .right-panel .card .progress-wrapper .item {
  display: flex;
  padding: 10px;
  margin-bottom: 20px;
}

#app .right-panel .card .progress-wrapper .active {
  box-shadow: 7px 7px #ccc;
}
#app .right-panel .card .progress-wrapper .item span .el-progress__text {
  color: #fff;
}
#app .right-panel .card .progress-wrapper .item span .el-progress-circle svgpath:first-child {
  stroke: rgba(120,170,240,0.4);
  stroke-linecap: square;
}
#app .right-panel .card .progress-wrapper .item span .el-progress-circle svgpath:last-child {
  stroke: #fff;
  stroke-linecap: square;
}
#app .right-panel .card .progress-wrapper .item .count {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
  color: #fff;
  margin-right: 20px;
  width: 40%;
}
#app .right-panel .card .progress-wrapper .item:nth-child(1) {
  background-color: #329cff;
}
#app .right-panel .card .progress-wrapper .item:nth-child(2) {
  background-color: #317efe;
}
#app .right-panel .card .progress-wrapper .item:nth-child(3) {
  background-color: #3de8df;
}
#app .right-panel .card .progress-wrapper .item:nth-child(4) {
  background-color: #3184fe;
}
#app .right-panel .card .progress-wrapper .item:nth-child(5) {
  background-color: #879fff;
}
#app .right-panel .card .progress-wrapper .item:nth-child(6) {
  background-color: #ff868b;
}
#app .right-panel .card .progress-wrapper .item:nth-child(7) {
  background-color: #329cff;
}
#app .right-panel .card.bot .search {
  display: flex;
  /*padding-left: 500px;*/
  margin-bottom: 20px;
}
#app .right-panel .card.bot .search .el-button {
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
  background-color: #e22323;
  color: #fff;
  border-color: #e22323;
}
#app .right-panel .card.bot .el-input input {
  -webkit-border-radius: 6px 0 0 6px;
  -moz-border-radius: 6px 0 0 6px;
  border-radius: 6px 0 0 6px;
}
#app .right-panel .card.bot .pagination {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
#app .count_class {
  min-width: 200px;
  text-align: center;
  line-height: 40px;
}

#app .el-tree-node .el-tree-node__children:nth-child(1):before {
  display: block !important;
}



#app .left-panel .el-tree-node-special {
  display: inline-block;
  width: calc(100% - 4px);
  line-height: 36px;
  cursor: pointer;
}
#app .left-panel .el-tree-node-special .el-icon-special {
  content: "";
  background-image: url("../../../resources/images/iconfont-arrow-right.png");
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


#app .left-panel .active{
  background-color: #e22323;
  color: #fff;
  display: inline-block;
  width: calc(100% - 4px);
  line-height: 36px;
  cursor: pointer;
}
#app .left-panel .active .el-icon-special:before{
  content: "";
  background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background-image: url("../../../resources/images/iconfont-arrow-right-white.png");
  webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}



#app .left-panel .is-current >.el-tree-node__content {
  background-color: #e22323;
  color: #fff;
}
#app .left-panel .is-current>.el-tree-node__content .el-icon-caret-right:before {
  background-image: url("../../../resources/images/iconfont-arrow-right-white.png");
}