.alert {
  display: none;
  padding: 28px 32px;
  color: #191919;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  width: 47vw;
  min-width: none;
  max-width: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.alert .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 24px;
}

.alert .header .title {
  font-weight: bold;
}

.alert .header .icon-close {
  position: static;
  background: none;
}

.alert .content {
  margin-top: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.alert .content form {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}

.alert .content form .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.alert .content form .form-item .form-item-label {
  position: relative;
  font-size: 14px;
  line-height: 22px;
}

.alert .content form .form-item .form-item-label.required::before {
  content: '* ';
  color: #e7625d;
}

.alert .content form .form-item .textarea-box {
  margin: 0;
  min-height: unset;
}

.alert .content form .form-item .textarea-box textarea {
  padding: 5px 12px;
  min-height: 132px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f5f6f8;
  overflow: auto;
  resize: none;
}

.alert .content form .form-item .textarea-box textarea:hover, .alert .content form .form-item .textarea-box textarea:focus {
  border-color: #5e7ce0;
}

.alert .content form .form-item .switch {
  background: #F3F3F3;
  border-radius: 6px;
  padding: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
}

.alert .content form .form-item .switch .switch-item {
  border: 0;
  border-radius: 4px;
  padding: 3px 16px;
  background-color: inherit;
  color: #777;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.alert .content form .form-item .switch .switch-item.selected {
  background: #fff;
  color: #5e7ce0;
  font-weight: bold;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.alert .footer {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
}

.alert .footer button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  background: #fff;
  color: #191919;
  padding: 5px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.alert .footer button:hover {
  border-color: #191919;
}

.alert .footer button:active {
  border-color: #5e7ce0;
}

.alert .footer button.btn-submit {
  margin: 0;
  font-size: unset;
  line-height: unset;
  height: unset;
  width: unset;
}

.alert .footer button.primary {
  background-color: #5e7ce0;
  color: #fff;
  border: 0;
}

.alert .footer button.primary:hover {
  background-color: #7693f5;
}

.alert .footer button.primary:active {
  background-color: #465eb8;
}

.question {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
}

.question .iconfont {
  color: #191919;
  font-size: 16px;
}

.question .text {
  display: none;
  color: #191919;
  opacity: 0;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.question:hover {
  width: 72px;
  height: 56px;
  border-radius: 12px;
  background-color: #fff;
  padding: 8px 12px;
}

.question:hover .text {
  opacity: 1;
  display: block;
}
/*# sourceMappingURL=style.css.map */