/* 社会招聘页面专用样式 */

/* ========================================
   Hero Section
   ======================================== */
.recruitment-hero {
  background: linear-gradient(135deg, #106eea 0%, #3b8af2 100%);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.recruitment-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.recruitment-hero p {
  font-size: 20px;
  margin-bottom: 0;
  opacity: 0.95;
}

/* ========================================
   公司介绍
   ======================================== */
.company-intro {
  padding: 60px 0;
  background: #f8f9fa;
}

.company-intro-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(16, 110, 234, 0.1);
}

.company-intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

/* ========================================
   招聘岗位
   ======================================== */
.positions-section {
  padding: 50px 0;
}

.position-card {
  background: white;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(16, 110, 234, 0.08);
  border-left: 4px solid #106eea;
}

.position-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.position-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #106eea;
  margin-top: 18px;
  margin-bottom: 10px;
}

.position-content {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.position-content p {
  margin-bottom: 8px;
}

.position-content ul,
.position-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.position-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========================================
   薪资福利
   ======================================== */
.benefits-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(16, 110, 234, 0.08);
}

.benefit-icon {
  font-size: 36px;
  color: #106eea;
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ========================================
   联系我们
   ======================================== */
.contact-section {
  padding: 50px 0;
  text-align: center;
}

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 3px 15px rgba(16, 110, 234, 0.08);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 20px;
  color: #106eea;
  margin-right: 12px;
}

.contact-item a {
  color: #106eea;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 768px) {
  .recruitment-hero {
    padding: 100px 0 60px;
  }

  .recruitment-hero h1 {
    font-size: 32px;
  }

  .recruitment-hero p {
    font-size: 16px;
  }

  .position-card {
    padding: 20px;
  }

  .position-title {
    font-size: 22px;
  }

  .position-section-title {
    font-size: 17px;
  }

  .company-intro-content {
    padding: 25px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .benefit-card {
    padding: 18px 12px;
  }

  .benefit-icon {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-desc {
    font-size: 13px;
  }

  .contact-info {
    padding: 25px 20px;
  }

  .contact-item {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .contact-item i {
    font-size: 18px;
  }
}
