/* 列表 */
.fly-job-list-container {
  width: 6.3rem;
  margin: 0 auto -0.26rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* 职位描述 */
}
.fly-job-list-container .job-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 3.02rem;
  padding: 0 0.1rem;
  border-radius: 0.06rem;
  background-color: #fff;
  margin-bottom: 0.35rem;
}
.fly-job-list-container .job-item.active::after {
  content: '';
  position: absolute;
  bottom: -0.18rem;
  left: 50%;
  transform: translate(-50%, 100%) rotate(45deg);
  width: 0.36rem;
  height: 0.36rem;
  background-color: #fff;
  border-radius: 0.06rem;
}
.fly-job-list-container .job-item .job-item-top {
  display: flex;
  justify-content: space-between;
  padding-top: 0.15rem;
  font-weight: bold;
  font-size: 0.2rem;
  line-height: 1;
  color: #000000;
}
.fly-job-list-container .job-item .job-item-top .salary {
  color: #21c184;
  white-space: nowrap;
}
.fly-job-list-container .job-item .info {
  margin-top: auto;
  display: flex;
  padding-top: 0.22rem;
}
.fly-job-list-container .job-item .info .info-cell {
  display: flex;
  align-items: center;
  color: #979797;
  font-size: 0.14rem;
  margin-right: 0.22rem;
}
.fly-job-list-container .job-item .info .info-cell:last-child {
  margin-right: 0;
}
.fly-job-list-container .job-item .info .info-cell i {
  margin-right: 0.07rem;
}
.fly-job-list-container .job-item .co-detail {
  margin-top: 0.17rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0;
  border-top: 0.02rem solid #f8f8f8;
}
.fly-job-list-container .job-item .co-detail .co-name {
  font-size: 0.18rem;
  color: #000000;
  line-height: 1;
  padding-right: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fly-job-list-container .job-item .co-detail .more-icon {
  flex-shrink: 0;
  width: 0.13rem;
  height: 0.13rem;
  background: url(../../images/job/moreIcon.png) no-repeat center center / 100% 100%;
}
.fly-job-list-container .job-description-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 2rem;
  background-color: #ffffff;
  border-radius: 0.06rem;
  margin-bottom: 0.35rem;
  transform-origin: 0 0;
  padding: 0.18rem 0.25rem 0.8rem;
  animation: job-description-wrap-animation 0.3s ease-in-out;
  line-height: 1;
}
@keyframes job-description-wrap-animation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.fly-job-list-container .job-description-wrap .tip {
  font-weight: bold;
  font-size: 0.16rem;
  padding-bottom: 0.18rem;
}
.fly-job-list-container .job-description-wrap .content-txt {
  font-size: 0.16rem;
  line-height: 0.26rem;
  text-align: justify;
  color: #666;
}
.fly-job-list-container .job-description-wrap .apply-btn-wrap {
  position: absolute;
  bottom: 0.18rem;
  right: 0.25rem;
}
.fly-job-list-container .job-description-wrap .apply-btn-wrap .apply-btn {
  display: inline-block;
  padding: 0.08rem 0.32rem;
  background-image: -o-linear-gradient(-90deg, #2478b3 0%, #239d9c 37%, #21c184 100%);
  background-image: -moz-linear-gradient(-90deg, #2478b3 0%, #239d9c 37%, #21c184 100%);
  background-image: -webkit-linear-gradient(-90deg, #2478b3 0%, #239d9c 37%, #21c184 100%);
  background-image: linear-gradient(-90deg, #2478b3 0%, #239d9c 37%, #21c184 100%);
  border-radius: 0.17rem;
  text-decoration: none;
  line-height: 1;
  font-size: 0.18rem;
  color: #ffffff;
}
.fly-job-list-container .job-description-wrap .apply-btn-wrap .apply-btn:hover {
  opacity: 0.7;
}
