/* *************************头部信息*************************** */
.section__part__head {
  background-color: var(--bg-light-color);
  padding: 16px 25px 21px;  
  display: block !important;
}
.section__part__head .info-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 11px;
}
.section__part__head .info-wrapper .cover {
  width: 60px;
  height: 60px;
  margin-right: 12px;
  object-fit: cover;
}
.section__part__head .info-wrapper .detail {
  flex: 1;
}

.section__part__head .info-wrapper .detail .title {
  font-size: 24px;
  font-weight: 500;
  color: #020E19;
  line-height: 33px;
  margin-bottom: 2px;
}

.section__part__head .info-wrapper .detail .num {
  font-size: 14px;
  font-weight: 500;
  color: #9A9FA3;
  line-height: 20px;
}

.section__part__head .intro {
  font-size: 13px;
  font-weight: 400;
  color: #2C2D2E;
  line-height: 18px;
}
/* *************************列表item*************************** */
.section__part__result .article-list-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  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: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;
}

.detail__module__commendrank .commend-collect {
  margin-top: 5px;
}

.detail__module__commendrank .commend-collect .commend-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 64px;
  width: 100%;
}

.detail__module__commendrank .commend-collect .commend-item:hover .title {
  color: var(--theme-primary-color);
  transition: all 0.3s;
}

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

.detail__module__commendrank .commend-collect .detail {
  position: relative;
  padding-left: 25px;
  margin-right: 12px;
  flex: 1;
}

.detail__module__commendrank .commend-collect .detail::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  top: -4px;
  left: -4px;
  background-image: url(https://info.compassedu.hk/pc/img/article/detail/topic.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.detail__module__commendrank .commend-collect .detail .title {
  font-size: 16px;
  line-height: 16px;
  transition: all 0.3s;
}

.detail__module__commendrank .commend-collect .detail .num {
  margin-top: 6px;
  font-size: 12px;
  line-height: 17px;
  color: #9A9FA3;
}

.detail__module__commendrank .commend-collect .cover {
  width: 43px;
  height: 43px;
  object-fit: cover;
}
