.min-nav{
  display: flex;
  align-items: center;
  padding: 30px 0;
  font-size: 14px;
  color: #888;
}
.min-nav i{
  margin: 0 2px;
}

.job-detail{
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  margin-bottom: 78px;
}
.job-detail .title{
  width: 100%;
  height: 80px;
  line-height: 80px;
  padding-left: 34px;
  font-size: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
  background: #f5f8fa;
  color: #565656;
}
.job-detail .description ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.description ul li{
  width: 25%;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 34px;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
  font-size: 16px;
  color: #565656;
}
.description ul li:not(:nth-of-type(4n)){
  border-right: 1px solid #eaeaea;
}
.description ul li strong{
  flex-shrink: 0;
}

.claim{
  width: 100%;
  padding: 32px;
  box-sizing: border-box;
}
.claim p{
  font-size: 16px;
  line-height: 40px;
  color: #565656;
}
.claim .p-title{
  line-height: initial;
  margin-bottom: 30px;
}
.claim .p-title:not(:first-child){
  margin-top: 52px;
}

.btn-group{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f8fa;
}
.btn-group a{
  width: 155px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #25CAD3;
  box-sizing: border-box;
  font-size: 16px;
  color: #25CAD3;
}
.btn-group .online{
  background: #25CAD3;
  color: #fff;
}
.btn-group a:not(:last-child){
  margin-right: 20px;
}

.mask{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.mask .form{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  padding: 30px;    
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  background: #fff;
}
.form h4{
  width: 100%;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #565656;
}
.form .input{
  display: flex;
  justify-content: space-between;
  width: 48%;
  height: 60px;
  margin-bottom: 22px;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  color: #565656;
}
.form .input.tel, .form .input.other{
  width: 100%;
}
.form .input.other span{
  width: 250px;
}
.form .input span{
  flex-shrink: 0;
  width: 110px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eaeaea;
  background: #f5f8fa;
}
.form .input input{
  flex-grow: 1;
  height: 100%;
  outline: none;
  border: none;
  padding: 0 28px;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
}
.form .btn{
  width: 100%;
  margin: 38px 0;
  text-align: center;
}
.form .btn a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  font-size: 16px;
  border-radius: 4px;
  background: #25cad3;
  color: #fff;
}
.form .tips{
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: #888;
}

.form .close{
  position: absolute;
  top: 22px;
  right: 18px;
  padding: 8px;
  font-size: 28px;
  cursor: pointer;
  color: #888888;
}