/* 对话框样式 */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(22, 35, 58, 0.17);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.dialog-container {
  position: relative;
  width: 746px;
  height: 436px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-image: url(../../images/detailPage/registerBg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  padding-top: 31px;
}

.dialog-body {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
  display: flex;
  padding-top: 0;
}

.dialog-left {
  width: calc(100% - 402px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 31px;
}

.register_logo {
  width: auto;
  height: 42px;
  margin-bottom: 51px;
}

.register_left_img {
  width: 295px;
  height: auto;
}

/* 修改regist容器为水平flex布局 */
.regist {
  width: 402px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.dialog_form {
  width: 100%;
  margin-top: 50px;
}

.dialog-form-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  /* background: rgba(41, 120, 255, 0.06); */
  background-color: #F3F7FF;
  border-radius: 3px 3px 3px 3px;
  height: 46px;
  padding: 0 19px;
}
.dialog-form-item input:-webkit-autofill,
.dialog-form-item input:-webkit-autofill:hover,
.dialog-form-item input:-webkit-autofill:focus,
.dialog-form-item input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #F3F7FF inset !important;
}
.justify-between {
  width: 100%;
}
.dialog-form-item img {
  width: 19px;
  height: auto;
}

.code_img {
  width: 129px;
  height: 46px;
}

.dialog-form-item input {
  flex: auto;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 9px;
  height: 100%;
}

.dialog-submit {
  flex: none;
  width: 100%;
  height: 46px;
  background: #2580FF;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  border: none;
}

.dialog-submit:hover {
  background-color: #1a70e8;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-close:hover {
  opacity: 0.8;
}

.close-icon {
  font-size: 24px;
  font-weight: bold;
  /*color: #fff;*/
  line-height: 1;
}

