.ab_con .part1{
        padding: 0.8rem 0 0.5rem;
}
.ab_con .part5{
        padding: 0 0 1.46rem ;
}

@media screen and (max-width: 1024px){
    .ab_con .part1{
        padding: 60px 0 0 0;
    }
}

.job-all {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.job-list {
    width: 30%;
   
    box-shadow: rgba(3, 4, 13, 0.06) 0px 6px 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    /* 确保边框不会溢出容器 */
    transition: all 0.5s ease;
    /* 平滑过渡效果 */
}

.job-list a{
    position: relative;

    &::before,
    &::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        transition: .5s ease-in-out;
        /* 过渡动画设置 */
    }

    &::before {
        top: 0;
        left: 0;
        border-top: 0 solid #00a098;
        border-left: 0 solid #00a098;
    }

    &::after {
        right: 0;
        bottom: 0;
        border-bottom: 0 solid #00a098;
        border-right: 0 solid #00a098;
    }

    &:hover::before,
    &:hover::after {
        border-width: 1px;
        /* 鼠标悬停时边框宽度 */
        width: 100%;
        /* 动画从0扩展到整个元素 */
        height: 100%;
        /* 同上，设置动画扩展高度 */
    }
}

.job-list a {
    display: block;
    padding: 30px 30px;
    z-index: 11;
}

.job-list-title {
    color: #141933;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    font-size: 28px;
    line-height: 38px;
}

.job-list-title .ji {
    position: relative;
    top: 0px;
    white-space: nowrap;
    display: inline-block;
    padding: 0 4px;
    border-radius: 4px;
    margin-right: 8px;
    height: 26px;
    font-size: 16px;
    line-height: 26px;
    background: rgb(0, 160, 152);
    color: rgb(255, 255, 255);
}

.job-list-status {
    font-weight: 400;
    color: #989cb2;
    font-size: 20px;
    line-height: 28px;
    margin-top: 10px;
}

@media screen and (max-width: 1024px){
    .job-all{
        flex-wrap: wrap;
    }
    .job-list{
        width: 100%;
    }
    .job-list-title{
        font-size: 24px;
        line-height: 34px;
    }
    .job-list-title .ji{
        height: 24px;
        font-size: 14px;
        line-height: 24px;
    }
}