.component__pop {
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}
.component__pop>.component__overlay {
  position: absolute;
  top: 0;
  height: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.component__pop>:first-child {
  position: relative;
  z-index: 2;
  margin: auto;
  background-color: var(--bg-default-color);
  transform: translateY(100vh);
  -webkit-transform: translateY(100vh);
  transition: all 0.2s ease-in-out;
}

.component__pop>:first-child>.close-level {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-default-color);
  border: 1px solid var(--text-sub3-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.component__pop>:first-child>.close-level i {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url('https://info.compassedu.hk/pc/img/icon/znz-icon-close.png');
  background-size: 100% 100%;
}

.component__form__input {
  position: relative;
  width: 100%;
  height: 60px;
}
.component__login .component__form__input {
  height: 86px;
}
.component__form__input>.input-info {
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 106px;
  float: left;
}
.detail__module__clue .component__form__input>.input-info,
#clue-pop .component__form__input>.input-info{
  position: relative;
}
.component__login .component__form__input>.input-info {
  height: 16px;
  width: unset;
  float:unset;
}

.component__form__input>.input-info>.input-label {
  height: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  /* user-select: none; */
}

.component__form__input>.input-info>.input-alert {
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-red);
  /* user-select: none; */
}
.detail__module__clue .component__form__input>.input-info>.input-alert,
#clue-pop .component__form__input>.input-info>.input-alert{
  position:absolute;
  left: 106PX;
  top: 40PX;
  width: 254PX;
}
.component__form__input>.input-box {
  /* width: 100%; */
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid var(--border-default-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.component__login .component__form__input>.input-box {
  width: 100%;
}
.component__form__input>.input-box>#select-area-code {
  position: relative;
  width: 90px;
  height: 40px;
  margin-right: 10px;
  padding-right: 6px;
}

.component__form__input>.input-box>#select-area-code::after {
  position: absolute;
  content: ' ';
  width: 1px;
  height: 12px;
  top: calc(50% - 6px);
  right: 0;
  background-color: var(--border-default-color);
}

.component__form__input>.input-box>#select-area-code>.select-box {
  width: calc(100% + 60px);
}

.component__form__input>.input-box>.send-btn {
  height: 14px;
  margin-left: 10px;
  font-size: 14px;
  color: var(--theme-primary-color);
  line-height: 14px;
}

.component__form__input>.input-box>.send-btn.disable {
  cursor: unset;
  color: rgba(0, 0, 0, 0.45) !important;
}


.component__form__input>.input-box>input {
  flex: 1;
}

.component__form__select {
  position: relative;
  width: 100%;
  height: 40px;
  color: var(--text-sub1-color);
}





.component__form__select>.choose-box {
  width: 100%;
  min-width: 80px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  /* user-select: none; */
}

