.highlight {
  color: #21a13b; /* 高亮颜色 */
  font-weight: bold; /* 加粗 */
  display: contents !important;
}
#result-box {
  padding: 16px 0 0;
  display: flex;
  justify-content: space-between;
}
#content {
  margin-bottom: 56px;
}
#right-detail {
  width: calc(100% - 240px);
  padding-left: 32px;
  padding-top: 8px;
}

.tabs {
  display: none;
  width: 100%;
  overflow: auto;
  overflow-y: hidden;
  line-height: 52px;
  padding-left: 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.tabs .tabs-item {
  margin-right: 20px;
  line-height: 52px;
  font-size: 14px;
  color: #333333;
  font-weight: bold;
  word-break: keep-all;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease; /* Assuming .transition is for transition effect */
}

.tabs-item.active {
  color: #21a13b !important;
  border-bottom: 2px solid #21a13b; /* Fallback color in case variable is not set */
}
.tabs-item.active a {
  color: #21a13b !important;
  border-bottom: 2px solid #21a13b; /* Fallback color in case variable is not set */
}
.not-result {
  padding: 48px 0 160px;
}
.el-pagination {
  width: 100%;
}
/* public-banner specific styles */
.public-banner .banner-bg .banner-info {
  top: 40%;
  transform: translateX(-50%);
}

.public-banner .banner-bg .banner-info .desc {
  margin-top: 8px;
}

.public-banner .banner-bg .banner-info .public-search {
  margin-top: 32px;
  margin-bottom: 0;
}
.el-pager {
  display: flex !important;
}
.public-sidebar {
  width: 248px;
  background: #f8f8f8;
}

.public-sidebar .sidebar-list {
  padding: 16px 0;
  margin-bottom: 104px;
}

.public-sidebar .sidebar-list .sidebar-item {
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.public-sidebar .sidebar-list .sidebar-item .name {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 22px;
}

.public-sidebar .sidebar-list .sidebar-item:hover {
  background: #fff;
}

.public-sidebar .sidebar-list .sidebar-item.active {
  background: #fff;
}

.public-sidebar .sidebar-list .sidebar-item.active .name {
  font-weight: 600;
  color: var(--theme-color);
}

.public-sidebar .sidebar-list .sidebar-item.active .name::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--theme-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .right-detail {
    padding-left: 16px;
  }
  #result-box {
    padding: 0;
    width: 100% !important;
    /* display: block; */
    flex-direction: column;
  }

  .left-sidebar {
    display: none;
  }

  #right-detail {
    width: 92%;
    padding-left: 0;
    margin: 0 auto;
    padding-top: 0;
  }

  .tabs {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  #content {
    margin-bottom: 0;
  }
  .pagination {
    padding-top: 32px;
  }
  .tabs-item.active a {
    border: none;
  }
  .tabs .tabs-item {
    font-family: MiSansVF;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    font-style: normal;
    padding: 20px 0;
  }
}
