#znz-pc {
  background-color: var(--bg-default-color);
  user-select: none;
}

.layout__container {
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page__handbook {
  width: 1000px;
}

/* *************************头部信息*************************** */
.layout__handbook__header {
  width: 100%;
  min-width: 1200px;
  
  margin-top: 66px;
}

.layout__handbook__header .bg-level {
  width: 100%;
  min-width: 1200px;
  height: 330px;
  overflow: hidden;
}

.layout__handbook__header .bg-level img {
  width: 100%;
  min-width: 1920px;
  height: auto;
  min-height: 330px;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .layout__handbook__header .bg-level img{
    -webkit-transform: translateX(-360px);
  }

}

@media screen and (min-width: 1200px) and (max-width: 1920px) {
  .layout__handbook__header .bg-level img {
    -webkit-transform: translateX(calc(-960px + 50vw));
  }
}

.layout__container .info-level {
  width: 100%;
  min-width: 1200px;
  margin-top: 54px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.layout__container .info-level p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 10px;
  font-size: 16px;
}

.layout__container .info-level .text-blue {
  font-size: 20px;
  font-weight: bold;
  color: #4EA5F4;
}

.layout__container .info-level .num {
  margin-top: 2px;
  margin-right: 4px;
  font-size: 18px;
}

/* *************************主体内容*************************** */
.page__handbook .list-box {
  width: 1000px;
  margin-bottom: 40px;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-default-color);
}

.page__handbook .list-box .desc {
  font-size: 16px;
  color: var(--text-sub2-color);
  margin-bottom: 25px;
}

.page__handbook .list-item {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 10px;
  background-color: #F8F8F9;
}

.page__handbook .list-item.univ {
  margin-bottom: 30px;
}

.page__handbook .list-item .header-box {
  width: 100%;
  height: 60px;
  padding: 20px 30px;
  background-color: #E7F5FF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--theme-primary-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.page__handbook .list-item .header-box .title {
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
}

.page__handbook .list-item .header-box .desc-text {
  font-size: 16px;
}

.page__handbook .list-item .content-box {
  padding: 30px 35px 0;
  background-color: #F8F8F9;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.page__handbook .list-item .handbook-item {
  width: 143.5px;
  margin-bottom: 30px;
}

.page__handbook .list-item .handbook-item:not(.disable) {
  cursor: pointer;
}

.page__handbook .list-item .handbook-item:not(.disable):hover .cover {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.page__handbook .list-item .handbook-item:not(:nth-child(5n)) {
  margin-right: 33px;
}

.page__handbook .list-item .handbook-item .cover {
  display: block;
  width: 143.5px;
  height: 190px;
  object-fit: cover;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.page__handbook .handbook-item input[type='checkbox'] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.page__handbook .handbook-item.active input[type='checkbox'] {
  background-color: var(--theme-primary-color);
}

.page__handbook .handbook-item.active .option-info input[type='checkbox']::after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://info.compassedu.hk/pc/img/icon/znz-icon-check-light.png');
  background-size: 100% 100%;
}

.page__handbook .select-item .option-info input[type='checkbox'] {
  border: 1px solid var(--theme-primary-color);
  margin-right: 11px;
}

.page__handbook  .handbook-item.disable .select-item input[type='checkbox'] {
  border: 1px solid var(--border-default-color);
  background-color: var(--border-default-color);
}

.page__handbook  .handbook-item.disable .select-item .text {
  color: var(--text-sub2-color);
}

.page__handbook .select-item {
  position: relative;
}

.page__handbook .select-item:hover .hover-pop {
  display: flex;
}


.page__handbook .select-item .option-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.page__handbook .select-item .hover-pop {
  position: absolute;
  z-index: 2;
  top: -39px;
  left: 30px;
  padding: 5px 10px;
  line-height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  background-color: var(--bg-default-color);
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  white-space: nowrap;
}

.page__handbook .select-item .hover-pop::after {
  position: absolute;
  content: ' ';
  bottom: -8px;
  left: 10px;
  border-style: solid;
  border-color: transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 3px;
  border-right-width: 3px;
  border-top-color: var(--bg-default-color);
}

.page__handbook .select-item .option-info div {
  /* width: 113px; */
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
}

.page__handbook .list-box .btn-box {
  position: relative;
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page__handbook .list-box .btn-box .btn-qrcode-container {
  position: absolute;
  top: -237px;
  left: calc(50% - 108px);
  width: 216px;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 14px 0px rgba(169,185,201,0.5);
  background-color: #fff;
}

.page__handbook .list-box .btn-box .btn-qrcode-container.hide {
  display: none!important;
}

.page__handbook .list-box .btn-box .btn-qrcode-container .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page__handbook .list-box .btn-box .btn-qrcode-container .container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #fff transparent transparent transparent; 
  z-index: 2;
}

.page__handbook .list-box .btn-box .btn-qrcode-container img {
  width: 193px;
  height: 193px;
}

.page__handbook .list-box .get-btn {
  margin: 0 auto;
  width: 497px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 26px;
  /* background-color: var(--bg-light-color); */
  /* color: var(--text-sub2-color); */
  transition: all 0.3s ease;
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
  cursor: pointer;
  position: relative;
}

.page__handbook .list-box .get-btn.active {
  background-color: var(--theme-primary-color);
  color: var(--bg-default-color);
  cursor: pointer;
}

.page__handbook .list-box .get-btn.active:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.page__handbook .rule-box .title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
  color: #535353;
}

