.batchhire-back {
    background-color: #fff;
}

.batch-back-new {
    background-color: #F5F8FF;
}

.batch-hire {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.title-details1 {
    margin-top: 60px;
}

.title-details2 {
    margin-top: 24px;
    text-indent: 2em;
}

.title-details-img {
    margin-bottom: 100px;
}

.hire-image {
    padding-bottom: 118px;
    cursor: pointer;
}

.advange-all-batch {
    background-color: #fff;
    height: 304px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 46px 24px;
    border-radius: 6px;
    cursor: pointer;
}

.business-item2-batch {
    padding: 0 12px 118px;
}

.batch-modules {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.batch-advange {
    margin-top: 23px;
    position: relative;
    cursor: pointer;
}

.batch-con-absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86px;
    color: #fff;
    line-height: 86px;
    padding-left: 32px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 26px;
}

.batch-advange:nth-child(odd) {
    margin-right: 20px;
}


.batch-advange::before {
    background: rgba(0, 0, 0, 0.5);
    /* 0.5表示50%透明度 */
    transition: all 0.3s ease;
    /* 0.3s表示动画时长 */
}

/* 悬停时显示的内容 */
.batch-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    padding: 85px 73px 85px 33px;
    font-size: 26px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    z-index: 999;
}

/* 悬停效果 */
.batch-advange:hover .batch-con-absolute {
    opacity: 0;
    transform: translateY(100%);
}

.batch-advange:hover .batch-hover-content {
    opacity: 1;
    transform: scale(1);
}

.batch-desc-e {
    font-size: 20px;
}

.batch-desc {
    /* text-indent: 2em; */
    font-size: 16px;
    padding: 0 20px 60px;
    cursor: pointer;
}

.batch-desc-t {
    font-size: 16px;
    /* padding: 0 20px 60px; */
    cursor: pointer;
    margin-top: 39px;
    text-indent: 2em;
    line-height: 30px;
}

.system-p {
    font-size: 26px;
    height: 117px;
}

/* 英文 */
.advange-all-batch-e {
    background-color: #fff;
    height: 386px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 46px 24px;
    border-radius: 6px;
    cursor: pointer;
}

@media (min-width:799px) {
    .row {
        display: flex;
        align-items: center;
    }
}




@media (max-width:798px) {
    .hire-image img {
        width: 90%;
        margin: 0 5%;
    }

    .details-all {
        padding: 0 20px;
    }

    .hire-image {
        padding-bottom: 38px;
    }

    .batch-advange img {
        width: 96%;
        margin: 0 2%;
    }

    .batch-advange:nth-child(odd) {
        margin-right: 0px;
    }

    .batch-con-absolute {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 96%;
        height: 56px;
        color: #fff;
        line-height: 56px;
        padding-left: 32px;
        background: rgba(0, 0, 0, 0.7);
        font-size: 20px;
        margin: 0 2%;
    }

    .batch-hover-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 96%;
        height: 100%;
        margin: 0 2%;
        color: #fff;
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        padding: 25px 33px;
        font-size: 26px;
        opacity: 0;
        background: rgba(0, 0, 0, 0.7);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .batch-desc-e {
        font-size: 16px;
    }

    .batch-desc {
        /* text-indent: 2em; */
        font-size: 16px;
        padding: 0 20px 20px;
        cursor: pointer;
        width: 100%;
        /* 确保宽度占满 */
        max-width: 100%;
        /* 避免被限制 */
        overflow-wrap: break-word;
        /* 更现代的换行属性 */

    }

    .batch-desc p {
        white-space: normal;
        /* 允许换行 */
        word-wrap: break-word;
    }

    .business-item2-batch {
        padding: 0 12px 28px;
    }

    .system-p {
        font-size: 16px;
        height: 30px;
    }

    .advange-all-batch-e {
        background-color: #fff;
        height: 286px;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 46px 24px;
        border-radius: 6px;
        cursor: pointer;
    }
}

/* 动画 */
/* .batch-animation {
    transition: transform 0.5s ease;
}

.batch-animation:hover {
    transform: scale(0.9);
    cursor: pointer;
}


.details-all p:hover {
    color: #336df6;
    cursor: pointer;
} */