* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SegoeUI, Arial;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.wrapper {
  width: 100%;
  background: url(../img/bg.jpg) no-repeat center top / 100% 100%;
  /* background: linear-gradient(#0c1558, #687ba5, #f5ede0); */
  /* background-color: #0075bb; */
}
.header {
  margin: 0 auto;
  padding: 30px 20px 30px;
  max-width: 1000px;
  min-height: 200px;
  background: url(../img/building.png) no-repeat right bottom / auto 170px;
}
.top {
  display: block;
  margin: 0 auto 20px;
  width: 76%;
  max-width: 360px;
}
.container {
  padding: 20px;
  margin: 0 auto;
  max-width: 1000px;
  background: #fff;
  border-radius: 6px;
}
.header h1 {
  margin: 0 0 8px;
  font-size: 32px;
  color: #fff;
  line-height: 50px;
}
.meta {
  margin-bottom: 12px;
}
.meta span {
  display: inline-block;
  margin-right: 12px;
  font-size: 13px;
  color: #eee;
}
.time {
  padding: 0 8px 0 25px;
  width: fit-content;
  font-size: 13px;
  color: #eee;
  line-height: 30px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05) url('../img/time.png') no-repeat 8px center / 13px auto;
}
.tags {
  margin: 15px 0 0;
  width: 220px;
}
.tag {
  display: inline-block;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.1);
}
.benefits {
  margin: 12px 0;
  color: #333;
}

.job {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.job:last-child {
  border-bottom: none;
}
.job:hover {
  background-color: rgba(0, 0, 0, 0.01);
  cursor: pointer;
}
.job .left {
  max-width: 72%;
}
.job .title {
  color: #292934;
  font-weight: 600;
}
.job .meta {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}
.job .salary {
  color: #ff5c12;
  font-weight: 700;
}
/* 职位介绍 */
.wrapper-info {
  width: 100%;
  border-bottom: 7px solid #f6f7fa;
}
.no-border {
  border-bottom: none;
}
.flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.job-name {
  margin-bottom: 10px;
  font-size: 24px;
  color: #292934;
  font-weight: 500;
}
.job-name span {
  margin-left: 20px;
  color: #ff5c12;
}
.job-tag span {
  position: relative;
  margin-right: 18px;
  display: inline-block;
  font-size: 13px;
  color: #666;
}
.job-tag span::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #eee;
}
.job-tag span:last-child:after {
  display: none;
}
.intro h1 {
  margin-bottom: 10px;
  font-size: 21px;
}
.intro h2 {
  margin-bottom: 10px;
  font-size: 16px;
}
.intro p {
  margin-bottom: 10px;
  font-size: 14px;
  text-align: justify;
}
.btn {
  display: none;
  width: 210px;
  font-size: 17px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  background-color: #ff5c12;
  border-radius: 4px;
}
.btn:hover {
  background-color: #e54d00;
}
.footer-blank {
  display: block;
  height: 50px;
}
.footer {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9;
}
.footer a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  background-color: #ff5c12;
  border-radius: 4px;
}
@media (min-width: 640px) {
  .tags {
    width: 100%;
  }
  .btn {
    display: block;
  }
  .footer-blank,
  .footer {
    display: none;
  }
}
@media (min-width: 1000px) {
  body {
    background-color: #fdfdfd;
  }
  .header {
    padding-top: 50px;
    background-position: right bottom;
    background-size: auto 380px;
  }
  .top {
    margin: 0 0 50px;
    width: 380px;
  }
  .meta span:first-child {
    position: relative;
    margin-right: 24px;
  }
  .meta span:first-child::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    right: -12px;
    top: 50%;
    margin-top: -6px;
    background-color: #eee;
  }

  /* 职位 */
  .wrapper-info {
    margin: 24px auto;
    width: 1000px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: none;
  }
}
