.job-card * {
    box-sizing: border-box;
}

.job-card .item:hover {
    --expand: 1;
}

.job-card .item:before,
.job-card .item:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #0d0d0d;
    border: 2px solid #fff;
    top: 0;
    left: 0;
    z-index: -1;
}

.job-card .item:after {
    transform: translate(calc(var(--expand) * -2%), calc(var(--expand) * -2%));
    transition: transform 0.2s;
}

.job-card .item__content {
    transition: transform 0.2s;
    transform: translate(calc(var(--expand) * -4%), calc(var(--expand) * -4%));
}

.job-card a {
    color: #c7edef;
}

/* CSS */
.job-title {
    /* font-family: "Open Sans", sans-serif; */
    font-size: 30px;
    font-style: blod;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #FFFFFF;
    color: #40d0c6;
    /* 将字体颜色改为黑色 */
    cursor: pointer;
    border: 3px solid;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    position: absolute;
    content: "";
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    /* 将元素设置为不透明 */
    height: 50px;
    /* width: 120px; */
    text-shadow: 2px 2px 2px #40d0c6;
}

@media (min-width: 768px) {
    .job-title {
        padding: 0.25em 0.75em;
    }
}

.job__title-sm {
    font-size: 16px;
    font-weight: 600;
    /* transform: translateX(-30%); */
    position:absolute;
    top: 13%;
    left: 11%;
    transition: .3s
}

.job__title-sm:hover {
    color: #40d0c6
}

@media(max-width:767px) {
    .job__title-sm {
        font-size: 18px
    }
}

.job-card-more {
    color: #40d0c6;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.job-card-text {
    padding-top: 10px;
    font-size: 15px;
    text-align: left;
    font-weight: 400;
    line-height: 40px;
    color: #888;
    width: 80%;
}


.job-card-main {
    height: 394px;
    background-color: #F7F8F8;
    padding-top: 70px;
    padding: 70px 20px 80px;
    border-radius: 10px
}