.layout__container section[id^='section__part__'] {
  margin-bottom: 0px;
}

.layout__practice__header {
  margin-top: 66px;
  padding-bottom: 70px;
  width: 100%;
  min-height: 338px;
  background: url('https://info.compassedu.hk/pc/img/practice/detail/header-bg.png') top/100% 100% no-repeat;
  background-size: cover;
}

.layout__practice__header .info-level {
  position: relative;
  left: calc(50% - 600px);
  padding-top: 76px;
  width: 1200px;
  height: 100%;
  z-index: 2;
}

.layout__practice__header .info-level .top-box {
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
  color: #FFFFFF;
}

.layout__practice__header .info-level .center-box {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #FFFFFF;
}

.layout__practice__header .info-level .center-box img {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  margin-right: 5px;
}

.layout__practice__header .info-level .center-box .grade, 
.layout__practice__header .info-level .center-box .location {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.layout__practice__header .info-level .center-box .grade {
  flex-shrink: 0;
}

.layout__practice__header .info-level .center-box .location {
  margin-left: 0px;
}

.layout__practice__header .info-level .bottom-box {
  margin-top: 73px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #FFFFFF;
}

.page__practice__detail {
  width: 860px;
}

.page__practice__detail .main__info__box {
  position: relative;
  min-height: calc(100vh - 400px);
  background-color: #FFFFFF;
}

.page__practice__detail .main__info__box .mask-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #FFFFFF;
  /* backdrop-filter: saturate(50%) blur(5px);
  -webkit-backdrop-filter: saturate(50%) blur(5px); */
}

.page__practice__detail .main__info__box .mask-text {
  position: sticky;
  top: 200px;
  left: 50%;

  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(89, 89, 89);
  cursor: pointer;
}

.page__practice__detail .main__info__box  .mask-text span {
  color: rgb(24, 144, 255);
}

/* 公司介绍 */
.detail__module__companyintro .module_content .info-box {
  margin-top: 15px;
  display: flex;
}

.detail__module__companyintro .module_content .info-box .left-image {
  width: 51px;
  height: 51px;
  border-radius: 4px;
  overflow: hidden;
}

.detail__module__companyintro .module_content .info-box .left-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail__module__companyintro .module_content .info-box .right-box {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail__module__companyintro .info-box .right-box .top {
  display: flex;
  align-items: center;
}

.detail__module__companyintro .info-box .right-box .top .company-name {
  font-size: 16px;
  font-weight: 400;
  color: rgb(38, 38, 38);
}

.detail__module__companyintro .info-box .right-box .top .tag {
  padding: 3px 11px;
  margin-left: 10px;
  border-radius: 25px;
  border: 1px solid rgb(24, 144, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: rgb(24, 144, 255);
}

.detail__module__companyintro .info-box .right-box .bottom {
  font-size: 16px;
  font-weight: 400;
  color: rgb(140, 140, 140);
}

.detail__module__companyintro .module_content .info-desc {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  line-height: 24px;
  color: rgb(89, 89, 89);
}

.module_content .text-desc {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(89, 89, 89);
  text-align: justify;
  word-break: break-all;
}

.detail__module__jobrequire .module_content .login-btn {
  margin: 20px auto 0;
  width: 104px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(24, 144, 255);
  border: 1px solid rgb(24, 144, 255);
  border-radius: 4px;
  cursor: pointer;
}

/* ***********************猜你想看item*********************** */
.layout__detail__right .detail__module__commend {
  padding-bottom: 0 !important;
  margin-bottom: 10px;
}

.practice-list .practice-item {
  display: block;
  position: relative;
  width: 100%;
  height: 62px;
  padding: 20px 0 20px 18px;
  font-size: 16px;
  line-height: 21px;
  transition: all 0.3s;
  
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.practice-list .practice-item::before {
  position: absolute;
  content: ' ';
  top: calc(50% - 4px);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px 0px 4px 4px;
  background-color: var(--theme-primary-color);
}

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

.practice-list .practice-item:hover {
  color: var(--theme-primary-color);
  transition: all 0.3s;
}

.detail__module__download {
  margin-top: 0;
}

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