.introduceSection>div:last-child {
  background: url(./../images/jobs/title_jobs.png) no-repeat center / 600px 600px;
}

.jobs-list-category {
  display: flex;
}

.jobs-list-category li {
  flex: 1 1 0;
  min-width: 100px;
  margin-right: 8px;
  text-align: center;
}

.jobs-list-category .h3 {
  color: var(--color-normal);
}

.job-list-title {
  color: var(--color-normal);
  margin-top: 33px;
}

.job-list-title .icomoon {
  font-size: 20px;
  vertical-align: text-bottom;
  margin-right: 8px;
}

.jobs-list-category li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 18px 16px;
  border-radius: 6px;
  border: 1px solid #0E4EFF;
  color: #0E4EFF;
  font-weight: bold;
}

.jobs-list-category .icomoon {
  font-size: 24px;
  vertical-align: text-top;
  margin-right: 8px;
}

.jobs-list-category li a.active {
  color: #fff;
  background-color: #0E4EFF;
}

.jobs-list-category li:last-child {
  margin-right: 0;
}

.jobs-list-category~div {
  padding: 0 16px;
}

.job-title {
  font-size: var(--base-font-lg-size);
  color: var(--color-hover);
  padding: 16px;
  font-weight: bold;
  background-color: #EEEEF2;
  margin: 0 0 8px 0;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.job-title:not(.empty)::before {
  content: "";
  width: 13px;
  height: 2px;
  background-color: var(--color-hover);
  position: absolute;
  right: 24px;
  top: 45%;
  transform: rotate(45deg);
}

.job-title:not(.empty)::after {
  content: "";
  width: 13px;
  height: 2px;
  background-color: var(--color-hover);
  position: absolute;
  right: 16px;
  top: 45%;
  transform: rotate(-45deg);
}

.job-title.show:not(.empty)::before {
  transform: rotate(-45deg);
}

.job-title.show:not(.empty)::after {
  transform: rotate(45deg);
}

.job-content {
  padding: 12px 24px 24px 24px;
  margin-bottom: 16px;
  color: var(--color-normal);
  box-shadow: 0px 2px 4px #1A234E1A;
  display: none;
}

.job-content ul {
  list-style-type: square;
  padding-left: 44px;
}

.job-content .title {
  font-weight: bold;
  margin: 12px 0;
}

.job-content .footer {
  text-align: center;
  margin-top: 47px;
}


.descriptionSection {
  height: 344px;
}

.descriptionSection>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 344px;
  width: 100%;
  background-color: #0E4EFF0D;
  color: var(--color-normal);
}

.descriptionSection>div>.left-shape {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #2A6BFE1A;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -369px;
  margin-top: 59px;
}

.descriptionSection>div>.left-shape::before {
  content: "";
  width: 45px;
  height: 45px;
  background-color: #F2F6FF;
  position: absolute;
  right: 0;
  bottom: 0;
}

.descriptionSection>div>.right-shape {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #F2F6FF;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: 236px;
  margin-top: 191px;
  overflow: hidden;
}

.descriptionSection>div>.right-shape::before {
  content: "";
  width: 45px;
  height: 45px;
  background-color: #2A6BFE1A;
  position: absolute;
  right: 0;
  bottom: 0;
}

.descriptionSection>div>.title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
  z-index: 1;
}

.descriptionSection>div>.content {
  font-size: var(--base-font-lg-size);
  width: 100%;
  max-width: 407px;
}

.processSection .stepDescription{
  text-align: left;
  font-size: var(--base-font-lg-size);
  color: var(--color-normal);
}

.stepImg img{
  width: 100%;
}

.processSection  .stepDescription>ol {
  list-style: none;
  counter-reset: num;
  padding: 0 12px 0 32px;
}

.processSection  .stepDescription>ol  li {
  counter-increment: num;
  position: relative;
  padding: 0 0 20px 2px;
}

.processSection .stepDescription>ol li::before {
  content: counter(num) ".";
  font-weight: bold;
  position: absolute;
  left: -1em;
  top:0;
}

.processSection .stepDescription>ol li span{
  font-weight: bold;
}

#job-1::before, #job-2::before, #job-3::before, #job-4::before, #job-5::before {
  content: '';
  display: block;
  height:      75px;
  margin-top: -75px;
  visibility: hidden;
}

@media screen and (max-width: 900px) {
  .jobs-list-category {
    display: none;
  }

  .descriptionSection>div>.title {
    margin-left: 15px;
    margin-right: 15px;
  }

  .descriptionSection>div>.content {
    margin: 0 15px;
    width: auto;
  }
}


@media screen and (max-width: 480px) {
  .descriptionSection>div>.title {
    font-size: 32px;
  }

  .processSection .stepDescription>ol {
    padding: 0 8px 0 24px;
  }

}