.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: 24px;
  right: 18px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.component__pop>:first-child>.close-level i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('https://info.compassedu.hk/pc/img/register/close.png');
  background-size: 100% 100%;
}

.component__form__input {
  position: relative;
  width: 100%;
  height: 60px;
}
.component__login .component__form__input {
  height: 81px;
}
.component__form__input>.input-info {
  height: 40px;
  margin-bottom: 5px;
  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: 14px;
  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: 10px;
  /* border: 1px solid var(--border-default-color); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFAFA;
  /* backdrop-filter: blur(8.401826484018265px); 会影响层级！！！！！！ */ 
}
.component__login .component__form__input>.input-box {
  width: 100%;
}
.component__form__input>.input-box>#select-area-code,
.component__form__input>.input-box>#select-index-area-code {
  position: relative;
  width: 90px;
  height: 40px;
  margin-right: 10px;
  padding-right: 6px;
}

.component__form__input>.input-box>#select-area-code::after,
.component__form__input>.input-box>#select-index-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,
.component__form__input>.input-box>#select-index-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;
}

#report-pop .component__form__select>.select-box {
  height: 200px;
}


@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 {
  width: 671px!important;
  height: 462px;
  padding: 0;
  /* border: 1px solid var(--border-default-color); */
  box-sizing: border-box;
  border-radius: 4px!important;
}

.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: 65px;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  
  width: 100%;
  margin: 0;
}

.component__login .head-copy {
  /* display: none; */
  display: block;
  height: 65px;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 500;
  line-height: 65px;
  color: #FFFFFF;
  background: #1890FF;
  border-radius: 4px 4px 0px 0px;
  padding-left: 22px;
  width: calc(100% + 37px);
  margin: 0 0 31px -37px;
}

.component__login .head-copy-rec {
  position: absolute;
}

.component__login .head-copy-rec-1 {
  top: 24px;
  left: 383px;
  width: 115px;
  height: 41px;
  background: linear-gradient( 180deg, #FFFFFF 0%, rgba(206,218,255,0) 100%);
  border-radius: 8px 8px 0px 0px;
  opacity: 0.141;
}

.component__login .head-copy-rec-2 {
  top: 35px;
  left: 423px;
  width: 135px;
  height: 30px;
  background: linear-gradient( 180deg, #FFFFFF 0%, rgba(206,218,255,0) 100%);
  border-radius: 8px 8px 0px 0px;
  opacity: 0.141;
}

.component__login .head-copy-rec-3 {
  top: 49px;
  left: 514px;
  width: 31px;
  height: 16px;
  background: linear-gradient( 180deg, #CADAFF 0%, #E0E8FF 100%);
  opacity: 0.3;
}

.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: 286px;
  height: 27px;
}

.component__login .head-level span {
  position: relative;
  display: inline-block;
  height: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-main-color-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: 38%;
  height: 2px;
  bottom: -7px;
  left: 31%;
  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 {
  width: 298px;
  margin-top: 24px;
}

.component__login .btn-level {
  width: 298px;
  height: 37px;
  margin-bottom: 12px;
  background-color: var(--theme-primary-color);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--bg-default-color);
  line-height: 37px;
  text-align: center;
  transition: all 0.3s;
  margin-top: 10px;
}

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

.component__login .toggletype-level {
  width: 286px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  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);
}

.component__login .login-type-split-line {
  position: absolute;
  left: 370px;
  right: 239px;
  top: 65px;
  bottom: 0;
  background: #EFEFEF;
}

.component__login .login-type-split-text {
  position: absolute;
  left: 359px;
  right: 227px;
  top: 200px;
  bottom: 193px;
  line-height: 31px;
  background: #FFFFFF;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #E0DEDE;
  font-family: PingFangSC-Regular, PingFang SC;
}

.component__login .login-qrcode-area {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 239px;
  height: 357px;
}

.component__login .login-qrcode-title {
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  color: #262626;
  line-height: 14px;
  margin-top: 31px;
  text-align: center;
}

.component__login .login-qrcode-img-container {
  position: relative;
  width: 170px;
  height: 168px;
  box-shadow: 0px 0 14px 0px rgba(208,208,214,0.28);
  margin: 25px 0 26px 35px;
  background: #FFF;
  border-radius: 50%;
}

.component__login .login-qrcode-img {
  position: absolute;
  top: 11px;
  left: 12px;
  width: 146px;
  height: auto;
  border: none;
  background: transparent;
  /* border-radius: 50%; 会遮挡小程序码图片 */
}

.component__login .login-qrcode-img.fail {
  opacity: 0.1;
}

.component__login .login-qrcode-img.loading {
  top: 55px;
  left: 54px;
  width: 60px;
  height: 60px;
  border-radius: 0%!important;
}

.component__login .login-qrcode-tip{
  font-weight: 500;
  font-size: 16px;
  color: #262626;
  line-height: 14px;
  text-align: center;
}

.component__login .login-qrcode-fail-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  border-radius: 50%;
  display: none;
}

