
    .zbtn{
padding:  20px 40px;
  font-size: 1.4rem;
  background-color: #00b3b4;
  background-size: 46px 26px;
  border: 1px solid #555;  
  color: white;
  transition: all ease 0.3s;
    }

    /* job心跳按钮 */
    .heartbeat-button {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  margin-top: 16px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background-color: #006EB6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /*animation: heartbeat 1.5s infinite;*/
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.heartbeat-button:before,
.heartbeat-button:after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
  animation: heartbeat-before 1.5s infinite;
}

@keyframes heartbeat-before {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.heartbeat-button:hover:before,
.heartbeat-button:hover:after {
  animation-play-state: paused;
}
/* job心跳按钮效果结束 */


#job-left-box{
  padding: 3vw 20px 3vw 20px;
}

#job-mtitle {
  padding-left: 8px;  
  color: #006eb6;font-weight: normal; font-size: 56px;
}
@media screen and (max-width:1040px){
  #job-mtitle {
  font-size: 32px;
  margin-bottom: 8px;
}
}


/*js模态框开始*/
        .modal {
            display: none;
            position: fixed;
            z-index: 1006;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s;
        }
        .modal-content {
            display: block;
            max-width: 90%;
            max-height: 90%;
            margin: 5% auto;

        }
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
        }
        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }
/*js模态框结束*/