#znz-pc {
  user-select: none;
}

#section__part__1 .result-list {
  min-height: 70vh;
}

/* *************************主体内容*************************** */
section[id^='section__part__'] {
  width: 100%;
  background-color: var(--bg-default-color);
  margin-bottom: 10px;
  padding: 20px;
}

.section__part__filter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section__part__filter .slot__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.section__part__filter .slot__left:not(.flex-container) {
  flex: 1;
}

.section__part__filter .slot__left .tab-item {
  padding: 6px 15px;
  border-radius: 4px;
  color: #2b2b2b;
  font-size: 16px;
  transition: all 0.3s ease;
  
}

.section__part__filter .slot__left .tab-item.active {
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
  transition: all 0.3s ease;
}

.section__part__filter .slot__left .tab-item:not(.active):hover {
  cursor: pointer;
  color: var(--theme-primary-color);
  transition: all 0.3s ease;
}

.section__part__filter .slot__left.flex-container {
  margin-right: 15px;
  flex-wrap: nowrap;
}

.section__part__filter .slot__left.flex-container .tab-item {
  flex-shrink: 0;
}

.section__part__filter .slot__right.flex-container {
  flex: 1;
  max-width: 235px;
}

.section__part__filter .component__search {
  width: 100%;
}

.section__part__filter .component__search .dropdown-box {
  width: 100%;
}

.section__part__filter .component__search .search-btn {
  width: 47px;
}

.section__part__filter .component__search .dropdown-box .search-item:hover,
.section__part__filter .component__search .dropdown-box .history-item:hover {
  color: var(--theme-primary-color);
}

.section__part__filter .sort-box {
  margin-top: 6px;
  width: 100px;
  height: 24px;
  position: relative;
}

.section__part__filter .sort-box:hover .show-box i {
  transform: rotate(-180deg);
  transition: all 0.15s ease;
}

.section__part__filter .sort-box .show-box {
  color: var(--theme-primary-color);
  height: 24px;
  font-size: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section__part__filter .sort-box .show-box i {
  transition: all 0.15s ease;
}

.section__part__filter .sort-box .select-box {
  position: absolute;
  z-index: 2;
  top: calc(100%);
  right: 0;
  width: 110px;
  padding: 7.5px 0;
  border: 1px solid var(--border-default-color);
  background-color: var(--bg-default-color);
  border-radius: 0 0 4px 4px;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}

.section__part__filter .sort-box .select-box .sort-item {
  transition: all 0.3s ease;
}

.section__part__filter .sort-box .select-box .sort-item {
  padding: 7.5px 15px;
}

.section__part__filter .sort-box .select-box .sort-item.active {
  color: var(--theme-primary-color);
  cursor: default;
}

.section__part__filter .sort-box .select-box .sort-item:not(.active):hover {
  color: var(--theme-primary-color);
  background-color: var(--bg-light-color);
  transition: all 0.3s ease;
}

.section__part__result .result-list.result-type-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0 !important;
  margin-top: 20px;
}

.section__part__result .result-type-1 .case-item:not(:nth-child(3n)) {
  margin-right: 20px;
}

.section__part__result .result-type-1 .case-item {
  position: relative;
}

.section__part__result .result-type-1 .case-item.golden::after {
  position: absolute;
  content: ' ';
  z-index: 2;
  top: 0;
  right: -1px;
  width: 55px;
  height: 55px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(https://info.compassedu.hk/pc/img/adviser/case-badge.png);
}

.section__part__result .result-type-1 .golden .info .title {
  width: 156px;
}

.section__part__result .empty-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 0;
}

/* *************************文章item*************************** */
.section__part__result .article-list-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
}

.section__part__result .article-list-item:not(:last-child) {
  border-bottom: 1px solid var(--border-default-color);
}

.section__part__result .article-list-item .slot_left {
  margin-right: 20px;
}

.section__part__result .article-list-item .slot_left .cover {
  overflow: hidden;
}

.section__part__result .article-list-item .slot_left .cover,
.section__part__result .article-list-item .slot_left .cover img {
  width: 138px;
  height: 138px;
}

.section__part__result .article-list-item .slot_left .cover img {
  object-fit: cover;
  transition: all 0.3s;
}

.section__part__result .article-list-item:hover .slot_left .cover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2) rotate(0.1deg);
  -moz-transform: scale(1.2) rotate(0.1deg);
  transition: all 0.3s;
}

