@charset "UTF-8";
/**
 * 违规供应商列表
 * date: 2024-9-2
 * author: fxyue;
 */

.sub {
  display: flex;
}
.sub-menu {
  width: 220px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px 0px rgba(17, 64, 128, 0.12);
  background: #fff;
}
.sub-head {
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  padding: 0 16px;
  background: linear-gradient(90deg, #A4CB24 -8.78%, #077EC1 67.66%);
}
.sub-tree {
  padding: 10px 8px;
}
.sub-tree-items.current .sub-tree-node > a {
  color: #fff;
  background: #0F62A9;
}
.sub-tree-items.current .sub-tree-node > a:before {
  background-image: url("../images/menu_arrh.png") !important;
}
.sub-tree-items.current .sub-tree-subs {
  display: block;
}
.sub-tree-items + .sub-tree-items {
  margin-top: 6px;
}
.sub-tree-items.hasChild .sub-tree-node > a:before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 7px;
  background: url("../images/menu_arr.png") no-repeat center center;
}
.sub-tree-node .sub-tree-tt {
  position: relative;
  height: 50px;
  line-height: 50px;
  padding-left: 18px;
  color: #222;
}
.sub-tree-subs {
  padding-top: 6px;
  display: none;
}
.sub-tree-item .sub-tree-tt {
  height: 40px;
  line-height: 40px;
  padding-left: 30px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
  position: relative;
}
.sub-tree-item .sub-tree-tt::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9A9A9A;
}
.sub-tree-item .sub-tree-tt:hover, .sub-tree-item .sub-tree-tt.active {
  color: #0F62A9;
  background: rgba(221, 237, 255, 0.5);
}
.sub-tree-item .sub-tree-tt:hover::before, .sub-tree-item .sub-tree-tt.active::before {
  background: #0F62A9;
}
.sub-tree-tt {
  display: block;
  font-size: 18px;
}
.sub-content {
  width: calc(100% - 220px - 20px);
  margin-left: 20px;
}

.sub-tree-node.current {
  background: linear-gradient(90deg, #A4CB24 -8.78%, #077EC1 67.66%);
}

.sub-tree-node.current a {
  color: #fff;
}