main {
  padding: 48px 0;
}

.block-banner {
  margin-bottom: 24px;
  background: #F9E5E9;
  box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  overflow: hidden;
}
.block-banner .img-banner {
  width: 100%;
}
.block-banner .content-banner {
  padding: 24px 24px 24px 176px;
  position: relative;
}
.block-banner .content-banner h1 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 15px;
  line-height: normal;
}
.block-banner .content-banner .image {
  background: #FFFFFF;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  height: 128px;
  width: 128px;
  position: absolute;
  bottom: 30px;
  left: 24px;
  display: flex;
  align-items: center;
}
.block-banner .content-banner .staff-link {
  display: flex;
  align-items: center;
  line-height: normal;
  grid-gap: 40px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.block-banner .content-banner .staff-link svg {
  margin-right: 10px;
}

.block-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 24px;
}
.block-main .block-main-left .item-main:nth-child(1) {
  margin-bottom: 24px;
}
.block-main .item-main {
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}
.block-main .item-main iframe {
  width: 100% !important;
  height: 340px !important;
  border-radius: 8px !important;
}
.block-main .item-main .des {
  font-size: 16px;
}
.block-main .item-main .h3_title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.87);
  position: relative;
  padding-left: 12px;
  line-height: normal;
}
.block-main .item-main .h3_title::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 4px;
  height: 24px;
  background: #C60024;
  border-radius: 0px 100px 100px 0px;
}

.list-job {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
.list-job .item-job {
  padding: 12px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}
.list-job .item-job img {
  border-radius: 4px;
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-job .item-job .name-job {
  font-weight: 700;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 8px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: normal;
  transition: 0.2s ease-in-out;
}
.list-job .item-job .employer-job {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 8px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: normal;
  transition: 0.2s ease-in-out;
}
.list-job .item-job .info-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
}
.list-job .item-job .info-job .item-info {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  padding: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  grid-gap: 4px;
  transition: 0.2s ease-in-out;
}
.list-job .item-job .info-job .item-info svg, .list-job .item-job .info-job .item-info path {
  transition: 0.2s ease-in-out;
}
.list-job .item-job a {
  display: grid;
  grid-template-columns: 72px auto;
  grid-gap: 12px;
}
.list-job .item-job:hover {
  background: #C60024;
}
.list-job .item-job:hover .name-job {
  color: #fff;
}
.list-job .item-job:hover .employer-job {
  color: rgba(255, 255, 255, 0.6);
}
.list-job .item-job:hover .info-job .item-info {
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.87);
}
.list-job .item-job:hover .info-job .item-info svg, .list-job .item-job:hover .info-job .item-info path {
  stroke: rgba(255, 255, 255, 0.87);
}

.des p {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 960px) {
  main {
    padding-top: 10px;
  }
  .block-main {
    grid-template-columns: 1fr;
  }
  .block-banner {
    position: relative;
  }
  .block-banner .img-banner {
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block-banner .content-banner .image {
    top: 10px;
    left: 10px;
    height: 90px;
    width: 90px;
  }
  .block-banner .content-banner {
    padding: 20px 15px;
    position: unset;
  }
  .block-banner .content-banner h1 {
    font-size: 18px;
  }
  .block-banner .content-banner .staff-link {
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 10px;
  }
  .block-main .item-main .h3_title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .block-main .item-main {
    padding: 10px;
  }
  .block-main .item-main .h3_title::before {
    height: 100%;
  }
  .list-job {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=detail.css.map */