#main{
    font-size: 16px;
}
#main .banner{
    height: 0;
    padding-bottom: 41.667%;
}
#main .banner img{
    width: 100%;
}
#main .con-in{
    width: 1200px;
    margin: 0 auto;
}
#main .list{
    padding-top: 46px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}
#main .list>li{
    width: 384px;
    background: #fff;
    border-radius: 18px;
    padding: 50px 10px 28px 10px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 32px;
}
#main .list>li:not(:nth-of-type(3n)){
    margin-right: 24px;
}
#main .list>li .num{
    position: absolute;
    right: 0;
    top: 30px;
    width: 120px;
    height: 30px;
    background: #e60012;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
#main .list>li .name{
    display: flex;
    align-items: center;
    font-size: 20px;
    padding: 0 12px;
}
#main .list>li .name .pic{
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7edf2;
    border-radius: 8px;
    margin-right: 20px;
}
#main .list>li .name .pic>img{
    max-width: 100%;
    max-height: 100%;
}
#main .list>li .name .text{
    flex: 1;
}
#main .list>li .intro{
    margin-top: 20px;
    margin-bottom: 10px;
    height: 130px;
    overflow: hidden;
    font-size: 16px;
}
#main .list>li .down{
    display: flex;
    justify-content: center;
}
#main .list>li .down span{
    padding: 7px 13px;
    color: #fff;
    background: #e60012;
    border-radius: 22px;
    cursor: pointer;
}
#main .list>li .down span img{
    transition: transform 0.5s;
}
#main .list>li .jobs{
    padding: 20px 0;
    background: #eee;
    border-radius: 8px;
    margin-top: 20px;
}
#main .list>li .jobs ul{
    height: 24px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0 10px;
    line-height: 24px;
}
#main .list>li .jobs ul>li{
    cursor: pointer;
}
#main .list>li .jobs ul>li.line{
    margin: 0 5px;
}
#main .list>li .jobs ul>li.line:last-child{
    display: none;
}
#main .list>li .jobs .more-job{
    text-align: center;
    margin-top: 10px;
}
#main .list>li .jobs .more-job a{
    color: #e60012;
}
#main .list>li .desc {
    margin-top: 22px;
    color: #a0a0a0;
}
#main .list>li .desc .item{
    display: flex;
    margin-bottom: 5px;
}
#main .list>li .desc .label{
    width: 80px;
    text-align: justify;
    text-align-last: justify;
    margin-right: 5px;
}
#main .list>li .desc .val{
    flex: 1;
}

.popup{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.popup .mask{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.popup .container{
    width: 600px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}
.popup .container .field{
    display: flex;
    padding: 10px;
}
.popup .container .field:nth-of-type(2n){
    background: #f3f3f3;
}
.popup .container .field .label{
    width: 65px;
    margin-right: 15px;
    text-align: justify;
    text-align-last: justify;
    font-weight: bold;
}
.popup .container .field .vo{
    flex:1;
    color: #666;
}
.popup .tip{
    text-align: center;
    color: #999;
    padding: 20px 0;
}
.popup .icon-box{
    position: absolute;
    right: -10px;
    top: -10px;
    background: #e60012;
    color: #fff;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
}
.popup .close.icon {
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 18px;
  }
  
  .popup .close.icon:before {
    content: '';
    position: absolute;
    top: 8px;
    width: 18px;
    height: 2px;
    background-color: currentColor;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .popup .close.icon:after {
    content: '';
    position: absolute;
    top: 8px;
    width: 18px;
    height: 2px;
    background-color: currentColor;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .popup .apply-btn{
      display: block;
      width: 200px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      margin: 15px auto;
      background: #3fc9ff;
      color: #fff;
      border-radius: 8px;
      font-size: 18px;
  }
  
@media screen and (max-width: 768px){
    html,body{
        width: 100%;
        overflow-x: hidden;
    }
    #main .con-in{
        width: 100%;
    }
    #main .list>li{
        width: 100%;
        margin: 10px !important;
    }
    .popup{
        z-index: 6000;
    }
    .popup .container{
        width: 90%;
        height: 80vh;
        overflow: auto;
        box-sizing: border-box;
    }
}