/* Migrated from template/default/html/joblist.html */
.page-job .main-top-banner {
  background-size: cover;
  background-position: center;
}
.page-job .jobs {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
.page-job .jobs > .center {
  width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}
.page-job .jobs .left {
  flex: 1;
  min-width: 0;
}
.page-job .jobs .right {
  width: 280px;
  flex-shrink: 0;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 24px;
  box-sizing: border-box;
}
.page-job .jobs .right .title {
  font-size: 22px;
  line-height: 1;
  color: #333;
  font-weight: 600;
}
.page-job .jobs .right .line {
  width: 44px;
  height: 3px;
  background: #c42d26;
  margin: 16px 0 18px;
}
.page-job .jobs .right .item {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: color .2s ease,
  transform .2s ease;
}
.page-job .jobs .right .item:hover {
  color: #c42d26;
  transform: translateX(4px);
}
.page-job .job-card {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 28px 30px;
  margin-bottom: 24px;
  border: 1px solid #eee;
  background: #fff;
  transition: border-color .2s ease,
  box-shadow .2s ease,
  transform .2s ease;
}
.page-job .job-card:hover {
  border-color: rgba(196,45,38,.35);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.page-job .job-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-job .job-title .point {
  width: 8px;
  height: 8px;
  background: #c42d26;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.page-job .job-title h2 {
  font-size: 24px;
  line-height: 32px;
  color: #333;
  font-weight: 600;
}
.page-job .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #777;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 18px;
}
.page-job .job-summary {
  color: #555;
  font-size: 15px;
  line-height: 28px;
}
.page-job .job-more {
  display: inline-block;
  margin-top: 18px;
  color: #c42d26;
  font-size: 14px;
}
.page-job .block {
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .page-job .jobs {
    padding: 10vw 4vw;
    box-sizing: border-box;
  }
  .page-job .jobs > .center {
    width: 100%;
    gap: 6vw;
  }
  .page-job .jobs .right {
    width: 100%;
    padding: 5vw;
  }
  .page-job .job-card {
    padding: 6vw 5vw;
    margin-bottom: 5vw;
  }
  .page-job .job-title h2 {
    font-size: 5vw;
    line-height: 7vw;
  }
  .page-job .job-meta,
  .page-job .job-summary {
    font-size: 3.6vw;
    line-height: 6.4vw;
  }
}

