.hire-dialog {
    display: none;
}

/* 遮罩层样式 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹框主体样式 */
.popup-box {
    position: relative;
    width: 6rem;
    padding: 0.7rem;
    background: #fff;
    border-radius: 0.08rem;
    box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 标题区域样式 */
.popup-title {
    font-size: 0.28rem;
    font-weight: bold;
    color: #151B26;
}

.popup-close {
    position: absolute;
    top: 0.18rem;
    right: 0.18rem;
    width: 0.2rem;
    height: 0.2rem;
    cursor: pointer;
}


/* 表单区域样式 */
.popup-contentbox {
    position: relative;
    z-index: 1;
}

.popup-content {
    padding-top: 0.66rem;
}

.popup-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.19rem;
}

.form-group {}

.form-group-two {
    grid-column: span 2;
    display: flex;
}

.form-group-two .fsyzm {
    width: 1.4rem;
    height: 0.5rem;
    border-radius: 6px;
    background: #FFFFFF;
    border: 0.01rem solid #EEEEEE;
    margin-left: 0.1rem;
    font-size: 0.15rem;
    text-align: center;
    line-height: 0.48rem;
    cursor: pointer;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.file-tip {
    font-size: 0.12rem;
    color: #999;
    width: 2.76rem;
    margin-left: 0.1rem;
}

.submit {
    width: 2rem;
    height: 0.5rem;
    border-radius: 0.06rem;
    background: #2468F2;
    font-family: Arial;
    font-size: 0.16rem;
    color: #FFFFFF;
    margin-top: 0.75rem;
    cursor: pointer;
}

.upfile-box {
    position: relative;
    width: 1.2rem;
    height: 0.5rem;
}

.upload-img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.06rem;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upfile-box .file-input {
    opacity: 0;
}

.form-group .input-label {
    width: 1rem;
    margin-right: 0.4rem;
    font-family: Arial;
    font-size: 0.15rem;
    /* 上传简历 */
    color: #1A1A1A;
    align-self: center;
}

.hire-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}