.page__handbook .rule-box .rule-list {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 41px;
}

/* *************************弹窗样式*************************** */
.component__info__pop .head-level {
  width: 757px;
  height: 68px;
  background-position: center top;
  background-image: url(https://info.compassedu.hk/pc/img/handbook/pop-header.png?imageMogr2/thumbnail/!50p/blur/1x0/quality/50);
  background-color: #47A7FF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding-left: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.component__info__pop .head-level .pop-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--bg-default-color);
}

.component__info__pop .form-level {
  width: 100%;
  padding: 15px 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.component__info__pop .form-row:nth-child(odd) .input-info {
  width: 80px;
}

.component__info__pop  .form-row .input-box {
  width: 250px;
}

.component__info__pop .form-level .form-row {
  width: calc(50% + 10px);
}

.component__info__pop  .form-row:nth-child(odd)  {
  width: calc(50% - 20px);
}


.component__info__pop .btn-level {
  width: 553px;
  height: 48px;
  background: var(--theme-primary-color);
  border-radius: 24px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--bg-default-color);
  line-height: 48px;
  text-align: center;
}


.component__info__pop .info-area .select-box {
  z-index: 2;
}

.component__info__pop .info-position .component__form__select.select-cascader.active>.select-box {
  height: 174px;
}

/* @media screen and (max-height: 750px){
  .component__info__pop .info-position .component__form__select.select-cascader.active>.select-box {
    height: 174px;
  }
} */

@media screen and (max-height: 610px){
  .component__info__pop {
    transform: translateY(calc(50vh - 294.5px)) scale(0.9) !important;
    -webkit-transform: translateY(calc(50vh - 294.5px)) scale(0.9) !important;
  }
}

#info-pop .component__form__input>.input-info>.input-alert{
  position:absolute;
  left: 106px;
  top: 40px;
  width: 254px;
}

#info-pop .form-row:nth-child(odd) .component__form__input>.input-info>.input-alert {
  left: 86px;
}


.component__info__pop .address-search-box {
  position: absolute;
  z-index: 1;
  width: calc(100% - 106px);
  margin: 2px 0;
  height: 0;
  top: 40px;
  right: 0;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid transparent;
  overflow-y: auto;
  /* display: none; */
  transition: all 0.3s;
}

.component__info__pop .address-search-box.active {
  /* display: block; */
  height: 200px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-default-color);
  transition: all 0.2s;
  background-color: var(--bg-default-color);
}

.component__info__pop .address-search-box .search-item {
  cursor: pointer;
  /* user-select: none; */
  transition: all 0.2s;
  padding: 10px 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.component__info__pop .address-search-box .search-item .name {
  color: var(--theme-primary-color);
}

.component__info__pop .address-search-box .search-item .address {
  color: var(--text-sub2-color);
}

.component__info__pop .address-search-box .search-item:hover {
  background-color: var(--bg-light-color);
  transition: all 0.3s;
}

.component__info__pop .address-search-box .search-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 198px;
}