*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h5-wrap{
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}
.bg-wrap{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fdb039;
  background: url(./image/login_bg.png) no-repeat 50% 0;
  background-size: 100% 100%;
  overflow: hidden;
  position: relative;
}
.welcome {
  margin-top: 14vh;
  text-align: center;
  font-size: 14px;
  color: #a0a0a0;
}
@media (max-width: 375px) {
  /* 当视口宽度至少为600px时应用的样式 */
  .welcome {
    bottom: 22px;
    color: #a0a0a0;
  }
}
.login-head {
  padding-top: 7vh;
  overflow: hidden;
  font-size: 21px;
}
.head-title {
  padding-left: 24px;
  color: #fff;
  line-height: 35px;
}
.login-form-wrap {
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  height: 76vh;
  padding: 0 24px 27px 24px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.form-title {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 50px;
}
.active{
  font-size: 28px;
  color: #1890ff;
  position: relative;
}
.activeIcon {
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-bottom: 1px solid #fdb039;
    display: none;
  }
.activeIcon::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px;
    border-color: transparent transparent #fdb039 transparent;
  }

.bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: linear-gradient(to bottom, #d1e9fe, #fff);
}
.form-item {
  position: relative;
  padding: 0 36px;
}
.flex-between{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.error-text {
  color: #ff0000;
  font-size: 12px;
  line-height: 14px;
  margin-top: 4px;
  height: 20px;
  box-sizing: border-box;
  margin-bottom: 4px;
}
.code-item {
  border: 1px solid #707070;
  border-radius: 6px 6px 6px 6px;
  height: 54px;
  margin-left: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-input {
  padding: 4px 12px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #707070;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-input-inner{
  flex: 1;
  height: 44px;
  line-height: 44px;
  border: none;
  font-size: 17px;
  width: 70%;
}
.form-input-inner:focus-visible{
  outline: none;
  border: none;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-icon {
  width: 27px;
  margin: 0 8px;
}

.form-btns {
  margin-top: 48px;
  text-align: center;
}
.primary-round-btn {
  width: 130px;
  height: 49px;
  margin: auto;
  background: linear-gradient(180deg, #54ace9 0%, #1890ff 100%);
  border-radius: 10px 10px 10px 10px;
  border: 3px solid #ffffff;
  font-size: 20px;
  color: #fff;
  line-height: 43px;
}
.primary-round-btn:active{
  transform: scale(0.8);
}
.toast{
  position: fixed;
  top: 50%;
  left: 50%;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: center;
  border-radius: 8px;
  background-color: rgba(0,0,0,0.8);
  transform: translate3d(-50%, -50%, 0);
  min-width: 110px;
  min-height: unset;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.5;
  z-index: 2013;
  color: #fff;
}
