/* 招聘页面样式 */

/* Banner 样式 */
.banner-page {
  width: 100vw;
  height: 410px;
  background-image: url(../img/services-banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-page .container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-page .container img {
  margin-bottom: 10px;
}

.banner-page .container h2 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
}

.banner-page .container .breadcrumb {
  position: absolute;
  left: 0;
  top: 20px;
  background-color: transparent;
}

.banner-page .container .breadcrumb a {
  font-size: 14px;
}

.banner-page .container .breadcrumb a:nth-child(1) {
  color: rgba(255, 255, 255, 0.7);
}

.banner-page .container .breadcrumb a:nth-child(1):hover {
  color: #fff;
}

.banner-page .container .breadcrumb a:nth-child(3) {
  color: #fff;
}

.banner-page .container .breadcrumb span {
  margin: 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* 主要内容区域 */
.recruitment-content {
  padding: 80px 0;
}

.recruitment-content h2 {
  text-align: center;
  font-size: 36px;
  color: #030f37;
  margin-bottom: 60px;
}

.recruitment-content h2 span {
  display: block;
  font-size: 16px;
  color: #6e758c;
  font-weight: normal;
  margin-top: 10px;
}

/* 公司介绍 */
.company-intro {
  margin-bottom: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
}

.company-intro h3 {
  color: #030f37;
  font-size: 24px;
  margin-bottom: 20px;
}

.company-intro p {
  color: #6e758c;
  line-height: 1.8;
  font-size: 16px;
}

/* 职位列表 */
.job-positions {
  margin-bottom: 60px;
}

.job-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.job-item h4 {
  color: #030f37;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.job-info span {
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #6e758c;
}

.job-info .salary {
  background: #e3f2fd;
  color: #1976d2;
}

.job-description h5 {
  color: #030f37;
  font-size: 18px;
  margin: 20px 0 15px 0;
  font-weight: bold;
}

.job-description ul {
  list-style: none;
  padding: 0;
}

.job-description li {
  color: #6e758c;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.job-description li:before {
  content: "•";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 福利待遇 */
.benefits {
  margin-bottom: 60px;
}

.benefits h3 {
  color: #030f37;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h5 {
  color: #030f37;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.benefit-item p {
  color: #6e758c;
  line-height: 1.6;
}

/* 联系信息 */
.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.contact-info h3 {
  color: #030f37;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-item .label {
  color: #030f37;
  font-weight: bold;
  min-width: 100px;
}

.contact-item .value {
  color: #6e758c;
}

.application-note {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #1976d2;
  margin-top: 30px;
}

.application-note strong {
  color: #1976d2;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .banner-page {
    height: 100px;
  }

  .banner-page .container .breadcrumb {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .recruitment-content {
    padding: 60px 0;
  }

  .recruitment-content h2 {
    font-size: 28px;
  }

  .job-item {
    padding: 20px;
  }

  .job-info {
    flex-direction: column;
    gap: 10px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
