/* 登录弹框 */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal.is-open {
    display: flex;
}
.modal .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.table {
    position: relative;
    z-index: 1;
    width: 3.6rem;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 .1rem .3rem rgba(0, 0, 0, 0.25);
    transform: scale(1.5);
    transform-origin: center;
}
.register_table {
    transform: scale(1);
    width: 4.5rem;
}
@media screen and (max-width: 750px) {
    .register_table {
        width: 4.2rem;
        transform: scale(1.4);
    }
}
.table-close {
    position: absolute;
    top: -.4rem;
    right: -.4rem;
    width: .4rem;
    height: .4rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: .4rem;
    line-height: .4rem;
    color: #fff;
    z-index: 2;
}
.form {
    border-radius: .08rem;
    background: #fff;
    overflow: hidden;
}
.form .tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
}
.form .tabs .tab {
    flex: 1;
    height: .5rem;
    line-height: .5rem;
    text-align: center;
    background: #fff;
    color: #222;
    font-size: .18rem;
    cursor: pointer;
    user-select: none;
    border-bottom: .01rem solid #eee;
}
.form .tabs .tab.active {
    background: #24A49F;
    color: #fff;
    border-bottom-color: transparent;
}
.form .tab_content .method {
    display: none;
}
.form .tab_content .method.active {
    display: block;
}
.form .tab_content {
    padding: .22rem .2rem .26rem;
}
.form .form_item {
    height: .4rem;
    margin-bottom: .3rem;
    border-radius: .06rem;
    border: 1px solid #A5A5A5;
    position: relative;
}
.form_item:hover {
  border-color: #24A49F;
}
.form_item:focus-within {
  border-color: #24A49F;
}
.form_item .errmsg {
    display: none;
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    font-size: .12rem;
    color: #FF2442;
    padding-left: 14px;
}
.form_item .errmsg::before {
    content: '';
    position: absolute;
    left: 0;
    top: .04rem;
    width: .12rem;
    height: .12rem;
    background: url(../images/reservation/warning.png) 0 0 / 100% 100% no-repeat;
}
.form .form_item input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .06rem;
    border: none;
    outline: none;
    padding: 0 .18rem;
    font-size: .14rem;
}
.form .form_item input::placeholder {
    color: #bfbfbf;
}
.form .form_item input:focus {
    border-color: #24A49F;
}
.form .icon {
    position: absolute;
    right: .12rem;
    top: .08rem;
    width: .2rem;
    height: .2rem;
    background: 0 0 / 100% 100% no-repeat;
    cursor: pointer;
}
.form .icon.eye {
    background-image: url("../images/reservation/eye_close.png");
}
.form .icon.eye.open {
    background-image: url("../images/reservation/eye_open.png");
}
.form .icon.clear {
    display: none;
    background-image: url("../images/reservation/clear.png");
}

.form .form_item_code {
    display: flex;
    gap: .12rem;
    align-items: center;
    border: none;
}
.form .form_item_code input {
    flex: 1;
    margin-right: .06rem;
    border: 1px solid #A5A5A5;
}
.form #get_code {
    width: 1.3rem;
    height: .4rem;
    border: 0;
    border-radius: .06rem;
    background: #ff3b30;
    color: #fff;
    cursor: pointer;
    font-size: .14rem;
}
.form .agree {
    display: flex;
    gap: .08rem;
    align-items: center;
    font-size: .14rem;
    color: #222;
    margin: .08rem 0 .18rem;
}
.form .agree input {
    width: .14rem;
    height: .14rem;
}
.form .agree input[type="checkbox"] {
    accent-color: #24A49F;
}
.form .agree a {
    color: #24A49F;
    text-decoration: none;
}
.form .submit_btn {
    outline: none;
    width: 100%;
    height: .48rem;
    border: 0;
    border-radius: .06rem;
    background: #24A49F;
    color: #fff;
    font-size: .18rem;
    cursor: pointer;
}
.form .submit_btn:disabled {
    background: #aaa;
    color: #555;
    cursor: not-allowed;
}
.form .no_account {
    text-align: center;
    font-size: .14rem;
    color: #222;
    margin-top: .2rem;
}
.form .no_account a {
    color: #FF2442;
    text-decoration: none;
}




.form .tab_content .tit {
  margin-bottom: .22rem;
  font-size: .14rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.form .tab_content .tit div:nth-last-child(1) {
  position: relative;
  color: #4086FF;
}
.form .tab_content .tit div:nth-last-child(1) p {
  display: none;
  z-index: 10;
  position: absolute;
  width: 3.42rem;
  right: 0;
  top: .22rem;
  padding: .04rem .1rem;
  background-color: #fff;
  border: 1px solid #A5A5A5;
  color: #666;
  font-size: .12rem;
}
.form .tab_content .tit div:nth-last-child(1):hover p {
  display: block;
}
.form_item.form_item_code {
    border: none;
}
.form_item.form_item_code #code,
.form_item.form_item_code #imgcode {
  width: calc(100% - 1.16rem);
  border-radius: .06rem;
  border: 1px solid #A5A5A5;
}
.form_item.form_item_code #code:hover,
.form_item.form_item_code #imgcode:hover {
  border-color:#24A49F;
}
.form_item.form_item_code #code:focus,
.form_item.form_item_code #imgcode:focus {
  border-color:#24A49F;
}
.form_item.form_item_code #get_code {
  position: absolute;
  left: unset;
  right: 0;
  top: 0;
  width: 1.06rem;
  height: 100%;
  border: none;
  border-radius: .06rem;
  background-color: #FF2442;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form_item.form_item_code #get_code:disabled {
  background-color: #A5A5A5;
  cursor: not-allowed;
}
.form_item.form_item_code .img_code {
  position: absolute;
  left: unset;
  right: 0;
  top: 0;
  width: 1.06rem;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form_item .tips {
  display: none;
  position: absolute;
  left: 0;
  top: .4rem;
  width: 100%;
}
.form_item .tips .tipsInfo {
  font-size: .12rem;
  color: #221e1f;
}
.form_item .tips .rankHigh,
.form_item .tips .rankMiddle,
.form_item .tips .rankLow {
  display: block;
  width: .28rem;
  margin: 0 .04rem;
  color: #a5a5a5;
  text-align: center;
  border-bottom: .02rem solid rgba(255, 36, 66, 0.45);
  cursor: default;
}
.form_item .tips .curLow .rankLow {
  border-color: #FF2442;
  color: #FF2442;
}
.form_item .tips .curMiddle .rankMiddle {
  border-color: #FF850A;
  color: #FF850A;
}
.form_item .tips .curHigh .rankHigh {
  border-color: #00C849;
  color: #00C849;
}
.form_item .tips .tipsInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_item .tips .tipsInfo .pwd_lv {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 751px) {
  .register_table {
    transform: scale(1.4);
  }
}


