.containerBox h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
.containerBox .job-listing {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.containerBox .job-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  margin-bottom: 20px;
}
.containerBox .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #fff;
}
.containerBox .job-info {
  display: flex;
  flex-direction: column;
}
.containerBox .job-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  color: #333333;
}
.containerBox .job-location {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
}
.containerBox .job-description {
  color: #333333;
  font-weight: bold;
  font-size: 25px;
}
.containerBox .job-details {
  display: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 14px;
}
.containerBox .job-details h3 {
  color: #333333;
  font-size: 18px;
}
.containerBox .job-card.active .job-details {
  display: block;
}
.containerBox .arrow-button {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 移动端适配 */
@media (max-width: 600px) {
  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .arrow-button {
    width: 100%;
  }
}
.box-2 {
  margin-top: 80px;
}
.box-2 .crad {
  border-radius: 20px;
  background-color: #f9f9f9;
  height: 200px;
  text-align: center;
  padding: 20px;
  color: #333333;
  font-size: 18px;
  margin-bottom: 20px;
}
.box-2 .crad img {
  width: 100px;
}
/*# sourceMappingURL=style.css.map */