.login-qrcode-fail-cover.active {
  display: block;
}

.component__login .login-qrcode-fail-cover .login-qrcode-fail-tip {
  line-height: 19px;
  color: #333;
  font-size: 12px;
  margin: 0 auto;
  margin: 52px 0 7px 0;
  text-align: center;
}

.component__login .login-qrcode-fail-cover .login-qrcode-fail-btn {
  width: 78px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background: var(--theme-primary-color);;
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

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

img[src=""], img:not([src]) {
  opacity: 0!important;
}


.component__login .login-qrcode-scan-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: none;
}

.login-qrcode-scan-cover.active {
  display: block;
}

.component__login .login-qrcode-scan-cover .login-qrcode-scan-tip {
  line-height: 19px;
  color: #333;
  font-size: 12px;
  margin: 66px 0 7px 0;
  text-align: center;
  font-weight: 500;
}

/* 登录优化样式新增 防止影响其他样式 */
.component__login.pop-up {
  display: flex;
  border-radius: 12px!important;
}

.component__login.pop-up .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 238px;
  height: 462px;
  background-image: url(https://info.compassedu.hk/pc/img/register/left-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}


.component__login.pop-up .logo {
  width: 134px;
  height: 19px;
  margin: 67px 0 63px;
}

.component__login.pop-up .avatar {
  width: 89px;
  height: 89px;
  margin: 0 0 22px;
}

.component__login.pop-up .head-copy {
  width: 185px;
  height: auto;
  line-height: 36px;
  color: #fff;
  background-color: transparent;
  font-size: 24px;
  padding: 0;
  margin: 0;
  text-align: center;
}

.component__login.pop-up .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 433px;
  height: 100%;
}
.component__login.pop-up .head-level {
  width: 356px;
  height: auto;
  margin-top: 78px;
}

.component__login.pop-up .head-level span {
  font-weight: 400;
  font-size: 18px;
  color: #262626;
  line-height: 14px;
  margin-right: 64px;
  margin-bottom: 0;
}

.component__login.pop-up .head-level span:last-child {
  margin-right: 0;
}

.component__login.pop-up .head-level span.active {
  font-weight: 600;
  font-size: 20px;
  color: #262626;
}

.component__login.pop-up .head-level span.active::after {
  position: absolute;
  content: ' ';
  width: 31px;
  height: 3px;
  bottom: -7px;
  left: 31%;
  border-radius: 2px;
  background-color: #2B85FA;
}

.component__login.pop-up .per-content {
  display: flex;
  flex-direction: column;
  align-content: center;
  position: relative;
  width: 353px;
  min-height: 242px;
  height: auto;
}
.component__login.pop-up .per-content .login-qrcode-img-container {
  width: 194px;
  height: 194px;
  margin: 42px 0 13px!important;
  overflow: hidden;
}

.component__login.pop-up .per-content .login-qrcode-img-container .login-qrcode-img {
  width: 164px;
  height: 164px;
  left: 15px;
  top: 15px;
  border-radius: 30%;
}

.component__login.pop-up .per-content .login-qrcode-img-container .login-qrcode-img.loading {
  width: 194px;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.component__login.pop-up .per-content .login-qrcode-tip {
  width: auto;
  font-weight: 400;
  font-size: 14px;
  color: #262626;
  line-height: 14px;
  letter-spacing: 1px;
}

.component__login.pop-up .per-content .login-qrcode-area {
  position: initial;
  width: 100%;
  height: auto;
  min-height: 242px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.component__login.pop-up .per-content .form-level {
  width: 353px;
  margin-top: 50px;
}

.component__login.pop-up .per-content .component__form__input>.input-info>.input-label {
  font-weight: 500;
  font-size: 14px;
  color: #020E19;
  line-height: 20px;
}

.component__login.pop-up .per-content .component__form__input>.input-box {
  height: 48px;
}

.component__login.pop-up .per-content .component__form__select>.choose-box>.text {
  color: #6e6e6e;
}

.component__login.pop-up .per-content .component__form__input {
  height: 94px;
}

.component__login.pop-up .per-content .btn-level {
  width: 354px;
  height: 37px;
}

.component__login.pop-up .login-qrcode-scan-cover .login-qrcode-scan-tip {
  font-size: 14px;
}

.component__login.pop-up .login-qrcode-fail-cover .login-qrcode-fail-tip {
  font-size: 15px;
}

.component__login.pop-up .login-qrcode-fail-cover .login-qrcode-fail-btn {
  height: 32px;
  width: 90px;
  line-height: 32px;
  font-size: 14px;
}

.component__login.pop-up .head-level {
  display: flex;
  justify-content: space-between;
}

.component__login.pop-up .head-level .action__hover__cursor {
  margin-right: 0!important;
}