.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 85%;
  margin: 0 auto 60px auto;
}
.home .main .nav {
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  border-radius: 10px;
  transform: translateY(-40px);
}
.home .main .nav a {
  width: 50%;
  text-align: center;
  padding: 30px 0;
  color: #666666;
  transition: all 600ms;
  background: white;
  border-right: 1px solid #F0F0F0;
}
.home .main .nav a:hover {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav .active {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav a:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.home .main .nav a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home .main .nr .theader {
  width: 100%;
  background: #F9F9F9;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.home .main .nr .theader p {
  width: 16.6%;
  padding: 25px 0;
  color: #333333;
  font-weight: bolder;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home .main .nr .allItems .item .d1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid #EEEEEE;
  cursor: pointer;
  transition: all 600ms;
  position: relative;
}
.home .main .nr .allItems .item .d1 .btn {
  position: absolute;
  right: 20px;
  top: 44%;
  transform: translateY(-50%);
  z-index: 100;
}
.home .main .nr .allItems .item .d1 .btn span {
  width: 16px;
  height: 3px;
  background: #A6A8AC;
  display: inline-block;
  transition: all 600ms;
}
.home .main .nr .allItems .item .d1 .btn span:nth-child(2) {
  position: absolute;
  transform: rotate(90deg);
  left: 0;
  top: 14px;
}
.home .main .nr .allItems .item .d1 p {
  width: 16.6%;
  color: #222222;
  padding: 30px 0;
  font-size: 18px;
  transition: all 600ms;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home .main .nr .allItems .item .active {
  background: #0B9F27;
}
.home .main .nr .allItems .item .active .btn span {
  background: white;
}
.home .main .nr .allItems .item .active .btn span:nth-child(2) {
  transform: rotate(0);
}
.home .main .nr .allItems .item .active p {
  color: white;
}
.home .main .nr .allItems .item .d2 {
  width: 90%;
  margin: 0 auto;
  background: #F5F5F5;
  padding: 20px 5%;
  display: none;
}
.home .main .nr .allItems .item .d2 .des .st {
  color: #333333;
  font-size: 18px;
  font-weight: bolder;
  margin-top: 30px;
}
.home .main .nr .allItems .item .d2 .des .html {
  color: #333333;
  margin-top: 20px;
  line-height: 2;
  font-weight: lighter;
}
.home .main .mobile {
  display: none;
}
.home .main .mobile .item {
  margin-bottom: 15px;
}
.home .main .mobile .item .dom1 {
  box-shadow: rgba(197, 197, 197, 0.5) 0 0 10px;
  border-radius: 15px;
  padding: 20px;
  transition: all 600ms;
}
.home .main .mobile .item .dom1 .d1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .mobile .item .dom1 .d1 .name {
  font-weight: bolder;
  font-size: 18px;
}
.home .main .mobile .item .dom1 .d1 .num {
  color: #ff4f44;
  font-size: 18px;
}
.home .main .mobile .item .dom1 .tag {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.home .main .mobile .item .dom1 .tag p {
  color: #999;
  font-size: 14px;
}
.home .main .mobile .item .dom1 .more {
  text-align: right;
  margin-top: 15px;
}
.home .main .mobile .item .dom1 .more p {
  background: #0c9f27;
  display: inline-block;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  padding: 5px 15px;
}
.home .main .mobile .item .active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.home .main .mobile .item .dom2 {
  background: #f6f6f6;
  padding: 10px 20px 20px 20px;
  position: relative;
  display: none;
}
.home .main .mobile .item .dom2 .top {
  position: absolute;
  right: 20px;
  top: 20px;
}
.home .main .mobile .item .dom2 .top img {
  width: 25px;
}
.home .main .mobile .item .dom2 .t {
  font-size: 18px;
  font-weight: bolder;
  margin: 15px 0;
}
.home .main .mobile .item .dom2 .des {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .main {
    width: 90%;
  }
  .home .main .nav {
    transform: translateY(-30px);
  }
  .home .main .nav a {
    padding: 20px 0;
  }
  .home .main .nr {
    display: none;
  }
  .home .main .nr .allItems .item .d1 .btn {
    display: none;
  }
  .home .main .mobile {
    display: block;
  }
}

/*# sourceMappingURL=job.css.map */
