/* ------------------------------
 about-join- 加入我们 独立样式
------------------------------- */
.about-join-section {
  background-color: #fff;
}

.about-join-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.about-join-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.about-join-item {
  background: #fff;
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin: 0 10px;
}

.about-join-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-join-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: 0.3s;
}

.about-join-item:hover .about-join-icon {
  background-color: #0056b3;
}

.about-join-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.about-join-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


.welfare-section {
  background-color: #f5f6f7;
}

.welfare-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.welfare-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.welfare-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.welfare-icon {
  font-size: 48px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1;
}

.welfare-name {
  font-size: 20px;
  color: #333;
  margin: 0;
  font-weight: 500;
}



.jobs-section {
  padding: 50px 0;
}

.jobs-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

/* 职位项 */
.job-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* 职位头部 */
.job-item-header {
  padding: 18px 20px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.job-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.job-item-people {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-left: 6px;
}

/* 展开按钮 */
.job-toggle-btn {
  border: none;
  background: #007bff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.job-toggle-btn:hover {
  background: #0056b3;
}
.job-toggle-btn.active {
  background: #666;
}

/* 内容面板 默认隐藏 */
.job-item-panel {
  display: none;
  padding: 20px;
}

/* 要求标签 */
.job-require-item {
  font-size: 14px;
  color: #666;
  background: #f5f7fa;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

/* 标题 */
.job-desc-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

/* 列表 */
.job-desc-list {
  padding-left: 20px;
}
.job-desc-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* 按钮组 */
.job-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.job-apply-btn,
.job-hr-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}
.job-apply-btn {
  background: #007bff;
  color: #fff;
}
.job-apply-btn:hover {
  background: #0056b3;
  color: #fff;
  text-decoration: none;
}
.job-hr-btn {
  background: #f5f7fa;
  color: #333;
  border: 1px solid #eee;
}
.job-hr-btn:hover {
  background: #e9ecef;
  color: #333;
  text-decoration: none;
}