body {
  min-height: 100vh;
}

.main-content {
  background: #f4f5f5;
  padding: 10px 0 22px;
}

.job {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.1fr;
  column-gap: 10px;
}

.main-job {
  max-width: 1180px;
  /* margin: 0 auto; */
  padding: 20px 28px 30px;
  background: #fff;
  border-radius: 6px;
}

.job-title {
  font-size: 22px;
}

.job-title h2 {
  color: #555;
  margin-top: 28px;
  margin-bottom: 18px;
  line-height: 3rem;
  border-bottom: 1px dotted #e7e4e4;
}

.job-title article {
  font-size: 16px;
}

.main-job span a {
  font-size: 16px;
  color: var(--primary-color);
}

.job-sec {
  padding-bottom: 16px;
}

.job-sec p {
  padding-top: 2px;
}

.job-sec ul {
  margin-left: 1rem;
  line-height: 28px;
  color: #555;
}

.job-sec>h3 {
  margin-bottom: 4px;
}

.stress {
  padding-top: 14px;
  padding-bottom: 4px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.address {
  position: relative;
  margin-top: 14px;
  padding-top: 13px;
  padding-bottom: 16px;
  border-top: 1px dotted #e7e4e4;
  line-height: 28px;
}

.address div {
  padding-left: 4px;
}

.address div::before {
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-bottom: 4px;
  margin-right: 4px;
  background-color: #333;
  border-radius: 50%;
  /* font-size: 20px; */
  /* margin-right: 4px; */
  font-weight: 600;
  
}

/* header变成fixed后页面向上平移*/
.sticky-trans {
  margin-top: 80px;
}
.open-trans {
  transform: translateY(80px);
}

/* 最新岗位 */
.hot-job {
  padding: 20px;
  width: 208px;
  height: 368px;
  background: #fff;
  border-radius: 6px;
  text-align: center;
}

.hot-job h3 {
  padding: 2px 0 12px;
  color: var(--header-color);
  border-bottom: 1px dashed var(--primary-color);
}

.hot-job ul {
  text-align: justify;
}

.hot-job ul li {
  border-bottom: 1px dashed var(--primary-color);
}

.hot-job ul li:hover {
  border-bottom: 1px dotted var(--primary-color);
}

.hot-job a {
  display: inline-block;
  line-height: 30px;
  padding: 8px 4px;
  color: #333;
}

.hot-job ul li:hover a {
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .job {
    padding: 0 10px;
  }
  .job-title {
    font-size: 20px;
  }
}

@media (max-width: 796px) {
  .main-job {
    width: 96%;
    margin: 0 auto;
  }

  .job {
    display: unset;
  }

  .hot-job {
    display: none;
  }
}

@media (max-width: 640px) {
  .main-job {
    /* width: 96%; */
    padding: 20px 20px 22px;
  }

  .job-title {
    font-size: 16px;
  }

  .job-title h2 {
    margin-bottom: 12px;
  }

  .stress {
    padding-top: 8px;
  }
  
  .address {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .address div::before {
    margin-bottom: 3px;
  }
  
}

@media (min-width: 2200px) {
  .job {
    max-width: 1400px;
  }
}