.main-box {
  min-height: calc(100vh - 125px - 265px);
}

.job-list {
  display: flex;
  flex-wrap: wrap;
}

.job-list .job-item {
  width: 390px;
  padding: 15px;
  min-height: 166px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  margin-bottom: 15px;
}

.job-list .job-item:not(:nth-child(3n)) {
  margin-right: 15px;
}

.job-list .job-item:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
}

.job-list .job-item:hover .job-title {
  color: var(--primary) !important;
}

.job-list .job-item .job-title {
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
}

.job-list .job-item .job-title .title {
  width: 80%;
}

.job-list .job-item .job-title .xz {
  color: #fd7240;
  font-size: 15px;
  float: right;
}

.job-list .job-item .job-tags {
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid #e4e5e8;
  padding-bottom: 10px;
}

.job-list .job-item .job-tags span {
  margin-right: 10px;
  font-size: 12px;
}

.job-list .job-item .job-tags .tag {
  padding: 3px 10px;
  background-color: #f1f4f4;
  border-radius: 10px;
}

.job-list .job-item .job-desc {
  color: var(--content-color);
  margin-top: 10px;
}
