/* tab栏 */
.component__anchor {
  position: relative;
  width: 1200px;
  height: 66px;
  background-color: var(--bg-default-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.component__anchor .layout__left {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-light-color);
  margin-right: 20px;
}

.component__anchor .layout__left img {
  width: 44px;
  height: 44px;
}

.component__anchor .layout__mid {
  width: 300px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: var(--text-sub1-color);
}

.component__anchor .layout__mid .anchor-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.component__anchor .layout__mid .anchor-item:not(.active):hover {
  color: var(--theme-primary-color);
  transition: all 0.3s ease;
}

.component__anchor .layout__mid .anchor-track {
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--theme-primary-color);
  bottom: -5px;
  left: 0; 
  transition: all 0.3s;
  transform: translateX();
}

.component__anchor .layout__mid .active {
  color: var(--theme-primary-color);
}

.layout__detail__anchor .layout__left {
  display: none;
}

/* *************************头部信息*************************** */
.layout__adviser__header {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 343px;
  margin-top: 66px;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(https://info.compassedu.hk/pc/img/adviser/detail-bg.png);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-default-color);
}

@media screen and (min-width: 1921px) {
  .layout__adviser__header { background-size: cover; }
}
@media screen and (max-width: 1920px) {
  .layout__adviser__header { background-size: 1920px 343px; }
}

.layout__adviser__header .info-level {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.layout__adviser__header .cover-box {
  position: relative;
  width: 175px;
  height: 175px;
  margin-right: 40px;
  background-color: var(--text-sub3-color);
  border-radius: 8px;
  border: 4px solid var(--bg-default-color);
}

.layout__adviser__header .cover-box img {
  width: 167px;
  height: 167px;
}

.layout__adviser__header .cover-box .contact-btn {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: calc(50% - 75.5px);
  width: 151px;
  height: 40px;
  background: var(--theme-primary-color);
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.layout__adviser__header .detail-box {
  height: 191px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.layout__adviser__header .detail-box>div[class$='-row'] {
  width: 100%;
}

.layout__adviser__header .base-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px; 
}

.layout__adviser__header .base-row.less-mr {
  margin-bottom: 9px; 
}

.layout__adviser__header .base-row .row-1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
}

.layout__adviser__header .base-row .row-1 .name {
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
  margin-right: 20px;
}

.layout__adviser__header .base-row .row-1 .job {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.layout__adviser__header .base-row .row-1 .job i {
  color: var(--theme-yellow);
}

.layout__adviser__header .base-row .row-1 .text {
  margin-left: 3px;
  font-size: 16px;
}

.layout__adviser__header .base-row .row-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.layout__adviser__header .base-row .row-2 .text {
  font-size: 16px;
}

.layout__adviser__header .base-row .row-2 .icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.layout__adviser__header .base-row .row-2 .icon,
.layout__adviser__header .base-row .row-2 .icon img {
  width: 30px;
  height: 30px;
}

.layout__adviser__header .base-row .row-2 .icon:not(:last-child) {
  margin-right: 5px;
}

.layout__adviser__header .base-row .slot__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.layout__adviser__header .base-row .num-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.layout__adviser__header .base-row .num-item:not(:last-child)::after {
  position: absolute;
  content: ' ';
  top: 20px;
  right: -25px;
  width: 1px;
  height: 15px;
  background-color: var(--bg-default-color);
  opacity: 0.5;
}

.layout__adviser__header .base-row .num-item:not(:last-child) {
  margin-right: 25px;
}

.layout__adviser__header .base-row .num-item:not(:first-child) {
  margin-left: 25px;
}

.layout__adviser__header .base-row .num-item .num {
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
  height: 33px;
}

.layout__adviser__header .base-row .num-item .num .desc-text {
  font-size: 18px;
  margin-left: 4px;
}

.layout__adviser__header .base-row .num-item .text {
  font-size: 16px;
  
}

.layout__adviser__header .desc-row {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 38px;
}

.layout__adviser__header .tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.layout__adviser__header .tag-row .tag-item {
  padding: 2px 16px;
  border-radius: 15px;
  background-color: var(--bg-default-color);
  color: var(--theme-primary-color);
  font-size: 16px;
  line-height: 24px;
  margin-right: 15px;
}

.layout__adviser__header .tag-row .tag-item.better {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 16px 2px 10px;
  border-radius: 15px;
  background-color: var(--bg-default-color);
  color: #F7772E;
  font-size: 16px;
  line-height: 24px;
  margin-right: 15px;
}

.layout__adviser__header .tag-row .tag-item.better .logo {
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.layout__adviser__header .tag-row .tag-item.better img {
  width: 28px;
  height: 28px;
  margin-left: -2.5px;
  margin-top: -2.5px;
}

.layout__adviser__header  .component__desc__pop .arrow-top {
  width: 10px;
  height: 10px;
  top: 30px;
}

.layout__adviser__header .component__desc__pop .desc-content {
  padding: 3px 15px;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid var(--theme-primary-color);
  white-space: nowrap;
  font-size: 14px;
  color: var(--theme-primary-color);
}

.layout__adviser__header .more {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layout__adviser__header .more .icon-more {
  cursor: pointer;
}

.layout__adviser__header .more .desc-content,
.layout__adviser__header .more .arrow-left {
  display: none;
}

.layout__adviser__header .more.active .desc-content,
.layout__adviser__header .more.active .arrow-left {
  position: absolute;
  display: block;
}

.layout__adviser__header .more .desc-content {
  width: 231px;
  max-height: 323px;
  top: -50%;
  left: 37px;
  background-color: var(--bg-default-color);
  border-radius: 4px;
  color: var(--text-main-color);
  padding: 10px 14px;
  overflow: auto;
}

.layout__adviser__header .more .desc-content .desc {
  height: 22px;
  font-size: 16px;
  font-weight: 500;
}

.layout__adviser__header .more .desc-content .honor-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.layout__adviser__header .more .desc-content .honor-item .icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.layout__adviser__header .more .desc-content .honor-item .icon img {
  width: 50px;
  height: 50px;
}

.layout__adviser__header .more .desc-content .honor-detail-box {
  flex: 1;
}

.layout__adviser__header .more .desc-content .honor-item .time {
  font-size: 12px;
  line-height: 17px;
  color: var(--text-sub2-color);
  font-weight: 400;
}

.layout__adviser__header .more .desc-content .honor-item .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.layout__adviser__header .more.active .arrow-left {
  top: calc(50% - 2px);
  right: -9px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  transform: rotate(45deg);
  background-color: var(--bg-default-color);
}

/* *************************推荐顾问*************************** */
.detail__module__adviserlist {
  padding: 0 !important;
}
.detail__module__adviserlist .list-box {
  margin-top: 15px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.detail__module__adviserlist .list-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.detail__module__adviserlist .list-item:not(:nth-child(4n)) {
  width: calc((100% - 190px) / 3);
}

.detail__module__adviserlist .list-item:nth-child(4n) {
  width: 190px;
}

.detail__module__adviserlist .list-item .cover {
  width: 65px;
  height: 65px;
  margin-right: 15px;
  background-color: var(--bg-light-color);
  border-radius: 4px;
  overflow: hidden;
}

.detail__module__adviserlist .list-item .cover {
  width: 65px;
  height: 65px;
}

.detail__module__adviserlist .list-item .cover img {
  width: 65px;
  height: 65px;
}

.detail__module__adviserlist .list-item .info-box .name{
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detail__module__adviserlist .list-item:hover .info-box .name{
  color: var(--theme-primary-color);
  transition: all 0.3s ease;
}

.detail__module__adviserlist .list-item .info-box .count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}

.detail__module__adviserlist .list-item .info-box .count .text {
  margin-right: 5px;
}

.detail__module__adviserlist .list-item .info-box .count .num {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-primary-color);
  line-height: 22px;
}

.detail__module__adviserlist .list-item .info-box .job {
  color: var(--text-sub2-color);
  font-size: 12px;
}