/* ===== page about-jobdetail (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.job-detail-page {
  min-height: 80vh;
  min-height: 80dvh;
}

.font-weight-500 {
  font-weight: 500;
} /* white-space for \n rendering*/
.bg-gray {
  background-color: #e2e8f0;
}

.border-top {
  border-top: 1px solid #d9e5e0;
}

.overflow-hidden {
  overflow: hidden;
}

.d-block {
  display: block;
}

.align-items-start {
  align-items: flex-start;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.styled-list li {
  position: relative;
  padding-left: 16px;
}
.styled-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b6b5a;
  font-weight: bold;
}

/* 表单控件 */
.form-input {
  padding: 10px 12px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  font-size: 14px;
  color: #1e2b27;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-input:focus {
  border-color: #0b6b5a;
}

/* Modal 样式 */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  animation: modal-fade-in 0.3s ease;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.icon-btn:hover {
  color: #0b6b5a;
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 48px;
  padding-bottom: 80px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-secondary {
  color: #66736e;
}

.text-sm {
  font-size: 14px;
}

.line-height-lg {
  line-height: 1.8;
}

.max-w-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.border-bottom {
  border-bottom: 1px solid #d9e5e0;
}

.p-6 {
  padding: 48px;
}

.mb-2 {
  margin-bottom: 12px;
}

.mr-2 {
  margin-right: 12px;
}

.text-primary {
  color: #0b6b5a;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.p-4 {
  padding: 24px;
}

.px-3 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.text-xs {
  font-size: 12px;
}

.font-weight-bold {
  font-weight: bold;
}

.bg-light {
  background-color: #f7faf9;
}

.bg-primary {
  background-color: #0b6b5a;
}

.bg-primary-light {
  background-color: #eaf6f2;
}

.border {
  border: 1px solid #d9e5e0;
}

.rounded {
  border-radius: 8px;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 16px;
}

.w-full {
  width: 100%;
}

.pt-6 {
  padding-top: 48px;
}

.gap-4 {
  gap: 24px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.mt-1 {
  margin-top: 8px;
}

.mb-1 {
  margin-bottom: 8px;
}

.p-3 {
  padding: 16px;
}

.mt-2 {
  margin-top: 12px;
}

.text-right {
  text-align: right;
}

.action-area .interactive-btn:hover, .action-area .interactive-btn:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}
.action-area .interactive-btn:active {
  transform: scale(0.96) translateY(2px);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Reverted responsive */
@media (max-width: 1199px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .action-area {
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .form-actions button {
    width: 100%;
  }
}

/* 2026-09-05 12:44（北京）：新增职位申请弹层与表单状态。 */
.job-application-modal .modal-content { max-width: 680px; border-radius: 12px; }
.job-application-modal .icon-btn { font-size: 34px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.job-application-modal .form-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; }
.job-application-modal textarea.form-input { min-height: 120px; resize: vertical; }
.job-application-modal .privacy-check { line-height: 1.6; }
.job-application-modal .checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--hesora-text-secondary); }
.job-application-modal .checkbox-label input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.job-application-modal .form-error-msg { display: block; min-height: 20px; margin-top: 4px; color: var(--hesora-error); font-size: 12px; }
.job-application-modal .form-success-box { padding: 12px 14px; border-radius: 8px; background: var(--hesora-primary-light); color: var(--hesora-primary); font-size: 14px; }
@media (max-width: 767px) { .job-application-modal { padding: 12px; } .job-application-modal .modal-content { padding: 24px; } .job-application-modal .grid-2 { grid-template-columns: 1fr; } .job-application-modal .form-actions { align-items: stretch; } }