.component__form__select>.choose-box>.text{
  margin-top: -1px;
  flex: 1;
  text-overflow: ellipsis;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.component__form__select>.choose-box>.text.empty {
  color: var(--text-sub2-color);
}

.component__form__select>.choose-box>.text i {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid var(--border-default-color);
  background-color: var(--bg-light-color);
  font-size: 14px;
  line-height: 14px;
  margin-right: 10px;
}

.component__form__select>.choose-box>.icon{
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: all 0.3s;
}

.component__form__select.active>.choose-box>.icon {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transition: all 0.3s;
}

.component__form__select>.select-box {
  position: absolute;
  z-index: 1;
  width: calc(100% + 30px);
  margin: 2px 0;
  max-height: 400px;
  top: 40px;
  left: -15px;
  border-radius: 4px;
  background-color: var(--bg-default-color);
  border: 1px solid var(--border-default-color);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  display: none;
}


@keyframes animate__slidedown {
  0% {
    transform: translate3d(0, -15px, 0);
    opacity: 0.3;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}


.component__form__select>.select-box .select-item-box div,
.component__form__select>.select-box .select-list-item {
  cursor: pointer;
  /* user-select: none; */
  transition: all 0.3s;
  padding: 10px 15px;
}

.component__form__select>.select-box .select-list-name {
  padding: 10px 15px;
  font-weight: 600;
  /* user-select: none; */
}

.component__form__select>.select-box .select-list-item {
  padding: 10px 15px;
  /* user-select: none; */
}

.component__form__select>.select-box .select-item-box div:hover,
.component__form__select>.select-box .select-list-item:hover {
  color: var(--theme-primary-color);
  background-color: var(--bg-light-color);
  transition: all 0.3s;
}
.component__form__select>.select-box .select-item-box div.active,
.component__form__select>.select-box .select-item-box div.active:hover {
  color: var(--bg-default-color);
  background-color: var(--theme-primary-color);
}

.component__form__select>.select-box .select-item-box .select-multiple-item.active,
.component__form__select>.select-box .select-item-box .select-multiple-item.active:hover,
.component__form__select>.select-box .select-list-item.active,
.component__form__select>.select-box .select-list-item.acitve:hover {
  color: var(--theme-primary-color);
}

.component__form__select>.select-box .select-item-box .select-multiple-item.active,
.component__form__select>.select-box .select-list-item.active {
  background-color: var(--bg-default-color);
}
.component__form__select>.select-box .select-item-box .select-multiple-item.active:hover,
.component__form__select>.select-box .select-list-item.active:hover {
  background-color: var(--bg-light-color);
}

.component__form__select>.select-box .select-item-box .select-multiple-item.active::after,
.component__form__select>.select-box .select-list-item.active.active::after {
  position: absolute;
  content: ' ';
  right: 15px;
  width: 14px;
  height: 14px;
  background-image: url('https://info.compassedu.hk/pc/img/icon/znz-icon-check.png');
  background-size: 100% 100%;
}
/* 级联选择样式 */
.component__form__select.select-cascader>.select-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 0;
  opacity: 0;
}

.component__form__select.select-cascader.active>.select-box {
  opacity: 1;
}

.component__form__select.select-cascader>.select-box .select-list-box {
  flex: 1;
  height: 170px;
  overflow-y: auto;
}

.component__form__select.select-cascader>.select-box .select-item-box {
  width: 50%;
  display: none;
  height: 170px;
  overflow-y: auto;
}

.component__form__select.select-cascader>.select-box .select-cascader-item {
  position: relative;
}



.component__login {
  padding: 23px 30px 40px;
  /* border: 1px solid var(--border-default-color); */
}

.copy_header {
  position: relative;
  padding-top: 100px;
  /* background: url('https://info.compassedu.hk/pc/img/loginModal/logincopy.png') top/100% no-repeat; */
}

.component__login.copy_header .head-copy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 20px 30px;
  height: 100px;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  background: url('https://info.compassedu.hk/pc/img/loginModal/login-top-header.png') top/100% no-repeat;
}

.component__login .head-copy {
  display: none;
}

.component__login.preview_header {
  width: 492px !important;
  border-radius: 6.5px !important;
  padding: 209px 63px 174px;
  background-color: transparent !important;
  background-image: url(https://info.compassedu.hk/pc/img/book/preview-popup-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.component__login.preview_header::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: calc(100% - 70px);
  height: calc(100% - 174px - 139px);
  border-radius: 6.5px;
  background-color: var(--bg-default-color);
  top: 174px;
  left: 35px;
}

.component__login.preview_header .send-btn {
  white-space: nowrap;
}

.component__login.preview_header .btn-level {
  width: 100% !important;
}

.component__login.preview_header .close-level {
  top: 18px !important;
  right: 24px !important;
  border-color: transparent !important;
  background-color: transparent !important;
}

.component__login.preview_header .head-copy {
  position: absolute;
  top: 86px;
  left: 40px;
  display: block;
  height: 64px;
  box-sizing: border-box;
  font-size: 23px;
  line-height: 32px;
  color: #333333;
}

.component__login .head-level {
  width: 100%;
  height: 27px;
}

.component__login .head-level span {
  position: relative;
  display: inline-block;
  height: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-sub2-color);
  line-height: 20px;
  margin-bottom: 5px;
  margin-right: 30px;
}

.component__login .head-level span.active {
  font-weight: 600;
  color: var(--text-main-color);
}

.component__login .head-level span.active::after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 2px;
  bottom: -7px;
  left: 0;
  border-radius: 2px;
  background-color: var(--theme-primary-color);
}

.component__login .head-level .count-sign {
  font-weight: 600;
  color: var(--text-main-color);
}

.component__login .form-level {
  margin-top: 30px;
}

.component__login .btn-level {
  width: 440px;
  height: 48px;
  margin-bottom: 30px;
  background-color: var(--theme-primary-color);
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bg-default-color);
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
}

.component__login .btn-level:hover {
  box-shadow: 0 2px 7px 0 #AFD7FB;
  transition: all 0.3s;
}

.component__login .toggletype-level {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

.component__login .toggletype-level .desc {
  display: inline-block;
  color: var(--text-sub2-color);
  margin-right: 10px;
}

.component__login .toggletype-level .btn {
  color: var(--theme-primary-color);
}

