body {
    background-color: #f7f7f7;
}
.hc_cont {
    width: 75%;
}

.recruit-head {
    /* position: fixed; */
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
}

.recruit-head-cnt {
    display: flex;
    width: 100%;
    height: 140px;
    align-items: center;
    justify-content: space-between;
}

.recruit-head-cnt img {
    width: 150px;
}

.recruit-head-cnt ul {
    display: flex;
    gap: 80px;

}

.recruit-head-cnt ul li {}

.recruit-head-cnt ul li a {
    position: relative;
    display: block;
    height: 64px;
    line-height: 64px;
    color: rgb(8, 84, 144);
    opacity: 1;
    transition: all .3s;
    font-size: 18px;
}

.recruit-head-cnt ul li a:hover {
    opacity: 0.8;
}

.recruit-head-cnt ul li.active a::after {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 5px);
    height: 2px;
    background-color: rgb(8, 84, 144);
}

.hc_recruit_main {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.hc_recruit_left {
    background-color: #fff;
    flex: 1;
    padding: 60px;
}

.hc_recruit_item {
    display: flex;
    flex-direction: column;
}

.hc_recruit_item_title {
    font-size: 36px;
    font-weight: bold;
    color: #0b0c0c;

}

.hc_recruit_item_sub_title {
    display: flex;
    font-size: 16px;
    color: rgb(148, 148, 148);
    margin: 20px 0 0;

}

.hc_recruit_item_sub_title span:not(:first-child) {
    margin-left: 20px;
    position: relative;
}

.hc_recruit_item_sub_title span:not(:first-child)::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: rgba(148, 148, 148, .5);
    left: -10px;
    top: 0;
}



.hc_recruit_left .hc_recruit_item_descbox {
    padding-top: 50px;
}

.hc_recruit_item_descbox h4 {
    position: relative;
    font-size: 18px;
    margin-bottom: 25px;
    padding-left: 6px;
}

.hc_recruit_item_descbox h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #3271a3;
}

.hc_recruit_item_desc {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: normal;
    color: rgb(91, 91, 91);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    white-space: pre-line;
    -webkit-line-clamp: 2;
}

.hc_recruit_btn {
    padding: 80px 0 40px;
}

.hc_recruit_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #13558A;
    width: 170px;
    height: 49px;
    color: #fff;
    font-size: 16px;
}

.hc_recruit_right {
    width: 300px;
    padding-left: 16px;
}

.hc_recruit_right_cnt {
    width: 100%;
    background-color: #fff;
    padding: 50px 20px;
}

.hc_recruit_right .hc_recruit_item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hc_recruit_right .hc_recruit_item:hover .hc_recruit_item_title{
    color: #13558A;
}
.hc_recruit_right .hc_recruit_item_title {
    font-size: 16px;

}

.hc_recruit_right .hc_recruit_item_sub_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    margin: 10px 0 0;
}

@media (max-width:1024px){
    .hc_cont {
         width: 90%;
    }
    .recruit-head-cnt{
        padding: 0 20px;
    }
    .recruit-head-cnt ul {
        display: flex;
        gap: 40px;
    }
   .hc_recruit_main{
       flex-direction: column;
   }
   .hc_cont{
       width: 100%;
   }
   .hc_recruit_left{
       padding: 20px;
   }
   .hc_recruit_right{
       width: 100%;
       padding: 0;
   }
}