.home .banner {
  position: relative;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .banner .text {
  position: absolute;
  left: 10vw;
  bottom: 15%;
  color: white;
}
.home .banner .text .p1 {
  font-size: 1.3vw;
}
.home .banner .text .p2 {
  font-size: 2vw;
  font-weight: bolder;
  margin-top: 15px;
}
.home .main {
  position: relative;
  padding: 5vw 10vw;
}
.home .main .lbg {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.home .main .lbg img {
  max-width: 100%;
}
.home .main .rbg {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.home .main .rbg img {
  max-width: 100%;
}
.home .main .t {
  font-size: 2vw;
  font-weight: 700;
}
.home .main .search {
  width: 45%;
  margin: 30px auto;
}
.home .main .search .t1 {
  text-align: center;
  color: #181818;
  font-size: 1.2vw;
  font-weight: 600;
}
.home .main .search .t2 {
  color: #666;
  font-size: 0.8vw;
  text-align: center;
  margin-top: 15px;
}
.home .main .search .box {
  width: 100%;
  margin-top: 40px;
  border-radius: 2px;
  border: 1px solid #F0962E;
  position: relative;
}
.home .main .search .box input {
  padding: 20px 5%;
  width: 90%;
  outline: none;
  border: none;
  font-size: 0.9vw;
}
.home .main .search .box a {
  width: 44px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0962E;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.home .main .content {
  display: flex;
  justify-content: space-between;
}
.home .main .content .l {
  width: 300px;
}
.home .main .content .l .links {
  display: flex;
  justify-content: space-between;
}
.home .main .content .l .links a {
  display: inline-block;
  padding: 12px 0;
  width: 48%;
  margin: 0 10px;
  border-radius: 50px;
  background: #ECECEC;
  color: #999;
  transition: all 600ms;
  text-align: center;
}
.home .main .content .l .links a:hover {
  background: #F0962E;
  color: white;
}
.home .main .content .l .links .active {
  background: #F0962E;
  color: white;
}
.home .main .content .l .types {
  border-left: 1px solid #EDEDED;
  margin-top: 30px;
}
.home .main .content .l .types a {
  display: block;
  color: #333;
  font-weight: 700;
  font-size: 1vw;
  padding: 15px 20px;
  position: relative;
  transition: all 600ms;
}
.home .main .content .l .types a::before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: 0;
  width: 4px;
  height: 0;
  border-radius: 20px;
  background: #F0962E;
  transition: all 600ms;
}
.home .main .content .l .types .active {
  color: #F0962E;
}
.home .main .content .l .types .active::before {
  height: 100%;
}
.home .main .content .r {
  width: calc(96% - 300px);
}
.home .main .content .r .list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .main .content .r .list .item {
  width: calc(48.5% - 80px);
  background: #F5F5F5;
  padding: 40px;
  margin-bottom: 30px;
}
.home .main .content .r .list .item .icon {
  text-align: center;
}
.home .main .content .r .list .item .pt {
  font-size: 1.2vw;
  text-align: center;
  margin: 3vw 0;
}
.home .main .content .r .list .item .require p {
  color: #666;
  font-size: 0.9vw;
  margin-top: 15px;
}
.home .main .content .r .list .item .btns {
  display: flex;
  margin-top: 40px;
}
.home .main .content .r .list .item .btns a {
  background: #ECECEC;
  color: #999;
  padding: 15px 0;
  width: 150px;
  text-align: center;
  border-radius: 50px;
  margin-right: 20px;
  transition: all 600ms;
  font-size: 0.8vw;
}
.home .main .content .r .list .item .btns a:hover {
  background: #F0962E;
  color: white;
}
.home .main .content .r .more {
  position: relative;
}
.home .main .content .r .more img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main .content .r .more .text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.home .main .content .r .more .text .p1 {
  font-size: 1.2vw;
  font-weight: 600;
}
.home .main .content .r .more .text .des {
  font-size: 0.9vw;
  line-height: 1.8;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .home .banner .text {
    left: 5%;
  }
  .home .banner .text .p1 {
    font-size: 16px;
  }
  .home .banner .text .p2 {
    font-size: 18px;
    margin-top: 5px;
  }
  .home .main {
    padding: 20px 5%;
  }
  .home .main .t {
    font-size: 20px;
  }
  .home .main .search {
    width: 100%;
    margin: 15px auto;
  }
  .home .main .search .t1 {
    font-size: 18px;
  }
  .home .main .search .t2 {
    font-size: 14px;
  }
  .home .main .search .box {
    margin-top: 20px;
  }
  .home .main .search .box input {
    font-size: 14px;
  }
  .home .main .content {
    flex-direction: column;
  }
  .home .main .content .l {
    width: 100%;
  }
  .home .main .content .l .types {
    border-bottom: 1px solid #EDEDED;
    display: flex;
    flex-wrap: wrap;
    border-left: none;
  }
  .home .main .content .l .types a {
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 16px;
    margin-right: 15px;
  }
  .home .main .content .l .types a::before {
    left: 0;
    height: 2px;
    width: 0;
    top: 100%;
  }
  .home .main .content .l .types a:hover::before {
    height: 2px;
    width: 100%;
  }
  .home .main .content .l .types .active::before {
    height: 2px;
    width: 100%;
  }
  .home .main .content .r {
    width: 100%;
    margin-top: 20px;
  }
  .home .main .content .r .list .item {
    width: 90%;
    padding: 20px 5%;
  }
  .home .main .content .r .list .item .pt {
    font-size: 16px;
    margin: 15px auto;
  }
  .home .main .content .r .list .item .require p {
    font-size: 14px;
    margin-top: 5px;
  }
  .home .main .content .r .list .item .btns {
    margin-top: 20px;
    justify-content: space-between;
  }
  .home .main .content .r .list .item .btns a {
    width: 48%;
    font-size: 14px;
  }
  .home .main .content .r .more img {
    height: 180px;
  }
  .home .main .content .r .more .text .p1 {
    font-size: 16px;
  }
  .home .main .content .r .more .text .des {
    font-size: 14px;
  }
}

/*# sourceMappingURL=jobs.css.map */
