@charset "UTF-8";
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.2rem;
  box-sizing: content-box;
}

.page .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.46667rem;
}

.page .header .logo {
  width: 4rem;
}

.page .header h1 {
  margin: 0.93333rem 0 0.8rem;
  color: #3b3838;
  /*font-size: 0.53333rem;*/
  font-size: 0.45rem;
}

.page .header span {
  color: #1dafe6;
  font-weight: 600;
  cursor: pointer;
}

.page .form {
  width: 8.66667rem;
  display: flex;
  flex-direction: column;
}

.page .form .input-wrap {
  display: flex;
  justify-content: space-between;
}

.page .form .input-wrap input {
  margin: 0.26667rem 0 0.2rem;
  height: 0.93333rem;
  text-align: center;
  border: 1px solid #626262;
  border-radius: 0.06667rem;
}

.page .form .input-wrap .area-input-wrap {
  position: relative;
}

.page .form .input-wrap .area-input-wrap .area-input {
  width: 1.6rem;
  margin-right: 0.13333rem;
  padding-right: 0.26667rem;
}

.page .form .input-wrap .area-input-wrap .icon {
  width: 0.33333rem;
  position: absolute;
  right: 0.26667rem;
  top: 50%;
  transform: translateY(-50%);
}

.page .form .input-wrap .password-icon {
  width: 1.6rem;
  margin-right: 0.13333rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page .form .input-wrap .password-icon .key {
  width: 0.93333rem;
  transform: rotateZ(-90deg);
}

.page .form .input-wrap .tel-input, .page .form .input-wrap .password-input {
  flex: 1;
}

.page .form .send-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 0.26667rem 0;
}

.page .form .send-btn-wrap .forget {
  line-height: 0.93333rem;
  margin-right: 0.4rem;
  color: #1dafe6;
  font-weight: 600;
  cursor: pointer;
}

.page .form .tips {
  margin-top: 0.4rem;
  /*text-align: right;*/
}

.page .form .status2 {
  display: none;
}

.page .form .code-wrap {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
}

.page .form .code-wrap .code-input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.4rem 0 0.26667rem;
}

.page .form .code-wrap .code-input-wrap input {
  width: 4.66667rem;
  height: 0.93333rem;
  text-align: center;
  border: 1px solid #626262;
  border-radius: 0.06667rem;
}

.page .form .code-wrap .login-btn {
  align-self: flex-end;
}

.page .pop-page {
  display: none;
}

.page .pop-page .area-code-box {
  width: 100%;
  height: 6.66667rem;
  background-color: #fff;
}

.page .pop-page .area-code-box .nav {
  height: 1.33333rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.53333rem;
  background-color: #eeeeee;
}

.page .pop-page .area-code-box .nav .confirm-area-code {
  padding: 0 0.4rem;
  border-radius: 0.1rem;
  height: 0.8rem;
  color: #fff;
  line-height: 0.8rem;
  /*background: linear-gradient(42deg, #c5221a 0%, #f16349 100%);*/
  background: #d11145;
  user-select: none;
}

.page .pop-page .area-code-box .scorll-wrap {
  height: 5.33333rem;
  overflow: scroll;
}

.page .pop-page .area-code-box .scorll-wrap .code-item {
  padding: 0 0.53333rem;
  height: 1.2rem;
  line-height: 1.2rem;
  border-bottom: 0.01333rem solid #eee;
}

.page .pop-page .area-code-box .scorll-wrap .code-item.active {
  background: #d11145;
  /*background: linear-gradient(42deg, #c5221a 0%, #f16349 100%);*/
  color: #fff;
  position: relative;
}

.page .pop-page .area-code-box .scorll-wrap .code-item.active::after {
  position: absolute;
  content: "√";
  right: 0.666666rem;
}

