/* 企业招聘页面整体布局 */
.recruit-main {
  background: #fff;
  min-height: 100vh;
  padding: 0 0 40px 0;
}
.recruit-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
}
.recruit-sidebar {
  width: 240px;
  background: #fff;
  border-right: 1px solid #eee;
  padding: 0 0 0 0;
}
.recruit-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item {
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}
.menu-title {
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-item.has-sub .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.2s;
}
.menu-item.has-sub.open .arrow {
  transform: rotate(135deg);
}
.submenu {
  display: none;
  background: #fafafa;
  padding-left: 0;
}
.menu-item.has-sub.open .submenu {
  display: block;
}
.submenu-item {
  padding: 12px 36px;
  color: #666;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.submenu-item.active, .submenu-item:hover {
  background: #ff8500;
  color: #fff;
}
.menu-item.active > .menu-title, .menu-title:hover {
  background: #ff8500;
  color: #fff;
}

.recruit-content {
  flex: 1;
  padding: 0 48px;
}
.recruit-content-title {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 18px 0;
  text-align: center;
  color: #222;
}
.recruit-content-body {
  font-size: 16px;
  color: #444;
  line-height: 2.1;
  max-width: 900px;
  margin: 0 auto;
}
.recruit-sign {
  margin-top: 32px;
  text-align: right;
  color: #888;
  font-size: 15px;
}
.apply-form {
  background: #fff;
  padding: 0;
}
.apply-fieldset {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 28px;
  padding: 18px 24px 12px 24px;
}
.apply-fieldset legend {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 0 12px;
}
.apply-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  align-items: center;
}
.apply-row label {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #222;
  gap: 8px;
}
.apply-row input[type="text"],
.apply-row input[type="email"],
.apply-row input[type="tel"],
.apply-row input[type="file"] {
  flex: 1 1 180px;
  padding: 7px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  margin-left: 8px;
}
.apply-row input[type="file"] {
  padding: 0;
  border: none;
  background: none;
}
.apply-row .required {
  color: #ff8500;
  font-size: 14px;
}
.apply-btn {
  background: #ff8500;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  padding: 12px 48px;
  cursor: pointer;
  transition: background 0.2s;
}
.apply-btn:hover {
  background: #e06d00;
}
.job-list {
  margin-top: 18px;
}
.job-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 32px;
  padding: 0 0 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.job-title-bar {
  background: #f6f6f6;
  border-bottom: 1px solid #eee;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px 4px 0 0;
}
.job-title {
  color: #222;
  font-weight: 600;
}
.job-time {
  color: #888;
  font-size: 14px;
  font-weight: 400;
}
.job-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 2.1;
  padding: 0 18px;
}
.job-table td {
  padding: 10px 18px 10px 0;
  vertical-align: top;
  border-bottom: 1px dashed #e0e0e0;
}
.job-table tr:last-child td {
  border-bottom: none;
}
.job-label {
  color: #888;
  width: 90px;
  font-weight: 500;
  padding-right: 14px;
  white-space: nowrap;
}
.job-detail-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 900px;
  margin: 32px auto 0 auto;
  padding: 0 0 32px 0;
}
.job-detail-header {
  background: #f6f6f6;
  border-bottom: 1px solid #eee;
  padding: 22px 32px 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 6px 6px 0 0;
}
.job-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
.job-detail-time {
  color: #aaa;
  font-size: 15px;
  font-weight: 400;
}
.job-detail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px;
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 2.1;
  padding: 0 32px;
}
.job-detail-table td {
  padding: 0 0 0 0;
  vertical-align: top;
  border: none;
}
.job-detail-label {
  color: #888;
  width: 90px;
  font-weight: 500;
  padding-right: 18px;
  white-space: nowrap;
}
.job-detail-btn-row {
  text-align: right;
  padding: 0 32px;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .recruit-container {
    flex-direction: column;
  }
  .recruit-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .recruit-content {
    padding: 0 16px;
  }
  .job-title-bar, .job-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .job-table {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .apply-row {
    flex-direction: column;
    gap: 12px;
  }
  .apply-row label {
    width: 100%;
    flex: 1 1 100%;
  }
  .job-detail-header, .job-detail-btn-row {
    padding-left: 10px;
    padding-right: 10px;
  }
  .job-detail-table {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
}
.employee-voice-list {
  margin-top: 24px;
}
.employee-voice-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 38px;
  gap: 32px;
}
.employee-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.employee-voice-text {
  font-size: 16px;
  color: #333;
  line-height: 2.1;
  max-width: 800px;
  word-break: break-all;
}
@media (max-width: 900px) {
  .employee-voice-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .employee-photo {
    width: 120px;
    height: 120px;
  }
  .employee-voice-text {
    font-size: 15px;
    max-width: 100%;
    text-align: center;
  }
} 
.university-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.university-table th {
  background: #97c40f;
  color: #fff;
  font-weight: 600;
  padding: 14px 8px;
  border: 1px solid #b7d97a;
  text-align: center;
}
.university-table td {
  padding: 14px 8px;
  border: 1px solid #b7d97a;
  text-align: center;
  background: #fff;
}
.university-table tr:nth-child(even) td {
  background: #f8fbe9;
}
@media (max-width: 900px) {
  .university-table th, .university-table td {
    font-size: 14px;
    padding: 8px 4px;
  }
} 