
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 120px;
}

.hc_recruit_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.hc_recruit_item_title {
    font-size: 36px;
    font-weight: bold;
    color: #0b0c0c;

}

.hc_recruit_item_sub_title {
    /* display: flex; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    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_btn {
    display: flex;
    justify-content: center;
    padding: 60px 0 40px;
}

.hc_recruit_btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #13558A;
    width: 170px;
    height: 49px;
    color: #fff;
    font-size: 16px;
        outline: none;
    border: none;
    cursor: pointer;
}

.input_info {}

.input_info h4 {
    font-size: 18px;
    line-height: 60px;
    color: rgb(0, 0, 0);
    border-bottom: 1px solid #efefef;
}

.input_box {
    padding-top: 30px;
}

.input_list {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.input_item_label {
    font-size: 18px;
    color: #666666;
    margin-bottom: 16px;
}

.input_item_label em {
    color: #ff0c0c;
}

.input_item_text {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 5px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
}

.input_item_text input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    outline: none;
    border: none;
    font-size: 16px;
    color: #666666;
}

.input_item_icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #666666;
}

.input_item_select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.input_item_text ul {
    display: none;
    position: absolute;
    background-color: #fff;
    /* min-width: 120px; */
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    top: 50px;
    left: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    z-index: 99;
}

.input_item_text ul li {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 12px;
    cursor: pointer;
}

.input_item_text ul li:hover {
    color: #3370ff;
    background-color: #f0f4ff;
}

.input_select_list {
    display: flex;
    gap: 10px;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #c0c4cc;
    font-size: 16px;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #c0c4cc;
    font-size: 16px;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #c0c4cc;
    font-size: 16px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c0c4cc;
    font-size: 16px;
}

/* .input_info_file input {
    width: 200px;
    height: 40px;
    background-color: blue;
} */
.webuploader-pick {
    padding: 40px 50px 0;
}
.fileUpload-box{
    border-radius: 4px;
    border: 1px dashed transparent;
    height: 200px;
    padding: 26px 0;
    transition: all .3s;
}
.dragover{
    border-color: #13558A;
}
.fileUpload-box:hover{
    border-color: #13558A;
}
.uploadFile{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.uploadFile p b{
    color: #000;
    font-size: 18px;
}
.webuploader-pick>div{
    position: relative;
}
.fileTip{
    position: absolute;
    left: 250px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-size: 16px;
    color: #6d6d6d;
    white-space: nowrap;
}
.webuploader-pick input[type=file] {
    display: none;
}

.webuploader-pick label {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    color: #6d6d6d;
    /* background-color: rgb(231, 231, 231); */
    border: 1px solid rgb(84, 84, 84);
    width: 232px;
    height: 49px;
    cursor: pointer;
    transition: all .3s;

}
/* .webuploader-pick label:hover{
      background-color: #13558A;
      border-color:#13558A ;
      color: #fff;
} */

.webuploader-pick p {
    line-height: 26px;
    font-size: 16px;
    color: #6d6d6d;
}


/* 弹出框 */
.ui-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    background: rgba(0, 0, 0, .4);
    display: none;
    color: #000
}

.ui-dialog-notice {
    background: transparent
}

.ui-dialog.show {
    display: -webkit-box;
    display: box
}

.ui-dialog .ui-dialog-cnt {
    border-radius: 6px;
    width: 270px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, .95);
    position: relative
}

.ui-dialog .ui-dialog-bd {
    text-align: center;
    min-height: 71px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 18px;
    font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    display: box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -webkit-box-orient: vertical
}

.ui-dialog .ui-dialog-bd h4 {
    margin-bottom: 4px;
    font-size: 16px;
    width: 100%;
    text-align: center
}

.ui-dialog .ui-dialog-bd div {
    width: 100%
}

.ui-dialog .ui-dialog-ft {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.ui-dialog .ui-dialog-ft button {
    height: 42px;
    line-height: 42px;
    background: #f5f5f6;
    cursor: pointer;
}

.ui-dialog .ui-dialog-ft button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-dialog .ui-dialog-ft button:first-child {
    border-bottom-left-radius: 6px;
    background-image: none
}

.ui-dialog .ui-dialog-ft button:last-child {
    border-bottom-right-radius: 6px
}

.ui-dialog-notice .ui-dialog-cnt {
    width: 130px;
    height: 110px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    text-align: center;
    background: rgba(0, 0, 0, .65);
    border-radius: 6px;
    color: #fff
}

.ui-btn-group {
    display: -webkit-box;
    width: 100%
}

.ui-btn-group button {
    color: #13558A;
    border: 0;
    display: block;
    line-height: 50px;
    height: 48px;
    -webkit-box-flex: 1;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    border-right: 1px #c8c7cc solid;
    width: 100%;
    border-top: 1px solid #c8c7cc
}

.ui-btn-group button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-btn-group button:last-child {
    border-right: 0;
    background-image: none
}

.input_flex {
    flex: 1;
    display: flex;
    gap: 20px;
}

.input_item {
    width: 100%;
}

@media (max-width:1600px){
    .hc_recruit_left{
        zoom: 0.9;
    }
}

@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;
   }
   .input_list{
       flex-direction: column;
       flex-wrap: wrap;
   }
   .webuploader-pick{
       padding: 0;
   }
   .uploadFile p b{
       display: none;
   }
}