/* 全局重置与基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑", sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: bold;
  color: #008060; /* 主绿色 */
}

section {
  padding: 40px 20px;
}

/* 顶部 Banner 样式 */
.banner {
  background: linear-gradient(to bottom, #00b386, #00e6ac);
  color: white;
  text-align: center;
  position: relative;
}

.banner .logo {
  font-size: 24px;
  padding: 20px 0;
}

.banner h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
}

.banner-features {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.banner-illustration {
  height: 300px;
  /* background: url("../sources/join/illustration1.png") no-repeat center; */
  background-size: contain;
}

/* 管理培训生区域 */
.trainee {
  background-color: white;
}

.trainee h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.trainee-directions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.direction-card {
  background-color: #e6f7f2;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.direction-card h3 {
  color: #008060;
  margin-bottom: 10px;
}

/* 福利区域 */
.welfare {
  background-color: #e6f7f2;
}

.welfare h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.welfare-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.welfare-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
}

.welfare-card h3 {
  color: #008060;
  margin-bottom: 10px;
}

.welfare-illustration {
  height: 150px;
  /* background: url("illustration2.png") no-repeat center; */
  background-size: contain;
}

/* 企业介绍与培养流程 */
.company {
  background-color: white;
}

.company h2, .company h3 {
  text-align: center;
  margin-bottom: 20px;
}

.company p {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.training-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.process-card {
  background-color: #e6f7f2;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
}

.process-card h4 {
  color: #008060;
  margin-bottom: 10px;
}

/* 企业文化与活动 */
.culture {
  background-color: #e6f7f2;
}

.culture h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.culture-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.culture-photos img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.culture p {
  text-align: center;
  margin-bottom: 10px;
}

/* 招聘流程与要求 */
.recruitment {
  background-color: white;
}

.recruitment h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.recruitment-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.process-step {
  background-color: #e6f7f2;
  padding: 10px 20px;
  border-radius: 20px;
}

.requirements {
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
  list-style-position: inside;
}

.contact {
  text-align: center;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 36px;
  }
  
  .trainee-directions, .welfare-cards, .training-process, .culture-photos {
    flex-direction: column;
    align-items: center;
  }
  
  .direction-card, .welfare-card, .process-card, .culture-photos img {
    width: 100%;
    max-width: 400px;
  }
}