/* 岗位详情页 - 投递简历按钮 */
.recruit-apply-btn {
    display: inline-block;
    padding: 12px 48px;
    background: #e8752e;
    color: #fff !important;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.recruit-apply-btn:hover {
    background: #d66a28;
    color: #fff;
}

/* 投递简历页面 */
.recruit-apply-page .recruit-apply-wrap {
    background: #fff;
    padding: 40px 50px 60px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.recruit-apply-form {
    max-width: 700px;
    margin: 0 auto;
}
.apply-form-row {
    margin-bottom: 24px;
}
/* 姓、名 两列等宽左右对齐，之间 32px 间距 */
.recruit-apply-form .apply-form-row.apply-form-row-name.am-g {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    gap: 32px;
}
.recruit-apply-form .apply-form-row.apply-form-row-name.am-g .am-u-sm-6 {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}
/* 国家/地区、电话号码 两列等宽左右对齐，之间 24px 间距 */
.recruit-apply-form .apply-form-row.apply-form-row-phone.am-g {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    gap: 24px;
}
.recruit-apply-form .apply-form-row.apply-form-row-phone.am-g .am-u-sm-6 {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}
/* 招聘类型 + 申请职位 同一行 */
.apply-form-row-recruit-position { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.apply-form-row-recruit-position .apply-recruit-type-cell { flex: 0 0 auto; position: relative; z-index: 2; }
.apply-form-row-recruit-position .apply-position-cell { flex: 1; min-width: 200px; }
.apply-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
.apply-input,
.apply-select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    font-size: 14px;
}
.apply-select-wrap {
    position: relative;
}
.apply-select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.apply-input-gray,
.apply-select.apply-input-gray,
.apply-position-select.apply-input-gray {
    background: #F4F4F5 !important;
    border-color: #e0e0e0;
}
.apply-select.apply-input-gray {
    background: #F4F4F5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center !important;
}
.recruit-type-tabs {
    display: flex;
    gap: 16px;
}
.recruit-type-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    color: #8a8a8a;
}
/* 视觉隐藏 radio，保留可点击性（与手机端一致，避免 display:none 导致 label 点击无效） */
.recruit-type-tab input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
/* PC 招聘类型选中/悬停：与手机端 .recruit-apply-wrap-mobile 同效果，用独立类名确保命中 */
.recruit-apply-wrap-pc .recruit-type-tab.active,
.recruit-apply-wrap-pc .recruit-type-tab:hover {
    border-color: #e8752e !important;
    background: #fff5f0 !important;
    color: #e8752e !important;
}
.recruit-apply-wrap-pc .recruit-type-tab.active span,
.recruit-apply-wrap-pc .recruit-type-tab:hover span {
    color: inherit !important;
}
.apply-position-wrap {
    position: relative;
}
.apply-position-select {
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}
.apply-position-select .position-placeholder {
    color: #9d9d9d;
}
.apply-position-select .position-placeholder.selected {
    color: #333;
}
.apply-position-select .position-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
}
.apply-position-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 280px;
    overflow: hidden;
}
.apply-position-dropdown.open {
    display: block;
}
.position-search-wrap {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.position-search-wrap input {
    width: 100%;
    padding-left: 32px;
    background: #f5f5f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 10px center;
}
.position-list {
    max-height: 220px;
    overflow-y: auto;
    margin: 0;
    padding: 8px 0;
    list-style: none;
}
.position-list li {
    padding: 10px 14px;
    cursor: pointer;
}
.position-list li:hover {
    background: #f5f5f5;
}
.apply-upload-zone {
    border: 2px dashed #d5d5d5;
    border-radius: 4px;
    min-height: 180px;
    position: relative;
    background: #fafafa;
}
.apply-upload-zone.dragover {
    border-color: #e8752e;
    background: #fff5f0;
}
.upload-zone-inner {
    padding: 30px 20px;
    text-align: center;
}
.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='%23ccc'%3E%3Cpath d='M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") no-repeat center;
}
.upload-tip {
    color: #333;
    margin-bottom: 6px;
}
.upload-rule {
    color: #8a8a8a;
    font-size: 13px;
    margin-bottom: 8px;
}
.upload-help {
    color: #8a8a8a;
    font-size: 12px;
    margin-bottom: 14px;
}
.upload-btn {
    padding: 8px 24px;
    border: 1px solid #e8752e;
    background: #fff;
    color: #e8752e;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.upload-btn:hover {
    background: #fff5f0;
}
.upload-file-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.upload-file-name {
    flex: 1;
    min-width: 0;
    margin-right: 10px;
}
.upload-file-size {
    color: #8a8a8a;
    font-size: 13px;
    margin-right: 12px;
}
.upload-file-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: #f0f0f0;
    color: #666;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
}
.upload-file-remove:hover {
    background: #e8752e;
    color: #fff;
}
.apply-submit-row {
    margin-top: 32px;
    margin-bottom: 16px;
}
.apply-submit-btn {
    width: 100%;
    height: 48px;
    background: #e8752e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.apply-submit-btn:hover:not(:disabled) {
    background: #d66a28;
}
.apply-submit-btn:disabled {
    background: #c0c0c0;
    color: #fff;
    cursor: not-allowed;
    opacity: 1;
}
.apply-privacy-row {
    margin-bottom: 0;
}
.apply-privacy-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    font-size: 14px;
}
.apply-privacy-label input[type="checkbox"] {
    margin-right: 8px;
}
.privacy-link {
    color: #ef1d24;
    margin-left: 4px;
}
.privacy-link:hover {
    text-decoration: underline;
}
