.component__filter .filter__container {
  width: 100%;
  padding: 20px 20px 3px;
  background-color: var(--bg-light-color);
  /* border: 1px solid var(--border-default-color); */
}

.component__filter .filter__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  
}

.component__filter .filter__row .slot__left {
  position: relative;
  width: 90px; 
  height: 14px;
  line-height: 14px;
  font-size: 14px;
}

.component__filter .filter__row .slot__left::after {
  position: absolute;
  content: ':';
  top: 0;
  left: 60px;
  width: auto;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
}

.component__filter .filter__row .slot__right {
  flex: 1; 
  line-height: 14px;
  font-size: 14px;
}

.component__filter .filter__row .filter__level__container.show {
  display: block;
}

.component__filter .filter__row .filter__level__container.hide {
  display: none;
}

.component__filter .filter__row .filter__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.component__filter .filter__row .filter__child {
  padding-top: 20px;
  border-top: 1px solid var(--border-default-color);
}

.component__filter .filter__row .filter__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 30px;
  
  position: relative;
}

.component__filter .filter__row .filter__item {
  color: var(--text-sub1-color);
}

.component__filter .filter__row .filter__item,
.component__filter .filter__row .filter__item>* {
  cursor: pointer;
}

.component__filter .filter__row .filter__item.ass-show {
  display: flex;
}

.component__filter .filter__row .filter__item.ass-hide {
  display: none;
}

.component__filter .filter__item.active,
.component__filter .filter__item.parent-active {
  color: var(--theme-primary-color);
}

.component__filter .filter__item.active label {
  color: var(--text-sub1-color) !important;
}

.component__filter .filter__item input,
.component__filter .filter__item input {
  margin-right: 5px;
}

.component__filter .filter__item i,
.component__filter .filter__item i {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: all 0.3s;
}

.component__filter .filter__item.active i,
.component__filter .filter__item.parent-active i {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transition: all 0.3s;
}

.component__filter .filter__active {
  padding-top: 20px;
  border-top: 1px solid var(--border-default-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.component__filter .filter__active__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 30px;
}

.component__filter .active__label {
  margin-bottom: 20px;
  margin-right: 10px;
  color: var(--text-sub2-color);
  /* user-select: none; */
}

.component__filter .active__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px 5px 10px;
  margin-bottom: 20px;
  margin-right: 10px;
  border-radius: 2px;
  border: 1px solid var(--text-sub3-color);
  cursor: pointer;
  transition: all 0.3s;
}

.component__filter .active__item .text {
  display: inline-block;
  margin-right: 7px;
  height: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.component__filter .active__item .icon {
  font-size: 10px;
  transform: scale(0.65);
  -webkit-transform: scale(0.65);
  color: var(--text-sub3-color);
  transition: all 0.3s;
}

.component__filter .active__item:hover {
  color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
  transition: all 0.3s;
}

.component__filter .active__item:hover .icon {
  color: var(--theme-primary-color);
  transition: all 0.3s;
}

.component__filter .sort__container {
  width: 100%;
  margin-top: 20px;
  /* user-select: none; */
}

.component__filter .sort__container .sort__list {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 2px solid var(--theme-primary-color);
}

.component__filter .sort__container .sort__list .sort__item {
  height: 34px;
  line-height: 34px;
  padding: 0 15px;
  font-size: 14px;
  color: var(--text-sub1-color);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.component__filter .sort__container .sort__list .sort__item.active {
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
}

.component__filter .sort__container .sort__list .sort__item:hover {
  color: var(--theme-primary-color);
  transition: all 0.3s;
}

.component__filter .sort__container .sort__list .sort__item.active:hover {
  color: var(--bg-default-color) !important;
  transition: all 0.3s;
}


.component__filter .result__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  height: 15px;
}

.component__filter .result__container .slot__left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  /* user-select: none; */
}

.component__filter .result__container .slot__left .text {
  height: 14px;
  line-height: 14px;
  font-size: 14px;
}

.component__filter .result__container .slot__left .count {
  color: var(--theme-primary-color);
  height: 14px;
  line-height: 14px;
  font-size: 18px;
}

.component__filter .result__container .slot__empty {
  height: 14px;
  font-size: 14px;
  color: var(--text-sub1-color);
  line-height: 14px;
}

.component__filter .result__container .slot__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}


.component__filter .result__container .slot__right .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-size: 100% 100%;
  background-image: url('https://info.compassedu.hk/pc/img/icon/znz-icon-clear.png');
}

.component__filter .result__container .slot__right .text {
  height: 14px;
  line-height: 14px;
}



