.join-s2-right-top-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #f9f9f9;
    margin-bottom: 5px;
  }

  .join-s2-right-top-item-left {
    flex-grow: 1;
  }

  .join-s2-right-top-item-content {
    display: none;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
  }

  .active .join-s2-right-top-item-content {
    display: block;
  }
  #toggle-jobs {
  display: inline-block;
  padding: 10px 20px;
  background-color: blue;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  margin-top: 10px;
}

#toggle-jobs:hover {
  background-color: darkblue;
}
.join-s2-right-top-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.jion-talent-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
}

.jion-talent-item-left-icon img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.jion-talent-item-right-tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.jion-talent-item-right-desc {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .join-s2-right-top-content {
    grid-template-columns: 1fr;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}
.modal img {
  max-width: 90%;
  max-height: 90%;
  margin-top: 5%;
}