@charset "utf-8";
/* Css Document */

/* 招聘样式 */
.recruit_wrap{
    width: 100%;
    height: calc(100vh - 60px);
    background: url(../images/bg-recruit.jpg) no-repeat bottom center / 100% auto;
}

/* 链接 */
@keyframes rise {
    0%{
        transform: translateX(-50%) translateY(500%);
    }
    100%{
        transform: translateX(-50%) translateY(0);
    }
}
.recruit_list_box{
    width: 1330px;
    padding: 30px 0;
    background: rgba(0, 0, 0, .3);
    border-radius: 4px;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) translateY(500%);
    animation: rise 1.2s linear 0s 1 forwards;
}
.recruit_list_ul{
    width: 1250px;
    margin: 0 auto;
}
.recruit_list_li{
    float: left;
    width: 200px;
    height: 173px;
    font-size: 24px;
    color: #333;
    background-image: url(../images/bg-recruit-list1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-right: 20px;
    transition-duration: .5s;
    cursor: pointer;
}
.recruit_list_li:hover{
    box-shadow: 0 0 40px rgb(255,255,255);
}
.recruit_list_li_pr{
    overflow: hidden;
    position: relative;
}
.recruit_list_li_fix{
    width: 50%;
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
    transform: rotate(45deg);
    position: absolute;
}
.recruit_list_li_pr1 .recruit_list_li_fix{
    background: #f00;
    color: #fff;
    right: -15%;
    top: 6%;
}
.recruit_list_li_pr2 .recruit_list_li_fix{
    background: #fff;
    color: #f00;
    right: -20%;
    top: 5%;
}
.recruit_list_li_big{
    width: 360px;
    line-height: 1.25;
    font-size: 24px;
    color: #fff;
    background-image: url(../images/bg-recruit-list2.jpg);
    margin-right: 0;
}

@media screen and (max-width: 1680px) {
    .recruit_list_box{
        bottom: 5%;
    }
}


