.report_app {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.report_container {
  flex: 1;
  padding: 24px;
  padding-bottom: 0;
}
.report_content {
  width: 100%;
  margin: 0 auto;
  max-width: 1160px;
  min-height: 100%;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
  padding: 24px;
}
.report_title {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}
.report_tips {
  --margin: 24px;
  width: calc(100% + 2 * var(--margin));
  padding: 12px var(--margin);
  transform: translateX(calc(-1 * var(--margin)));
  box-sizing: border-box;
  background: rgba(246, 121, 66, 0.1);
  margin-bottom: var(--margin);
  font-size: 0.9em;
}
.report_tips-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.report_tips-caption {
  color: #f67942;
  font-weight: 500;
  margin-bottom: 4px;
}
.report_tips-desc {
  line-height: 1.6;
  color: #8a8b92;
  margin: 4px 0;
}
.report_tips-email {
  font-weight: 600;
  padding: 2px 4px;
  color: #f67942;
  border: 1px solid #f67942;
}
.report_form {
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.report_form-item {
  --h: 40px;
  display: flex;
  align-items: flex-start;
}
.report_form-item-pad {
  padding-left: 120px;
}
.report_form-item-label {
  width: 120px;
  height: var(--h);
  line-height: var(--h);
  color: #8a8b92;
  text-align: right;
  padding-right: 20px;
  box-sizing: border-box;
}
.report_form-item-label::after {
  content: '*';
  color: #f67942;
  margin-left: 2px;
  visibility: hidden;
}
.report_form-item-label.required::after {
  visibility: visible;
}
.report_form-submit {
  width: 240px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  cursor: pointer;
  color: #fff;
  background: #f67942;
  font-size: inherit;
  border: none;
  outline: none;
  margin-top: 24px;
}

.c-login-input {
  height: 40px;
  border-radius: 8px;
}

/* 移动端 */
@media screen and (max-width: 749px) {
  .report_container {
    padding: 0;
  }
  .report_content {
    padding: 12px;
  }
  .report_tips {
    --margin: 12px;
    padding: 8px var(--margin);
  }
  .report_form-item {
    flex-direction: column;
  }
  .report_form-item-label {
    text-align: left;
    padding-left: 8px;
  }
  .report_form-item-control {
    width: 100%;
  }
  .report_form-item-pad {
    padding: 0;
  }
  .report_form-submit {
    width: 100%;
  }
}

/* PC端 */
@media screen and (min-width: 750px) {
  .report_form {
    gap: 24px;
    margin: 0 auto;
    max-width: 760px;
    box-sizing: border-box;
    padding-right: 120px;
  }
  .report_form-item-control {
    flex: 1;
  }
}