.section__part__result .article-list-item .slot_mid {
  height: 138px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.section__part__result .article-list-item .slot_mid .title {
  text-align: justify;
  min-height: 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-sub5-color);
  line-height: 25px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.section__part__result .article-list-item .slot_mid .title .top {
  position: relative;
  top: -2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  background-color: var(--theme-red);
  color: var(--bg-default-color) !important;
  font-size: 12px;
  font-weight: 400 !important;
}

.section__part__result .article-list-item:hover .slot_mid .title {
  color: var(--theme-primary-color);
  transition: all 0.3s;
}

.section__part__result .article-list-item .slot_mid .desc {
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  color: var(--text-sub6-color);
}

.section__part__result .article-list-item .slot_mid .info {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 20px;
  font-size: 14px;
  color: var(--text-sub2-color);
  line-height: 20px;
}

/* *************************评价item*************************** */
.comment-item {
  width: 100%;
  padding: 20px 0;
}

.comment-item:not(:last-child) {
  border-bottom: 1px solid var(--border-default-color);
}

.comment-item .base-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-item .base-box .cover {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.comment-item .base-box .cover img {
  width: 44px;
  height: 44px;
}

.comment-item .base-box .info-box {
  flex: 1;
}

.comment-item .base-box .info-box .row-1 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.comment-item .base-box .info-box .row-1 .name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sub7-color);
}

.comment-item .base-box .info-box .row-1 .tag {
  padding: 2px 9px;
  border-radius: 12px;
  border: 1px solid var(--theme-primary-color);
  color: var(--theme-primary-color);
  font-size: 12px;
  margin-left: 10px;
}

.comment-item .base-box .info-box .row-1 .time {
  font-size: 14px;
  color: var(--text-sub2-color);
  margin-left: auto;
}

.comment-item .base-box .info-box .row-2 {
  margin-top: 4px;
  color: var(--text-sub7-color);
}

.comment-item .desc-box {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-sub10-color);
  line-height: 24px;
  position: relative;
  text-align: justify;
}

.comment-item .desc-box .toggle-btn {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  color: var(--theme-primary-color);
  width: 60px;
  text-align: right;
  height: 24px;
  line-height: 24px;
  background-image: linear-gradient(to right, rgba(255,255,255, 0.4) 15%, rgba(255,255,255, 1) 40%, rgba(255,255,255, 1) 100%);
  cursor: pointer;
}

.comment-item .desc-box.active .toggle-btn {
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.comment-item .img-box {
  margin-top: 20px;
}

.comment-item .img-box .list-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.comment-item .img-box .list-box .img-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease;
}

.comment-item .img-box .list-box .img-item img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.comment-item .img-box .list-box .img-item:hover,
.comment-item .img-box .list-box .img-item.active {
  border: 2px solid var(--theme-primary-color);
  transition: all 0.1s ease;
}

.comment-item .img-box .list-box .img-item:not(:last-child) {
  margin-right: 20px;
}

.comment-item .img-box .detail-box {
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: 430px;
  background-color: var(--bg-light-color);
  display: none;
  cursor: pointer;
}

.comment-item .img-box .detail-box img {
  display: block;
  margin: 0 auto;
  height: 430px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  overflow: hidden;
}

.comment-item .img-box .detail-box .close-btn {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44px;
  font-size: 16px;
  background-color: rgba(38, 38, 38, 0.5);
  color: var(--bg-default-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-item .img-box .detail-box .close-btn i {
  transform: rotate(180deg);
  margin-left: 5px;
  font-size: 20px;
}

.comment-item .img-box .detail-box .prev-btn,
.comment-item .img-box .detail-box .next-btn {
  position: absolute;
  z-index: 2;
  top: calc(50% - 97px);
  width: 110px;
  height: 194px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  opacity: 0;
}

.comment-item .img-box .detail-box .prev-btn:hover,
.comment-item .img-box .detail-box .next-btn:hover {
  opacity: 1;
}

.comment-item .img-box .detail-box .prev-btn {
  justify-content: flex-start;
  left: 0;
}

.comment-item .img-box .detail-box .next-btn {
  justify-content: flex-end;
  right: 0;
}

.comment-item .img-box .detail-box .prev-btn i,
.comment-item .img-box .detail-box .next-btn i {
  font-size: 48px;
  color: var(--text-sub2-color);
}

.comment-item .img-box .detail-box .prev-btn i {
  transform: rotate(90deg);
}

.comment-item .img-box .detail-box .next-btn i {
  transform: rotate(-90deg);
}



/* *************************服务导师*************************** */
.detail__module__commendadviser {
  margin-top: 0 !important;
}

.detail__module__commendadviser .info-box .cover {
  width: 77px;
  height: 78px;
  border-radius: 4px;
  margin-right: 20px;
}

.detail__module__commendadviser .info-box .cover img {
  width: 77px;
  height: 78px;
  border-radius: 0;
}

/* *************************顾问卡片*************************** */
.detail__module__commendadviser {
  width: 330px;
  height: 219px;
}

.detail__module__commendadviser.fixed {
  position: fixed;
  /* top: 76px; */
  top: calc(76px + 90px);
}