.flexBox {
  display: flex;
  gap: 20px;
  align-items: center;
}
.flexBox .left {
  width: 50%;
}
.flexBox .left img {
  border-radius: 20px;
  width: 70%;
}
.flexBox .right {
  width: 50%;
  background-color: #1e2630;
  border-radius: 20px;
  padding: 20px;
}
.job-listing {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.job-card {
  border: 1px solid #1e2630;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1e2630;
}
.job-info {
  display: flex;
  flex-direction: column;
}
.job-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}
.job-location {
  color: #82838f;
  font-size: 14px;
}
.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;
  transition: transform 0.3s;
}
.highlight .arrow-button {
  background-color: #4f2ff0;
}
.arrow-button.rotate {
  transform: rotate(90deg);
}
.job-details {
  display: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 14px;
}
.job-details h4 {
  font-size: 1rem;
  font-weight: bold;
}
.job-details p {
  margin-bottom: 20px;
}
.job-card.active .job-details {
  display: block;
}
/* 移动端适配 */
@media (max-width: 600px) {
  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .arrow-button {
    width: 100%;
  }
}
/* 手机屏幕（小于768px） */
@media screen and (max-width: 767px) {
  .flexBox {
    flex-direction: column;
  }
  .flexBox .left {
    width: 100%;
    text-align: center;
  }
  .flexBox .left img {
    max-width: 300px;
    display: inline-block;
    margin: 0 auto;
  }
  .flexBox .right {
    width: 100%;
  }
}
/* 平板屏幕（768px 至 1024px） */
/* 桌面屏幕（大于1024px） */
/*# sourceMappingURL=style.css.map */