.platform_tt {
  text-align: center;
  color: var(--color);
  line-height: 1;
}

.platform_ms {
  text-align: center;
  color: #333;
  line-height: 1.6;
  width: 68%;
  margin: 0 auto;
}

.platform_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
} 

.platform-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.platform_li {
  width: 32.5%;
  height: 22vw;
  min-height: 200px;
  max-height: 420px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: all .6s;
}

.platform_li:nth-child(2n) {
  margin-right: 0;
}

.platform-group:nth-child(2n+1) .platform_li:nth-child(1) {
  width: calc(67.5% - 10px);
}

.platform-group:nth-child(2n) .platform_li:nth-child(2) {
  width: calc(67.5% - 10px);
}

.platform_li.hover {
  width: calc(67.5% - 10px);
}

.platform_li.reduce {
  width: 32.5% !important;
}

.plat_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.plat_img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  z-index: 1;
}

.plat_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.platform_li:hover .plat_img img {
  transform: scale(1.05);
}

.plat_tt {
  width: 100%;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.slick-arrow{
  display: none!important;
}
@media only screen and (max-width:768px) {
  .platform_li {
    width: 100% !important;
    margin-right: 0;
  }

  .platform_ms {
    width: 100%;
  }
}

.zp_tt {
  line-height: 1;
  color: var(--color);
  text-align: center;
}

.zp_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.zp_li {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  height: 16vw;
  min-height: 200px;
  max-height: 300px;
  position: relative;
  overflow: hidden;
}

.zp_li:nth-child(2n) {
  margin-right: 0;
}

.zp_li .zp_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.zp_img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}

.zp_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.zp_li:hover img {
  transform: scale(1.05);
}

.zp_info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 30px 0;
  z-index: 2;
}

.zp_info>div {
  width: 100%;
  position: relative;
}

.zp_bt {
  color: #fff;
  text-align: center;
}

.zp_ms {
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.zp_info .a_btn {
  margin: 0 auto;
  background: #fff;
  border: none;
  padding: 12px 2.5vw;
  color: var(--color);
}

.zp_info .a_btn:hover {
  color: #fff;
}
@media screen and (max-width: 1280px) and (min-width: 1101px){
    .zp_info .a_btn{
        padding: 6px 2vw;
    }
}
@media only screen and (max-width:768px) {
  .zp_li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .zp_info .a_btn {
    padding: 5px 20px;
  }
}

.fc_tt {
  color: var(--color);
  line-height: 1;
  text-align: center;
}

.fc_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.fc_box li{
  padding:5px;
}
.fc_li {
  width:100%;
  height: 10vw;
  min-height: 110px;
  max-height: 188px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fc_li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.fc_li:hover img {
  transform: scale(1.05);
}

.fc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  z-index: 99991;
  display: none;
}

.fc_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
  background: #fff;
  padding: 3vw;
  text-align: center;
}

.fc_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-self: center;
  cursor:pointer;
}

.fc_close .icon {
  width: 100%;
  height: 100%;
  fill: #333;
  transition: all .6s;
}

.fc_close:hover .icon {
  fill: var(--color);
  transform: rotate(180deg);
}

.fc_inner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}


@media only screen and (max-width:1024px) {
  .fc_inner {
    padding: 30px 15px;
  }

  .fc_close {
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
  }
}


.cate_tt {
  color: var(--color);
  text-align: center;
  line-height: 1;
}

.join_filter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.filter_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 58%;
}

.filter_box>span {
  color: #222;
}

.xl {
  width: calc(100% - 60px);
  display: flex;
  flex-wrap: wrap;
}

.sel {
  width: calc((100% - 20px) / 3);
  height: 50px;
  border: 1px solid #eee;
  margin-right: 10px;
  position: relative;
  padding: 0 10px;
}

.sel:nth-child(3n) {
  margin-right: 0;
}

.sel li {
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.sel .tit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
}

.sel_2 {
  display: none;
  width: 100%;
  border: 1px solid #eee;
  border-top: none;
  background: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 5;
}

.sel_2 p {
  color: #999;
  padding: 5px 10px;
}
.sel_2 p:hover{
    color: var(--color);
}
.search {
  width: 30%;
  max-width: 400px;
  height: 50px;
  border: 1px solid #eee;
}

.search .input-container {
  width: 100%;
  height: 100%;
  display: flex;
}

.search input {
  border: none;
  width: calc(100% - 50px);
  padding: 0 20px;
  color: #333;
}

.search_btn {
  width: 50px;
  height: 100%;
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor:pointer;
}

.search_btn .icon {
  fill: #fff;
}
.noData{
    text-align: center;
}
.job_li {
  width: 100%;
  padding: 0 2vw;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  position: relative;
}

.job_li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color);
  transition: all .6s;
}

.job_li.active {
  background: #f5f5f5;
}

.job_li.active:before {
  width: 100%;
}

.job_mes {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.mes_left {
  width: 85%;
}

.job_position {
  color: #333;
}

.job_li.active .job_position {
  color: var(--color);
}

.job_xx {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.job_xx>div {
  color: #999;
  padding-right: 3.8vw;
}

.zk {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

.zk span {
  padding-right: 15px;
}

.zk .arrow {
  height: 20px;
  transition: all .5s;
}

.zk .icon {
  width: 20px;
  height: 20px;
  fill: #aaa;
  transition: all .5s;
}

.zk.active {
  color: #222;
}
.zk.active .arrow .icon{
    transform: rotate(180deg);
}
.job_con {
  width: 100%;
  display: none;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.work_tt,
.zg_tt {
  color: #333;
  line-height: 2.4;
}

.job_xq {
  color: #666;
  line-height: 2.6;
}

.deliver {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 180px;
  height: 50px;
  background: var(--lgColor);
  position: relative;
}

.deliver span {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.deliver:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  transition: all .6s;
}

.deliver:hover:before {
  width: 100%;
}
@media screen and (max-width: 1280px) and (min-width: 1101px){
    .deliver{
        width: 120px;
        height: 32px;
    }
}
@media only screen and (max-width:768px) {
  .filter_box{
    flex-wrap: wrap;
  }
  .filter_box>span {
    color: #222;
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  .sel_2{
      top: 39px;
  }
  .xl {
    width: 100%;
  }
   
  .filter_box {
    width: 100%;
  }
  .sel{
    height: 40px;
  }
  .search {
    width: 100%;
    height: 40px;
    margin-top: 15px;
  }

  .job_li {
    padding: 0 15px;
  }

  .job_xx>div {
    width: 100%;
  }
  .job_xq{
      line-height: 1.6;
  }
  .zk {
    top: 22px;
    transform: none;
  }

  .deliver {
    width: 120px;
    height: 36px;
  }
}
