﻿.joblist-img {
  width: 100%;
  padding-top: 5.25rem;
  position: relative;
}
.joblist-img > img {
  width: 100%;
  height: auto;
}
.tab-nav-wrap {
  padding-top: 2.625rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.tab-nav-wrap > a {
  color: #333;
  text-decoration: none;
  padding: 0 .5rem;
}
.tab-nav-wrap > a:hover,
.tab-nav-wrap > a.active{
  color: #ff1200;
}
.joblist-con {
  padding-top: 1.5rem;
}
.joblist-list {
  margin: 0 auto;
}
.joblist-item {
  padding: 0 .75rem 2rem;
}
.job-a {
  color: #333;
}
.joblist-item-con {
  width: 100%;
  border-radius: .25rem;
  box-shadow: rgba(3, 4, 13, 0.06) 0rem .375rem 1.5rem;
  padding:2rem 1.125rem;
  background-color: #fff;
  transition: all 500ms linear;
}
.job-name-wrap {
  position: relative;
  padding-left: 1.5rem;
}
.job-status {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.job-name {
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.5rem;
  margin-bottom: .5rem;
}
.job-city,
.job-desc {
  font-size: 14px;
  color: #999;
  padding: 0 1.5rem;
}
.job-desc {
  margin-top: 1rem;
  color: #666;
  font-size: 14px;
  min-height: 18.75rem;
}
.joblist-item:hover .joblist-item-con {
  background-color: #ff1200;
  box-shadow: rgba(40, 161, 56, 0.06) 0rem .375rem 1.5rem;
}
.joblist-item:hover .job-name,
.joblist-item:hover .job-city,
.joblist-item:hover .job-desc {
  color: #fff;
}

@media (min-width: 2000px) {
  .tab-nav-wrap {
    font-size: 1.25rem;
  }
  .job-desc {
    min-height: 13.75rem;
  }
}

@media only screen and (max-width: 870px) {
  .joblist-img {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .joblist-img > img {
    width: auto;
    height: 11.375rem;
  }
  .joblist-item {
    padding-bottom: 1.25rem;
  }
}