.form-popup {
  display: none;
  width: 100px;
  background-color: rgba(4, 20, 34, 0.3);
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.form-popup .popup-content {
  user-select: none;
  width: 620px;
  background: url(/assets/images/consult/common/bg-form-popup.png) no-repeat center top;
  background-size: 100%;
  background-color: #fff;
  font-size: 0;
  text-align: center;
  padding: 32px 32px 40px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.form-popup .popup-content .form-popup-close {
  width: 40px;
  height: 40px;
  background: url(/assets/images/consult/common/icon-close.png) no-repeat center center;
  background-size: 20px;
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}
.form-popup .popup-content .title {
  line-height: 32px;
  font-size: 24px;
  color: #080B31;
}
.form-popup .popup-content .tips {
  line-height: 16px;
  font-size: 12px;
  color: #77798E;
  margin-top: 12px;
}
.form-popup .popup-content .form {
  width: 460px;
  margin: 32px auto 0;
}
.form-popup .popup-content .form .item {
  display: flex;
  gap: 0 16px;
  margin-bottom: 16px;
}
.form-popup .popup-content .form .item .label {
  width: 64px;
  line-height: 38px;
  font-size: 14px;
  color: #5a5a5a;
  text-align: right;
}
.form-popup .popup-content .form .item .label.required span::before {
  content: '*';
  color: red;
  position: relative;
  right: 5px;
}
.form-popup .popup-content .form .item .input-content {
  flex: 1;
}
.form-popup .popup-content .form .item .input-content .input {
  width: 100%;
  line-height: 18px;
  font-size: 14px;
  border: 1px solid #edeef2;
  border-radius: 4px;
  padding: 9px 16px;
  outline: none;
}
.form-popup .popup-content .form .item .input-content .input::placeholder {
  color: #b4b5c1;
}
.form-popup .popup-content .form .item .input-content .input.textarea {
  height: 100px;
  resize: none;
  font-family: initial;
}
.form-popup .popup-content .form .item .input-content .err-tip {
  line-height: 20px;
  font-size: 14px;
  color: red;
  text-align: left;
  margin-top: 6px;
}
.form-popup .popup-content .form .item .code-btn {
  width: 116px;
  height: 38px;
  background: #ebedf3;
  line-height: 38px;
  font-size: 14px;
  font-weight: 400;
  color: #77798e;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}
.form-popup .popup-content .form .item .code-btn.can {
  background: #01b09a;
  color: #fff;
}
.form-popup .popup-content .form .item .code-btn.can:hover {
  background: #05c3ac;
}
.form-popup .popup-content .form .item .code-btn.no {
  background: #ebedf3;
  color: #77798e;
  cursor: inherit;
}
.form-popup .popup-content .form .item .code-btn.no:hover {
  background: #ebedf3;
  color: #77798e;
}
.form-popup .popup-content .form .item .upload {
  flex: 1;
}
.form-popup .popup-content .form .item .upload .file_name_content {
  padding: 10px 20px;
  background: #07aea010;
  border-radius: 6px 6px 6px 6px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  position: relative;
  text-align: center;
  line-height: 21px;
}
.form-popup .popup-content .form .item .upload .file_name_content .close_icon {
  position: absolute;
  top: -8px;
  right: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("~@/assets/images/close_icon1.png") no-repeat center center / 100% 100%;
}
.form-popup .popup-content .form .item .upload .upload-btn {
  background: transparent;
  border: 1px solid #07aea0;
  border-radius: 6px 6px 6px 6px;
  font-size: 16px;
  font-weight: 400;
  color: #07aea0;
  padding: 7px 20px;
}
.form-popup .popup-content .form .item .upload .add_icon {
  font-size: 21px;
}
.form-popup .popup-content .form .item .upload span {
  display: inline-block;
  vertical-align: middle;
}
.form-popup .popup-content .form .item .upload .tip {
  line-height: 40px;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #77798E;
}
.form-popup .popup-content .form .submit {
  background: #10b8aa;
  line-height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 32px;
}
.form-popup .popup-content .form .submit:hover {
  background: #05c3ac;
}
.form-popup .popup-content .form .tips {
  line-height: 16px;
  font-size: 12px;
  color: #77798E;
  margin-top: 8px;
}
