/**
 * 加入我们 + 联系方式 公共样式
 */

/* ===== 加入我们 ===== */
.join-section {
  width: 100%;
  padding: 0 3.667rem;
  margin-top: 2rem;
}
@media (max-width: 840px) {
  .join-section { padding: 0 1rem; }
}

.join-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.job-item {
  width: 32%;
  height: 8.958rem;
  border-left: solid 0.333rem var(--c-accent);
  border-radius: 0.333rem;
  margin-right: 1.6%;
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: #f3f3f3;
  padding: 0 2.083rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.job-item:nth-child(3n) { margin-right: 0; }
.job-item:hover {
  background: var(--c-primary);
  color: #fff;
}
.job-item:hover .job-arrow {
  background: var(--c-accent);
}
@media (max-width: 840px) {
  .job-item { width: 100%; margin-right: 0; }
}

.job-text-block {
  width: 70%;
}
.job-text-block .job-address {
  font-size: 0.667rem;
  line-height: 2;
}
.job-text-block .job-title {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}
.job-arrow {
  width: 1.797rem;
  height: 1.797rem;
  background: #61aedf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.job-arrow:after {
  content: '›';
  font-size: 1.5rem;
  font-weight: bold;
}

/* 工作详情弹窗 */
.job-mask {
  background: #000;
  opacity: 0.8;
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
}
.job-mask.show { display: block; }
.job-pop {
  background: #fff;
  position: fixed;
  width: 70%;
  max-width: 50rem;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 0.583rem;
  padding: 3.75rem 3.75rem 2rem;
  display: none;
}
.job-pop.show { display: block; }
@media (max-width: 840px) {
  .job-pop {
    width: 92%;
    padding: 2rem 1.5rem;
  }
}
.job-pop-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.208rem;
  height: 2.208rem;
  cursor: pointer;
}
.job-pop-close img { width: 100%; height: 100%; border-radius: 50%; }
.job-pop-title {
  color: #29b2e0;
  font-size: 1.042rem;
}
.job-pop-divider {
  height: 1px;
  background: #eee;
  margin: 1rem 0;
}
.job-section-title {
  margin: 1.25rem 0 0;
  font-size: 15px;
  font-weight: 600;
}
.job-section-content {
  font-size: 14px;
  line-height: 2 !important;
}
.job-section-content p {
  font-size: 14px !important;
  line-height: 2 !important;
}
.job-contact {
  color: #29b2e0;
  margin: 1rem 0;
  font-size: 13px;
}

/* ===== 联系方式 ===== */
.contact-section {
  display: flex;
  margin-bottom: 0.417rem;
}
@media (max-width: 840px) {
  .contact-section { flex-direction: column; }
}

.contact-left,
.contact-right {
  width: 50%;
  height: 34.167rem;
}
@media (max-width: 840px) {
  .contact-left, .contact-right { width: 100%; height: auto; }
}

.contact-left {
  padding: 4.583rem 0 1rem 4rem;
  border-right: 0.167rem solid #38b7e4;
}
@media (max-width: 840px) {
  .contact-left {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 0.083rem solid #38b7e4;
  }
}

.contact-title {
  font-size: 2.292rem;
  color: #333;
}
.contact-title-en {
  font-size: 1.417rem;
  font-family: arial, sans-serif;
  color: #8a8a8a;
  margin-bottom: 1.667rem;
}
.contact-name {
  font-size: 1.167rem;
  line-height: 2;
  color: #333;
  margin-bottom: 0.5rem;
}
.contact-info-line {
  font-size: 0.75rem;
  line-height: 2;
  color: #333;
}
.contact-qr {
  width: 5.208rem;
  height: 5.208rem;
  margin-top: 0.417rem;
}
.contact-qr img { width: 100%; height: 100%; }

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 34.167rem;
}
@media (max-width: 840px) {
  .contact-map { min-height: 25rem; height: 25rem; }
}
